/* -*- tab-width: 4 -*- * * Electric(tm) VLSI Design System * * File: EMenuItem.java * * Copyright (c) 2003 Sun Microsystems and Static Free Software * * Electric(tm) 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 3 of the License, or * (at your option) any later version. * * Electric(tm) 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 Electric(tm); see the file COPYING. If not, write to * the Free Software Foundation, Inc., 59 Temple Place, Suite 330, * Boston, Mass 02111-1307, USA. */ package com.sun.electric.tool.user.menus; import com.sun.electric.Main; import com.sun.electric.tool.user.ActivityLogger; import com.sun.electric.tool.user.UserInterfaceMain; import com.sun.electric.tool.user.ui.KeyStrokePair; import java.awt.Toolkit; import javax.swing.Icon; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.JCheckBoxMenuItem; import javax.swing.JMenuItem; import javax.swing.KeyStroke; /** * Generic Electric menu item. * It generates real menu buttons and tool buttons with shared state. */ public abstract class EMenuItem implements ActionListener { public static final EMenuItem[] NULL_ARRAY = {}; private static final int buckyBit = Toolkit.getDefaultToolkit().getMenuShortcutKeyMask(); /** * A constant to represent separator in menus. */ public static final EMenuItem SEPARATOR = new EMenuItem("---------------") { @Override void registerTree(EMenuBar menuBar, int[] parentPath, int indexInParent) {} @Override public JMenuItem genMenu() { throw new UnsupportedOperationException(); } @Override public void run() { throw new UnsupportedOperationException(); } }; /** * Last activate command. */ private static EMenuItem lastActivated = null; /** * A text description of this EMenuItem. * This text is used as a key when key bindings are saved in preferences. * This text also apperas on menu buttons and as a tool tip text on tool buttons. */ private final String text; /** * The icon for the menu item, or null if none. */ private final Icon icon; /** * Mnemonic position in text description of this EMenuItem. * The chanracter at this position is underlined, an Alt shortcut key is created. */ private final int mnemonicsPos; /** * Additional accelerator for this EMenuItem. */ private KeyStroke [] accelerators; /** * Top EMenuBar for this EMenuItem. */ EMenuBar menuBar; /** * A path from EMenuBar to this menu item. */ int [] path; /** * @param text the menu item's displayed text. An "_" in the string * indicates the location of the "mnemonic" key for that entry. * @param accelerators the shortcut keys, or null if none specified. * @param useMnemonics true to use mnemonics, otherwise "_" is left untouched. * @param icon the icon for the menu item */ EMenuItem(String text, KeyStroke [] accelerators, boolean useMnemonics, Icon icon) { int mnemonicsPos = text.indexOf('_'); if (mnemonicsPos == text.length() - 1 || !useMnemonics) mnemonicsPos = -1; // Don't consider '_' at end of text this.mnemonicsPos = mnemonicsPos; this.text = mnemonicsPos >= 0 ? text.substring(0, mnemonicsPos) + text.substring(mnemonicsPos+1) : text; if (accelerators == null) accelerators = new KeyStroke [0]; this.accelerators = accelerators; this.icon = icon; } /** * @param text the menu item's displayed text. An "_" in the string * indicates the location of the "mnemonic" key for that entry. * @param accelerators the shortcut keys, or null if none specified. * @param useMnemonics true to use mnemonics, otherwise "_" is left untouched. */ EMenuItem(String text, KeyStroke [] accelerators, boolean useMnemonics) { this(text, accelerators, useMnemonics, null); } /** * @param text the menu item's displayed text. An "_" in the string * indicates the location of the "mnemonic" key for that entry. * A "\_" is replaced with "_" and the key after it is not treated as a mnemonic. * @param accelerators the shortcut keys, or null if none specified. */ EMenuItem(String text, KeyStroke [] accelerators) { this(text, accelerators, true); } /** * @param text the menu item's displayed text. An "_" in the string * indicates the location of the "mnemonic" key for that entry. * @param accelerator the shortcut key, or null if none specified. * @param accelerator2 the second shortcut key, or null if none specified. */ EMenuItem(String text, KeyStroke accelerator, KeyStroke accelerator2) { this(text, new KeyStroke [] { accelerator, accelerator2 }); } /** * @param text the menu item's displayed text. An "_" in the string * indicates the location of the "mnemonic" key for that entry. * @param accelerator the shortcut key, or null if none specified. */ public EMenuItem(String text, KeyStroke accelerator) { this(text, new KeyStroke [] { accelerator }); } /** * @param text the menu item's displayed text. An "_" in the string * indicates the location of the "mnemonic" key for that entry. */ public EMenuItem(String text) { this(text, new KeyStroke [0]); } /** * @param text the menu item's displayed text. An "_" in the string * @param icon the icon for the menu item * indicates the location of the "mnemonic" key for that entry. */ public EMenuItem(String text, Icon icon) { this(text, new KeyStroke [0], true, icon); } /** * @param text the menu item's displayed text. An "_" in the string * indicates the location of the "mnemonic" key for that entry. * @param acceleratorChar the shortcut char. */ public EMenuItem(String text, char acceleratorChar) { this(text, shortcut(acceleratorChar)); } /** * @param text the menu item's displayed text. An "_" in the string * indicates the location of the "mnemonic" key for that entry. * @param acceleratorChar the shortcut char. * @param keyCode the second shortcut key. */ EMenuItem(String text, char acceleratorChar, int keyCode) { this(text, new KeyStroke [] { shortcut(acceleratorChar), shortcut(keyCode)}); } /** * @param text the menu item's displayed text. An "_" in the string * indicates the location of the "mnemonic" key for that entry. * @param keyCodes the shortcut keys. */ EMenuItem(String text, int [] keyCodes) { this(text, shortcut(keyCodes)); } /** * Determines which modifier key is the appropriate accelerator * key for menu shortcuts. * @param keyCode key code without modifier. * @return key stroke whih approptiate modified */ public static KeyStroke [] shortcut(int [] keyCode) { KeyStroke [] strokes = new KeyStroke[keyCode.length]; for (int i=0; i<keyCode.length; i++) strokes[i] = shortcut(keyCode[i]); return strokes; } /** * Determines which modifier key is the appropriate accelerator * key for menu shortcuts. * @param keyCode key code without modifier. * @return key stroke whih approptiate modified */ public static KeyStroke shortcut(int keyCode) { return KeyStroke.getKeyStroke(keyCode, buckyBit); } /** * Repeat the last Command */ public static void repeatLastCommand() { if (lastActivated != null) lastActivated.run(); } /** * Returns hort text description of this EMenuElement. * @return String with text description */ public String getText() { return text; } public String getToolTipText() { String s = text; if (getAccelerator() != null) s += "(" + KeyStrokePair.keyStrokeToString(getAccelerator()) + ")"; return s; } KeyStroke getAccelerator() { if (accelerators.length > 0) return accelerators[0]; return null; } KeyStroke [] getAccelerators() { return accelerators; } void setAccelerator(KeyStroke accelerator) { if (getAccelerator() == accelerator) return; if (accelerators.length < 1) accelerators = new KeyStroke[1]; this.accelerators[0] = accelerator; for (EMenuBar.Instance menuBarInstance: Main.getMenuBars()) { if (menuBarInstance == null) continue; JMenuItem item = menuBarInstance.findMenuItem(path); if (item == null) continue; item.setAccelerator(accelerator); } } public String toString() { return text; } /** * Get a string description of the menu item. * Takes the form <p> * Menu | SubMenu | SubMenu | item * @return a string of the description. */ public String getDescription() { return path != null ? menuBar.getDescription(path) : text; } /** * Get the path of the menu item. * @return an array of integers indexing the menu. */ public int[] getPath() { return path; } /** * Register menu item tree in EMenuBar. * @param menuBar EMenuBar where to register. * @param parentPath path to parent * @param indexInParent index of this menu item in parent */ void registerTree(EMenuBar menuBar, int[] parentPath, int indexInParent) { if (this.menuBar != null || path != null) throw new IllegalStateException("EMenuItem " + this + " referenced twice"); this.menuBar = menuBar; path = new int[parentPath.length + 1]; System.arraycopy(parentPath, 0, path, 0, parentPath.length); path[parentPath.length] = indexInParent; registerItem(); } /** * Register this menu item in EMenuBar. */ protected void registerItem() { menuBar.registerKeyBindings(this); } /** * Register this item as updatable ( dimmed items or chec box/radio buttons */ protected void registerUpdatable() { menuBar.registerUpdatable(this); } /** * Generates menu item by this this generic EMenuItem. * @return generated instance. */ JMenuItem genMenu() { JMenuItem item = createMenuItem(); item.setText(text); if (mnemonicsPos >= 0) { item.setMnemonic(text.charAt(mnemonicsPos)); item.setDisplayedMnemonicIndex(mnemonicsPos); } if (getAccelerator() != null) item.setAccelerator(getAccelerator()); // add action listeners so when user selects menu, actions will occur item.addActionListener(this); // init updatable status updateMenuItem(item); return item; } /** * Creates fresh GUI instance of this generic EMenuItem. * Override in subclasses. * @return GUI instance */ protected JMenuItem createMenuItem() { return icon==null ? new JMenuItem() : new JMenuItem(icon); } /** * Updates appearance of menu item instance before popping up. * @param item item to update. */ protected void updateMenuItem(JMenuItem item) { item.setEnabled(isEnabled()); item.setSelected(isSelected()); } /** * Returns enable state of this generic EMenuItem. * Override in subclasses. * @return true is this generic EMenuItem is enabled. */ public boolean isEnabled() { return true; } /** * Returns selection state of this generic EMenuItem. * Override in subclasses. * @return true is this generic EMenuItem is selected. */ public boolean isSelected() { return false; } /** * Method to return the ALT character that will invoke this menu item. * @return the character (0 if none). */ public char getMnemonicChar() { if (mnemonicsPos < 0) return 0; return text.charAt(mnemonicsPos); } /** * Invoked when an action occurs. * It can be envoked form menu button, tool bar button or shortcut key. */ public void actionPerformed(ActionEvent e) { UserInterfaceMain.userCommandIssued(); ActivityLogger.logMenuActivated(getDescription()); if (!text.startsWith("Repeat Last")) lastActivated = this; run(); updateButtons(); } /** * Abstract method which executes command. */ public abstract void run(); /** * Updates GUI buttons after change of state of generic button. * Override in subclasses. */ protected void updateButtons() { menuBar.updateAllButtons(); } /** * Updates GUI menu buttons after change of state of generic button. */ void updateJMenuItems() { for (EMenuBar.Instance menuBarInstance: Main.getMenuBars()) updateMenuItem(menuBarInstance.findMenuItem(path)); } /** * A subclass of EMenuItem to represent toggle button. */ public abstract static class CheckBox extends EMenuItem { public CheckBox(String text) { super(text); } @Override public void run() { setSelected(!isSelected()); } public abstract void setSelected(boolean b); @Override protected JMenuItem createMenuItem() { return new JCheckBoxMenuItem(); } @Override protected void registerItem() { super.registerItem(); registerUpdatable(); } } }