如何在 TableViewerColumn 中使用 CheckBoxTableCell
How to use CheckBoxTableCell in TableViewerColumn
我找不到任何在 TableViewerColumn
中使用 CheckBoxTableCell
的示例,如果有人可以为我提供示例实现,我将不胜感激。
我已经有一个显示一些字符串值的工作模型,但我无法将布尔值表示为复选框。
是否可以在 TableViewerColumn 中显示除字符串以外的任何其他内容?
这是一个 example,在 TableViewerColumn
中有一个复选框。它使用图像来表示单元格中的布尔值。
它创建了一个扩展 ViewPart
的自定义视图,其中包含两个用于保存图像的静态字段:
Image CHECKED = Activator.getImageDescriptor("icons/checked.gif").createImage();
Image UNCHECKED = Activator.getImageDescriptor("icons/unchecked.gif").createImage();
然后在 createColumns
方法中 return 其中一张图像取决于布尔值:
col.setLabelProvider(new ColumnLabelProvider() {
@Override
public String getText(Object element) {
return null;
}
@Override
public Image getImage(Object element) {
if (((Person) element).isMarried()) {
return CHECKED;
} else {
return UNCHECKED;
}
}
});
请查看上面给出的link了解更多详情。
如果你想要一个 editable 复选框,你需要为你想要有一个复选框的列创建一个 EditingSupport 对象。
这是一个例子:
public class CheckBoxColumnEditingSupport extends EditingSupport {
private TableViewer tableViewer;
public CheckBoxColumnEditingSupport(TableViewer viewer) {
super(viewer);
this.tableViewer = viewer;
}
@Override
protected CellEditor getCellEditor(Object o) {
return new CheckboxCellEditor(null, SWT.CHECK);
}
@Override
protected boolean canEdit(Object o) {
return true;
}
@Override
protected Object getValue(Object o) {
ORMData ormData = (ORMData) o;
return ormData.isOrmIndicator();
}
@Override
protected void setValue(Object element, Object value) {
ORMData ormData = (ORMData) element;
ormData.setOrmIndicator((Boolean) value);
tableViewer.refresh();
}
}
然后将编辑支持添加到 table 中的特定列:
tableViewerColumn.setEditingSupport(new CheckBoxColumnEditingSupport (myTableViewer));
看到这个turotial on how to use Column Editing Support. Also this detailed post on How to add an editable checkbox at JFace TableViewer
上面描述的解决方案是完全可以的。
但是有一个替代解决方案用于在 TableViewerColumn
中显示复选框,它允许您绘制本机复选框而不是使用您自己的图像。您可以简单地创建一个新的 ColumnLabelProvider
来为您呈现原生图像。
此示例中此替代实现的源代码:
这是我在我的一个项目中使用的代码,其中有一个小的调整,允许组合框居中:
import org.eclipse.jface.resource.JFaceResources;
import org.eclipse.jface.viewers.ColumnViewer;
import org.eclipse.jface.viewers.OwnerDrawLabelProvider;
import org.eclipse.swt.SWT;
import org.eclipse.swt.graphics.GC;
import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.graphics.Point;
import org.eclipse.swt.graphics.Rectangle;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Event;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.TableItem;
/**
* Emulates a native checkbox in a column label provider which is also centered
* on screen. This should also work well, in case the field is editable.
*
* @author Gil Fernandes
*
*/
public abstract class EmulatedNativeCheckBoxLabelProvider extends OwnerDrawLabelProvider {
private static final String CHECKED_KEY = "CHECKED";
private static final String UNCHECK_KEY = "UNCHECKED";
private Image image;
public EmulatedNativeCheckBoxLabelProvider(ColumnViewer viewer) {
if (JFaceResources.getImageRegistry().getDescriptor(CHECKED_KEY) == null) {
Shell shell = viewer.getControl().getShell();
JFaceResources.getImageRegistry().put(UNCHECK_KEY, makeShot(shell, false, viewer));
JFaceResources.getImageRegistry().put(CHECKED_KEY, makeShot(shell, true, viewer));
}
}
private Image makeShot(Shell shell, boolean type, ColumnViewer viewer) {
Shell s = new Shell(shell, SWT.NO_TRIM);
Button b = new Button(s, SWT.CHECK);
b.setSelection(type);
Point bsize = b.computeSize(SWT.DEFAULT, SWT.DEFAULT);
b.setSize(bsize);
b.setLocation(0, 0);
s.setSize(bsize);
s.open();
GC gc = new GC(b);
Image image = new Image(shell.getDisplay(), bsize.x, bsize.y);
gc.copyArea(image, 0, 0);
gc.dispose();
s.close();
return image;
}
public Image getImage(Object element) {
return JFaceResources.getImageRegistry().getDescriptor(isChecked(element) ? CHECKED_KEY : UNCHECK_KEY)
.createImage();
}
@Override
protected void paint(Event event, Object element) {
image = getImage(element);
if (image != null) {
Rectangle bounds = ((TableItem) event.item)
.getBounds(event.index);
Rectangle imgBounds = image.getBounds();
bounds.width /= 2;
bounds.width -= imgBounds.width / 2;
bounds.height /= 2;
bounds.height -= imgBounds.height / 2;
int x = bounds.width > 0 ? bounds.x + bounds.width : bounds.x;
int y = bounds.height > 0 ? bounds.y + bounds.height : bounds.y;
event.gc.drawImage(image, x, y);
}
}
protected abstract boolean isChecked(Object element);
@Override
protected void measure(Event event, Object element) {
}
}
这是它的样子:
然后您可以像这样使用此列标签提供程序:
mappingRoutingColumn.setLabelProvider(new EmulatedNativeCheckBoxLabelProvider(viewer, viewer.getTable(), 2) {
@Override
protected boolean isChecked(Object element) {
return ((MappingTypeData) element).isRouting();
}
});
我找不到任何在 TableViewerColumn
中使用 CheckBoxTableCell
的示例,如果有人可以为我提供示例实现,我将不胜感激。
我已经有一个显示一些字符串值的工作模型,但我无法将布尔值表示为复选框。
是否可以在 TableViewerColumn 中显示除字符串以外的任何其他内容?
这是一个 example,在 TableViewerColumn
中有一个复选框。它使用图像来表示单元格中的布尔值。
它创建了一个扩展 ViewPart
的自定义视图,其中包含两个用于保存图像的静态字段:
Image CHECKED = Activator.getImageDescriptor("icons/checked.gif").createImage();
Image UNCHECKED = Activator.getImageDescriptor("icons/unchecked.gif").createImage();
然后在 createColumns
方法中 return 其中一张图像取决于布尔值:
col.setLabelProvider(new ColumnLabelProvider() {
@Override
public String getText(Object element) {
return null;
}
@Override
public Image getImage(Object element) {
if (((Person) element).isMarried()) {
return CHECKED;
} else {
return UNCHECKED;
}
}
});
请查看上面给出的link了解更多详情。
如果你想要一个 editable 复选框,你需要为你想要有一个复选框的列创建一个 EditingSupport 对象。
这是一个例子:
public class CheckBoxColumnEditingSupport extends EditingSupport {
private TableViewer tableViewer;
public CheckBoxColumnEditingSupport(TableViewer viewer) {
super(viewer);
this.tableViewer = viewer;
}
@Override
protected CellEditor getCellEditor(Object o) {
return new CheckboxCellEditor(null, SWT.CHECK);
}
@Override
protected boolean canEdit(Object o) {
return true;
}
@Override
protected Object getValue(Object o) {
ORMData ormData = (ORMData) o;
return ormData.isOrmIndicator();
}
@Override
protected void setValue(Object element, Object value) {
ORMData ormData = (ORMData) element;
ormData.setOrmIndicator((Boolean) value);
tableViewer.refresh();
}
}
然后将编辑支持添加到 table 中的特定列:
tableViewerColumn.setEditingSupport(new CheckBoxColumnEditingSupport (myTableViewer));
看到这个turotial on how to use Column Editing Support. Also this detailed post on How to add an editable checkbox at JFace TableViewer
上面描述的解决方案是完全可以的。
但是有一个替代解决方案用于在 TableViewerColumn
中显示复选框,它允许您绘制本机复选框而不是使用您自己的图像。您可以简单地创建一个新的 ColumnLabelProvider
来为您呈现原生图像。
此示例中此替代实现的源代码:
这是我在我的一个项目中使用的代码,其中有一个小的调整,允许组合框居中:
import org.eclipse.jface.resource.JFaceResources;
import org.eclipse.jface.viewers.ColumnViewer;
import org.eclipse.jface.viewers.OwnerDrawLabelProvider;
import org.eclipse.swt.SWT;
import org.eclipse.swt.graphics.GC;
import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.graphics.Point;
import org.eclipse.swt.graphics.Rectangle;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Event;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.TableItem;
/**
* Emulates a native checkbox in a column label provider which is also centered
* on screen. This should also work well, in case the field is editable.
*
* @author Gil Fernandes
*
*/
public abstract class EmulatedNativeCheckBoxLabelProvider extends OwnerDrawLabelProvider {
private static final String CHECKED_KEY = "CHECKED";
private static final String UNCHECK_KEY = "UNCHECKED";
private Image image;
public EmulatedNativeCheckBoxLabelProvider(ColumnViewer viewer) {
if (JFaceResources.getImageRegistry().getDescriptor(CHECKED_KEY) == null) {
Shell shell = viewer.getControl().getShell();
JFaceResources.getImageRegistry().put(UNCHECK_KEY, makeShot(shell, false, viewer));
JFaceResources.getImageRegistry().put(CHECKED_KEY, makeShot(shell, true, viewer));
}
}
private Image makeShot(Shell shell, boolean type, ColumnViewer viewer) {
Shell s = new Shell(shell, SWT.NO_TRIM);
Button b = new Button(s, SWT.CHECK);
b.setSelection(type);
Point bsize = b.computeSize(SWT.DEFAULT, SWT.DEFAULT);
b.setSize(bsize);
b.setLocation(0, 0);
s.setSize(bsize);
s.open();
GC gc = new GC(b);
Image image = new Image(shell.getDisplay(), bsize.x, bsize.y);
gc.copyArea(image, 0, 0);
gc.dispose();
s.close();
return image;
}
public Image getImage(Object element) {
return JFaceResources.getImageRegistry().getDescriptor(isChecked(element) ? CHECKED_KEY : UNCHECK_KEY)
.createImage();
}
@Override
protected void paint(Event event, Object element) {
image = getImage(element);
if (image != null) {
Rectangle bounds = ((TableItem) event.item)
.getBounds(event.index);
Rectangle imgBounds = image.getBounds();
bounds.width /= 2;
bounds.width -= imgBounds.width / 2;
bounds.height /= 2;
bounds.height -= imgBounds.height / 2;
int x = bounds.width > 0 ? bounds.x + bounds.width : bounds.x;
int y = bounds.height > 0 ? bounds.y + bounds.height : bounds.y;
event.gc.drawImage(image, x, y);
}
}
protected abstract boolean isChecked(Object element);
@Override
protected void measure(Event event, Object element) {
}
}
这是它的样子:
然后您可以像这样使用此列标签提供程序:
mappingRoutingColumn.setLabelProvider(new EmulatedNativeCheckBoxLabelProvider(viewer, viewer.getTable(), 2) {
@Override
protected boolean isChecked(Object element) {
return ((MappingTypeData) element).isRouting();
}
});