All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.as.cli.gui.component.TabsMenu Maven / Gradle / Ivy

/*
 * JBoss, Home of Professional Open Source
 * Copyright 2013 Red Hat Inc. and/or its affiliates and other contributors
 * as indicated by the @author tags. All rights reserved.
 * See the copyright.txt in the distribution for a
 * full listing of individual contributors.
 *
 * This copyrighted material is made available to anyone wishing to use,
 * modify, copy, or redistribute it subject to the terms and conditions
 * of the GNU Lesser General Public License, v. 2.1.
 * This program is distributed in the hope that it will be useful, but WITHOUT A
 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
 * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
 * You should have received a copy of the GNU Lesser General Public License,
 * v.2.1 along with this distribution; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
 * MA  02110-1301, USA.
 */
package org.jboss.as.cli.gui.component;

import java.awt.event.ActionEvent;
import java.awt.event.KeyEvent;
import javax.swing.AbstractAction;
import javax.swing.JMenu;
import javax.swing.JMenuItem;
import javax.swing.JTabbedPane;
import javax.swing.event.MenuEvent;
import javax.swing.event.MenuListener;
import org.jboss.as.cli.gui.CliGuiContext;
import org.jboss.as.cli.gui.metacommand.ExploreNodeAction;

/**
 * Extension of JMenu that creates and manages tabs.
 *
 * @author Stan Silvert [email protected] (C) 2012 Red Hat Inc.
 */
public class TabsMenu extends JMenu {

    private CliGuiContext cliGuiCtx;

    public TabsMenu(CliGuiContext cliGuiCtx) {
        super("Tabs");
        this.cliGuiCtx = cliGuiCtx;
        setMnemonic(KeyEvent.VK_T);
        addMenuListener(new TabsMenuListener());
    }

    private class TabsMenuListener implements MenuListener {

        public void menuSelected(MenuEvent e) {
            TabsMenu.this.removeAll();
            ExploreNodeAction exploreAction = new ExploreNodeAction(cliGuiCtx);
            JMenuItem exploreSelectedNode = new JMenuItem(exploreAction);
            exploreSelectedNode.setMnemonic(KeyEvent.VK_E);

            if ((exploreAction.getSelectedNode() == null) || exploreAction.getSelectedNode().isLeaf()) {
                exploreSelectedNode.setEnabled(false);
            }

            add(exploreSelectedNode);
            addSeparator();

            JTabbedPane tabs = cliGuiCtx.getTabs();
            for (int i=0; i < tabs.getTabCount(); i++) {
                GoToTabAction action = new GoToTabAction(i, tabs.getTitleAt(i));
                JMenuItem item = new JMenuItem(action);
                item.setToolTipText(tabs.getToolTipTextAt(i));
                add(item);
            }
        }

        public void menuDeselected(MenuEvent e) {
        }

        public void menuCanceled(MenuEvent e) {
        }
    }

    private class GoToTabAction extends AbstractAction {

        private int index;

        public GoToTabAction(int index, String title) {
            super(title);
            this.index = index;
        }
        public void actionPerformed(ActionEvent e) {
            cliGuiCtx.getTabs().setSelectedIndex(index);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy