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.refactoring.ui.ConflictsDialog.java

public class ConflictsDialog extends DialogWrapper {
    private static final int SHOW_CONFLICTS_EXIT_CODE = 4;

    private String[] myConflictDescriptions;
    private MultiMap<PsiElement, String> myElementConflictDescription;
    private final Project myProject;

From source file com.intellij.refactoring.ui.InfoDialog.java

public class InfoDialog extends DialogWrapper {
    private JCheckBox myShowInFutureCheckBox;
    private JTextArea myTextArea;
    private final String myText;
    private boolean isToShowInFuture;

From source file com.intellij.refactoring.ui.RefactoringDialog.java

/**
 * Author: msk
 */
public abstract class RefactoringDialog extends DialogWrapper {

    private Action myRefactorAction;

From source file com.intellij.refactoring.ui.YesNoPreviewUsagesDialog.java

public class YesNoPreviewUsagesDialog extends DialogWrapper {
    private JCheckBox myCbPreviewResults;
    private final boolean myToPreviewUsages;
    private final String myMessage;
    private final String myHelpID;

From source file com.intellij.refactoring.util.RefactoringMessageDialog.java

public class RefactoringMessageDialog extends DialogWrapper {
    private final String myMessage;
    private final String myHelpTopic;
    private final Icon myIcon;
    private final boolean myIsCancelButtonVisible;

From source file com.intellij.struts2.facet.ui.FileSetEditor.java

public class FileSetEditor extends DialogWrapper {

    private JPanel myMainPanel;
    private JTextField mySetName;
    private StrutsFilesTree myFilesTree;

From source file com.intellij.tasks.actions.ChooseStacktraceDialog.java

/**
 * @author Dmitry Avdeev
 */
public class ChooseStacktraceDialog extends DialogWrapper {

    private JList myList;

From source file com.intellij.tasks.actions.CloseTaskDialog.java

/**
 * @author Dmitry Avdeev
 */
public class CloseTaskDialog extends DialogWrapper {
    private static final String UPDATE_STATE_ENABLED = "tasks.close.task.update.state.enabled";

From source file com.intellij.tasks.actions.OpenTaskDialog.java

/**
 * @author Dmitry Avdeev
 */
public class OpenTaskDialog extends DialogWrapper {
    private final static Logger LOG = Logger.getInstance("#com.intellij.tasks.actions.SimpleOpenTaskDialog");
    private static final String UPDATE_STATE_ENABLED = "tasks.open.task.update.state.enabled";

From source file com.intellij.tasks.navigation.ui.AnnotationConfigEditDialog.java

/**
 * @author Vladislav.Rassokhin
 */
public class AnnotationConfigEditDialog extends DialogWrapper {
    private final List<AnnotationConfig> myExistingItems;
    @Nullable