Class ListDialog
- All Implemented Interfaces:
IShellProvider
IStructuredContentProvider to provide the elements and
ILabelProvider to provide their labels.- Since:
- 2.1
-
Nested Class Summary
Nested classes/interfaces inherited from class org.eclipse.jface.window.Window
Window.IExceptionHandler -
Field Summary
Fields inherited from class org.eclipse.jface.dialogs.Dialog
blockedHandler, buttonBar, DIALOG_DEFAULT_BOUNDS, DIALOG_PERSISTLOCATION, DIALOG_PERSISTSIZE, dialogArea, DLG_IMG_ERROR, DLG_IMG_HELP, DLG_IMG_INFO, DLG_IMG_MESSAGE_ERROR, DLG_IMG_MESSAGE_INFO, DLG_IMG_MESSAGE_WARNING, DLG_IMG_QUESTION, DLG_IMG_WARNING, ELLIPSISFields inherited from class org.eclipse.jface.window.Window
CANCEL, OK, resizeHasOccurred -
Constructor Summary
ConstructorsConstructorDescriptionListDialog(Shell parent) Create a new instance of the receiver with parent shell of parent. -
Method Summary
Modifier and TypeMethodDescriptionprotected voidcreateButtonsForButtonBar(Composite parent) Adds buttons to this dialog's button bar.protected ControlcreateDialogArea(Composite container) Creates and returns the contents of the upper part of this dialog (above the button bar).intReturns the initial height of the dialog in number of characters.protected intReturn the style flags for the table viewer.intReturns the initial width of the dialog in number of characters.protected voidNotifies that the ok button of this dialog has been pressed.voidsetAddCancelButton(boolean addCancelButton) voidvoidsetHeightInChars(int heightInChars) Sets the initial height of the dialog in number of characters.voidvoidvoidsetWidthInChars(int widthInChars) Sets the initial width of the dialog in number of characters.Methods inherited from class org.eclipse.ui.dialogs.SelectionDialog
configureShell, createMessageArea, getDialogBoundsSettings, getDialogBoundsStrategy, getInitialElementSelections, getInitialSelections, getMessage, getOkButton, getResult, isResizable, setDialogBoundsSettings, setInitialElementSelections, setInitialSelections, setMessage, setResult, setSelectionResult, setTitleMethods inherited from class org.eclipse.jface.dialogs.TrayDialog
closeTray, createButtonBar, createHelpControl, getLayout, getTray, handleShellCloseEvent, isDialogHelpAvailable, isHelpAvailable, openTray, setDialogHelpAvailable, setHelpAvailableMethods inherited from class org.eclipse.jface.dialogs.Dialog
applyDialogFont, buttonPressed, cancelPressed, close, convertHeightInCharsToPixels, convertHeightInCharsToPixels, convertHorizontalDLUsToPixels, convertHorizontalDLUsToPixels, convertVerticalDLUsToPixels, convertVerticalDLUsToPixels, convertWidthInCharsToPixels, convertWidthInCharsToPixels, create, createButton, createContents, dialogFontIsDefault, getBlockedHandler, getButton, getButtonBar, getCancelButton, getDialogArea, getImage, getInitialLocation, getInitialSize, getOKButton, initializeBounds, initializeDialogUnits, setBlockedHandler, setButtonLayoutData, setButtonLayoutFormData, shortenTextMethods inherited from class org.eclipse.jface.window.Window
canHandleShellCloseEvent, constrainShellSize, createShell, getConstrainedShellBounds, getContents, getDefaultImage, getDefaultImages, getDefaultOrientation, getParentShell, getReturnCode, getShell, getShellListener, getShellStyle, getWindowManager, handleFontChange, open, setBlockOnOpen, setDefaultImage, setDefaultImages, setDefaultModalParent, setDefaultOrientation, setExceptionHandler, setParentShell, setReturnCode, setShellStyle, setWindowManager
-
Constructor Details
-
ListDialog
Create a new instance of the receiver with parent shell of parent.- Parameters:
parent- the parent shell
-
-
Method Details
-
setInput
- Parameters:
input- The input for the list.
-
setContentProvider
- Parameters:
sp- The content provider for the list.
-
setLabelProvider
- Parameters:
lp- The labelProvider for the list.
-
setAddCancelButton
public void setAddCancelButton(boolean addCancelButton) - Parameters:
addCancelButton- iftruethere will be a cancel button.
-
getTableViewer
- Returns:
- the TableViewer for the receiver.
-
createButtonsForButtonBar
Description copied from class:DialogAdds buttons to this dialog's button bar.The
Dialogimplementation of this framework method adds standard ok and cancel buttons using thecreateButtonframework method. These standard buttons will be accessible fromgetCancelButton, andgetOKButton. Subclasses may override.Note: The common button order is: {other buttons}, OK, Cancel. On some platforms,
Dialog.initializeBounds()will move the default button to the right.- Overrides:
createButtonsForButtonBarin classSelectionDialog- Parameters:
parent- the button bar composite
-
createDialogArea
Description copied from class:DialogCreates and returns the contents of the upper part of this dialog (above the button bar).The
Dialogimplementation of this framework method creates and returns a newCompositewith standard margins and spacing.The returned control's layout data must be an instance of
GridData. This method must not modify the parent's layout.Subclasses must override this method but may call
superas in the following example:Composite composite = (Composite) super.createDialogArea(parent); //add controls to composite as necessary return composite;
- Overrides:
createDialogAreain classDialog- Parameters:
container- the parent composite to contain the dialog area- Returns:
- the dialog area control
-
getTableStyle
protected int getTableStyle()Return the style flags for the table viewer.- Returns:
- int
-
okPressed
protected void okPressed()Description copied from class:DialogNotifies that the ok button of this dialog has been pressed.The
Dialogimplementation of this framework method sets this dialog's return code toWindow.OKand closes the dialog. Subclasses may override. -
getHeightInChars
public int getHeightInChars()Returns the initial height of the dialog in number of characters.- Returns:
- the initial height of the dialog in number of characters
-
getWidthInChars
public int getWidthInChars()Returns the initial width of the dialog in number of characters.- Returns:
- the initial width of the dialog in number of characters
-
setHeightInChars
public void setHeightInChars(int heightInChars) Sets the initial height of the dialog in number of characters.- Parameters:
heightInChars- the initialheight of the dialog in number of characters
-
setWidthInChars
public void setWidthInChars(int widthInChars) Sets the initial width of the dialog in number of characters.- Parameters:
widthInChars- the initial width of the dialog in number of characters
-