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.run.editor.DeployTargetPickerDialog.java

public class DeployTargetPickerDialog extends DialogWrapper {
    private static final int DEVICE_TAB_INDEX = 0;
    private static final int CUSTOM_RUNPROFILE_PROVIDER_TARGET_INDEX = 1;

    private final int myContextId;
    @NotNull

From source file com.android.tools.idea.run.LaunchCloudDeviceDialog.java

public class LaunchCloudDeviceDialog extends DialogWrapper {

    private final Project myProject;
    private JPanel myPanel;
    private CloudConfigurationComboBox myCloudConfigurationCombo;
    private ActionButton myCloudProjectIdUpdateButton;

From source file com.android.tools.idea.run.LaunchEmulatorDialog.java

public class LaunchEmulatorDialog extends DialogWrapper {

    @NonNls
    private static final String SELECTED_AVD_PROPERTY = "ANDROID_EXTENDED_DEVICE_CHOOSER_AVD";

    private final Facet myFacet;

From source file com.android.tools.idea.sdk.SelectNdkDialog.java

public class SelectNdkDialog extends DialogWrapper {
    private boolean myHasBeenEdited = false;
    private JPanel myPanel;
    private JBLabel myInvalidNdkPathLabel;
    private JRadioButton myRemoveInvalidNdkRadioButton;
    private JRadioButton mySelectValidNdkRadioButton;

From source file com.android.tools.idea.sdk.SelectSdkDialog.java

public class SelectSdkDialog extends DialogWrapper {
    private JPanel myPanel;
    private TextFieldWithBrowseButton myJdkTextFieldWithButton;
    private TextFieldWithBrowseButton mySdkTextFieldWithButton;
    private JBLabel myDescriptionLabel;
    private JBLabel mySelectJdkLabel;

From source file com.android.tools.idea.structure.gradle.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.structure.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 int SEARCH_TIMEOUT = 10000;
    private static final String MAVEN_CENTRAL_SEARCH_URL = "http://search.maven.org/solrsearch/select?rows=%d&wt=xml&q=\"%s\"";

From source file com.android.tools.idea.ui.resourcechooser.ChooseResourceDialog.java

/**
 * Resource Chooser, with previews. Based on ResourceDialog in the android-designer.
 * <P>
 * TODO: Perform validation (such as cyclic layout resource detection for layout selection)
 */
public class ChooseResourceDialog extends DialogWrapper {

From source file com.android.tools.idea.uibuilder.actions.ConvertToConstraintLayoutForm.java

/**
 * Dialog for editing convert to constraint layout parameters
 */
public class ConvertToConstraintLayoutForm extends DialogWrapper {

    private JPanel myPanel;

From source file com.android.tools.idea.uibuilder.mockup.editor.DeviceSelectionPopup.java

/**
 * Popup that let the user choose a device for the screen view that matches the
 * image ratio.
 */
@SuppressWarnings("unchecked")
public class DeviceSelectionPopup extends DialogWrapper {