Examples of ExpandAllAction


Examples of com.intellij.ide.actions.ExpandAllAction

      actionGroup.add(new DeletePluginAction());
      actionGroup.add(new RunPluginAction());
      actionGroup.add(new TestPluginAction());
      actionGroup.addSeparator();
      actionGroup.add(new RefreshPluginTreeAction());
      actionGroup.add(withIcon(IdeUtil.EXPAND_ALL_ICON, new ExpandAllAction()));
      actionGroup.add(withIcon(IdeUtil.COLLAPSE_ALL_ICON, new CollapseAllAction()));
      actionGroup.addSeparator();
      actionGroup.add(withIcon(IdeUtil.SETTINGS_ICON, createSettingsGroup()));

      // this is a "hack" to force drop-down box appear below button
View Full Code Here

Examples of com.intellij.ui.treeStructure.actions.ExpandAllAction

    DefaultActionGroup group = new DefaultActionGroup();

    group.add(ActionManager.getInstance().getAction("DomElementsTreeView.TreePopup"));
    group.addSeparator();

    group.add(new ExpandAllAction(myTree));
    group.add(new CollapseAllAction(myTree));

    return group;
  }
View Full Code Here

Examples of jetbrains.communicator.idea.actions.ExpandAllAction

        updateButtonStatus();
      }
    });

    DefaultActionGroup toolbarActions = new DefaultActionGroup();
    toolbarActions.add(new ExpandAllAction(myUserTree));
    toolbarActions.add(new CollapseAllAction(myUserTree));
    myToolbarPanel.setLayout(new BorderLayout());
    myToolbarPanel.add(ActionManager.getInstance().createActionToolbar("toolbar",
    toolbarActions, true).getComponent(), BorderLayout.EAST);
View Full Code Here

Examples of org.apache.directory.ldapstudio.browser.ui.actions.ExpandAllAction

            openBestValueEditorActionProxy, true ) );

        showOperationalAttributesAction = new ShowOperationalAttributesAction();
        openEntryEditorPreferencePage = new OpenEntryEditorPreferencePageAction();
        collapseAllAction = new CollapseAllAction( viewer );
        expandAllAction = new ExpandAllAction( viewer );

        entryEditorActionMap.put( editAttributeDescriptionAction, new EntryEditorActionProxy( viewer,
            new EditAttributeDescriptionAction( viewer ) ) );

        entryEditorActionMap.put( refreshAttributesAction, new EntryEditorActionProxy( viewer, new RefreshAction() ) );
View Full Code Here

Examples of org.apache.directory.ldapstudio.browser.ui.actions.ExpandAllAction

            openBestValueEditorActionProxy, true ) );

        showOperationalAttributesAction = new ShowOperationalAttributesAction();
        openEntryEditorPreferencePage = new OpenEntryEditorPreferencePageAction();
        collapseAllAction = new CollapseAllAction( viewer );
        expandAllAction = new ExpandAllAction( viewer );

        entryEditorActionMap.put( editAttributeDescriptionAction, new EntryEditorActionProxy( viewer,
            new EditAttributeDescriptionAction( viewer ) ) );

        entryEditorActionMap.put( refreshAttributesAction, new EntryEditorActionProxy( viewer, new RefreshAction() ) );
View Full Code Here

Examples of org.apache.directory.ldapstudio.browser.ui.actions.ExpandAllAction

        this.openDefaultEditorAction.enableRenameEntryAction();

        this.showOperationalAttributesAction = new ShowOperationalAttributesAction();
        this.openEntryEditorPreferencePage = new OpenEntryEditorPreferencePageAction();
        this.collapseAllAction = new CollapseAllAction( viewer );
        this.expandAllAction = new ExpandAllAction( viewer );
        this.editAttributeDescriptionAction = new EditAttributeDescriptionAction( viewer );

        this.entryEditorActionMap.put( refreshAttributesAction,
            new EntryEditorActionProxy( viewer, new RefreshAction() ) );
View Full Code Here

Examples of org.apache.directory.studio.connection.ui.actions.ExpandAllAction

        showOperationalAttributesAction = new ShowOperationalAttributesAction();
        toggleAutosaveAction = new ToggleAutosaveAction( entryEditor );
        openEntryEditorPreferencePage = new OpenEntryEditorPreferencePageAction();
        collapseAllAction = new CollapseAllAction( viewer );
        expandAllAction = new ExpandAllAction( viewer );

        entryEditorActionMap.put( editAttributeDescriptionAction, new EntryEditorActionProxy( viewer,
            new EditAttributeDescriptionAction( viewer ) ) );

        entryEditorActionMap.put( refreshAttributesAction, new EntryEditorActionProxy( viewer, new RefreshAction() ) );
View Full Code Here

Examples of org.apache.directory.studio.connection.ui.actions.ExpandAllAction

    {
        this.mainWidget = mainWidget;
        TreeViewer viewer = mainWidget.getViewer();

        collapseAllAction = new CollapseAllAction( viewer );
        expandAllAction = new ExpandAllAction( viewer );

        connectionActionMap = new HashMap<String, ConnectionViewActionProxy>();

        connectionActionMap.put( newConnectionAction, new ConnectionViewActionProxy( viewer, this,
            new NewConnectionAction() ) );
View Full Code Here

Examples of org.apache.directory.studio.connection.ui.actions.ExpandAllAction

            valueEditorManager, valueEditorManager.getEntryValueEditor(), this ) );

        toggleAutosaveAction = new ToggleAutosaveAction( entryEditor );
        openEntryEditorPreferencePage = new OpenEntryEditorPreferencePageAction();
        collapseAllAction = new CollapseAllAction( viewer );
        expandAllAction = new ExpandAllAction( viewer );

        entryEditorActionMap.put( editAttributeDescriptionAction, new EntryEditorActionProxy( viewer,
            new EditAttributeDescriptionAction( viewer ) ) );

        entryEditorActionMap.put( refreshAttributesAction, new EntryEditorActionProxy( viewer, new RefreshAction() ) );
View Full Code Here

Examples of org.apache.directory.studio.connection.ui.actions.ExpandAllAction

    {
        this.mainWidget = mainWidget;
        TreeViewer viewer = mainWidget.getViewer();

        collapseAllAction = new CollapseAllAction( viewer );
        expandAllAction = new ExpandAllAction( viewer );

        connectionActionMap = new HashMap<String, ConnectionViewActionProxy>();

        connectionActionMap.put( newConnectionAction, new ConnectionViewActionProxy( viewer, this,
            new NewConnectionAction() ) );
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.