Toggle Menu Item : Menu « Swing JFC « Java






Toggle Menu Item

Toggle Menu Item
   
/*
Definitive Guide to Swing for Java 2, Second Edition
By John Zukowski     
ISBN: 1-893115-78-X
Publisher: APress
*/

import java.awt.Color;
import java.awt.Component;
import java.awt.Event;
import java.awt.Point;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.KeyEvent;
import java.awt.event.MouseEvent;

import javax.swing.Action;
import javax.swing.ButtonGroup;
import javax.swing.ButtonModel;
import javax.swing.Icon;
import javax.swing.ImageIcon;
import javax.swing.JCheckBoxMenuItem;
import javax.swing.JFrame;
import javax.swing.JMenu;
import javax.swing.JMenuBar;
import javax.swing.JMenuItem;
import javax.swing.JRadioButtonMenuItem;
import javax.swing.JToggleButton;
import javax.swing.KeyStroke;
import javax.swing.MenuElement;
import javax.swing.MenuSelectionManager;
import javax.swing.event.MouseInputListener;

public class ToggleSample {
  public static void main(String args[]) {
    JFrame frame = new JFrame("JToggleButtonMenuItem Example");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    JMenuBar bar = new JMenuBar();
    JMenu file = new JMenu("File");
    file.setMnemonic('f');
    JMenuItem newItem = new JMenuItem("New", 'N');
    file.add(newItem);
    JMenuItem openItem = new JMenuItem("Open", 'O');
    file.add(openItem);
    JMenuItem closeItem = new JMenuItem("Close", 'C');
    file.add(closeItem);
    file.addSeparator();
    JMenuItem saveItem = new JMenuItem("Save", 'S');
    file.add(saveItem);
    file.addSeparator();
    JMenuItem exitItem = new JMenuItem("Exit", 'X');
    file.add(exitItem);
    bar.add(file);
    JMenu edit = new JMenu("Edit");
    JMenuItem cutItem = new JMenuItem("Cut", 'T');
    cutItem.setAccelerator(KeyStroke.getKeyStroke('X', Event.CTRL_MASK));
    edit.add(cutItem);
    JMenuItem copyItem = new JMenuItem("Copy", 'C');
    copyItem.setAccelerator(KeyStroke.getKeyStroke('C', Event.CTRL_MASK));
    edit.add(copyItem);
    JMenuItem pasteItem = new JMenuItem("Paste", 'P');
    pasteItem.setAccelerator(KeyStroke.getKeyStroke('V', Event.CTRL_MASK));
    pasteItem.setEnabled(false);
    edit.add(pasteItem);
    edit.addSeparator();
    JMenuItem findItem = new JMenuItem("Find", 'F');
    findItem.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_F3, 0));
    edit.add(findItem);
    edit.setMnemonic('e');
    Icon atIcon = new ImageIcon("at.gif");
    JMenu findOptions = new JMenu("Options");
    findOptions.setIcon(atIcon);
    findOptions.setMnemonic('O');
    ButtonGroup directionGroup = new ButtonGroup();
    JRadioButtonMenuItem forward = new JRadioButtonMenuItem("Forward", true);
    findOptions.add(forward);
    directionGroup.add(forward);
    JRadioButtonMenuItem backward = new JRadioButtonMenuItem("Backward");
    findOptions.add(backward);
    directionGroup.add(backward);
    findOptions.addSeparator();
    JCheckBoxMenuItem caseItem = new JCheckBoxMenuItem("Case Insensitive");
    findOptions.add(caseItem);
    edit.add(findOptions);
    JToggleButtonMenuItem toggleItem = new JToggleButtonMenuItem(
        "Ballon Help");
    toggleItem.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        System.out.println("Selected");
      }
    });
    edit.add(toggleItem);
    bar.add(edit);
    frame.setJMenuBar(bar);
    frame.setSize(350, 250);
    frame.setVisible(true);
  }
}

class JToggleButtonMenuItem extends JToggleButton implements MenuElement {
  Color savedForeground = null;

  private static MenuElement NO_SUB_ELEMENTS[] = new MenuElement[0];

  public JToggleButtonMenuItem() {
    init();
  }

