List of usage examples for com.intellij.openapi.ui DialogWrapper subclass-usage
From source file com.microsoftopentechnologies.intellij.ui.NewHostedServiceDialog.java
public class NewHostedServiceDialog extends DialogWrapper { private final static String HOSTED_SERVICE_NAME_PATTERN = "^[a-z0-9]+$"; private JPanel contentPane; private JTextField hostedServiceTxt; private JComboBox locationComb;
From source file com.microsoftopentechnologies.intellij.ui.NewStorageAccountDialog.java
public class NewStorageAccountDialog extends DialogWrapper { private final static String STORAGE_ACCOUNT_NAME_PATTERN = "^[a-z0-9]+$"; private JPanel contentPane; private JTextField storageAccountTxt; private JComboBox locationComb;
From source file com.microsoftopentechnologies.intellij.ui.PfxPwdDialog.java
public class PfxPwdDialog extends DialogWrapper { private JPanel contentPane; private JLabel pfxInputMsg; private TextFieldWithBrowseButton txtPfxPath; private JPasswordField passwordField;
From source file com.microsoftopentechnologies.intellij.ui.UndeployWizardDialog.java
public class UndeployWizardDialog extends DialogWrapper { private JPanel contentPane; private JComboBox subscriptionCombo; private JComboBox hostedServiceCombo; private JComboBox deploymentCombo;
From source file com.NetworkDeploy.ui.EditChooseDialog.java
public class EditChooseDialog extends DialogWrapper { private String message; private JComboBox<String> comboBox; protected EditChooseDialog(Project project, String message, List<String> items) { super(project);
From source file com.ritesh.idea.plugin.ui.panels.DraftReviewPanel.java
/** * @author Ritesh */ public class DraftReviewPanel extends DialogWrapper { private JPanel panel; private EditorTextField descriptionTextBox;
From source file com.rtoth.boilerplate.GetTestMethodsDialog.java
/** * Dialog box which prompts the user for input on which methods to test and how to test them. */ class GetTestMethodsDialog extends DialogWrapper { /** Description for this dialog box. */ private static final String DIALOG_DESCRIPTION = "Select Methods to Test";
From source file com.samebug.clients.idea.ui.AnalyzeDialog.java
final public class AnalyzeDialog extends DialogWrapper { final static Logger LOGGER = Logger.getInstance(AnalyzeDialog.class); final Project myProject; JPanel panel; final JPanel warningPanel;
From source file com.sherchen.idea_plugin.injectcomment.InjectCommentDialog.java
/**
* The description of use:
* <br />
* Created time:2015/2/5 21:07
* Created by Dave
*/
From source file com.sixrr.guiceyidea.actions.ProviderDialog.java
public class ProviderDialog extends DialogWrapper implements DocumentListener { private JTextField providerNameField = null; private JTextField providedClassField = null; private FixedSizeButton classChooserButton = null; private final Project project;