TableTreeEditor

A TableTreeEditor is a manager for a Control that appears above a cell in a TableTree and tracks with the moving and resizing of that cell. It can be used to display a text widget above a cell in a TableTree so that the user can edit the contents of that cell. It can also be used to display a button that can launch a dialog for modifying the contents of the associated cell.

<p> Here is an example of using a TableTreeEditor: <code><pre> final TableTree tableTree = new TableTree(shell, SWT.FULL_SELECTION | SWT.HIDE_SELECTION); final Table table = tableTree.getTable(); TableColumn column1 = new TableColumn(table, SWT.NONE); TableColumn column2 = new TableColumn(table, SWT.NONE); for (int i = 0; i &lt; 10; i++) { TableTreeItem item = new TableTreeItem(tableTree, SWT.NONE); item.setText(0, "item " + i); item.setText(1, "edit this value"); for (int j = 0; j &lt; 3; j++) { TableTreeItem subitem = new TableTreeItem(item, SWT.NONE); subitem.setText(0, "subitem " + i + " " + j); subitem.setText(1, "edit this value"); } } column1.setWidth(100); column2.pack();

final TableTreeEditor editor = new TableTreeEditor(tableTree); //The editor must have the same size as the cell and must //not be any smaller than 50 pixels. editor.horizontalAlignment = SWT.LEFT; editor.grabHorizontal = true; editor.minimumWidth = 50; // editing the second column final int EDITABLECOLUMN = 1;

tableTree.addSelectionListener(new SelectionAdapter() { public void widgetSelected(SelectionEvent e) { // Clean up any previous editor control Control oldEditor = editor.getEditor(); if (oldEditor !is null) oldEditor.dispose();

// Identify the selected row TableTreeItem item = (TableTreeItem)e.item; if (item is null) return;

// The control that will be the editor must be a child of the Table Text newEditor = new Text(table, SWT.NONE); newEditor.setText(item.getText(EDITABLECOLUMN)); newEditor.addModifyListener(new ModifyListener() { public void modifyText(ModifyEvent e) { Text text = (Text)editor.getEditor(); editor.getItem().setText(EDITABLECOLUMN, text.getText()); } }); newEditor.selectAll(); newEditor.setFocus(); editor.setEditor(newEditor, item, EDITABLECOLUMN); } }); </pre></code>

@deprecated As of 3.1 use TreeEditor with Tree, TreeItem and TreeColumn

Constructors

this
this(TableTree tableTree)

Creates a TableTreeEditor for the specified TableTree.

Members

Aliases

setEditor
alias setEditor = ControlEditor.setEditor
Undocumented in source.
setEditor
alias setEditor = ControlEditor.setEditor

Specify the Control that is to be displayed and the cell in the table that it is to be positioned above.

Functions

computeBounds
Rectangle computeBounds()
Undocumented in source. Be warned that the author may not have intended to support it.
dispose
void dispose()

Removes all associations between the TableTreeEditor and the cell in the table tree. The TableTree and the editor Control are <b>not</b> disposed.

getColumn
int getColumn()

Returns the zero based index of the column of the cell being tracked by this editor.

getItem
TableTreeItem getItem()

Returns the TableTreeItem for the row of the cell being tracked by this editor.

layout
void layout()
Undocumented in source. Be warned that the author may not have intended to support it.
setColumn
void setColumn(int column)
Undocumented in source. Be warned that the author may not have intended to support it.
setEditor
void setEditor(Control editor, TableTreeItem item, int column)
Undocumented in source. Be warned that the author may not have intended to support it.
setItem
void setItem(TableTreeItem item)
Undocumented in source. Be warned that the author may not have intended to support it.

Variables

column
int column;
Undocumented in source.
columnListener
ControlListener columnListener;
Undocumented in source.
item
TableTreeItem item;
Undocumented in source.
tableTree
TableTree tableTree;
Undocumented in source.
treeListener
TreeListener treeListener;
Undocumented in source.

Inherited Members

From ControlEditor

horizontalAlignment
int horizontalAlignment;

Specifies how the editor should be aligned relative to the control. Allowed values are SWT.LEFT, SWT.RIGHT and SWT.CENTER. The default value is SWT.CENTER.

grabHorizontal
bool grabHorizontal;

Specifies whether the editor should be sized to use the entire width of the control. True means resize the editor to the same width as the cell. False means do not adjust the width of the editor. The default value is false.

minimumWidth
int minimumWidth;

Specifies the minimum width the editor can have. This is used in association with a true value of grabHorizontal. If the cell becomes smaller than the minimumWidth, the editor will not made smaller than the minimum width value. The default value is 0.

verticalAlignment
int verticalAlignment;

Specifies how the editor should be aligned relative to the control. Allowed values are SWT.TOP, SWT.BOTTOM and SWT.CENTER. The default value is SWT.CENTER.

grabVertical
bool grabVertical;

Specifies whether the editor should be sized to use the entire height of the control. True means resize the editor to the same height as the underlying control. False means do not adjust the height of the editor. The default value is false.

minimumHeight
int minimumHeight;

Specifies the minimum height the editor can have. This is used in association with a true value of grabVertical. If the control becomes smaller than the minimumHeight, the editor will not made smaller than the minimum height value. The default value is 0.

parent
Composite parent;
Undocumented in source.
editor
Control editor;
Undocumented in source.
computeBounds
Rectangle computeBounds()
Undocumented in source. Be warned that the author may not have intended to support it.
dispose
void dispose()

Removes all associations between the Editor and the underlying composite. The composite and the editor Control are <b>not</b> disposed.

getEditor
Control getEditor()

Returns the Control that is displayed above the composite being edited.

layout
void layout()

Lays out the control within the underlying composite. This method should be called after changing one or more fields to force the Editor to resize.

scroll
void scroll(Event e)
Undocumented in source. Be warned that the author may not have intended to support it.
setEditor
void setEditor(Control editor)

Specify the Control that is to be displayed.

Meta