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.kiwisoft.utils.gui.inspect.InspectorDialog.java

/**
 * @author Stefan Stiller
 * @version $Revision: 1.3 $, $Date: 2006/03/24 18:52:27 $
 */
public class InspectorDialog extends DialogWrapper {
    private String name;

From source file com.kiwisoft.utils.gui.TextDialog.java

/**
 * @author Stefan Stiller
 * @version $Revision: 1.3 $, $Date: 2006/03/24 18:02:56 $
 */
public class TextDialog extends DialogWrapper {
    private String content;

From source file com.kiwisoft.wizard.WizardDialog.java

/**
 * @author Stefan Stiller
 * @version $Revision: 1.3 $, $Date: 2002/02/22 10:00:24 $
 */
public abstract class WizardDialog extends DialogWrapper {
    private JPanel pnlContent;

From source file com.konifar.material_icon_generator.MaterialDesignIconGenerateDialog.java

public class MaterialDesignIconGenerateDialog extends DialogWrapper {

    private static final String TITLE = "Material Icon Generator";
    private static final String FILE_ICON_COMBOBOX_XML = "template.xml";

    private static final String URL_OVERVIEW = "http://google.github.io/material-design-icons";

From source file com.maddyhome.idea.copyright.actions.RecursionDlg.java

public class RecursionDlg extends DialogWrapper {
    public RecursionDlg(Project project, VirtualFile file) {
        super(project, false);

        logger.debug("file=" + file);

From source file com.maddyhome.idea.copyright.ui.ModuleDlg.java

public class ModuleDlg extends DialogWrapper {
    public ModuleDlg(Project project, Module module) {
        super(project, false);

        this.module = module;

From source file com.maddyhome.idea.copyright.ui.OptionsDlg.java

public class OptionsDlg extends DialogWrapper {
    public OptionsDlg(Project project, Module module, Options options) {
        super(project, false);

        plugin = module.getComponent(CopyrightModulePlugin.class);
        this.options = options;

From source file com.maddyhome.idea.copyright.ui.RecursionDlg.java

public class RecursionDlg extends DialogWrapper {
    public RecursionDlg(Project project, VirtualFile file) {
        super(project, false);

        logger.debug("file=" + file);

From source file com.microsoft.alm.plugin.idea.common.ui.common.BaseDialogImpl.java

/**
 * This base dialog implementation provides telemetry and a Tab panel for forms to added to.
 * If you do not need tabs, you can simply override createCenterPanel and return your own panel.
 */
public class BaseDialogImpl extends DialogWrapper implements BaseDialog {
    private JTabbedPane tabPanel;

From source file com.microsoft.alm.plugin.idea.tfvc.ui.CreateBranchDialog.java

public class CreateBranchDialog extends DialogWrapper {
    private final CreateBranchForm form;

    public CreateBranchDialog(final Project project, final ServerContext serverContext, final String serverPath,
            final boolean isDirectory) {
        super(project, true);