Overview

 
Package  Use  Tree  Deprecated  Index  Help 
Eclipse Platform
Release 3.0
 PREV CLASS   NEXT CLASS FRAMES    NO FRAMES  
SUMMARY: NESTED | FIELD | CONSTR | METHOD DETAIL: FIELD | CONSTR | METHOD


 

org.eclipse.jface.dialogs
Class MessageDialogWithToggle

java.lang.Object
  extended byorg.eclipse.jface.window.Window
      extended byorg.eclipse.jface.dialogs.Dialog
          extended byorg.eclipse.jface.dialogs.IconAndMessageDialog
              extended byorg.eclipse.jface.dialogs.MessageDialog
                  extended byorg.eclipse.jface.dialogs.MessageDialogWithToggle


public class MessageDialogWithToggle
extends MessageDialog

A message dialog which also allows the user to adjust a toggle setting. If a preference store is provided and the user selects the toggle, then the user's answer (yes/ok or no) will be persisted in the store. If no store is provided, then this information can be queried after the dialog closes.

This type of dialog should be used whenever you want to user to be able to avoid being prompted in the future. It is strongly recommended that a cancel option be provided, so that the user has the option of making the decision at a later point in time. The semantic for a cancel button should be to cancel the operation (if it has not yet started), or stop the operation (if it has already started).

It is the responsibility of the developer to provide a mechanism for the user to change this preference at some later point in time (e.g., through a preference page).

Since:
3.0


Nested Class Summary
 
Nested classes inherited from class org.eclipse.jface.window.Window
Window.IExceptionHandler
 
Field Summary
static String ALWAYS
          The value of the preference when the user has asked that the answer to the question always be "okay" or "yes".
static String NEVER
          The value of the preference when the user has asked that the answer to the question always be "no".
static String PROMPT
          The value of the preference when the user wishes to prompted for an answer every time the question is to be asked.
 
Fields inherited from class org.eclipse.jface.dialogs.MessageDialog
ERROR, INFORMATION, NONE, QUESTION, WARNING
 
Fields inherited from class org.eclipse.jface.dialogs.IconAndMessageDialog
imageLabel, message, messageLabel
 
Fields inherited from class org.eclipse.jface.dialogs.Dialog
blockedHandler, buttonBar, dialogArea, DLG_IMG_ERROR, DLG_IMG_INFO, DLG_IMG_MESSAGE_ERROR, DLG_IMG_MESSAGE_INFO, DLG_IMG_MESSAGE_WARNING, DLG_IMG_QUESTION, DLG_IMG_WARNING, ELLIPSIS
 
Fields inherited from class org.eclipse.jface.window.Window
CANCEL, OK
 
Constructor Summary
MessageDialogWithToggle(Shell parentShell, String dialogTitle, Image image, String message, int dialogImageType, String[] dialogButtonLabels, int defaultIndex, String toggleMessage, boolean toggleState)
          Creates a message dialog with a toggle.
 
Method Summary
protected  void buttonPressed(int buttonId)
          Notifies that this dialog's button with the given id has been pressed.
protected  void createButtonsForButtonBar(Composite parent)
          Adds buttons to this dialog's button bar.
protected  Control createDialogArea(Composite parent)
          This implementation of the Dialog framework method creates and lays out a composite and calls createMessageArea and createCustomArea to populate it.
protected  Button createToggleButton(Composite parent)
          Creates a toggle button without any text or state.
 String getPrefKey()
          An accessor for the current key of the toggle preference.
 IPreferenceStore getPrefStore()
          An accessor for the current preference store for this dialog.
protected  Button getToggleButton()
          Returns the toggle button.
 boolean getToggleState()
          Returns the toggle state.
static MessageDialogWithToggle openError(Shell parent, String title, String message, String toggleMessage, boolean toggleState, IPreferenceStore store, String key)
          Convenience method to open a standard error dialog.
static MessageDialogWithToggle openInformation(Shell parent, String title, String message, String toggleMessage, boolean toggleState, IPreferenceStore store, String key)
          Convenience method to open a standard information dialog.
static MessageDialogWithToggle openOkCancelConfirm(Shell parent, String title, String message, String toggleMessage, boolean toggleState, IPreferenceStore store, String key)
          Convenience method to open a simple confirm (OK/Cancel) dialog.
static MessageDialogWithToggle openWarning(Shell parent, String title, String message, String toggleMessage, boolean toggleState, IPreferenceStore store, String key)
          Convenience method to open a standard warning dialog.
static MessageDialogWithToggle openYesNoCancelQuestion(Shell parent, String title, String message, String toggleMessage, boolean toggleState, IPreferenceStore store, String key)
          Convenience method to open a simple question Yes/No/Cancel dialog.
static MessageDialogWithToggle openYesNoQuestion(Shell parent, String title, String message, String toggleMessage, boolean toggleState, IPreferenceStore store, String key)
          Convenience method to open a simple Yes/No question dialog.
 void setPrefKey(String prefKey)
          A mutator for the key of the preference to be modified by the toggle button.
 void setPrefStore(IPreferenceStore prefStore)
          A mutator for the preference store to be modified by the toggle button.
protected  void setToggleButton(Button button)
          A mutator for the button providing the toggle option.
protected  void setToggleMessage(String message)
          A mutator for the text on the toggle button.
 void setToggleState(boolean toggleState)
          A mutator for the state of the toggle button.
 
Methods inherited from class org.eclipse.jface.dialogs.MessageDialog
configureShell, createButton, createCustomArea, customShouldTakeFocus, getButton, getButtonLabels, getDefaultButtonIndex, getImage, getMinimumMessageWidth, handleShellCloseEvent, openConfirm, openError, openInformation, openQuestion, openWarning, setButtonLabels, setButtons
 
Methods inherited from class org.eclipse.jface.dialogs.IconAndMessageDialog
createButtonBar, createContents, createDialogAndButtonArea, createMessageArea, getErrorImage, getInfoImage, getMessageLabelStyle, getQuestionImage, getWarningImage
 
Methods inherited from class org.eclipse.jface.dialogs.Dialog
applyDialogFont, cancelPressed, close, convertHeightInCharsToPixels, convertHeightInCharsToPixels, convertHorizontalDLUsToPixels, convertHorizontalDLUsToPixels, convertVerticalDLUsToPixels, convertVerticalDLUsToPixels, convertWidthInCharsToPixels, convertWidthInCharsToPixels, create, dialogFontIsDefault, getBlockedHandler, getButtonBar, getCancelButton, getDialogArea, getImage, getOKButton, initializeBounds, initializeDialogUnits, okPressed, setBlockedHandler, setButtonLayoutData, setButtonLayoutFormData, shortenText
 
Methods inherited from class org.eclipse.jface.window.Window
canHandleShellCloseEvent, constrainShellSize, createShell, getConstrainedShellBounds, getContents, getDefaultImage, getDefaultImages, getInitialLocation, getInitialSize, getLayout, getParentShell, getReturnCode, getShell, getShellListener, getShellStyle, getWindowManager, handleFontChange, open, setBlockOnOpen, setDefaultImage, setDefaultImages, setExceptionHandler, setReturnCode, setShellStyle, setWindowManager
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

 

Field Detail

 

 

ALWAYS

public static final String ALWAYS

The value of the preference when the user has asked that the answer to the question always be "okay" or "yes".

See Also:
Constant Field Values


 

 

NEVER

public static final String NEVER

The value of the preference when the user has asked that the answer to the question always be "no".

See Also:
Constant Field Values


 

 

PROMPT

public static final String PROMPT

The value of the preference when the user wishes to prompted for an answer every time the question is to be asked.

See Also:
Constant Field Values
Constructor Detail

 

 

MessageDialogWithToggle

public MessageDialogWithToggle(Shell parentShell,
                               String dialogTitle,
                               Image image,
                               String message,
                               int dialogImageType,
                               String[] dialogButtonLabels,
                               int defaultIndex,
                               String toggleMessage,
                               boolean toggleState)

Creates a message dialog with a toggle. See the superclass constructor for info on the other parameters.

Parameters:
parentShell - the parent shell
dialogTitle - the dialog title, or null if none
image - the dialog title image, or null if none
message - the dialog message
dialogImageType - one of the following values:

dialogButtonLabels - an array of labels for the buttons in the button bar
defaultIndex - the index in the button label array of the default button
toggleMessage - the message for the toggle control, or null for the default message
toggleState - the initial state for the toggle
Method Detail

 

 

openError

public static MessageDialogWithToggle openError(Shell parent,
                                                String title,
                                                String message,
                                                String toggleMessage,
                                                boolean toggleState,
                                                IPreferenceStore store,
                                                String key)

Convenience method to open a standard error dialog.

Parameters:
parent - the parent shell of the dialog, or null if none
title - the dialog's title, or null if none
message - the message
toggleMessage - the message for the toggle control, or null for the default message
toggleState - the initial state for the toggle
store - the IPreference store in which the user's preference should be persisted; null if you don't want it persisted automatically.
key - the key to use when persisting the user's preference; null if you don't want it persisted.
Returns:
the dialog, after being closed by the user, which the client can only call getReturnCode() or getToggleState()


 

 

openInformation

public static MessageDialogWithToggle openInformation(Shell parent,
                                                      String title,
                                                      String message,
                                                      String toggleMessage,
                                                      boolean toggleState,
                                                      IPreferenceStore store,
                                                      String key)

Convenience method to open a standard information dialog.

Parameters:
parent - the parent shell of the dialog, or null if none
title - the dialog's title, or null if none
message - the message
toggleMessage - the message for the toggle control, or null for the default message
toggleState - the initial state for the toggle
store - the IPreference store in which the user's preference should be persisted; null if you don't want it persisted automatically.
key - the key to use when persisting the user's preference; null if you don't want it persisted.
Returns:
the dialog, after being closed by the user, which the client can only call getReturnCode() or getToggleState()


 

 

openOkCancelConfirm

public static MessageDialogWithToggle openOkCancelConfirm(Shell parent,
                                                          String title,
                                                          String message,
                                                          String toggleMessage,
                                                          boolean toggleState,
                                                          IPreferenceStore store,
                                                          String key)

Convenience method to open a simple confirm (OK/Cancel) dialog.

Parameters:
parent - the parent shell of the dialog, or null if none
title - the dialog's title, or null if none
message - the message
toggleMessage - the message for the toggle control, or null for the default message
toggleState - the initial state for the toggle
store - the IPreference store in which the user's preference should be persisted; null if you don't want it persisted automatically.
key - the key to use when persisting the user's preference; null if you don't want it persisted.
Returns:
the dialog, after being closed by the user, which the client can only call getReturnCode() or getToggleState()


 

 

openWarning

public static MessageDialogWithToggle openWarning(Shell parent,
                                                  String title,
                                                  String message,
                                                  String toggleMessage,
                                                  boolean toggleState,
                                                  IPreferenceStore store,
                                                  String key)

Convenience method to open a standard warning dialog.

Parameters:
parent - the parent shell of the dialog, or null if none
title - the dialog's title, or null if none
message - the message
toggleMessage - the message for the toggle control, or null for the default message
toggleState - the initial state for the toggle
store - the IPreference store in which the user's preference should be persisted; null if you don't want it persisted automatically.
key - the key to use when persisting the user's preference; null if you don't want it persisted.
Returns:
the dialog, after being closed by the user, which the client can only call getReturnCode() or getToggleState()


 

 

openYesNoCancelQuestion

public static MessageDialogWithToggle openYesNoCancelQuestion(Shell parent,
                                                              String title,
                                                              String message,
                                                              String toggleMessage,
                                                              boolean toggleState,
                                                              IPreferenceStore store,
                                                              String key)

Convenience method to open a simple question Yes/No/Cancel dialog.

Parameters:
parent - the parent shell of the dialog, or null if none
title - the dialog's title, or null if none
message - the message
toggleMessage - the message for the toggle control, or null for the default message
toggleState - the initial state for the toggle
store - the IPreference store in which the user's preference should be persisted; null if you don't want it persisted automatically.
key - the key to use when persisting the user's preference; null if you don't want it persisted.
Returns:
the dialog, after being closed by the user, which the client can only call getReturnCode() or getToggleState()


 

 

openYesNoQuestion

public static MessageDialogWithToggle openYesNoQuestion(Shell parent,
                                                        String title,
                                                        String message,
                                                        String toggleMessage,
                                                        boolean toggleState,
                                                        IPreferenceStore store,
                                                        String key)

Convenience method to open a simple Yes/No question dialog.

Parameters:
parent - the parent shell of the dialog, or null if none
title - the dialog's title, or null if none
message - the message
toggleMessage - the message for the toggle control, or null for the default message
toggleState - the initial state for the toggle
store - the IPreference store in which the user's preference should be persisted; null if you don't want it persisted automatically.
key - the key to use when persisting the user's preference; null if you don't want it persisted.
Returns:
the dialog, after being closed by the user, which the client can only call getReturnCode() or getToggleState()


 

 

buttonPressed

protected void buttonPressed(int buttonId)

Description copied from class: Dialog
Notifies that this dialog's button with the given id has been pressed.

The Dialog implementation of this framework method calls okPressed if the ok button is the pressed, and cancelPressed if the cancel button is the pressed. All other button presses are ignored. Subclasses may override to handle other buttons, but should call super.buttonPressed if the default handling of the ok and cancel buttons is desired.

Overrides:
buttonPressed in class MessageDialog

See Also:
Dialog.buttonPressed(int)


 

 

createButtonsForButtonBar

protected void createButtonsForButtonBar(Composite parent)

Description copied from class: Dialog
Adds buttons to this dialog's button bar.

The Dialog implementation of this framework method adds standard ok and cancel buttons using the createButton framework method. These standard buttons will be accessible from getCancelButton, and getOKButton. Subclasses may override.

Overrides:
createButtonsForButtonBar in class MessageDialog

See Also:
Dialog.createButtonBar(Composite)


 

 

createDialogArea

protected Control createDialogArea(Composite parent)

Description copied from class: MessageDialog
This implementation of the Dialog framework method creates and lays out a composite and calls createMessageArea and createCustomArea to populate it. Subclasses should override createCustomArea to add contents below the message.

Overrides:
createDialogArea in class MessageDialog

See Also:
Dialog.createDialogArea(Composite)


 

 

createToggleButton

protected Button createToggleButton(Composite parent)

Creates a toggle button without any text or state. The text and state will be created by createDialogArea.

Parameters:
parent - The composite in which the toggle button should be placed; must not be null.
Returns:
The added toggle button; never null.


 

 

getToggleButton

protected Button getToggleButton()

Returns the toggle button.

Returns:
the toggle button


 

 

getPrefStore

public IPreferenceStore getPrefStore()

An accessor for the current preference store for this dialog.

Returns:
The preference store; this value may be null if no preference is being used.


 

 

getPrefKey

public String getPrefKey()

An accessor for the current key of the toggle preference.

Returns:
The preference key; this value may be null if no preference is being used.


 

 

getToggleState

public boolean getToggleState()

Returns the toggle state. This can be called even after the dialog is closed.

Returns:
true if the toggle button is checked, false if not


 

 

setPrefKey

public void setPrefKey(String prefKey)

A mutator for the key of the preference to be modified by the toggle button.

Parameters:
prefKey - The prefKey to set. If this value is null, then no preference will be modified.


 

 

setPrefStore

public void setPrefStore(IPreferenceStore prefStore)

A mutator for the preference store to be modified by the toggle button.

Parameters:
prefStore - The prefStore to set. If this value is null, then no preference will be modified.


 

 

setToggleButton

protected void setToggleButton(Button button)

A mutator for the button providing the toggle option. If the button exists, then it will automatically get the text set to the current toggle message, and its selection state set to the current selection state.

Parameters:
button - The button to use; must not be null.


 

 

setToggleMessage

protected void setToggleMessage(String message)

A mutator for the text on the toggle button. The button will automatically get updated with the new text, if it exists.

Parameters:
message - The new text of the toggle button; if it is null, then used the default toggle message.


 

 

setToggleState

public void setToggleState(boolean toggleState)

A mutator for the state of the toggle button. This method will update the button, if it exists.

Parameters:
toggleState - The desired state of the toggle button (true means the toggle should be selected).


 

Overview

 
Package  Use  Tree  Deprecated  Index  Help 
Eclipse Platform
Release 3.0
 PREV CLASS   NEXT CLASS FRAMES    NO FRAMES  
SUMMARY: NESTED | FIELD | CONSTR | METHOD DETAIL: FIELD | CONSTR | METHOD


Guidelines for using Eclipse APIs.

Copyright (c) IBM Corp. and others 2000, 2004. All rights reserved.