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 mobi.hsz.idea.gitignore.ui.UserTemplateDialog.java

/**
 * User template dialog that allows
 *
 * @author Jakub Chrzanowski <jakub@hsz.mobi>
 * @since 1.5
 */

From source file mobi.hsz.idea.latex.ui.ImageEditorActionDialog.java

public class ImageEditorActionDialog extends DialogWrapper {

    private JPanel panel;
    private TextFieldWithBrowseButton path;
    private JTextField caption;
    private JTextField label;

From source file mobi.hsz.idea.latex.ui.MatrixEditorActionDialog.java

public class MatrixEditorActionDialog extends DialogWrapper {

    public enum Bracket {
        NONE('\0'), PARENTHESES('p'), BRACKETS('b'), BRACES('B'), SINGLE_LINE('v'), DOUBLE_LINE('V');

        private final char value;

From source file mobi.hsz.idea.latex.ui.TableEditorActionDialog.java

public class TableEditorActionDialog extends DialogWrapper {

    public enum Alignment {
        LEFT('l'), CENTER('c'), RIGHT('r');

        private final char value;

From source file net.orfjackal.sbt.plugin.SelectSbtActionDialog.java

public class SelectSbtActionDialog extends DialogWrapper {

    private static final String[] SBT_07_ACTIONS = new String[] { "compile", "test-compile",
            ";compile;copy-resources", ";test-compile;copy-test-resources", };
    private static final String[] SBT_10_ACTIONS = new String[] { "compile", "test:compile", "products",
            "test:products" };

From source file net.phonex.intellij.android.dbmodel.GenerateDialog.java

public class GenerateDialog extends DialogWrapper {

    private final LabeledComponent<JPanel> myComponent;
    private CollectionListModel<PsiField> myFields;

    protected GenerateDialog(PsiClass psiClass) {

From source file net.sf.logsupport.ui.AbstractProcessingDialog.java

public abstract class AbstractProcessingDialog extends DialogWrapper {

    private JPanel centerPane;

    protected JRadioButton wholeProject;
    protected JRadioButton module;

From source file net.sf.logsupport.ui.IntegrateLogReviewDialog.java

/**
 * Dialog to select the review file for the integration.
 *
 * @author Juergen_Kellerer, 2010-04-29
 * @version 1.0
 */

From source file nieldw.plugins.idea.ChooseComponentsToImportDialog.java

public class ChooseComponentsToImportDialog extends DialogWrapper {
    private static Logger LOG = Logger.getInstance("#com.intellij.ide.actions.ChooseComponentsToExportDialog");

    private ElementsChooser<ComponentElementProperties> myChooser;
    private String myDescription;

From source file nu.studer.idea.errorreporting.PluginErrorSubmitDialog.java

/**
 * This class defines the error submission dialog which allows the user to enter error details. It looks very similar to the built-in IDEA error
 * submission dialog.
 *
 * @author <a href="mailto:intellij@studer.nu">Etienne Studer</a>, Jul 14, 2006
 */