public class TextCellEditor extends CellEditor
This class may be instantiated or subclassed.
CellEditor.LayoutData
Modifier and Type | Field and Description |
---|---|
protected Text |
text
The text control; initially
null . |
COPY, CUT, DELETE, FIND, PASTE, REDO, SELECT_ALL, UNDO
Constructor and Description |
---|
TextCellEditor()
Creates a new text string cell editor with no control
The cell editor value is the string itself, which is initially the empty
string.
|
TextCellEditor(Composite parent)
Creates a new text string cell editor parented under the given control.
|
TextCellEditor(Composite parent,
int style)
Creates a new text string cell editor parented under the given control.
|
Modifier and Type | Method and Description |
---|---|
protected Control |
createControl(Composite parent)
Creates the control for this cell editor under the given parent control.
|
protected boolean |
dependsOnExternalFocusListener()
This implementation of
CellEditor.dependsOnExternalFocusListener() returns false if the
current instance's class is TextCellEditor, and true otherwise. |
protected Object |
doGetValue()
The
TextCellEditor implementation of
this CellEditor framework method returns
the text string. |
protected void |
doSetFocus()
Sets the focus to the cell editor's control.
|
protected void |
doSetValue(Object value)
The
TextCellEditor implementation of
this CellEditor framework method accepts
a text string (type String ). |
protected void |
editOccured(ModifyEvent e)
Processes a modify event that occurred in this text cell editor.
|
CellEditor.LayoutData |
getLayoutData()
Since a text editor field is scrollable we don't
set a minimumSize.
|
protected void |
handleDefaultSelection(SelectionEvent event)
Handles a default selection event from the text control by applying the editor
value and deactivating this cell editor.
|
boolean |
isCopyEnabled()
The
TextCellEditor implementation of this
CellEditor method returns true if
the current selection is not empty. |
boolean |
isCutEnabled()
The
TextCellEditor implementation of this
CellEditor method returns true if
the current selection is not empty. |
boolean |
isDeleteEnabled()
The
TextCellEditor implementation of this
CellEditor method returns true
if there is a selection or if the caret is not positioned
at the end of the text. |
boolean |
isPasteEnabled()
The
TextCellEditor implementation of this
CellEditor method always returns true . |
boolean |
isSaveAllEnabled()
Check if save all is enabled
|
boolean |
isSelectAllEnabled()
Returns
true if this cell editor is
able to perform the select all action. |
protected void |
keyReleaseOccured(KeyEvent keyEvent)
Processes a key release event that occurred in this cell editor.
|
void |
performCopy()
The
TextCellEditor implementation of this
CellEditor method copies the
current selection to the clipboard. |
void |
performCut()
The
TextCellEditor implementation of this
CellEditor method cuts the
current selection to the clipboard. |
void |
performDelete()
The
TextCellEditor implementation of this
CellEditor method deletes the
current selection or, if there is no selection,
the character next character from the current position. |
void |
performPaste()
The
TextCellEditor implementation of this
CellEditor method pastes the
the clipboard contents over the current selection. |
void |
performSelectAll()
The
TextCellEditor implementation of this
CellEditor method selects all of the
current text. |
activate, activate, addListener, addPropertyChangeListener, create, deactivate, deactivate, dispose, fireApplyEditorValue, fireCancelEditor, fireEditorValueChanged, fireEnablementChanged, focusLost, getControl, getDoubleClickTimeout, getErrorMessage, getStyle, getValidator, getValue, isActivated, isCorrect, isDirty, isFindEnabled, isRedoEnabled, isUndoEnabled, isValueValid, markDirty, performFind, performRedo, performUndo, removeListener, removePropertyChangeListener, setErrorMessage, setFocus, setStyle, setValidator, setValue, setValueValid, valueChanged
protected Text text
null
.public TextCellEditor()
public TextCellEditor(Composite parent)
parent
- the parent controlpublic TextCellEditor(Composite parent, int style)
parent
- the parent controlstyle
- the style bitsprotected Control createControl(Composite parent)
CellEditor
This framework method must be implemented by concrete subclasses.
createControl
in class CellEditor
parent
- the parent controlnull
if this cell editor has
no controlprotected Object doGetValue()
TextCellEditor
implementation of
this CellEditor
framework method returns
the text string.doGetValue
in class CellEditor
CellEditor.getValue()
protected void doSetFocus()
CellEditor
This framework method must be implemented by concrete subclasses.
doSetFocus
in class CellEditor
CellEditor.setFocus()
protected void doSetValue(Object value)
TextCellEditor
implementation of
this CellEditor
framework method accepts
a text string (type String
).doSetValue
in class CellEditor
value
- a text string (type String
)CellEditor.setValue(java.lang.Object)
protected void editOccured(ModifyEvent e)
fireEditorValueChanged
.
Subclasses should call this method at appropriate times. Subclasses
may extend or reimplement.e
- the SWT modify eventpublic CellEditor.LayoutData getLayoutData()
getLayoutData
in class CellEditor
protected void handleDefaultSelection(SelectionEvent event)
event
- the selection eventpublic boolean isCopyEnabled()
TextCellEditor
implementation of this
CellEditor
method returns true
if
the current selection is not empty.isCopyEnabled
in class CellEditor
true
if copy is possible, false
otherwisepublic boolean isCutEnabled()
TextCellEditor
implementation of this
CellEditor
method returns true
if
the current selection is not empty.isCutEnabled
in class CellEditor
true
if cut is possible, false
otherwisepublic boolean isDeleteEnabled()
TextCellEditor
implementation of this
CellEditor
method returns true
if there is a selection or if the caret is not positioned
at the end of the text.isDeleteEnabled
in class CellEditor
true
if delete is possible, false
otherwisepublic boolean isPasteEnabled()
TextCellEditor
implementation of this
CellEditor
method always returns true
.isPasteEnabled
in class CellEditor
true
if paste is possible, false
otherwisepublic boolean isSaveAllEnabled()
public boolean isSelectAllEnabled()
true
if this cell editor is
able to perform the select all action.
This default implementation always returns
false
.
Subclasses may override
isSelectAllEnabled
in class CellEditor
true
if select all is possible,
false
otherwiseprotected void keyReleaseOccured(KeyEvent keyEvent)
The TextCellEditor
implementation of this framework method
ignores when the RETURN key is pressed since this is handled in
handleDefaultSelection
.
An exception is made for Ctrl+Enter for multi-line texts, since
a default selection event is not sent in this case.
keyReleaseOccured
in class CellEditor
keyEvent
- the key eventpublic void performCopy()
TextCellEditor
implementation of this
CellEditor
method copies the
current selection to the clipboard.performCopy
in class CellEditor
public void performCut()
TextCellEditor
implementation of this
CellEditor
method cuts the
current selection to the clipboard.performCut
in class CellEditor
public void performDelete()
TextCellEditor
implementation of this
CellEditor
method deletes the
current selection or, if there is no selection,
the character next character from the current position.performDelete
in class CellEditor
public void performPaste()
TextCellEditor
implementation of this
CellEditor
method pastes the
the clipboard contents over the current selection.performPaste
in class CellEditor
public void performSelectAll()
TextCellEditor
implementation of this
CellEditor
method selects all of the
current text.performSelectAll
in class CellEditor
protected boolean dependsOnExternalFocusListener()
CellEditor.dependsOnExternalFocusListener()
returns false if the
current instance's class is TextCellEditor, and true otherwise.
Subclasses that hook their own focus listener should override this method
and return false. See also bug 58777.dependsOnExternalFocusListener
in class CellEditor
true
to indicate that a focus listener has to be
attached
Copyright (c) 2000, 2018 Eclipse Contributors and others. All rights reserved.Guidelines for using Eclipse APIs.