List of usage examples for com.intellij.openapi.ui DialogWrapper subclass-usage
From source file com.android.tools.idea.editors.strings.MultilineStringEditorDialog.java
public class MultilineStringEditorDialog extends DialogWrapper { private JPanel myPanel; private JBLabel myTranslationLabel; private EditorTextField myDefaultTextField; private EditorTextField myTranslationTextField;
From source file com.android.tools.idea.editors.strings.NewStringKeyDialog.java
public class NewStringKeyDialog extends DialogWrapper { private JPanel myPanel; private JComboBox myResFolderCombo; private EditorTextField myKeyField; private EditorTextField myDefaultValueField;
From source file com.android.tools.idea.editors.theme.NewStyleDialog.java
public class NewStyleDialog extends DialogWrapper { private final ResourceNameValidator myResourceNameValidator; private JPanel contentPane; private JTextField myStyleNameTextField; private JLabel myMessageLabel; private JLabel myParentStyleLabel;
From source file com.android.tools.idea.fd.actions.InstantRunFeedbackDialog.java
public class InstantRunFeedbackDialog extends DialogWrapper { private final List<Path> myLogs; private JPanel myPanel; private JTextArea myIssueTextArea; private JBList myFilesList;
From source file com.android.tools.idea.gradle.actions.LinkExternalCppProjectDialog.java
public class LinkExternalCppProjectDialog extends DialogWrapper { private static final String CMAKE_PATH_DESCRIPTION = "Select the main CMakeLists.txt file of a CMake project"; private static final String NDK_BUILD_PATH_DESCRIPTION = "Select the main .mk file of the NDK project (e.g. Android.mk)"; private enum BuildSystem { CMAKE("CMake"), NDK_BUILD("ndk-build");
From source file com.android.tools.idea.gradle.project.ChooseGradleHomeDialog.java
/** * Dialog where users select the path of the local Gradle installation to use when importing a project. */ public class ChooseGradleHomeDialog extends DialogWrapper { @VisibleForTesting public static final String VALIDATION_MESSAGE_CLIENT_PROPERTY = "validation.message";
From source file com.android.tools.idea.gradle.project.ChooseSdkPathDialog.java
public class ChooseSdkPathDialog extends DialogWrapper { public static final int USE_IDE_SDK_PATH = 3; public static final int USE_PROJECT_SDK_PATH = 4; private JPanel myPanel; private JXLabel myDescriptionLabel;
From source file com.android.tools.idea.gradle.project.GradleVersionRecommendedUpdateDialog.java
public class GradleVersionRecommendedUpdateDialog extends DialogWrapper { private static final String SHOW_DO_NOT_ASK_TO_UPGRADE_GRADLE_PROPERTY_NAME = "show.do.not.ask.upgrade.gradle"; @NotNull private final Project myProject; @NotNull
From source file com.android.tools.idea.gradle.project.library.LibraryPropertiesDialog.java
public class LibraryPropertiesDialog extends DialogWrapper { @NotNull private final Project myProject; @NotNull private final Library myLibrary;
From source file com.android.tools.idea.gradle.project.ProxySettingsDialog.java
public class ProxySettingsDialog extends DialogWrapper { private static final String SHOW_DO_NOT_ASK_TO_COPY_PROXY_SETTINGS_PROPERTY_NAME = "show.do.not.copy.http.proxy.settings.to.gradle"; private Project myProject; private JPanel myPane;