Search in sources :

Example 1 with LoadingNode

use of com.intellij.ui.LoadingNode in project intellij-community by JetBrains.

the class NotificationMessageElement method updateStyle.

protected void updateStyle(@NotNull JEditorPane editorPane, @Nullable JTree tree, Object value, boolean selected, boolean hasFocus) {
    final HTMLDocument htmlDocument = (HTMLDocument) editorPane.getDocument();
    final Style style = htmlDocument.getStyleSheet().getStyle(MSG_STYLE);
    if (value instanceof LoadingNode) {
        StyleConstants.setForeground(style, JBColor.GRAY);
    } else {
        if (selected) {
            StyleConstants.setForeground(style, hasFocus ? UIUtil.getTreeSelectionForeground() : UIUtil.getTreeTextForeground());
        } else {
            StyleConstants.setForeground(style, UIUtil.getTreeTextForeground());
        }
    }
    if (UIUtil.isUnderGTKLookAndFeel() || UIUtil.isUnderNimbusLookAndFeel() && selected && hasFocus || tree != null && WideSelectionTreeUI.isWideSelection(tree)) {
        editorPane.setOpaque(false);
    } else {
        editorPane.setOpaque(selected && hasFocus);
    }
    htmlDocument.setCharacterAttributes(0, htmlDocument.getLength(), style, false);
}
Also used : HTMLDocument(javax.swing.text.html.HTMLDocument) Style(javax.swing.text.Style) LoadingNode(com.intellij.ui.LoadingNode)

Example 2 with LoadingNode

use of com.intellij.ui.LoadingNode in project azure-tools-for-java by Microsoft.

the class ServerExplorerToolWindowFactory method createToolWindowContent.