  public JToggleButtonMenuItem(String label) {
    super(label);
    init();
  }

  public JToggleButtonMenuItem(String label, Icon icon) {
    super(label, icon);
    init();
  }

  public JToggleButtonMenuItem(Action action) {
    super(action);
    init();
  }

  private void init() {
    updateUI();
    setRequestFocusEnabled(false);
    // Borrows heavily from BasicMenuUI
    MouseInputListener mouseInputListener = new MouseInputListener() {
      // If mouse released over this menu item, activate it
      public void mouseReleased(MouseEvent mouseEvent) {
        MenuSelectionManager menuSelectionManager = MenuSelectionManager
            .defaultManager();
        Point point = mouseEvent.getPoint();
        if ((point.x >= 0) && (point.x < getWidth()) && (point.y >= 0)
            && (point.y < getHeight())) {
          menuSelectionManager.clearSelectedPath();
          // component automatically handles "selection" at this point
          // doClick(0); // not necessary
        } else {
          menuSelectionManager.processMouseEvent(mouseEvent);
        }
      }

      // If mouse moves over menu item, add to selection path, so it
      // becomes armed
      public void mouseEntered(MouseEvent mouseEvent) {
        MenuSelectionManager menuSelectionManager = MenuSelectionManager
            .defaultManager();
        menuSelectionManager.setSelectedPath(getPath());
      }

      // When mouse moves away from menu item, disaarm it and select
      // something else
      public void mouseExited(MouseEvent mouseEvent) {
        MenuSelectionManager menuSelectionManager = MenuSelectionManager
            .defaultManager();
        MenuElement path[] = menuSelectionManager.getSelectedPath();
        if (path.length > 1) {
          MenuElement newPath[] = new MenuElement[path.length - 1];
          for (int i = 0, c = path.length - 1; i < c; i++) {
            newPath[i] = path[i];
          }
          menuSelectionManager.setSelectedPath(newPath);
        }
      }

      // Pass along drag events
      public void mouseDragged(MouseEvent mouseEvent) {
        MenuSelectionManager.defaultManager().processMouseEvent(
            mouseEvent);
      }

      public void mouseClicked(MouseEvent mouseEvent) {
      }

      public void mousePressed(MouseEvent mouseEvent) {
      }

      public void mouseMoved(MouseEvent mouseEvent) {
      }
    };
    addMouseListener(mouseInputListener);
    addMouseMotionListener(mouseInputListener);
  }

  // MenuElement methods
  public Component getComponent() {
    return this;
  }

  public MenuElement[] getSubElements() {
    // no subelements
    return NO_SUB_ELEMENTS;
  }

  public void menuSelectionChanged(boolean isIncluded) {
    ButtonModel model = getModel();
    // only change armed state if different
    if (model.isArmed() != isIncluded) {
      model.setArmed(isIncluded);
    }

    if (isIncluded) {
      savedForeground = getForeground();
      if (!savedForeground.equals(Color.blue)) {
        setForeground(Color.blue);
      } else {
        // In case foreground blue, use something different
        setForeground(Color.red);
      }
    } else {
      setForeground(savedForeground);
      // if null, get foreground from installed look and feel
      if (savedForeground == null) {
        updateUI();
      }
    }
  }

  public void processKeyEvent(KeyEvent keyEvent, MenuElement path[],
      MenuSelectionManager manager) {
    // If user presses space while menu item armed, select it
    if (getModel().isArmed()) {
      int keyChar = keyEvent.getKeyChar();
      if (keyChar == KeyEvent.VK_SPACE) {
        manager.clearSelectedPath();
        doClick(0); // inherited from AbstractButton
      }
    }
  }

  public void processMouseEvent(MouseEvent mouseEvent, MenuElement path[],
      MenuSelectionManager manager) {
    // For when mouse dragged over menu and button released
    if (mouseEvent.getID() == MouseEvent.MOUSE_RELEASED) {
      manager.clearSelectedPath();
      doClick(0); // inherited from AbstractButton
    }
  }

