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.uiDesigner.clientProperties.AddClientPropertyDialog.java

/**
 * @author yole
 */
public class AddClientPropertyDialog extends DialogWrapper {
    private JTextField myPropertyNameTextField;
    private JRadioButton myStringRadioButton;

From source file com.intellij.uiDesigner.clientProperties.ClassNameInputDialog.java

/**
 * @author yole
 */
public class ClassNameInputDialog extends DialogWrapper {
    private EditorTextField myEditorTextField1;
    private JPanel myRootPanel;

From source file com.intellij.uiDesigner.clientProperties.ConfigureClientPropertiesDialog.java

/**
 * @author yole
 */
public class ConfigureClientPropertiesDialog extends DialogWrapper {
    private JTree myClassTree;
    private JTable myPropertiesTable;

From source file com.intellij.uiDesigner.palette.ComponentItemDialog.java

/**
 * @author Vladimir Kondratyev
 */
public final class ComponentItemDialog extends DialogWrapper {
    private JPanel myPanel;
    private final ComponentWithBrowseButton<EditorTextField> myTfClassName;

From source file com.intellij.uiDesigner.propertyInspector.editors.FontEditorDialog.java

/**
 * @author yole
 */
public class FontEditorDialog extends DialogWrapper {
    private JList myFontNameList;
    private JList myFontStyleList;

From source file com.intellij.uiDesigner.propertyInspector.editors.ListEditorDialog.java

/**
 * @author yole
 */
public class ListEditorDialog extends DialogWrapper {
    private JPanel myRootPanel;
    private JTextArea myLinesTextArea;

From source file com.intellij.uiDesigner.propertyInspector.editors.string.KeyChooserDialog.java

/**
 * @author Anton Katilin
 * @author Vladimir Kondratyev
 */
public final class KeyChooserDialog extends DialogWrapper {
    private static final Logger LOG = Logger

From source file com.intellij.uiDesigner.propertyInspector.editors.string.NewKeyDialog.java

/**
 * @author yole
 */
public class NewKeyDialog extends DialogWrapper {
    private JTextField myKeyNameEdit;
    private JTextField myKeyValueEdit;

From source file com.intellij.uiDesigner.propertyInspector.editors.string.StringEditorDialog.java

/**
 * @author Anton Katilin
 * @author Vladimir Kondratyev
 */
public final class StringEditorDialog extends DialogWrapper {
    private static final Logger LOG = Logger

From source file com.intellij.unscramble.AnalyzeStacktraceDialog.java

/**
 * @author yole
 */
public class AnalyzeStacktraceDialog extends DialogWrapper {
    private final Project myProject;
    protected AnalyzeStacktraceUtil.StacktraceEditorPanel myEditorPanel;