@Override
@AzureOperation(name = "common|explorer.initialize", type = AzureOperation.Type.SERVICE)
public void createToolWindowContent(@NotNull final Project project, @NotNull final ToolWindow toolWindow) {
    // initialize azure service module
    AzureModule azureModule = new AzureModuleImpl(project);
    HDInsightUtil.setHDInsightRootModule(azureModule);
    azureModule.setSparkServerlessModule(new CosmosSparkClusterRootModuleImpl(azureModule));
    azureModule.setArcadiaModule(new ArcadiaSparkClusterRootModuleImpl(azureModule));
    // initialize aris service module
    SqlBigDataClusterModule arisModule = new SqlBigDataClusterModule(project);
    // initialize with all the service modules
    DefaultTreeModel treeModel = new DefaultTreeModel(initRoot(project, ImmutableList.of(azureModule, arisModule)));
    treeModelMap.put(project, treeModel);
    // initialize tree
    final JTree tree = new Tree(treeModel);
    tree.setRootVisible(false);
    tree.setCellRenderer(new NodeTreeCellRenderer());
    tree.getSelectionModel().setSelectionMode(TreeSelectionModel.SINGLE_TREE_SELECTION);
    new TreeSpeedSearch(tree);
    final DefaultMutableTreeNode root = (DefaultMutableTreeNode) treeModel.getRoot();
    final DefaultMutableTreeNode azureRoot = (DefaultMutableTreeNode) root.getChildAt(0);
    final List<? extends com.microsoft.azure.toolkit.intellij.common.component.Tree.TreeNode<?>> modules = AzureExplorer.getModules().stream().map(m -> new com.microsoft.azure.toolkit.intellij.common.component.Tree.TreeNode<>(m, tree)).collect(Collectors.toList());
    modules.forEach(azureRoot::add);
    azureModule.setClearResourcesListener(() -> modules.forEach(m -> m.clearChildren()));
    com.microsoft.azure.toolkit.intellij.common.component.Tree.installPopupMenu(tree);
    treeModel.reload();
    DataManager.registerDataProvider(tree, dataId -> {
        if (StringUtils.equals(dataId, Action.SOURCE)) {
            final DefaultMutableTreeNode selectedNode = (DefaultMutableTreeNode) tree.getLastSelectedPathComponent();
            if (Objects.nonNull(selectedNode)) {
                return selectedNode.getUserObject();
            }
        }
        return null;
    });
    // add a click handler for the tree
    tree.addMouseListener(new MouseAdapter() {

        @Override
        public void mouseClicked(final MouseEvent e) {
            if (e.getClickCount() == 2 && SwingUtilities.isLeftMouseButton(e)) {
                treeNodeDblClicked(e, tree, project);
            }
        }

        @Override
        public void mousePressed(MouseEvent e) {
            treeMousePressed(e, tree);
        }
    });
    // add keyboard handler for the tree
    tree.addKeyListener(new KeyListener() {

        @Override
        public void keyTyped(KeyEvent e) {
        }

        @Override
        public void keyPressed(KeyEvent e) {
        }

        @Override
        public void keyReleased(KeyEvent e) {
            TreePath treePath = tree.getAnchorSelectionPath();
            if (treePath == null) {
                return;
            }
            final Object raw = treePath.getLastPathComponent();
            if (raw instanceof com.microsoft.azure.toolkit.intellij.common.component.Tree.TreeNode || raw instanceof LoadingNode) {
                return;
            }
            SortableTreeNode treeNode = (SortableTreeNode) raw;
            Node node = (Node) treeNode.getUserObject();
            Rectangle rectangle = tree.getRowBounds(tree.getRowForPath(treePath));
            if (e.getKeyCode() == KeyEvent.VK_ENTER) {
                if (!node.isLoading()) {
                    node.getClickAction().fireNodeActionEvent();
                }
            } else if (e.getKeyCode() == KeyEvent.VK_CONTEXT_MENU) {
                if (node.hasNodeActions()) {
                    JPopupMenu menu = createPopupMenuForNode(node);
                    menu.show(e.getComponent(), (int) rectangle.getX(), (int) rectangle.getY());
                }
            }
        }
    });
    // add the tree to the window
    toolWindow.getComponent().add(new JBScrollPane(tree));
    // set tree and tree path to expand the node later
    azureModule.setTree(tree);
    azureModule.setTreePath(tree.getPathForRow(0));
    // setup toolbar icons
    addToolbarItems(toolWindow, project, azureModule);
}
Also used : AuthMethodManager(com.microsoft.azuretools.authmanage.AuthMethodManager) ObservableList(com.microsoft.tooling.msservices.helpers.collections.ObservableList) ListChangedEvent(com.microsoft.tooling.msservices.helpers.collections.ListChangedEvent) NodeAction(com.microsoft.tooling.msservices.serviceexplorer.NodeAction) StringUtils(org.apache.commons.lang3.StringUtils) AzureModule(com.microsoft.tooling.msservices.serviceexplorer.azure.AzureModule) SqlBigDataClusterModule(com.microsoft.azure.sqlbigdata.serverexplore.SqlBigDataClusterModule) AzureIconSymbol(com.microsoft.tooling.msservices.serviceexplorer.AzureIconSymbol) TreeSpeedSearch(com.intellij.ui.TreeSpeedSearch) UIHelperImpl(com.microsoft.intellij.helpers.UIHelperImpl) StorageModule(com.microsoft.tooling.msservices.serviceexplorer.azure.storage.StorageModule) ProjectManager(com.intellij.openapi.project.ProjectManager) Map(java.util.Map) MouseAdapter(java.awt.event.MouseAdapter) RefreshableNode(com.microsoft.tooling.msservices.serviceexplorer.RefreshableNode) AzureExplorer(com.microsoft.azure.toolkit.intellij.explorer.AzureExplorer) DefaultTreeModel(javax.swing.tree.DefaultTreeModel) ProjectManagerListener(com.intellij.openapi.project.ProjectManagerListener) ToolWindow(com.intellij.openapi.wm.ToolWindow) LoadingNode(com.intellij.ui.LoadingNode) AzureModuleImpl(com.microsoft.intellij.serviceexplorer.azure.AzureModuleImpl) TreePath(javax.swing.tree.TreePath) Collection(java.util.Collection) KeyEvent(java.awt.event.KeyEvent) Collectors(java.util.stream.Collectors) MutableTreeNode(javax.swing.tree.MutableTreeNode) JBScrollPane(com.intellij.ui.components.JBScrollPane) DefaultMutableTreeNode(javax.swing.tree.DefaultMutableTreeNode) Objects(java.util.Objects) Nullable(org.jetbrains.annotations.Nullable) List(java.util.List) PropertyChangeListener(java.beans.PropertyChangeListener) CosmosSparkClusterRootModuleImpl(com.microsoft.azure.cosmosspark.serverexplore.cosmossparknode.CosmosSparkClusterRootModuleImpl) Action(com.microsoft.azure.toolkit.lib.common.action.Action) AnActionEvent(com.intellij.openapi.actionSystem.AnActionEvent) ApplicationManager(com.intellij.openapi.application.ApplicationManager) NotNull(org.jetbrains.annotations.NotNull) AzureTaskManager(com.microsoft.azure.toolkit.lib.common.task.AzureTaskManager) KeyListener(java.awt.event.KeyListener) AzureOperation(com.microsoft.azure.toolkit.lib.common.operation.AzureOperation) TreeNode(javax.swing.tree.TreeNode) AzureIconLoader(com.microsoft.intellij.helpers.AzureIconLoader) Node(com.microsoft.tooling.msservices.serviceexplorer.Node) HDInsightUtil(com.microsoft.azure.hdinsight.common.HDInsightUtil) HashMap(java.util.HashMap) ToolWindowFactory(com.intellij.openapi.wm.ToolWindowFactory) NodeRenderer(com.intellij.ide.util.treeView.NodeRenderer) AzureTask(com.microsoft.azure.toolkit.lib.common.task.AzureTask) LinkedHashMap(java.util.LinkedHashMap) ImmutableList(com.google.common.collect.ImmutableList) ArcadiaSparkClusterRootModuleImpl(com.microsoft.azure.arcadia.serverexplore.ArcadiaSparkClusterRootModuleImpl) Project(com.intellij.openapi.project.Project) Tree(com.intellij.ui.treeStructure.Tree) DefaultLoader(com.microsoft.tooling.msservices.components.DefaultLoader) DataManager(com.intellij.ide.DataManager) PropertyChangeEvent(java.beans.PropertyChangeEvent) AnAction(com.intellij.openapi.actionSystem.AnAction) AzurePlugin(com.microsoft.intellij.AzurePlugin) AzureSignInAction(com.microsoft.intellij.actions.AzureSignInAction) SelectSubscriptionsAction(com.microsoft.intellij.actions.SelectSubscriptionsAction) TreeSelectionModel(javax.swing.tree.TreeSelectionModel) ListChangeListener(com.microsoft.tooling.msservices.helpers.collections.ListChangeListener) VMArmModule(com.microsoft.tooling.msservices.serviceexplorer.azure.vmarm.VMArmModule) MouseEvent(java.awt.event.MouseEvent) java.awt(java.awt) ToolWindowEx(com.intellij.openapi.wm.ex.ToolWindowEx) Comparator(java.util.Comparator) javax.swing(javax.swing) DefaultMutableTreeNode(javax.swing.tree.DefaultMutableTreeNode) TreeSpeedSearch(com.intellij.ui.TreeSpeedSearch) RefreshableNode(com.microsoft.tooling.msservices.serviceexplorer.RefreshableNode) LoadingNode(com.intellij.ui.LoadingNode) MutableTreeNode(javax.swing.tree.MutableTreeNode) DefaultMutableTreeNode(javax.swing.tree.DefaultMutableTreeNode) TreeNode(javax.swing.tree.TreeNode) Node(com.microsoft.tooling.msservices.serviceexplorer.Node) KeyEvent(java.awt.event.KeyEvent) ArcadiaSparkClusterRootModuleImpl(com.microsoft.azure.arcadia.serverexplore.ArcadiaSparkClusterRootModuleImpl) MutableTreeNode(javax.swing.tree.MutableTreeNode) DefaultMutableTreeNode(javax.swing.tree.DefaultMutableTreeNode) TreeNode(javax.swing.tree.TreeNode) AzureModule(com.microsoft.tooling.msservices.serviceexplorer.azure.AzureModule) Tree(com.intellij.ui.treeStructure.Tree) MouseEvent(java.awt.event.MouseEvent) CosmosSparkClusterRootModuleImpl(com.microsoft.azure.cosmosspark.serverexplore.cosmossparknode.CosmosSparkClusterRootModuleImpl) MouseAdapter(java.awt.event.MouseAdapter) LoadingNode(com.intellij.ui.LoadingNode) DefaultTreeModel(javax.swing.tree.DefaultTreeModel) SqlBigDataClusterModule(com.microsoft.azure.sqlbigdata.serverexplore.SqlBigDataClusterModule) AzureModuleImpl(com.microsoft.intellij.serviceexplorer.azure.AzureModuleImpl) TreePath(javax.swing.tree.TreePath) KeyListener(java.awt.event.KeyListener) JBScrollPane(com.intellij.ui.components.JBScrollPane) AzureOperation(com.microsoft.azure.toolkit.lib.common.operation.AzureOperation)

