Example usage for com.intellij.openapi.ui DialogWrapper subclass-usage

List of usage examples for com.intellij.openapi.ui DialogWrapper subclass-usage

Introduction

In this page you can find the example usage for com.intellij.openapi.ui DialogWrapper subclass-usage.

Usage

From source file com.android.tools.idea.updater.configure.EditSourceDialog.java

/**
 * Dialog box allowing the user to edit or create an {@link RepositorySource}. Does some very basic validation.
 */
public class EditSourceDialog extends DialogWrapper {
    private JPanel contentPane;
    private JTextField myNameField;

From source file com.android.tools.idea.wizard.ChooseApiLevelDialog.java

/**
 * An explanation dialog that helps the user select an API level.
 */
public class ChooseApiLevelDialog extends DialogWrapper
        implements DistributionChartComponent.DistributionSelectionChangedListener {
    private JPanel myPanel;

From source file com.android.tools.idea.wizard.ChooseFromFileListDialog.java

public class ChooseFromFileListDialog extends DialogWrapper {
    private final List<File> myFiles;
    private FileListItem myChosenFile;

    public ChooseFromFileListDialog(@Nullable Project project, @NotNull List<File> files) {
        super(project);

From source file com.android.tools.idea.wizard.DialogWrapperHost.java

/**
 * Uses {@link com.intellij.openapi.ui.DialogWrapper} to display a wizard in a dialog
 */
public class DialogWrapperHost extends DialogWrapper implements DynamicWizardHost {
    // Action References. myCancelAction and myHelpAction are inherited
    protected Action myPreviousAction = new PreviousAction();

From source file com.android.tools.idea.wizard.dynamic.DialogWrapperHost.java

/**
 * Uses {@link DialogWrapper} to display a wizard in a dialog
 */
public class DialogWrapperHost extends DialogWrapper implements DynamicWizardHost {
    // Action References. myCancelAction and myHelpAction are inherited
    protected Action myPreviousAction = new PreviousAction();

From source file com.android.tools.idea.wizard.model.ModelWizardDialog.java

/**
 * A dialog container which drives an underlying {@link ModelWizard}, decorating it with UI.
 * <p/>
 * Note that the dialog owns responsibility for starting the wizard. If you start it externally
 * first, this dialog will throw an exception on {@link #show()}.
 */

From source file com.arcbees.plugin.idea.dialogs.ContentSlotDialog.java

public class ContentSlotDialog extends DialogWrapper {
    // project
    private final Project project;
    private final AnActionEvent sourceEvent;

    // panels

From source file com.aspose.examples.AsposeExampleDialog.java

/**
 * Created by Adeel Ilyas on 9/9/2015.
 */

public class AsposeExampleDialog extends DialogWrapper {
    private static final Logger LOG = Logger.getInstance("#com.aspose.examples.AsposeExampleDialog");

From source file com.atlassian.clover.idea.AboutDialog.java

public class AboutDialog extends DialogWrapper {
    private final Project project;
    private JTabbedPane tabs;
    private final JCheckBox enabledCheckbox = new JCheckBox("Enable for current project");

    public AboutDialog(Project project) {

From source file com.atlassian.theplugin.idea.bamboo.BuildCommentForm.java

public class BuildCommentForm extends DialogWrapper {
    private JTextField buildKeyField;
    private JTextField buildNumberField;
    private JTextArea commentArea;
    private JPanel mainPanel;