Class NatCombo
- All Implemented Interfaces:
org.eclipse.swt.graphics.Drawable
- Direct Known Subclasses:
FilterNatCombo
This control supports the ability for multi select in the dropdown of the combo which is not available for the SWT Combo control. This feature was added with Nebula NatTable 1.0.0
The following style bits are supported by this control.
- See Also:
-
(if a border should be added to the Text control)(default for Text control, if this is missing, the Text control can be edited)(if the items in the combo should be showed with checkboxes)(if multi selection is allowed)
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionclassModifyListenerthat is added to the dropdown filter to trigger actions on filtering the dropdown content.classFocusListener that is used to ensure that the Text control and the dropdown table control are sharing the same focus. -
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final IStyleThe IStyle that is used for rendering the Text and the combo control.static final StringDefault String that is used to prefix the generated String representation showed in the text control if multiselect is supported.static final StringString that is used to suffix the generated String representation showed in the text control if multiselect is supported.static final StringDefault String that is used to separate values in the String representation showed in the text control if multiselect is supported.static final intThe default number of visible items on open the combo.protected org.eclipse.swt.widgets.ShellThe Shell containing the dropdown of this NatComboprotected org.eclipse.swt.widgets.TableThe Table control used for the combo component of this NatComboprotected org.eclipse.jface.viewers.TableViewerThe Table control used for the combo component of this NatComboprotected org.eclipse.swt.widgets.TextThe text control allowing filtering of optionsprotected booleanFlag that indicates whether this ComboBoxCellEditor supports free editing in the text control of the NatCombo or not.protected org.eclipse.swt.graphics.ImageThe image that is shown at the right edge of the text control if the NatCombo is opened.The items that are showed within the combo transformed to a java.util.List.protected booleanFlag to configure if a click on the item should update the checkbox state.protected intThe maximum number of visible items of the combo.protected booleanFlag that indicates whether this NatCombo supports multiselect or not.protected StringString that is used to prefix the generated String representation showed in the text control if multiselect is supported.protected StringString that is used to suffix the generated String representation showed in the text control if multiselect is supported.protected StringString that is used to separate values in the String representation showed in the text control if multiselect is supported.Map used to hold the selection state of items in the drop.protected booleanFlag that indicated whether this NatCombo supports filtering of the values in the dropdown controlprotected org.eclipse.swt.widgets.TextThe text control of this NatCombo, allowing to enter values directly.protected booleanFlag that indicates whether checkboxes should be shown for the items in the dropdown.protected final intThe style bits that where set on creation time.Fields inherited from class org.eclipse.swt.widgets.Control
handle -
Constructor Summary
ConstructorsConstructorDescriptionCreates a new NatCombo using the given IStyle for rendering, showing the default number of items at once in the dropdown.NatCombo(org.eclipse.swt.widgets.Composite parent, IStyle cellStyle, int maxVisibleItems, int style) Creates a new NatCombo using the given IStyle for rendering, showing the given amount of items at once in the dropdown.NatCombo(org.eclipse.swt.widgets.Composite parent, IStyle cellStyle, int maxVisibleItems, int style, boolean showDropdownFilter) Creates a new NatCombo using the given IStyle for rendering, showing the given amount of items at once in the dropdown.NatCombo(org.eclipse.swt.widgets.Composite parent, IStyle cellStyle, int maxVisibleItems, int style, boolean showDropdownFilter, boolean linkItemAndCheckbox) Creates a new NatCombo using the given IStyle for rendering, showing the given amount of items at once in the dropdown.NatCombo(org.eclipse.swt.widgets.Composite parent, IStyle cellStyle, int maxVisibleItems, int style, org.eclipse.swt.graphics.Image iconImage) Creates a new NatCombo using the given IStyle for rendering, showing the given amount of items at once in the dropdown.NatCombo(org.eclipse.swt.widgets.Composite parent, IStyle cellStyle, int maxVisibleItems, int style, org.eclipse.swt.graphics.Image iconImage, boolean showDropdownFilter) Creates a new NatCombo using the given IStyle for rendering, showing the given amount of items at once in the dropdown.NatCombo(org.eclipse.swt.widgets.Composite parent, IStyle cellStyle, int maxVisibleItems, int style, org.eclipse.swt.graphics.Image iconImage, boolean showDropdownFilter, boolean linkItemAndCheckbox) Creates a new NatCombo using the given IStyle for rendering, showing the given amount of items at once in the dropdown. -
Method Summary
Modifier and TypeMethodDescriptionvoidaddFocusListener(org.eclipse.swt.events.FocusListener listener) voidaddKeyListener(org.eclipse.swt.events.KeyListener listener) voidaddMouseListener(org.eclipse.swt.events.MouseListener listener) voidaddSelectionListener(org.eclipse.swt.events.SelectionListener listener) voidaddShellListener(org.eclipse.swt.events.ShellListener listener) voidaddTextControlListener(org.eclipse.swt.events.ControlListener listener) voidaddTraverseListener(org.eclipse.swt.events.TraverseListener listener) protected voidprotected voidCalculates the size and location of the Shell that represents the dropdown control of this NatCombo.protected voidCalculates and applies the column width to ensure that the column has the same width as the table itself, so selection is possible for the whole row.protected voidcreateDropdownControl(int style) Create the dropdown control of this NatCombo, adding styles, look&feel and needed listeners for the control only.protected voidcreateTextControl(int style) Creates the Text control of this NatCombo, adding styles, look&feel and needed listeners for the control only.booleanprotected org.eclipse.swt.widgets.TableString[]Returns an array ofStrings that are currently selected in the receiver.intReturns the number of selected items contained in the receiver.intReturns the zero-relative index of the item which is currently selected in the receiver, or -1 if no item is selected.int[]Returns the zero-relative indices of the items which are currently selected in the receiver.protected String[]Will transform the text for the Text control of this NatCombo to an array of Strings.protected String[]Transforms the selection in the Table control dropdown into a String[].protected StringgetTransformedText(String[] values) Transforms the given array of Strings to a text representation that can be added to the text control of this combo.protected StringTransforms the selection of the dropdown to a text representation that can be added to the text control of this combo.protected intCalculates the number of items that should be showed in the dropdown at once.voidHide the dropdown of this NatCombo.booleanvoidnotifyListeners(int eventType, org.eclipse.swt.widgets.Event event) voidremoveFocusListener(org.eclipse.swt.events.FocusListener listener) voidremoveKeyListener(org.eclipse.swt.events.KeyListener listener) voidremoveMouseListener(org.eclipse.swt.events.MouseListener listener) voidremoveSelectionListener(org.eclipse.swt.events.SelectionListener listener) voidremoveShellListener(org.eclipse.swt.events.ShellListener listener) voidremoveTextControlListener(org.eclipse.swt.events.ControlListener listener) voidremoveTraverseListener(org.eclipse.swt.events.TraverseListener listener) voidselect(int index) Selects the item at the given zero-relative index in the receiver's list.voidselect(int[] indices) Selects the items at the given zero-relative indices in the receiver.voidsetDropdownFilterKeyListener(org.eclipse.swt.events.KeyListener listener) Sets aKeyListenerthat should be added to the dropdown filter control.voidsetDropdownFilterModifyListener(org.eclipse.swt.events.ModifyListener listener) Sets aModifyListenerthat should be added to the dropdown filter control.protected voidsetDropdownSelection(String[] selection) Transforms the given String array whose contents represents selected items to a selection that can be handled by the underlying Table control in the dropdown.voidSets the given items to be the items shown in the dropdown of this NatCombo.voidsetMultiselectTextBracket(String multiselectTextPrefix, String multiselectTextSuffix) Set the prefix and suffix that will parenthesize the text that is created out of the selected values if this NatCombo supports multiselection.voidsetMultiselectValueSeparator(String multiselectValueSeparator) voidsetSelection(String[] items) Selects the items at the given zero-relative indices in the receiver.voidShows the dropdown of this NatCombo.voidshowDropdownControl(boolean focusOnText) Shows the dropdown of this NatCombo.voidshowDropdownControl(boolean focusOnText, boolean focusOnFilterBox) Shows the dropdown of this NatCombo.protected voidupdateTextControl(boolean hideDropdown) This method will be called if an item of the dropdown control is selected via mouse click or pressing enter.Methods inherited from class org.eclipse.swt.widgets.Composite
changed, checkSubclass, drawBackground, getBackgroundMode, getChildren, getLayout, getLayoutDeferred, getTabList, isLayoutDeferred, layout, layout, layout, layout, layout, setBackgroundMode, setFocus, setLayout, setLayoutDeferred, setTabListMethods inherited from class org.eclipse.swt.widgets.Scrollable
computeTrim, getClientArea, getHorizontalBar, getScrollbarsMode, getVerticalBarMethods inherited from class org.eclipse.swt.widgets.Control
addControlListener, addDragDetectListener, addGestureListener, addHelpListener, addMenuDetectListener, addMouseMoveListener, addMouseTrackListener, addMouseWheelListener, addPaintListener, addTouchListener, computeSize, computeSize, dragDetect, dragDetect, getAccessible, getBackground, getBackgroundImage, getBorderWidth, getBounds, getCursor, getDragDetect, getEnabled, getFont, getForeground, getLayoutData, getLocation, getMenu, getMonitor, getOrientation, getParent, getRegion, getShell, getSize, getTextDirection, getToolTipText, getTouchEnabled, getVisible, internal_dispose_GC, internal_new_GC, isEnabled, isReparentable, isVisible, moveAbove, moveBelow, pack, pack, print, redraw, redraw, removeControlListener, removeDragDetectListener, removeGestureListener, removeHelpListener, removeMenuDetectListener, removeMouseMoveListener, removeMouseTrackListener, removeMouseWheelListener, removePaintListener, removeTouchListener, requestLayout, setBackground, setBackgroundImage, setBounds, setBounds, setCapture, setCursor, setDragDetect, setEnabled, setFont, setForeground, setLayoutData, setLocation, setLocation, setMenu, setOrientation, setParent, setRedraw, setRegion, setSize, setSize, setTextDirection, setToolTipText, setTouchEnabled, setVisible, toControl, toControl, toDisplay, toDisplay, traverse, traverse, traverse, updateMethods inherited from class org.eclipse.swt.widgets.Widget
addDisposeListener, addListener, checkWidget, dispose, getData, getData, getDisplay, getListeners, getStyle, isAutoDirection, isDisposed, isListening, removeDisposeListener, removeListener, removeListener, reskin, setData, setData, toStringMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface org.eclipse.swt.graphics.Drawable
isAutoScalable
-
Field Details
-
DEFAULT_MULTI_SELECT_VALUE_SEPARATOR
Default String that is used to separate values in the String representation showed in the text control if multiselect is supported.- See Also:
-
DEFAULT_MULTI_SELECT_PREFIX
Default String that is used to prefix the generated String representation showed in the text control if multiselect is supported.- See Also:
-
DEFAULT_MULTI_SELECT_SUFFIX
String that is used to suffix the generated String representation showed in the text control if multiselect is supported.- See Also:
-
DEFAULT_NUM_OF_VISIBLE_ITEMS
public static final int DEFAULT_NUM_OF_VISIBLE_ITEMSThe default number of visible items on open the combo.- See Also:
-
cellStyle
The IStyle that is used for rendering the Text and the combo control. The important configurations used are horizontal alignment, background and foreground color and font. -
maxVisibleItems
protected int maxVisibleItemsThe maximum number of visible items of the combo. Setting this value to -1 will result in always showing all items at once. -
itemList
The items that are showed within the combo transformed to a java.util.List. Needed for indexed operations in the dropdown -
selectionStateMap
Map used to hold the selection state of items in the drop. Needed to maintain state when filtering- Since:
- 1.4
-
filterBox
protected org.eclipse.swt.widgets.Text filterBoxThe text control allowing filtering of options- Since:
- 1.4
-
text
protected org.eclipse.swt.widgets.Text textThe text control of this NatCombo, allowing to enter values directly. -
dropdownShell
protected org.eclipse.swt.widgets.Shell dropdownShellThe Shell containing the dropdown of this NatCombo -
dropdownTable
protected org.eclipse.swt.widgets.Table dropdownTableThe Table control used for the combo component of this NatCombo -
dropdownTableViewer
protected org.eclipse.jface.viewers.TableViewer dropdownTableViewerThe Table control used for the combo component of this NatCombo- Since:
- 1.4
-
iconImage
protected org.eclipse.swt.graphics.Image iconImageThe image that is shown at the right edge of the text control if the NatCombo is opened. -
widgetStyle
protected final int widgetStyleThe style bits that where set on creation time. Needed in case the dropdown shell was disposed and needs to be created again.- Since:
- 2.0 - Renamed from style to widgetStyle to avoid possible confusions with Widget#style.
-
showDropdownFilter
protected boolean showDropdownFilterFlag that indicated whether this NatCombo supports filtering of the values in the dropdown control- Since:
- 1.4
-
freeEdit
protected boolean freeEditFlag that indicates whether this ComboBoxCellEditor supports free editing in the text control of the NatCombo or not. By default free editing is disabled. -
multiselect
protected boolean multiselectFlag that indicates whether this NatCombo supports multiselect or not. By default multiselect is disabled. -
useCheckbox
protected boolean useCheckboxFlag that indicates whether checkboxes should be shown for the items in the dropdown. -
linkItemAndCheckbox
protected boolean linkItemAndCheckboxFlag to configure if a click on the item should update the checkbox state. By default set tofalseto separate item selection via mouse click and checkbox handling.- Since:
- 2.3
-
multiselectValueSeparator
String that is used to separate values in the String representation showed in the text control if multiselect is supported. -
multiselectTextPrefix
String that is used to prefix the generated String representation showed in the text control if multiselect is supported. Needed to visualize the multiselection to the user. -
multiselectTextSuffix
String that is used to suffix the generated String representation showed in the text control if multiselect is supported. Needed to visualize the multiselection to the user.
-
-
Constructor Details
-
NatCombo
Creates a new NatCombo using the given IStyle for rendering, showing the default number of items at once in the dropdown. Creating the NatCombo with this constructor, there is no free edit and no multiple selection enabled.- Parameters:
parent- A widget that will be the parent of this NatCombocellStyle- Style configuration containing horizontal alignment, font, foreground and background color information.style- The style for the Text Control to construct. Uses this style adding internal styles via ConfigRegistry.
-
NatCombo
public NatCombo(org.eclipse.swt.widgets.Composite parent, IStyle cellStyle, int maxVisibleItems, int style) Creates a new NatCombo using the given IStyle for rendering, showing the given amount of items at once in the dropdown. Creating the NatCombo with this constructor, there is no free edit and no multiple selection enabled.- Parameters:
parent- A widget that will be the parent of this NatCombocellStyle- Style configuration containing horizontal alignment, font, foreground and background color information.maxVisibleItems- the max number of items the drop down will show before introducing a scroll bar.style- The style for the Text Control to construct. Uses this style adding internal styles via ConfigRegistry.
-
NatCombo
public NatCombo(org.eclipse.swt.widgets.Composite parent, IStyle cellStyle, int maxVisibleItems, int style, boolean showDropdownFilter) Creates a new NatCombo using the given IStyle for rendering, showing the given amount of items at once in the dropdown. Creating the NatCombo with this constructor, there is no free edit and no multiple selection enabled.- Parameters:
parent- A widget that will be the parent of this NatCombocellStyle- Style configuration containing horizontal alignment, font, foreground and background color information.maxVisibleItems- the max number of items the drop down will show before introducing a scroll bar.style- The style for the Text Control to construct. Uses this style adding internal styles via ConfigRegistry.showDropdownFilter- Flag indicating whether the dropdown filter is displayed- Since:
- 1.4
-
NatCombo
public NatCombo(org.eclipse.swt.widgets.Composite parent, IStyle cellStyle, int maxVisibleItems, int style, boolean showDropdownFilter, boolean linkItemAndCheckbox) Creates a new NatCombo using the given IStyle for rendering, showing the given amount of items at once in the dropdown. Creating the NatCombo with this constructor, there is no free edit and no multiple selection enabled.- Parameters:
parent- A widget that will be the parent of this NatCombocellStyle- Style configuration containing horizontal alignment, font, foreground and background color information.maxVisibleItems- the max number of items the drop down will show before introducing a scroll bar.style- The style for the Text Control to construct. Uses this style adding internal styles via ConfigRegistry.showDropdownFilter- Flag indicating whether the dropdown filter is displayedlinkItemAndCheckbox- Flag indicating if a click on the item in the dropdown should update the checkbox.- Since:
- 2.3
-
NatCombo
public NatCombo(org.eclipse.swt.widgets.Composite parent, IStyle cellStyle, int maxVisibleItems, int style, org.eclipse.swt.graphics.Image iconImage) Creates a new NatCombo using the given IStyle for rendering, showing the given amount of items at once in the dropdown.- Parameters:
parent- A widget that will be the parent of this NatCombocellStyle- Style configuration containing horizontal alignment, font, foreground and background color information.maxVisibleItems- the max number of items the drop down will show before introducing a scroll bar.style- The style for theTextControl to construct. Uses this style adding internal styles via ConfigRegistry.iconImage- The image to use as overlay to theTextControl if the dropdown is visible. Using this image will indicate that the control is an open combo to the user.
-
NatCombo
public NatCombo(org.eclipse.swt.widgets.Composite parent, IStyle cellStyle, int maxVisibleItems, int style, org.eclipse.swt.graphics.Image iconImage, boolean showDropdownFilter) Creates a new NatCombo using the given IStyle for rendering, showing the given amount of items at once in the dropdown.- Parameters:
parent- A widget that will be the parent of this NatCombocellStyle- Style configuration containing horizontal alignment, font, foreground and background color information.maxVisibleItems- the max number of items the drop down will show before introducing a scroll bar.style- The style for theTextControl to construct. Uses this style adding internal styles via ConfigRegistry.iconImage- The image to use as overlay to theTextControl if the dropdown is visible. Using this image will indicate that the control is an open combo to the user.showDropdownFilter- Flag indicating whether the dropdown filter is displayed.- Since:
- 1.4
-
NatCombo
public NatCombo(org.eclipse.swt.widgets.Composite parent, IStyle cellStyle, int maxVisibleItems, int style, org.eclipse.swt.graphics.Image iconImage, boolean showDropdownFilter, boolean linkItemAndCheckbox) Creates a new NatCombo using the given IStyle for rendering, showing the given amount of items at once in the dropdown.- Parameters:
parent- A widget that will be the parent of this NatCombocellStyle- Style configuration containing horizontal alignment, font, foreground and background color information.maxVisibleItems- the max number of items the drop down will show before introducing a scroll bar.style- The style for theTextControl to construct. Uses this style adding internal styles via ConfigRegistry.iconImage- The image to use as overlay to theTextControl if the dropdown is visible. Using this image will indicate that the control is an open combo to the user.showDropdownFilter- Flag indicating whether the dropdown filter is displayed.linkItemAndCheckbox- Flag indicating if a click on the item in the dropdown should update the checkbox.- Since:
- 2.3
-
-
Method Details
-
setItems
Sets the given items to be the items shown in the dropdown of this NatCombo.- Parameters:
items- The array of items to set.
-
createTextControl
protected void createTextControl(int style) Creates the Text control of this NatCombo, adding styles, look&feel and needed listeners for the control only.- Parameters:
style- The style for the Text Control to construct. Uses this style adding internal styles via ConfigRegistry.
-
createDropdownControl
protected void createDropdownControl(int style) Create the dropdown control of this NatCombo, adding styles, look&feel and needed listeners for the control only.- Parameters:
style- The style for the Table Control to construct. Uses this style adding internal styles via ConfigRegistry.
-
updateTextControl
protected void updateTextControl(boolean hideDropdown) This method will be called if an item of the dropdown control is selected via mouse click or pressing enter. It will populate the text control with the information gathered out of the selection in the dropdown control and hide the dropdown if necessary.- Parameters:
hideDropdown-trueif the dropdown should be hidden after updating the text control
-
showDropdownControl
public void showDropdownControl()Shows the dropdown of this NatCombo. Will always calculate the size of the dropdown regarding the current size of the Text control. -
showDropdownControl
public void showDropdownControl(boolean focusOnText) Shows the dropdown of this NatCombo. Will always calculate the size of the dropdown regarding the current size of the Text control.- Parameters:
focusOnText-trueif the focus should be set to the text control instead of the dropdown after opening the dropdown.
-
showDropdownControl
public void showDropdownControl(boolean focusOnText, boolean focusOnFilterBox) Shows the dropdown of this NatCombo. Will always calculate the size of the dropdown regarding the current size of the Text control.- Parameters:
focusOnText-trueif the focus should be set to the text control instead of the dropdown after opening the dropdown.focusOnFilterBox-trueif the focus should be set to the filterbox control instead of the dropdown after opening the dropdown. Has only an effect ifshowDropdownFilteristrueand thefocusOnTextparameter is set tofalse.- Since:
- 2.3
-
getDropdownTable
protected org.eclipse.swt.widgets.Table getDropdownTable()- Returns:
- The
Tablecontrol that is used in the dropdown. Will be created if it does not exist yet. - Since:
- 1.5
-
hideDropdownControl
public void hideDropdownControl()Hide the dropdown of this NatCombo. -
getVisibleItemCount
protected int getVisibleItemCount()Calculates the number of items that should be showed in the dropdown at once. It is needed to calculate the height of the dropdown. If maxVisibleItems is configured -1, this method always returns the number of items in the list. Otherwise if will return the configured maximum number of items to be visible at once or less if there are less than the configured maximum.- Returns:
- the number of items that should be showed in the dropdown at once.
-
calculateBounds
protected void calculateBounds()Calculates the size and location of the Shell that represents the dropdown control of this NatCombo. Size and location will be calculated dependent the position and size of the corresponding Text control and the information showed in the dropdown. -
calculateColumnWidth
protected void calculateColumnWidth()Calculates and applies the column width to ensure that the column has the same width as the table itself, so selection is possible for the whole row. -
getSelectionIndex
public int getSelectionIndex()Returns the zero-relative index of the item which is currently selected in the receiver, or -1 if no item is selected.Note that this only returns useful results if this NatCombo supports single selection or only one item is selected.
- Returns:
- the index of the selected item or -1
-
getSelectionIndices
public int[] getSelectionIndices()Returns the zero-relative indices of the items which are currently selected in the receiver. The order of the indices is unspecified. The array is empty if no items are selected.Note: This is not the actual structure used by the receiver to maintain its selection, so modifying the array will not affect the receiver.
- Returns:
- the array of indices of the selected items
-
getSelectionCount
public int getSelectionCount()Returns the number of selected items contained in the receiver.- Returns:
- the number of selected items
-
getSelection
Returns an array ofStrings that are currently selected in the receiver. The order of the items is unspecified. An empty array indicates that no items are selected.Note: This is not the actual structure used by the receiver to maintain its selection, so modifying the array will not affect the receiver.
- Returns:
- an array representing the selection
-
setSelection
Selects the items at the given zero-relative indices in the receiver. The current selection is cleared before the new items are selected.Indices that are out of range and duplicate indices are ignored. If the receiver is single-select and multiple indices are specified, then all indices are ignored.
The text control of this NatCombo will also be updated with the new selected values.
- Parameters:
items- the items to select
-
select
public void select(int index) Selects the item at the given zero-relative index in the receiver's list. If the item at the index was already selected, it remains selected. Indices that are out of range are ignored.- Parameters:
index- the index of the item to select
-
select
public void select(int[] indices) Selects the items at the given zero-relative indices in the receiver. The current selection is not cleared before the new items are selected.If the item at a given index is not selected, it is selected. If the item at a given index was already selected, it remains selected. Indices that are out of range and duplicate indices are ignored. If the receiver is single-select and multiple indices are specified, then all indices are ignored.
- Parameters:
indices- the array of indices for the items to select
-
applyDropdownListener
protected void applyDropdownListener()- Since:
- 1.5
-
addKeyListener
public void addKeyListener(org.eclipse.swt.events.KeyListener listener) - Overrides:
addKeyListenerin classorg.eclipse.swt.widgets.Control
-
removeKeyListener
public void removeKeyListener(org.eclipse.swt.events.KeyListener listener) - Overrides:
removeKeyListenerin classorg.eclipse.swt.widgets.Control
-
addTraverseListener
public void addTraverseListener(org.eclipse.swt.events.TraverseListener listener) - Overrides:
addTraverseListenerin classorg.eclipse.swt.widgets.Control
-
removeTraverseListener
public void removeTraverseListener(org.eclipse.swt.events.TraverseListener listener) - Overrides:
removeTraverseListenerin classorg.eclipse.swt.widgets.Control
-
addMouseListener
public void addMouseListener(org.eclipse.swt.events.MouseListener listener) - Overrides:
addMouseListenerin classorg.eclipse.swt.widgets.Control
-
removeMouseListener
public void removeMouseListener(org.eclipse.swt.events.MouseListener listener) - Overrides:
removeMouseListenerin classorg.eclipse.swt.widgets.Control
-
notifyListeners
public void notifyListeners(int eventType, org.eclipse.swt.widgets.Event event) - Overrides:
notifyListenersin classorg.eclipse.swt.widgets.Widget
-
addSelectionListener
public void addSelectionListener(org.eclipse.swt.events.SelectionListener listener) -
removeSelectionListener
public void removeSelectionListener(org.eclipse.swt.events.SelectionListener listener) -
addShellListener
public void addShellListener(org.eclipse.swt.events.ShellListener listener) -
removeShellListener
public void removeShellListener(org.eclipse.swt.events.ShellListener listener) -
addTextControlListener
public void addTextControlListener(org.eclipse.swt.events.ControlListener listener) -
removeTextControlListener
public void removeTextControlListener(org.eclipse.swt.events.ControlListener listener) -
isFocusControl
public boolean isFocusControl()- Overrides:
isFocusControlin classorg.eclipse.swt.widgets.Control
-
forceFocus
public boolean forceFocus()- Overrides:
forceFocusin classorg.eclipse.swt.widgets.Control
-
addFocusListener
public void addFocusListener(org.eclipse.swt.events.FocusListener listener) - Overrides:
addFocusListenerin classorg.eclipse.swt.widgets.Control
-
removeFocusListener
public void removeFocusListener(org.eclipse.swt.events.FocusListener listener) - Overrides:
removeFocusListenerin classorg.eclipse.swt.widgets.Control
-
getTransformedSelection
Transforms the selection in the Table control dropdown into a String[]. Doing this is necessary to provide a SWT List like interface regarding selections for the NatCombo.- Returns:
- Array containing all selected TableItem text attributes
-
setDropdownSelection
Transforms the given String array whose contents represents selected items to a selection that can be handled by the underlying Table control in the dropdown.- Parameters:
selection- The Strings that represent the selected items
-
getTextAsArray
Will transform the text for the Text control of this NatCombo to an array of Strings. This is necessary for the multiselect feature.Note that by default the multiselect String is specified to show with enclosing [] brackets and values separated by ", ". If you need to change this you need to set the corresponding values in this NatCombo.
- Returns:
- The text for the Text control of this NatCombo converted to an array of Strings.
-
getTransformedTextForSelection
Transforms the selection of the dropdown to a text representation that can be added to the text control of this combo.Note that by default the multiselect String is specified to show with enclosing [] brackets and values separated by ", ". If you need to change this you need to set the corresponding values in this NatCombo.
- Returns:
- String representation for the selection within the combo.
-
getTransformedText
Transforms the given array of Strings to a text representation that can be added to the text control of this combo.If this NatCombo is only configured to support single selection, than only the first value in the array will be processed. Otherwise the result will be processed by concatenating the values.
Note that by default the multiselect String is specified to show with enclosing [] brackets and values separated by ", ". If you need to change this you need to set the corresponding values in this NatCombo.
- Parameters:
values- The values to build the text representation from.- Returns:
- String representation for the selection within the combo.
-
setMultiselectValueSeparator
- Parameters:
multiselectValueSeparator- String that should be used to separate values in the String representation showed in the text control if multiselect is supported.nullto use the default value separator.- See Also:
-
setMultiselectTextBracket
Set the prefix and suffix that will parenthesize the text that is created out of the selected values if this NatCombo supports multiselection.- Parameters:
multiselectTextPrefix- String that should be used to prefix the generated String representation showed in the text control if multiselect is supported.nullto use the default prefix.multiselectTextSuffix- String that should be used to suffix the generated String representation showed in the text control if multiselect is supported.nullto use the default suffix.- See Also:
-
setDropdownFilterModifyListener
public void setDropdownFilterModifyListener(org.eclipse.swt.events.ModifyListener listener) Sets aModifyListenerthat should be added to the dropdown filter control. Should extendNatCombo.DropDownFilterModifyListenerso the necessary actions for updating the dropdown on filtering is executed.- Parameters:
listener-ModifyListenerthat should be added to the dropdown filter to trigger actions on filtering the dropdown content.- Since:
- 2.1
- See Also:
-
setDropdownFilterKeyListener
public void setDropdownFilterKeyListener(org.eclipse.swt.events.KeyListener listener) Sets aKeyListenerthat should be added to the dropdown filter control.- Parameters:
listener-KeyListenerthat should be added to the dropdown filter control.- Since:
- 2.1
- See Also:
-