  // Borrows heavily from BasicMenuItemUI.getPath()
  private MenuElement[] getPath() {
    MenuSelectionManager menuSelectionManager = MenuSelectionManager
        .defaultManager();
    MenuElement oldPath[] = menuSelectionManager.getSelectedPath();
    MenuElement newPath[];
    int oldPathLength = oldPath.length;
    if (oldPathLength == 0)
      return new MenuElement[0];
    Component parent = getParent();
    if (oldPath[oldPathLength - 1].getComponent() == parent) {
      // Going deeper under the parent menu
      newPath = new MenuElement[oldPathLength + 1];
      System.arraycopy(oldPath, 0, newPath, 0, oldPathLength);
      newPath[oldPathLength] = this;
    } else {
      // Sibling/child menu item currently selected
      int newPathPosition;
      for (newPathPosition = oldPath.length - 1; newPathPosition >= 0; newPathPosition--) {
        if (oldPath[newPathPosition].getComponent() == parent) {
          break;
        }
      }
      newPath = new MenuElement[newPathPosition + 2];
      System.arraycopy(oldPath, 0, newPath, 0, newPathPosition + 1);
      newPath[newPathPosition + 1] = this;
    }
    return newPath;
  }
}

           
         
    
    
  








Related examples in the same category

1.Simple MenusSimple Menus
2.Creating popup menus with SwingCreating popup menus with Swing
3.Create a main menu.
4.Creating a menubar
5.Creating a JMenuBar, JMenu, and JMenuItem Component
6.Submenus, checkbox menu items, swapping menus,mnemonics (shortcuts) and action commandsSubmenus, checkbox menu items, swapping menus,mnemonics (shortcuts) and action commands
7.Separating Menu Items in a Menu
8.This example create a menubar and toolbar both populated with ActionThis example create a menubar and toolbar both populated with Action
9.A simple example of JPopupMenuA simple example of JPopupMenu
10.A quick demonstration of checkbox menu itemsA quick demonstration of checkbox menu items
11.Building menus and menu items: Accelerators and mnemonicsBuilding menus and menu items: Accelerators and mnemonics
12.An example of the JPopupMenu in actionAn example of the JPopupMenu in action
13.A simple example of constructing and using menus.A simple example of constructing and using menus.
14.PopupMenu and Mouse EventPopupMenu and Mouse Event
15.Menu YMenu Y
16.Menu XMenu X
17.Action MenuAction Menu
18.Menu Action Screen Dump DemoMenu Action Screen Dump Demo
19.CheckBox Menu SampleCheckBox Menu Sample
20.Menu Demo 4Menu Demo 4
21.Comprehensive Menu DemoComprehensive Menu Demo
22.Menu Sample 3Menu Sample 3
23.How to create customized menuHow to create customized menu
24.Radio menu itemRadio menu item
25.React to menu action and checkbox menuReact to menu action and checkbox menu
26.Menu created from property file
27.Simple Menu and Window interface - not InternationalizedSimple Menu and Window interface - not Internationalized
28.Provide a pop-up menu using a FrameProvide a pop-up menu using a Frame
29.Demonstrate Menus and the MenuBar classDemonstrate Menus and the MenuBar class
30.Demonstrate JMenu shortcuts and accelerators
31.Demonstrate Cascading MenusDemonstrate Cascading Menus
32.Popup Menu DemoPopup Menu Demo
33.Menu DemoMenu Demo
34.Menu Layout DemoMenu Layout Demo
35.Actions MenuBarActions MenuBar
36.UseActions: MenuUseActions: Menu
37.PopupMenu SamplePopupMenu Sample
38.RadioButton Menu SampleRadioButton Menu Sample
39.Menu Look Demo, except the menu items actually doMenu Look Demo, except the menu items actually do
40.Menu Glue DemoMenu Glue Demo
41.Add PopupMenuAdd PopupMenu
42.Listening for Changes to the Currently Selected Menu or Menu Item
43.Menu item that can be selected or deselected
44.Place commands that hide/show various toolbars
45.Getting the Currently Selected Menu or Menu Item
46.Creating a Menu Item That Listens for Changes to Its Selection Status
47.Create a change listener and register with the menu selection manager
48.Menu Selection Manager DemoMenu Selection Manager Demo
49.Color Menu
50.MenuBar, menu item, action, icon acceleratorMenuBar, menu item, action, icon accelerator