Java JFrame btnMnemonicAndToolTip(JFrame frame, JButton a, JButton b, JButton c, JButton e, JButton h, JButton i, JButton l, JButton m, JButton o, JButton p, JButton s, JButton t, JButton enter, JButton altEnter)

Here you can find the source of btnMnemonicAndToolTip(JFrame frame, JButton a, JButton b, JButton c, JButton e, JButton h, JButton i, JButton l, JButton m, JButton o, JButton p, JButton s, JButton t, JButton enter, JButton altEnter)

Description

btn Mnemonic And Tool Tip

License

Open Source License

Declaration

public static void btnMnemonicAndToolTip(JFrame frame, JButton a,
            JButton b, JButton c, JButton e, JButton h, JButton i,
            JButton l, JButton m, JButton o, JButton p, JButton s,
            JButton t, JButton enter, JButton altEnter) 

Method Source Code

//package com.java2s;
/*//from w  w  w .j  a va 2  s  .c o m
 * Copyright (c) 2016 Samuel Chinenyeze <sjchinenyeze@gmail.com>
 *
 * 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.KeyEvent;

import javax.swing.JButton;
import javax.swing.JFrame;

public class Main {
    public static void btnMnemonicAndToolTip(JFrame frame, JButton a,
            JButton b, JButton c, JButton e, JButton h, JButton i,
            JButton l, JButton m, JButton o, JButton p, JButton s,
            JButton t, JButton enter, JButton altEnter) {
        a.setMnemonic(KeyEvent.VK_A);
        b.setMnemonic(KeyEvent.VK_B);
        c.setMnemonic(KeyEvent.VK_C);
        e.setMnemonic(KeyEvent.VK_E);
        h.setMnemonic(KeyEvent.VK_H);
        i.setMnemonic(KeyEvent.VK_I);
        l.setMnemonic(KeyEvent.VK_L);
        m.setMnemonic(KeyEvent.VK_M);
        o.setMnemonic(KeyEvent.VK_O);
        p.setMnemonic(KeyEvent.VK_P);
        s.setMnemonic(KeyEvent.VK_S);
        t.setMnemonic(KeyEvent.VK_T);
        frame.getRootPane().setDefaultButton(enter); //Enter
        altEnter.setMnemonic(KeyEvent.VK_ENTER); //Alt + Enter
        //btnSave, btnHelp, btnBin tooltips
        a.setToolTipText("Save Settings");
        b.setToolTipText("Clear Output");
        h.setToolTipText("Help");
    }
}

Related

  1. addProgressBar(final JFrame win)
  2. addToQue(JFrame frame)
  3. allPlatformGetFile(String dialogTitle, File locationIn, final String fileExtension, FileFilter nonMacFileFilter, boolean allowMultipleSelect, JFrame parentFrame)
  4. askSave(JFrame frame)
  5. attachAccelerator(Action action, JFrame frame)
  6. buildButton(String btnName, JFrame frame, int x, int y, int w, int h)
  7. buildLabel(JFrame frame, String txt, int x, int y, int w, int h)
  8. buildTxtField(JFrame frame, int x, int y, int w, int h)
  9. calcLocation(JFrame main, JDialog dialog)