01: //The contents of this file are subject to the Mozilla Public License Version 1.1
02: //(the "License"); you may not use this file except in compliance with the
03: //License. You may obtain a copy of the License at http://www.mozilla.org/MPL/
04: //
05: //Software distributed under the License is distributed on an "AS IS" basis,
06: //WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
07: //for the specific language governing rights and
08: //limitations under the License.
09: //
10: //The Original Code is "The Columba Project"
11: //
12: //The Initial Developers of the Original Code are Frederik Dietz and Timo Stich.
13: //Portions created by Frederik Dietz and Timo Stich are Copyright (C) 2003.
14: //
15: //All Rights Reserved.
16: package org.columba.mail.gui.table.action;
17:
18: import java.awt.Toolkit;
19: import java.awt.event.ActionEvent;
20: import java.awt.event.KeyEvent;
21:
22: import javax.swing.KeyStroke;
23:
24: import org.columba.api.gui.frame.IFrameMediator;
25: import org.columba.api.selection.ISelectionListener;
26: import org.columba.api.selection.SelectionChangedEvent;
27: import org.columba.core.command.CommandProcessor;
28: import org.columba.core.gui.action.AbstractColumbaAction;
29: import org.columba.mail.command.IMailFolderCommandReference;
30: import org.columba.mail.gui.composer.command.ReplyCommand;
31: import org.columba.mail.gui.frame.MailFrameMediator;
32: import org.columba.mail.gui.table.selection.TableSelectionChangedEvent;
33: import org.columba.mail.resourceloader.MailImageLoader;
34: import org.columba.mail.util.MailResourceLoader;
35:
36: /**
37: * @author frd
38: *
39: * To change this generated comment go to
40: * Window>Preferences>Java>Code Generation>Code and Comments
41: */
42: public class ReplyAction extends AbstractColumbaAction implements
43: ISelectionListener {
44: public ReplyAction(IFrameMediator frameMediator) {
45: super (frameMediator, MailResourceLoader.getString("menu",
46: "mainframe", "menu_message_reply"));
47:
48: // tooltip text
49: putValue(SHORT_DESCRIPTION, MailResourceLoader.getString(
50: "menu", "mainframe", "menu_message_reply_tooltip")
51: .replaceAll("&", ""));
52:
53: // toolbar text is usually a bit shorter
54: putValue(TOOLBAR_NAME, MailResourceLoader.getString("menu",
55: "mainframe", "menu_message_reply_toolbar"));
56:
57: // icons
58: putValue(SMALL_ICON, MailImageLoader
59: .getSmallIcon("mail-reply-sender.png"));
60: putValue(LARGE_ICON, MailImageLoader
61: .getIcon("mail-reply-sender.png"));
62:
63: // shortcut key
64: putValue(ACCELERATOR_KEY, KeyStroke.getKeyStroke(KeyEvent.VK_R,
65: Toolkit.getDefaultToolkit().getMenuShortcutKeyMask()));
66:
67: setEnabled(false);
68: ((MailFrameMediator) frameMediator)
69: .registerTableSelectionListener(this );
70: }
71:
72: /* (non-Javadoc)
73: * @see java.awt.event.ActionListener#actionPerformed(java.awt.event.ActionEvent)
74: */
75: public void actionPerformed(ActionEvent evt) {
76: IMailFolderCommandReference r = ((MailFrameMediator) getFrameMediator())
77: .getTableSelection();
78: CommandProcessor.getInstance().addOp(new ReplyCommand(r));
79: }
80:
81: /* (non-Javadoc)
82: * @see org.columba.core.gui.selection.ISelectionListener#selectionChanged(org.columba.core.gui.selection.SelectionChangedEvent)
83: */
84: public void selectionChanged(SelectionChangedEvent e) {
85: TableSelectionChangedEvent tableEvent = (TableSelectionChangedEvent) e;
86: setEnabled(tableEvent.getUids().length != 0);
87: }
88: }
|