List of usage examples for com.intellij.openapi.ui DialogWrapper subclass-usage
From source file com.google.gct.idea.appengine.deploy.AppEngineUpdateDialog.java
/** * AppEngineUpdateDialog shows a dialog allowing the user to select a module and deploy. */ public class AppEngineUpdateDialog extends DialogWrapper { private static final Logger LOG = Logger.getInstance(AppEngineUpdateDialog.class); private static final String DEFAULT_APPID = "myApplicationId";
From source file com.google.gct.idea.appengine.wizard.AppEngineModuleWizard.java
public class AppEngineModuleWizard extends DialogWrapper { private JPanel myRootPanel; private JTextField myModuleNameField; private JTextField myPackageNameField; private JComboBox myTemplateBox; private JEditorPane myDescriptionPane;
From source file com.google.gct.idea.debugger.ui.CloudAttachDialog.java
/** * CloudAttachDialog shows a dialog allowing the user to select a module and debug. */ public class CloudAttachDialog extends DialogWrapper { private static final Logger LOG = Logger.getInstance(CloudAttachDialog.class);
From source file com.google.gct.idea.elysium.SelectUserDialog.java
/** * A dialog that prompts the user to select a {@link com.google.gct.login.GoogleLogin} * or click "Login Manually" to continue without {@link com.google.gct.login.GoogleLogin} credentials. */ public class SelectUserDialog extends DialogWrapper {
From source file com.google.gct.idea.git.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.gct.idea.git.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.gct.intellij.endpoints.action.ui.GenerateBackendDialog.java
/** * A dialog when the user wants to generate an AppEngine endpoints backend informing them that an Android library module and AppEngine * module are going to be created. Also allows the user to enter in optional configuration information */ public class GenerateBackendDialog extends DialogWrapper {
From source file com.google.gct.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.idea.blaze.base.ide.NewBlazePackageDialog.java
class NewBlazePackageDialog extends DialogWrapper { private static final Logger LOG = Logger.getInstance(NewBlazePackageDialog.class); @NotNull private final Project project; @NotNull
From source file com.google.idea.blaze.base.ide.NewBlazeRuleDialog.java
class NewBlazeRuleDialog extends DialogWrapper { private static final Logger LOG = Logger.getInstance(NewBlazeRuleDialog.class); private static final int UI_INDENT = 0; private static final int TEXT_BOX_WIDTH = 40;