Example 3 with LoadingNode

use of com.intellij.ui.LoadingNode in project azure-tools-for-java by Microsoft.

the class ServerExplorerToolWindowFactory method getTreeNodeOnMouseClick.

@Nullable
private Node getTreeNodeOnMouseClick(JTree tree, TreePath treePath) {
    final Object raw = treePath.getLastPathComponent();
    if (raw instanceof com.microsoft.azure.toolkit.intellij.common.component.Tree.TreeNode || raw instanceof LoadingNode) {
        return null;
    }
    SortableTreeNode treeNode = (SortableTreeNode) raw;
    Node node = (Node) treeNode.getUserObject();
    // set tree and tree path to expand the node later
    node.setTree(tree);
    node.setTreePath(treePath);
    return node;
}
Also used : RefreshableNode(com.microsoft.tooling.msservices.serviceexplorer.RefreshableNode) LoadingNode(com.intellij.ui.LoadingNode) MutableTreeNode(javax.swing.tree.MutableTreeNode) DefaultMutableTreeNode(javax.swing.tree.DefaultMutableTreeNode) TreeNode(javax.swing.tree.TreeNode) Node(com.microsoft.tooling.msservices.serviceexplorer.Node) Tree(com.intellij.ui.treeStructure.Tree) LoadingNode(com.intellij.ui.LoadingNode) Nullable(org.jetbrains.annotations.Nullable)

