01: /*
02: * Copyright (c) 2004 JETA Software, Inc. All rights reserved.
03: *
04: * Redistribution and use in source and binary forms, with or without modification,
05: * are permitted provided that the following conditions are met:
06: *
07: * o Redistributions of source code must retain the above copyright notice,
08: * this list of conditions and the following disclaimer.
09: *
10: * o Redistributions in binary form must reproduce the above copyright notice,
11: * this list of conditions and the following disclaimer in the documentation
12: * and/or other materials provided with the distribution.
13: *
14: * o Neither the name of JETA Software nor the names of its contributors may
15: * be used to endorse or promote products derived from this software without
16: * specific prior written permission.
17: *
18: * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19: * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20: * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21: * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
22: * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23: * INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24: * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
25: * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26: * INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27: * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28: */
29:
30: package com.jeta.open.gui.components;
31:
32: import javax.swing.JMenuItem;
33: import javax.swing.JPopupMenu;
34: import javax.swing.KeyStroke;
35:
36: import com.jeta.open.i18n.I18N;
37:
38: /**
39: * PopupMenu with cut/copy/paste items.
40: *
41: * @author Jeff Tassin
42: */
43: public class BasicPopupMenu extends JPopupMenu {
44: /**
45: * Creates a menu item for this popup
46: *
47: * @param itemText
48: * the text to show for the menu item
49: * @param actionCmd
50: * the name of the action that is fired when the menu item is
51: * selected
52: * @param keyStroke
53: * the keyboard accelerator
54: */
55: public static JMenuItem createMenuItem(String itemText,
56: String actionCmd, KeyStroke keyStroke) {
57: JMenuItem item = new JMenuItem(itemText);
58: item.setActionCommand(actionCmd);
59: item.setName(actionCmd);
60: if (keyStroke != null)
61: item.setAccelerator(keyStroke);
62: return item;
63: }
64:
65: /**
66: * ctor
67: */
68: public BasicPopupMenu() {
69: add(createMenuItem(I18N.getLocalizedMessage("Cut"),
70: JETAComponentNames.ID_CUT, null));
71: add(createMenuItem(I18N.getLocalizedMessage("Copy"),
72: JETAComponentNames.ID_COPY, null));
73: add(createMenuItem(I18N.getLocalizedMessage("Paste"),
74: JETAComponentNames.ID_PASTE, null));
75: }
76: }
|