01: /*
02: * SSHTools - Java SSH2 API
03: *
04: * Copyright (C) 2002-2003 Lee David Painter and Contributors.
05: *
06: * Contributions made by:
07: *
08: * Brett Smith
09: * Richard Pernavas
10: * Erwin Bolwidt
11: *
12: * This program is free software; you can redistribute it and/or
13: * modify it under the terms of the GNU General Public License
14: * as published by the Free Software Foundation; either version 2
15: * of the License, or (at your option) any later version.
16: *
17: * This program is distributed in the hope that it will be useful,
18: * but WITHOUT ANY WARRANTY; without even the implied warranty of
19: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20: * GNU General Public License for more details.
21: *
22: * You should have received a copy of the GNU General Public License
23: * along with this program; if not, write to the Free Software
24: * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
25: */
26: package com.sshtools.common.mru;
27:
28: import com.sshtools.common.ui.EmptyIcon;
29: import com.sshtools.common.ui.MenuAction;
30: import com.sshtools.common.ui.StandardAction;
31:
32: import javax.swing.Action;
33:
34: /**
35: *
36: *
37: * @author $author$
38: * @version $Revision: 1.14 $
39: */
40: public abstract class MRUAction extends MenuAction {
41: /**
42: * Creates a new MRUAction object.
43: *
44: * @param model
45: */
46: public MRUAction(MRUListModel model) {
47: putValue(Action.NAME, "Recent");
48: putValue(Action.SMALL_ICON, new EmptyIcon(16, 16));
49: putValue(Action.SHORT_DESCRIPTION, "Recent connections");
50: putValue(Action.LONG_DESCRIPTION, "Recent connection files");
51: putValue(Action.MNEMONIC_KEY, new Integer('r'));
52: putValue(Action.ACTION_COMMAND_KEY, "recent");
53: putValue(StandardAction.ON_MENUBAR, new Boolean(true));
54: putValue(StandardAction.MENU_NAME, "File");
55: putValue(StandardAction.MENU_ITEM_GROUP, new Integer(0));
56: putValue(StandardAction.MENU_ITEM_WEIGHT, new Integer(99));
57:
58: MRUMenu menu = new MRUMenu(this , model);
59: menu.addActionListener(this );
60: putValue(MenuAction.MENU, new MRUMenu(this, model));
61: }
62: }
|