Example 4 with LoadingNode

use of com.intellij.ui.LoadingNode in project android by JetBrains.

the class ApkDiffPanel method createUIComponents.

private void createUIComponents() {
    myTreeModel = new DefaultTreeModel(new LoadingNode());
    myTree = new Tree(myTreeModel);
    myTree.setShowsRootHandles(true);
    // show root node only when showing LoadingNode
    myTree.setRootVisible(true);
    myTree.setPaintBusy(true);
    Convertor<TreePath, String> convertor = new Convertor<TreePath, String>() {

        @Override
        public String convert(TreePath path) {
            ApkEntry e = ApkEntry.fromNode(path.getLastPathComponent());
            if (e == null) {
                return null;
            }
            return e.getPath();
        }
    };
    TreeSpeedSearch treeSpeedSearch = new TreeSpeedSearch(myTree, convertor, true);
    ColumnTreeBuilder builder = new ColumnTreeBuilder(myTree).addColumn(new ColumnTreeBuilder.ColumnBuilder().setName("File").setPreferredWidth(600).setHeaderAlignment(SwingConstants.LEADING).setRenderer(new NameRenderer(treeSpeedSearch))).addColumn(new ColumnTreeBuilder.ColumnBuilder().setName("Old Size").setPreferredWidth(150).setHeaderAlignment(SwingConstants.TRAILING).setRenderer(new SizeRenderer(ApkDiffEntry::getOldSize))).addColumn(new ColumnTreeBuilder.ColumnBuilder().setName("New Size").setPreferredWidth(150).setHeaderAlignment(SwingConstants.TRAILING).setRenderer(new SizeRenderer(ApkDiffEntry::getNewSize))).addColumn(new ColumnTreeBuilder.ColumnBuilder().setName("Diff Size").setPreferredWidth(150).setHeaderAlignment(SwingConstants.TRAILING).setRenderer(new SizeRenderer(ApkEntry::getSize)));
    myColumnTreePane = (JScrollPane) builder.build();
}
Also used : SizeRenderer(com.android.tools.idea.apk.viewer.ApkViewPanel.SizeRenderer) NameRenderer(com.android.tools.idea.apk.viewer.ApkViewPanel.NameRenderer) TreeSpeedSearch(com.intellij.ui.TreeSpeedSearch) LoadingNode(com.intellij.ui.LoadingNode) ApkEntry(com.android.tools.idea.apk.viewer.ApkEntry) DefaultTreeModel(javax.swing.tree.DefaultTreeModel) Convertor(com.intellij.util.containers.Convertor) TreePath(javax.swing.tree.TreePath) ColumnTreeBuilder(com.android.tools.adtui.common.ColumnTreeBuilder) Tree(com.intellij.ui.treeStructure.Tree)

