Java JMenuItem setCtrlAccelerator(final JMenuItem jmi, final char accelerator)

Here you can find the source of setCtrlAccelerator(final JMenuItem jmi, final char accelerator)

Description

Sets the accelerator from the given menuitem and the given character with the CTRL.

License

Open Source License

Parameter

Parameter Description
jmi The JMenuItem.
accelerator The character that have to push together with the CTRL.

Declaration

public static void setCtrlAccelerator(final JMenuItem jmi, final char accelerator) 

Method Source Code

//package com.java2s;
/**//from   w w  w  . ja va  2s.  c  o m
 * The MIT License
 *
 * Copyright (C) 2007 Asterios Raptis
 *
 * Permission is hereby granted, free of charge, to any person obtaining
 * a copy of this software and associated documentation files (the
 * "Software"), to deal in the Software without restriction, including
 * without limitation the rights to use, copy, modify, merge, publish,
 * distribute, sublicense, and/or sell copies of the Software, and to
 * permit persons to whom the Software is furnished to do so, subject to
 * the following conditions:
 *
 * The above copyright notice and this permission notice shall be
 * included in all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 */

import java.awt.Event;
import javax.swing.JMenuItem;
import javax.swing.KeyStroke;

public class Main {
    /**
     * Sets the accelerator from the given menuitem and the given character with the CTRL. The
     * accelerator are combined with the given character and the CTRL.
     *
     * @param jmi
     *            The JMenuItem.
     * @param accelerator
     *            The character that have to push together with the CTRL.
     */
    public static void setCtrlAccelerator(final JMenuItem jmi, final char accelerator) {
        final KeyStroke ks = KeyStroke.getKeyStroke(accelerator, Event.CTRL_MASK);
        jmi.setAccelerator(ks);
    }
}

Related

  1. linkMenuItem(final JMenuItem master, final JMenuItem slave)
  2. pintaBarraMenu(Graphics g, JMenuItem menuItem, Color bgColor)
  3. recursiveUpdateOrInsertMenuItem(MenuElement menu, JMenuItem menuItem, boolean hideOnUpdate)
  4. replaceMenuItem( @Nonnull JMenuItem orginalMenuItem, @Nonnull JMenuItem replacementMenuItem)
  5. setAccelerator(JMenuItem menuItem, int key, int mask)
  6. setCtrlAccelerator(JMenuItem jmi, char accelerator)
  7. setEnabled(boolean enabled, JMenuItem... items)
  8. setKeystroke(JMenuItem m, int key)
  9. setMnemonic(JMenuItem item, String label, int index)