⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 closetabbedpane.java

📁 eq跨平台查询工具源码 eq跨平台查询工具源码
💻 JAVA
字号:
/* * CloseTabbedPane.java * * Copyright (C) 2002, 2003, 2004, 2005, 2006 Takis Diakoumis * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA. * */package org.underworldlabs.swing;import java.awt.Component;import java.awt.event.ActionEvent;import java.awt.event.ActionListener;import javax.swing.Icon;import javax.swing.JMenu;import javax.swing.JMenuItem;import javax.swing.JPopupMenu;import javax.swing.JTabbedPane;import org.underworldlabs.swing.plaf.CloseTabContentPanel;import org.underworldlabs.swing.plaf.CloseTabbedPaneUI;import org.underworldlabs.swing.plaf.TabMenuItem;/* ---------------------------------------------------------- * CVS NOTE: Changes to the CVS repository prior to the  *           release of version 3.0.0beta1 has meant a  *           resetting of CVS revision numbers. * ---------------------------------------------------------- *//** * * @author   Takis Diakoumis * @version  $Revision: 1.4 $ * @date     $Date: 2006/05/14 06:56:07 $ */public class CloseTabbedPane extends JTabbedPane {    /** whether the default popup is enabled */    private boolean tabPopupEnabled;    /** the popup menu */    private TabPopupMenu popup;        public CloseTabbedPane() {        this(TOP, SCROLL_TAB_LAYOUT);    }    public CloseTabbedPane(int tabPlacement) {        this(tabPlacement, SCROLL_TAB_LAYOUT);    }    public CloseTabbedPane(int tabPlacement, int tabLayoutPolicy) {        super(tabPlacement, tabLayoutPolicy);    }    public void addTab(String title, Component component) {        addTab(title, null, component, null);    }        public void addTab(String title, Icon icon, Component component) {        addTab(title, icon, component, null);    }    public void insertTab(String title, Icon icon, Component component, String tip, int index) {        // make sure the pane is visible - may have been empty        if (!isVisible()) {            setVisible(true);        }        CloseTabContentPanel _component = new CloseTabContentPanel(tabPlacement, component);        super.insertTab(title, icon, _component, tip, index);        if (tabPopupEnabled) {            TabMenuItem menuItem = addAssociatedMenu(title, icon, _component);            _component.setTabMenuItem(menuItem);        }    }        public void addTab(String title, Icon icon, Component component, String tip) {                // make sure the pane is visible - may have been empty        if (!isVisible()) {            setVisible(true);        }        CloseTabContentPanel _component = new CloseTabContentPanel(tabPlacement, component);        super.addTab(title, icon, _component, tip);        if (tabPopupEnabled) {            TabMenuItem menuItem = addAssociatedMenu(title, icon, _component);            _component.setTabMenuItem(menuItem);        }    }/*    public void setSelectedComponent(Component component) {        for(int i = 0; i < getTabCount(); i++) {            Component c = super.getComponentAt(i);            if (c instanceof CloseTabContentPanel) {                CloseTabContentPanel panel = (CloseTabContentPanel)c;                if (panel.getDisplayComponent() == component) {                    super.setSelectedComponent(c);                }            }        }    }    public int indexOfComponent(Component component) {        for(int i = 0; i < getTabCount(); i++) {            Component c = super.getComponentAt(i);            if (c instanceof CloseTabContentPanel) {                CloseTabContentPanel panel = (CloseTabContentPanel)c;                if (panel.getDisplayComponent() == component) {                    return i;                }            }        }        return super.indexOfComponent(component);    }        public Component getComponentAt(int index) {        Component c = super.getComponentAt(index);        if (c instanceof CloseTabContentPanel) {            CloseTabContentPanel panel = (CloseTabContentPanel)c;            return panel.getDisplayComponent();        }        return c;    }    public Component getSelectedComponent() {        Component c = super.getSelectedComponent();        if (c instanceof CloseTabContentPanel) {            CloseTabContentPanel panel = (CloseTabContentPanel)c;            return panel.getDisplayComponent();        }        return c;    }*/    protected TabMenuItem addAssociatedMenu(String title, Icon icon, Component component) {        TabMenuItem menuItem = new TabMenuItem(title, icon, component);        popup.addTabSelectionMenuItem(menuItem);        return menuItem;    }        public void removeAll() {        popup.removeAllTabSelectionMenuItems();        super.removeAll();        setVisible(false);    }    public void remove(int index) {        CloseTabContentPanel component = (CloseTabContentPanel)getComponentAt(index);        if (tabPopupEnabled) {            popup.removeTabSelectionMenuItem(component.getTabMenuItem());        }        super.remove(index);        if (getTabCount() == 0) {            setVisible(false);        }    }    public void updateUI() {        setUI(new CloseTabbedPaneUI());    }    public boolean isTabPopupEnabled() {        return tabPopupEnabled;    }    public void setTabPopupEnabled(boolean tabPopupEnabled) {        this.tabPopupEnabled = tabPopupEnabled;        if (tabPopupEnabled && popup == null) {            popup = new TabPopupMenu(this);        }    }    public void showPopup(int index, int x, int y) {        popup.setHoverTabIndex(index);        popup.show(this, x, y);    }        private class TabPopupMenu extends JPopupMenu implements ActionListener {        private JMenu openTabs;        private JMenuItem close;        private JMenuItem closeAll;        private JMenuItem closeOther;                private JTabbedPane tabPane;                private int hoverTabIndex;                public TabPopupMenu(JTabbedPane tabPane) {            this.tabPane = tabPane;            close = new JMenuItem("Close");            closeAll = new JMenuItem("Close All");            closeOther = new JMenuItem("Close Others");                        close.addActionListener(this);            closeAll.addActionListener(this);            closeOther.addActionListener(this);            add(close);            add(closeAll);            add(closeOther);                        hoverTabIndex = -1;        }        public void addTabSelectionMenuItem(TabMenuItem menuItem) {            if (openTabs == null) {                addSeparator();                openTabs = new JMenu("Select");                add(openTabs);            }            menuItem.addActionListener(this);            openTabs.add(menuItem);        }                public void removeAllTabSelectionMenuItems() {            if (openTabs == null) {                return;            }            openTabs.removeAll();                    }        public void removeTabSelectionMenuItem(TabMenuItem menuItem) {            if (openTabs == null) {                return;            }            openTabs.remove(menuItem);        }                public void actionPerformed(ActionEvent e) {            if (hoverTabIndex == -1) {                return;            }                        Object source = e.getSource();            if (source == close) {                tabPane.remove(hoverTabIndex);            }            else if (source == closeAll) {                tabPane.removeAll();            }            else if (source == closeOther) {                int count = 0;                int tabCount = tabPane.getTabCount();                Component[] tabs = new Component[tabCount -1];                for (int i = 0; i < tabCount; i++) {                    if (i != hoverTabIndex) {                        tabs[count++] = tabPane.getComponentAt(i);                    }                }                for (int i = 0; i < tabs.length; i++) {                    tabPane.remove(tabs[i]);                }            }            else if (source instanceof TabMenuItem) {                TabMenuItem item = (TabMenuItem)source;                tabPane.setSelectedComponent(item.getTabComponent());            }        }        public int getHoverTabIndex() {            return hoverTabIndex;        }        public void setHoverTabIndex(int hoverTabIndex) {            this.hoverTabIndex = hoverTabIndex;        }            } // class TabPopupMenu}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -