List of usage examples for org.eclipse.jface.dialogs MessageDialog subclass-usage
From source file com.netxforge.netxstudio.screens.editing.DirtyStateMessageDialog.java
public class DirtyStateMessageDialog extends MessageDialog { private TreeViewer dirtyStateViewer; private CDOTransaction transaction;
From source file com.netxforge.screens.editing.base.dialogs.MessageDialogWithResult.java
/**
* We need this dialog, as the base implementation doesn't differentiate between
* {@link IDialogConstants#CANCEL_ID} and {@link IDialogConstants#NO_ID}
*
* @author Christophe Bouhier
*/
From source file com.nokia.carbide.cpp.internal.codescanner.markers.CSMarkerDetailsDialog.java
/** * A class to handle the "CodeScanner Marker Details" dialog. */ public class CSMarkerDetailsDialog extends MessageDialog { private String reference;
From source file com.nokia.carbide.cpp.internal.sdk.ui.RestartIDEDialog.java
/** * A dialog which prompts the user to restart after installing a new feature/plug-in, etc. * and provides Yes, No (Restart/Later) buttons. */ public class RestartIDEDialog extends MessageDialog { private final static String[] yesNo = new String[] { Messages.getString("RestartIDEDialog.Restart"), //$NON-NLS-1$
From source file com.nokia.s60ct.gui.views.CleanDialog.java
public class CleanDialog extends MessageDialog { private boolean checkboxStatus; public CleanDialog(Shell parentShell, String folder) { super(parentShell, "Clean output folder", null,
From source file com.nokia.s60ct.quickfixers.QuickFixPopupDialog.java
public class QuickFixPopupDialog extends MessageDialog { private boolean checkboxStatus; private IMarker[] markers = null; private CheckboxTableViewer markersTable; Object[] checkedElements = null;
From source file com.nokia.s60tools.imaker.internal.dialogs.ProductSelectionDialog.java
public class ProductSelectionDialog extends MessageDialog { private UIConfiguration selectedConfiguration = null; private IEnvironment activeEnvironment = null; protected boolean dontShowAgain; private final int style = SWT.FULL_SELECTION | SWT.H_SCROLL | SWT.V_SCROLL;
From source file com.nokia.sdt.editor.SourceGenProblemsDialog.java
public class SourceGenProblemsDialog extends MessageDialog { private Collection<IMessage> messages; /** * @param parentShell * @param dialogTitle
From source file com.nokia.tools.screen.ui.dialogs.MessageDialogWithCheckBox.java
/**
* Open a customized messagebox with normal message and optionally any
* compinations of message with a link to preferences, checkbox with text and
* access to help system via Help -button.
*
*/
From source file com.nokia.tools.ui.dialog.MessageDialogWithTextContent.java
public class MessageDialogWithTextContent extends MessageDialog { /** * Size of the text in lines. */ private static final int TEXT_LINE_COUNT = 15; /**