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.gradle.project.subset.ModulesToImportDialog.java

public class ModulesToImportDialog extends DialogWrapper {
    private static final int SELECTED_MODULE_COLUMN = 0;
    private static final int MODULE_NAME_COLUMN = 1;

    @NotNull
    private final List<DataNode<ModuleData>> alwaysIncludedModules = Lists.newArrayList();

From source file com.android.tools.idea.gradle.project.sync.setup.post.upgrade.ForcedPluginPreviewVersionUpgradeDialog.java

public class ForcedPluginPreviewVersionUpgradeDialog extends DialogWrapper {
    private JPanel myCenterPanel;
    private JEditorPane myMessagePane;

    @NotNull
    private final String myMessage;

From source file com.android.tools.idea.gradle.project.sync.setup.post.upgrade.RecommendedPluginVersionUpdateDialog.java

public class RecommendedPluginVersionUpdateDialog extends DialogWrapper {
    private static final String SHOW_DO_NOT_ASK_TO_UPGRADE_PLUGIN_PROPERTY_NAME = "show.do.not.ask.upgrade.gradle.plugin";

    @NotNull
    private final Project myProject;
    @NotNull

From source file com.android.tools.idea.gradle.run.GradleEditTaskDialog.java

public class GradleEditTaskDialog extends DialogWrapper {
    private JPanel myContentPanel;
    private JPanel myTaskPanel;
    private TextFieldWithAutoCompletion myTaskField;
    private List<String> myAvailableTasks = Lists.newArrayList();

From source file com.android.tools.idea.gradle.structure.configurables.ui.ChooseModuleDialog.java

public class ChooseModuleDialog extends DialogWrapper {
    @NotNull
    private final Consumer<PsModule> myOnOkTask;

    private JPanel myPanel;
    private JBList myModuleList;

From source file com.android.tools.idea.gradle.structure.dependencies.AbstractAddDependenciesDialog.java

public abstract class AbstractAddDependenciesDialog extends DialogWrapper {
    @NotNull
    private final PsModule myModule;

    private JPanel myMainPanel;
    private AbstractDependencyScopesPanel myScopesPanel;

From source file com.android.tools.idea.gradle.structure.editors.MavenDependencyLookupDialog.java

public class MavenDependencyLookupDialog extends DialogWrapper {
    private static final String AAR_PACKAGING = "@" + SdkConstants.EXT_AAR;
    private static final String JAR_PACKAGING = "@" + SdkConstants.EXT_JAR;
    private static final int RESULT_LIMIT = 50;
    private static final String MAVEN_CENTRAL_SEARCH_URL = "https://search.maven.org/solrsearch/select?rows=%d&wt=xml&q=\"%s\"";
    private static final Logger LOG = Logger.getInstance(MavenDependencyLookupDialog.class);

From source file com.android.tools.idea.gradle.variant.conflict.ConflictResolutionDialog.java

/**
 * Displays the variants of a module and their dependents. The purpose of this dialog is to help users decide the build variant to choose
 * when a "variant selection" conflict cannot be automatically solved.
 * <p>
 * A conflict cannot be automatically solved when multiple modules depend on more than one variant of another module. For example:
 * <ul>

From source file com.android.tools.idea.gradle.variant.profiles.ProjectProfileSelectionDialog.java

public class ProjectProfileSelectionDialog extends DialogWrapper {
    private static final SimpleTextAttributes UNRESOLVED_ATTRIBUTES = new SimpleTextAttributes(
            SimpleTextAttributes.STYLE_STRIKEOUT, SimpleTextAttributes.GRAY_ATTRIBUTES.getFgColor());

    @NotNull
    private final Project myProject;

From source file com.android.tools.idea.gradle.variant.view.ModuleVariantsInfoDialog.java

/**
 * Displays the dependencies and dependents of a particular module (including build variants.)
 */
class ModuleVariantsInfoDialog extends DialogWrapper {
    @NotNull
    private final JPanel myPanel;