📄 menubar.java
字号:
/*
* 01/07/2005
*
* MenuBar.java - The menu bar used by GUIApplications.
* Copyright (C) 2005 Robert Futrell
* email@address.com
* www.website.com
*
* 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 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
package org.fife.ui.app;
import java.awt.event.MouseListener;
import javax.swing.Action;
import javax.swing.JMenuBar;
import javax.swing.JMenuItem;
/**
* The menu bar used by instances of <code>GUIApplication</code>.
*
* @author Robert Futrell
* @version 0.1
*/
public class MenuBar extends JMenuBar {
/**
*
*/
private static final long serialVersionUID = 8067773592519494194L;
/*****************************************************************************/
/**
* Constructor.
*/
public MenuBar() {
super();
}
/*****************************************************************************/
/**
* Returns a menu item with the passed-in properties.
*
* @param a The action that occurs on clicking this menu item.
* @param toolTip The tooltip text for this menu item.
* @param accessibleDescription The accessible description.
* @param mouseListener A mouse listener to add to the menu item
* (e.g., the status bar).
* @return The menu item.
*/
protected JMenuItem createMenuItem(final Action a, String toolTip,
String accessibleDescription, MouseListener mouseListener) {
JMenuItem item = new JMenuItem(a);
item.setToolTipText(toolTip);
item.getAccessibleContext().setAccessibleDescription(
accessibleDescription);
item.addMouseListener(mouseListener);
return item;
}
/*****************************************************************************/
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -