Example usage for org.eclipse.jface.dialogs MessageDialogWithToggle subclass-usage

List of usage examples for org.eclipse.jface.dialogs MessageDialogWithToggle subclass-usage

Introduction

In this page you can find the example usage for org.eclipse.jface.dialogs MessageDialogWithToggle subclass-usage.

Usage

From source file br.ufmg.dcc.tabuleta.ui.FilterDialog.java

/**
 * Dialog appearing when a user selects the filter action.
 */
public class FilterDialog extends MessageDialogWithToggle {
    private static final int SLIDER_INCREMENT = 10;
    private static final int SLIDER_MAXIMUM = 109; // Only goes to 99 in practice.  Go figure.

From source file com.aptana.php.debug.core.launch.DebugPortNotificationDialog.java

/**
 * The port notification dialog is designed to appear in case the debug session is initialized and the debug-client port
 * is not set to its default value. The dialog provides a notification for that state and allows a continue or stop
 * actions, as well as remembering the decision.
 * 
 * @author Shalom Gibly

From source file org.bonitasoft.studio.application.dialog.ExitDialog.java

public class ExitDialog extends MessageDialogWithToggle {

    public static ExitDialog openExitDialog(final Shell parentShell) {
        final ExitDialog exitDialog = new ExitDialog(parentShell,
                IDEWorkbenchMessages.PromptOnExitDialog_shellTitle, null, null, WARNING,
                new String[] { IDialogConstants.OK_LABEL, IDialogConstants.CANCEL_LABEL }, 0,

From source file org.bonitasoft.studio.common.jface.MessageDialogWithPrompt.java

/**
 * @author Romain Bioteau
 *
 */
public class MessageDialogWithPrompt extends MessageDialogWithToggle {

From source file org.ebayopensource.vjet.eclipse.internal.ui.dialogs.UnknownContentTypeDialog.java

public class UnknownContentTypeDialog extends MessageDialogWithToggle {

    public UnknownContentTypeDialog(Shell parent, IPreferenceStore store, String key) {
        // set message to null in super so that message does not appear twice
        super(parent, VjoEditorMessages.UnknownContentTypeDialog_0, null, null, INFORMATION,
                new String[] { IDialogConstants.OK_LABEL }, 0, VjoEditorMessages.UnknownContentTypeDialog_1, false);

From source file org.eclipse.compare.internal.NavigationEndDialog.java

public class NavigationEndDialog extends MessageDialogWithToggle {

    private final String[][] labelsAndValues;
    private RadioGroupFieldEditor editor;

    public NavigationEndDialog(Shell parentShell, String dialogTitle, Image dialogTitleImage, String dialogMessage,

From source file org.eclipse.emf.compare.rcp.ui.internal.structuremergeviewer.actions.ui.SynchronizerDialog.java

/**
 * Dialog used to ask user synchronization behavior.
 * 
 * @author <a href="mailto:arthur.daussy@obeo.fr">Arthur Daussy</a>
 */
public class SynchronizerDialog extends MessageDialogWithToggle {

From source file org.eclipse.jst.j2ee.internal.dialogs.DependencyConflictResolveDialog.java

public class DependencyConflictResolveDialog extends MessageDialogWithToggle {

    public static final int BTN_ID_OK = 0;
    public static final int BTN_ID_CANCEL = 1;

    public static final int DLG_TYPE_1 = 1;

From source file org.eclipse.jst.jsf.ui.internal.classpath.WarningMessageDialogWithToggle.java

/**
 * Customized warning dialog for JSF Library Upgrade warnings.
 * 
 * @author cbateman
 * @deprecated
 */

From source file org.eclipse.jubula.client.ui.rcp.dialogs.NagDialog.java

/**
 * @author BREDEX GmbH
 * @created Apr 29, 2008
 */
public final class NagDialog extends MessageDialogWithToggle {