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.ide.passwordSafe.impl.providers.masterKey.ChangeMasterKeyDialog.java

/**
 * This dialog is used to change master password
 */
public class ChangeMasterKeyDialog extends DialogWrapper {
    /**
     * The old password

From source file com.intellij.ide.passwordSafe.impl.providers.masterKey.MasterPasswordDialog.java

/**
 * The dialog used to prompt for the master password to the password database
 */
public class MasterPasswordDialog extends DialogWrapper {
    /**
     * The number of time the password is asked

From source file com.intellij.ide.passwordSafe.impl.providers.masterKey.ResetPasswordDialog.java

/**
 * The dialog that allows resetting the password
 */
public class ResetPasswordDialog extends DialogWrapper {
    /**
     * The new password

From source file com.intellij.ide.passwordSafe.ui.PasswordSafePromptDialog.java

/**
 * The generic password dialog. Use it to ask a password from user with option to remember it.
 */
public class PasswordSafePromptDialog extends DialogWrapper {
    private static final Logger LOG = Logger.getInstance(PasswordSafePromptDialog.class.getName());

From source file com.intellij.ide.projectView.actions.CreateLibraryFromFilesDialog.java

/**
 * @author nik
 */
public class CreateLibraryFromFilesDialog extends DialogWrapper {
    private final LibraryNameAndLevelPanel myNameAndLevelPanel;
    private final ModulesCombobox myModulesCombobox;

From source file com.intellij.ide.todo.configurable.FilterDialog.java

/**
 * @author Vladimir Kondratyev
 */
class FilterDialog extends DialogWrapper {
    private final TodoFilter myFilter;
    private final int myFilterIndex;

From source file com.intellij.ide.todo.configurable.PatternDialog.java

/**
 * @author Vladimir Kondratyev
 */
class PatternDialog extends DialogWrapper {
    private final TodoPattern myPattern;

From source file com.intellij.ide.util.AbstractTreeClassChooserDialog.java

public abstract class AbstractTreeClassChooserDialog<T extends PsiNamedElement> extends DialogWrapper
        implements TreeChooser<T> {
    private Tree myTree;
    private T mySelectedClass = null;
    @NotNull
    private final Project myProject;

From source file com.intellij.ide.util.ChooseElementsDialog.java

/**
 * @author nik
 */
public abstract class ChooseElementsDialog<T> extends DialogWrapper {
    protected ElementsChooser<T> myChooser;
    private String myDescription;

From source file com.intellij.ide.util.DirectoryChooser.java

public class DirectoryChooser extends DialogWrapper {
    @NonNls
    private static final String FILTER_NON_EXISTING = "filter_non_existing";
    private static final String DEFAULT_SELECTION = "last_directory_selection";
    private final DirectoryChooserView myView;
    private boolean myFilterExisting;