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 com.intellij.codeEditor.printing.PrintDialog.java

class PrintDialog extends DialogWrapper {
    private JRadioButton myRbCurrentFile = null;
    private JRadioButton myRbSelectedText = null;
    private JRadioButton myRbCurrentPackage = null;
    private JCheckBox myCbIncludeSubpackages = null;

From source file com.intellij.codeInsight.actions.LayoutCodeDialog.java

public class LayoutCodeDialog extends DialogWrapper implements LayoutCodeOptions {
    @NotNull
    private final Project myProject;
    @Nullable
    private final PsiFile myFile;
    @Nullable

From source file com.intellij.codeInsight.actions.LayoutProjectCodeDialog.java

/**
 * @author max
 */
public class LayoutProjectCodeDialog extends DialogWrapper implements ReformatFilesOptions {
    private static @NonNls final String HELP_ID = "editing.codeReformatting";

From source file com.intellij.codeInsight.actions.ReformatFilesDialog.java

public class ReformatFilesDialog extends DialogWrapper implements ReformatFilesOptions {
    @NotNull
    private Project myProject;
    private JPanel myPanel;
    private JCheckBox myOptimizeImports;
    private JCheckBox myOnlyChangedText;

From source file com.intellij.codeInsight.daemon.impl.quickfix.LocateLibraryDialog.java

public class LocateLibraryDialog extends DialogWrapper {
    private JPanel contentPane;
    private JTextPane myDescription;
    private JLabel myFileLabel;
    private TextFieldWithBrowseButton myLibraryFile;
    private JRadioButton myAddThisFileRadioButton;

From source file com.intellij.codeInsight.daemon.impl.quickfix.SideEffectWarningDialog.java

/**
 * @author Alexey Kudravtsev
 */
public class SideEffectWarningDialog extends DialogWrapper {
    private final PsiVariable myVariable;
    private final String myBeforeText;

From source file com.intellij.codeInsight.editorActions.RestoreReferencesDialog.java

class RestoreReferencesDialog extends DialogWrapper {
    private final Object[] myNamedElements;
    private JList myList;
    private Object[] mySelectedElements = PsiClass.EMPTY_ARRAY;
    private boolean myContainsClassesOnly = true;

From source file com.intellij.codeInsight.generation.ui.SimpleFieldChooser.java

/**
 * @author ven
 */
public class SimpleFieldChooser extends DialogWrapper {
    private final PsiField[] myFields;
    private JList myList;

From source file com.intellij.codeInsight.intention.impl.CreateClassDialog.java

public class CreateClassDialog extends DialogWrapper {
    private final JLabel myInformationLabel = new JLabel("#");
    private final JLabel myPackageLabel = new JLabel(
            CodeInsightBundle.message("dialog.create.class.destination.package.label"));
    private final ReferenceEditorComboWithBrowseButton myPackageComponent;
    private final JTextField myTfClassName = new MyTextField();

From source file com.intellij.codeInsight.intention.impl.CreateFieldFromParameterDialog.java

public class CreateFieldFromParameterDialog extends DialogWrapper {
    private final Project myProject;
    private final String[] myNames;
    private final PsiType[] myTypes;
    private final PsiClass myTargetClass;
    private final boolean myFieldMayBeFinal;