PopupList

A PopupList is a list of selectable items that appears in its own shell positioned above its parent shell. It is used for selecting items when editing a Table cell (similar to the list that appears when you open a Combo box).

The list will be positioned so that it does not run off the screen and the largest number of items are visible. It may appear above the current cursor location or below it depending how close you are to the edge of the screen.

@see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>

Constructors

this
this(Shell parent)

Creates a PopupList above the specified shell.

this
this(Shell parent, int style)

Creates a PopupList above the specified shell.

Members

Functions

getFont
Font getFont()

Gets the widget font. <p> @return the widget font

getItems
String[] getItems()

Gets the items. <p> This operation will fail if the items cannot be queried from the OS.

getMinimumWidth
int getMinimumWidth()

Gets the minimum width of the list.

open
String open(Rectangle rect)

Launches the Popup List, waits for an item to be selected and then closes the PopupList.

select
void select(String string)

Selects an item with text that starts with specified String. <p> If the item is not currently selected, it is selected. If the item at an index is selected, it remains selected. If the string is not matched, it is ignored.

setFont
void setFont(Font font)

Sets the widget font. <p> When new font is null, the font reverts to the default system font for the widget.

setItems
void setItems(String[] strings)

Sets all items. <p> The previous selection is cleared. The previous items are deleted. The new items are added. The top index is set to 0.

setMinimumWidth
void setMinimumWidth(int width)

Sets the minimum width of the list.

Variables

list
List list;
Undocumented in source.
minimumWidth
int minimumWidth;
Undocumented in source.
shell
Shell shell;
Undocumented in source.

Meta