Example 5 with LoadingNode

use of com.intellij.ui.LoadingNode in project android by JetBrains.

the class ColumnTreeBuilderTest method testTreeFillsViewportIfSmallerThanViewport.

@Test
public void testTreeFillsViewportIfSmallerThanViewport() throws Exception {
    // Prepare
    DefaultTreeModel treeModel = new DefaultTreeModel(new LoadingNode());
    Tree tree = new Tree(treeModel);
    ColumnTreeBuilder builder = new ColumnTreeBuilder(tree).addColumn(new ColumnTreeBuilder.ColumnBuilder().setName("A").setPreferredWidth(30).setHeaderAlignment(SwingConstants.LEADING).setRenderer(new MyEmptyRenderer())).addColumn(new ColumnTreeBuilder.ColumnBuilder().setName("B").setPreferredWidth(60).setHeaderAlignment(SwingConstants.TRAILING).setRenderer(new MyEmptyRenderer()));
    JScrollPane columnTreePane = (JScrollPane) builder.build();
    columnTreePane.setPreferredSize(new Dimension(100, 100));
    assertThat(tree.getHeight()).isEqualTo(0);
    // Act: Simulate layout
    columnTreePane.setSize(new Dimension(100, 100));
    columnTreePane.doLayout();
    columnTreePane.getViewport().doLayout();
    columnTreePane.getViewport().getView().doLayout();
    // Assert: Check the tree height has been extended to the whole viewport
    assertThat(tree.getHeight()).isGreaterThan(0);
    assertThat(tree.getHeight()).isEqualTo(columnTreePane.getViewport().getHeight());
}
Also used : Tree(com.intellij.ui.treeStructure.Tree) LoadingNode(com.intellij.ui.LoadingNode) DefaultTreeModel(javax.swing.tree.DefaultTreeModel) Test(org.junit.Test)

Aggregations

LoadingNode (com.intellij.ui.LoadingNode)6 Tree (com.intellij.ui.treeStructure.Tree)4 TreeSpeedSearch (com.intellij.ui.TreeSpeedSearch)2 Node (com.microsoft.tooling.msservices.serviceexplorer.Node)2 RefreshableNode (com.microsoft.tooling.msservices.serviceexplorer.RefreshableNode)2 DefaultMutableTreeNode (javax.swing.tree.DefaultMutableTreeNode)2 DefaultTreeModel (javax.swing.tree.DefaultTreeModel)2 MutableTreeNode (javax.swing.tree.MutableTreeNode)2 TreeNode (javax.swing.tree.TreeNode)2 Nullable (org.jetbrains.annotations.Nullable)2 ColumnTreeBuilder (com.android.tools.adtui.common.ColumnTreeBuilder)1 ApkEntry (com.android.tools.idea.apk.viewer.ApkEntry)1 NameRenderer (com.android.tools.idea.apk.viewer.ApkViewPanel.NameRenderer)1 SizeRenderer (com.android.tools.idea.apk.viewer.ApkViewPanel.SizeRenderer)1 ImmutableList (com.google.common.collect.ImmutableList)1 DataManager (com.intellij.ide.DataManager)1 NodeRenderer (com.intellij.ide.util.treeView.NodeRenderer)1 TreeConsumer (com.intellij.ide.util.treeView.TreeRunnable.TreeConsumer)1 AnAction (com.intellij.openapi.actionSystem.AnAction)1 AnActionEvent (com.intellij.openapi.actionSystem.AnActionEvent)1