List of usage examples for com.intellij.openapi.ui DialogWrapper subclass-usage
From source file com.google.cloud.tools.intellij.appengine.cloud.flexible.SelectConfigDestinationFolderDialog.java
/** * A widget for selecting a folder in which to generate Flexible source files. */ public class SelectConfigDestinationFolderDialog extends DialogWrapper { private JPanel rootPanel;
From source file com.google.cloud.tools.intellij.appengine.cloud.SelectConfigDestinationFolderDialog.java
/** * A widget for selecting a folder in which to generate ManagedVM source files. */ public class SelectConfigDestinationFolderDialog extends DialogWrapper { public enum ConfigFileType {
From source file com.google.cloud.tools.intellij.debugger.ui.CloudAttachDialog.java
/** * CloudAttachDialog shows a dialog allowing the user to select a target (module & version) and * debug. */ public class CloudAttachDialog extends DialogWrapper {
From source file com.google.cloud.tools.intellij.login.ui.GoogleLoginCopyAndPasteDialog.java
/** * A dialog to get the verification code from the user. This dialog will provide the users with an * authentication URL to navigate to and a text box to paste the token they get when they log into * Google via an external browser. */ // TODO: set a maximum size for the dialog
From source file com.google.cloud.tools.intellij.resources.SelectUserDialog.java
/** * A dialog that prompts the user to select a {@link IntellijGoogleLoginService} or click "Login * Manually" to continue without {@link IntellijGoogleLoginService} credentials. */ public class SelectUserDialog extends DialogWrapper {
From source file com.google.cloud.tools.intellij.ui.DisablePluginWarningDialog.java
/** * A Dialog that prompts a user to disable a plugin. */ public class DisablePluginWarningDialog extends DialogWrapper { private JLabel promptLabel; private JLabel restartLabel;
From source file com.google.cloud.tools.intellij.vcs.ChooseProjectDialog.java
/** * Shows a dialog that has one entry value which is a GCP project using the project selector. The * title and ok button text is passed into the constructor. */ public class ChooseProjectDialog extends DialogWrapper {
From source file com.google.cloud.tools.intellij.vcs.CloneCloudRepositoryDialog.java
/** * The dialog that prompts the user to download (git clone) from a GCP project. */ public class CloneCloudRepositoryDialog extends DialogWrapper { private static final String INVALID_FILENAME_CHARS = "[/\\\\?%*:|\"<>]";
From source file com.google.cloud.tools.intellij.vcs.CloneGcpDialog.java
/** * The dialog that prompts the user to download (git clone) from a GCP project. */ public class CloneGcpDialog extends DialogWrapper { private static final Logger LOG = Logger.getInstance(CloneGcpDialog.class); public static final String INVALID_FILENAME_CHARS = "[/\\\\?%*:|\"<>]";
From source file com.google.cloud.tools.intellij.vcs.SetupCloudRepositoryDialog.java
/** * Shows the upload to Google Cloud Source Repositories dialog for initializing a project on * a GCP repository. */ public class SetupCloudRepositoryDialog extends DialogWrapper {