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

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

Introduction

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

Usage

From source file com.amazonaws.eclipse.lambda.invoke.ui.InvokeFunctionInputDialog.java

public class InvokeFunctionInputDialog extends Dialog {

    public static final int INVOKE_BUTTON_ID = IDialogConstants.OK_ID;

    private static final int PREFERRED_WIDTH = 600;
    private static final int PREFERRED_HEIGHT = 400;

From source file com.amitinside.e4.rcp.todo.dialogs.PasswordDialog.java

public class PasswordDialog extends Dialog {
    private Text txtUser;
    private Text txtPassword;
    private String user = "";
    private String password = "";

From source file com.amitinside.e4.todo.contribute.dialogs.ExitDialog.java

public class ExitDialog extends Dialog {
    @Inject
    public ExitDialog(@Named(IServiceConstants.ACTIVE_SHELL) Shell shell) {
        super(shell);
    }

From source file com.android.ddmuilib.FindDialog.java

/**
 * {@link FindDialog} provides a text box where users can enter text that should be
 * searched for in the target editor/view. The buttons "Find Previous" and "Find Next"
 * allow users to search forwards/backwards. This dialog simply provides a front end for the user
 * and the actual task of searching is delegated to the {@link IFindTarget}.
 */

From source file com.android.ddmuilib.vmtrace.VmTraceOptionsDialog.java

/** Dialog that allows users to select between method tracing or sampler based profiling. */
public class VmTraceOptionsDialog extends Dialog {
    private static final int DEFAULT_SAMPLING_INTERVAL_US = 1000;

    // Static variables that maintain state across invocations of the dialog
    private static boolean sTracingEnabled = false;

From source file com.android.hierarchyviewer.AboutDialog.java

public class AboutDialog extends Dialog {
    private Image mAboutImage;

    private Image mSmallImage;

    public AboutDialog(Shell shell) {

From source file com.android.ide.eclipse.adt.internal.launch.DeviceChooserDialog.java

/**
 * A dialog that lets the user choose a device to deploy an application.
 * The user can either choose an exiting running device (including running emulators)
 * or start a new emulator using an Android Virtual Device configuration that matches
 * the current project.
 */

From source file com.android.ide.eclipse.adt.internal.lint.InputDensityDialog.java

class InputDensityDialog extends Dialog {
    private Combo mCombo;
    /**
     * Density value being chosen - static to keep most recently chosen value
     * across repeated invocations
     */

From source file com.android.ide.eclipse.adt.internal.wizards.newxmlfile.AddTranslationDialog.java

/**
 * Dialog which adds a new translation to the project
 */
public class AddTranslationDialog extends Dialog implements ControlListener, SelectionListener, TraverseListener {
    private static final int KEY_COLUMN = 0;
    private static final int DEFAULT_TRANSLATION_COLUMN = 1;

From source file com.android.ide.eclipse.adt.launch.DeviceChooserDialog.java

/**
 * A dialog that lets the user choose a device to deploy an application.
 * The user can either choose an exiting running device (including running emulators)
 * or start a new emulator using an Android Virtual Device configuration that matches
 * the current project.
 */