List of usage examples for com.intellij.openapi.ui DialogWrapper subclass-usage
From source file com.intellij.debugger.ui.breakpoints.EditInstanceFiltersDialog.java
/** * User: lex * Date: Aug 29, 2003 * Time: 2:44:38 PM */ public class EditInstanceFiltersDialog extends DialogWrapper {
From source file com.intellij.debugger.ui.CompletedInputDialog.java
/** * User: lex * Date: Sep 16, 2003 * Time: 6:43:46 PM */ public class CompletedInputDialog extends DialogWrapper {
From source file com.intellij.debugger.ui.EvaluationDialog.java
public abstract class EvaluationDialog extends DialogWrapper { private final MyEvaluationPanel myEvaluationPanel; private final Project myProject; private final DebuggerContextListener myContextListener; private final DebuggerEditorImpl myEditor; private final List<Runnable> myDisposeRunnables = new ArrayList<Runnable>();
From source file com.intellij.debugger.ui.ExportDialog.java
public class ExportDialog extends DialogWrapper { private final JTextArea myTextArea = new JTextArea(); private TextFieldWithBrowseButton myTfFilePath; private final Project myProject; private final DebugProcessImpl myDebugProcess; private final CopyToClipboardAction myCopyToClipboardAction = new CopyToClipboardAction();
From source file com.intellij.debugger.ui.GetJPDADialog.java
public class GetJPDADialog extends DialogWrapper { private static final @NonNls String JPDA_URL = "http://java.sun.com/products/jpda"; public GetJPDADialog() { super(false); setTitle(DebuggerBundle.message("get.jpda.dialog.title"));
From source file com.intellij.debugger.ui.impl.InspectDialog.java
public class InspectDialog extends DialogWrapper implements DebuggerContextListener { private InspectPanel myInspectView; private final DebuggerContextImpl myDebuggerContext; public InspectDialog(Project project, DebuggerStateManager stateManager, String title, NodeDescriptorImpl inspectDescriptor) {
From source file com.intellij.diagnostic.IdeErrorsDialog.java
public class IdeErrorsDialog extends DialogWrapper implements MessagePoolListener, TypeSafeDataProvider { private static final Logger LOG = Logger.getInstance(IdeErrorsDialog.class.getName()); private final boolean myInternalMode; @NonNls private static final String ACTIVE_TAB_OPTION = IdeErrorsDialog.class.getName() + "activeTab"; public static DataKey<String> CURRENT_TRACE_KEY = DataKey.create("current_stack_trace_key");
From source file com.intellij.diagnostic.JetBrainsAccountDialog.java
/**
* Created by IntelliJ IDEA.
* User: stathik
* Date: Aug 8, 2003
* Time: 3:49:50 PM
* To change this template use Options | File Templates.
From source file com.intellij.diagnostic.logging.EditLogPatternDialog.java
/** * User: anna * Date: 05-Feb-2006 */ public class EditLogPatternDialog extends DialogWrapper {
From source file com.intellij.diagnostic.OutOfMemoryDialog.java
public class OutOfMemoryDialog extends DialogWrapper { public enum MemoryKind { HEAP, PERM_GEN, CODE_CACHE } private final MemoryKind myMemoryKind;