Example usage for com.intellij.openapi.ui SimpleToolWindowPanel subclass-usage

List of usage examples for com.intellij.openapi.ui SimpleToolWindowPanel subclass-usage

Introduction

In this page you can find the example usage for com.intellij.openapi.ui SimpleToolWindowPanel subclass-usage.

Usage

From source file com.github.cssxfire.ui.CssToolWindow.java

public class CssToolWindow extends SimpleToolWindowPanel
        implements TreeViewModel, Disposable, DataProvider, DumbAware {
    private static final DataKey<CssToolWindow> CSS_X_FIRE_TOOL_WINDOW_KEY = DataKey
            .create("css.x.fire.tool.window");

    private final CssChangesTreeModel myTreeModel;

From source file com.github.rholder.gradle.intellij.DependencyViewer.java

public class DependencyViewer extends SimpleToolWindowPanel {

    private final Project project;
    private final ToolWindow toolWindow;
    private final Splitter splitter;
    private final ToolingLogger toolingLogger;

From source file com.google.jstestdriver.idea.server.ui.JstdToolWindowPanel.java

/**
 * @author alexeagle@google.com (Alex Eagle)
 */
public class JstdToolWindowPanel extends SimpleToolWindowPanel {

    public static final String PLACE = "JsTestDriverToolbar";

From source file com.headwire.aem.tooling.intellij.explorer.SlingPluginExplorer.java

/**
 * This is the Class that sets up the Plugin with all its features. These are its components:
 * 1) Toolbar which uses Actions to perform its features
 * 2) Sling Server Tree (list of servers and the state of the project moodules on there)
 * 3) Sling Server Configuration (persistet configuration of remote AEM / Sling Servers)
 *

From source file com.intellij.ide.hierarchy.HierarchyBrowserBase.java

/**
 * @author yole
 */
public abstract class HierarchyBrowserBase extends SimpleToolWindowPanel
        implements HierarchyBrowser, Disposable, DataProvider {
    private static final HierarchyNodeDescriptor[] EMPTY_DESCRIPTORS = new HierarchyNodeDescriptor[0];

From source file com.intellij.ide.impl.ModuleStructureComponent.java

public class ModuleStructureComponent extends SimpleToolWindowPanel implements Disposable, DataProvider {
    private final ModuleStructurePane myStructurePane;

    public ModuleStructureComponent(Module module) {
        super(true, true);

From source file com.intellij.ide.structureView.newStructureView.StructureViewComponent.java

public class StructureViewComponent extends SimpleToolWindowPanel
        implements TreeActionsOwner, DataProvider, StructureView.Scrollable {
    private static final Logger LOG = Logger
            .getInstance("#com.intellij.ide.structureView.newStructureView.StructureViewComponent");
    @NonNls
    private static final String ourHelpID = "viewingStructure.fileStructureView";

From source file com.intellij.ide.todo.TodoPanel.java

/**
 * @author Vladimir Kondratyev
 */
abstract class TodoPanel extends SimpleToolWindowPanel implements OccurenceNavigator, DataProvider, Disposable {
    private static final Logger LOG = Logger.getInstance("#com.intellij.ide.todo.TodoPanel");

From source file com.intellij.lang.ant.config.explorer.AntExplorer.java

public class AntExplorer extends SimpleToolWindowPanel implements DataProvider, Disposable {
    private Project myProject;
    private AntExplorerTreeBuilder myBuilder;
    private Tree myTree;
    private KeymapListener myKeymapListener;
    private final AntBuildFilePropertiesAction myAntBuildFilePropertiesAction;

From source file com.jetbrains.lang.dart.ide.errorTreeView.DartProblemsViewPanel.java

public class DartProblemsViewPanel extends SimpleToolWindowPanel implements DataProvider, CopyProvider {

    private static final long DEFAULT_SERVER_WAIT_MILLIS = 5000L; // Switch to UNKNOWN after 5s with no response.

    @NotNull
    private final Project myProject;