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.unscramble.UnscrambleDialog.java

/**
 * @author cdr
 */
public class UnscrambleDialog extends DialogWrapper {
    @NonNls
    private static final String PROPERTY_LOG_FILE_HISTORY_URLS = "UNSCRAMBLE_LOG_FILE_URL";

From source file com.intellij.util.net.AuthenticationDialog.java

public class AuthenticationDialog extends DialogWrapper {
    private final AuthenticationPanel panel;

    public AuthenticationDialog(@NotNull Component component, String title, String description, final String login,
            final String password, final boolean rememberPassword) {
        super(component, true);

From source file com.intellij.util.net.HTTPProxySettingsDialog.java

@Deprecated
@SuppressWarnings("UnusedDeclaration")
/**
 * @deprecated Use {@link com.intellij.util.net.HttpConfigurable#editConfigurable(javax.swing.JComponent)}
 * to remove in IDEA 15
 */

From source file com.intellij.util.net.IOExceptionDialog.java

public class IOExceptionDialog extends DialogWrapper {
    private static final Logger LOG = Logger.getInstance(IOExceptionDialog.class);
    private final JTextArea myErrorLabel;

    public IOExceptionDialog(String title, String errorText) {
        super((Project) null, true);

From source file com.intellij.util.ui.classpath.ChooseLibrariesDialogBase.java

/**
 * @author Gregory.Shrago
 */

public abstract class ChooseLibrariesDialogBase extends DialogWrapper {
    private final SimpleTree myTree = new SimpleTree();

From source file com.intellij.util.ui.OptionsDialog.java

/**
 * author: lesya
 */
public abstract class OptionsDialog extends DialogWrapper {

    protected final Project myProject;

From source file com.intellij.util.ui.SelectDateDialog.java

public class SelectDateDialog extends DialogWrapper {
    private CalendarView myCalendarView;
    private JPanel myPanel;

    public SelectDateDialog(Project project) {
        super(project, true);

From source file com.intellij.vcs.log.ui.VcsStructureChooser.java

/**
 * @author irengrig
 *         Date: 2/3/11
 *         Time: 12:04 PM
 */
public class VcsStructureChooser extends DialogWrapper {

From source file com.intellij.vcsUtil.AuthDialog.java

public class AuthDialog extends DialogWrapper {
    private AuthenticationPanel authPanel;

    /**
     * If password if prefilled, it is expected to continue remembering it.
     * On the other hand, if password saving is disabled, the checkbox is not shown.

From source file com.intellij.xdebugger.impl.breakpoints.ui.BreakpointsDialog.java

public class BreakpointsDialog extends DialogWrapper {
    @NotNull
    private Project myProject;

    private Object myInitialBreakpoint;
    private List<BreakpointPanelProvider> myBreakpointsPanelProviders;