Java Swing Menu createMenuKeyMask(final int aKeyStroke, final int... aMasks)

Here you can find the source of createMenuKeyMask(final int aKeyStroke, final int... aMasks)

Description

Convenience method to create a key mask for menu's.

License

Open Source License

Parameter

Parameter Description
aKeyStroke the key stroke to create a menu key mask for;
aMasks the (optional) mask modifiers to use.

Return

a keystroke instance.

Declaration

public static final KeyStroke createMenuKeyMask(final int aKeyStroke, final int... aMasks) 

Method Source Code


//package com.java2s;
/*//from  w w  w  . j  a va  2s . c om
 * OpenBench LogicSniffer / SUMP project
 *
 * 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 (at
 * your option) 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.,
 * 51 Franklin St, Fifth Floor, Boston, MA 02110, USA
 *
 * 
 * Copyright (C) 2010-2011 - J.W. Janssen, http://www.lxtreme.nl
 */

import java.awt.*;

import javax.swing.*;

public class Main {
    /**
     * Convenience method to create a key mask for menu's.
     * 
     * @param aKeyStroke
     *          the key stroke to create a menu key mask for;
     * @param aMasks
     *          the (optional) mask modifiers to use.
     * @return a keystroke instance.
     */
    public static final KeyStroke createMenuKeyMask(final int aKeyStroke, final int... aMasks) {
        int modifiers = getMenuShortcutKeyMask();
        for (int aMask : aMasks) {
            modifiers |= aMask;
        }
        return KeyStroke.getKeyStroke(aKeyStroke, modifiers);
    }

    /**
     * Returns the key mask of the menu shortcut key.
     * 
     * @return a key mask, >= 0.
     */
    public static final int getMenuShortcutKeyMask() {
        return Toolkit.getDefaultToolkit().getMenuShortcutKeyMask();
    }
}

Related

  1. createMenu(final String text, final char mnemonic)
  2. createMenu(String label, int mnemonic, String description)
  3. createMenu(String label, Object... objects)
  4. createMenu(String name, Object[] item, int[] accelerator, ActionListener listener)
  5. createMenu(String text)
  6. enableMenu(JTextComponent text)
  7. findMenuBar(Container container)
  8. findMenuElement(final MenuElement root, final String text)
  9. fixIconTextGap(JComponent menu)