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.tree.action;
17:
18: import java.awt.event.ActionEvent;
19:
20: import org.columba.api.gui.frame.IFrameMediator;
21: import org.columba.api.selection.ISelectionListener;
22: import org.columba.api.selection.SelectionChangedEvent;
23: import org.columba.core.command.CommandProcessor;
24: import org.columba.core.gui.action.AbstractColumbaAction;
25: import org.columba.mail.command.IMailFolderCommandReference;
26: import org.columba.mail.folder.IMailbox;
27: import org.columba.mail.folder.command.MarkFolderAsReadCommand;
28: import org.columba.mail.gui.frame.MailFrameMediator;
29: import org.columba.mail.gui.tree.selection.TreeSelectionChangedEvent;
30: import org.columba.mail.util.MailResourceLoader;
31:
32: /**
33: * Action to mark all messages as read.
34: * <p>
35: * This marks all messages in a folder as read. Using this action will make it
36: * simpler for an user to mark all messages as read in huge mailing list
37: * folders.
38: * <p>
39: *
40: * @author redsolo
41: */
42: public class MarkFolderAsReadAction extends AbstractColumbaAction
43: implements ISelectionListener {
44:
45: /**
46: * @param frameMediator
47: * the frame mediator
48: */
49: public MarkFolderAsReadAction(IFrameMediator frameMediator) {
50: super (frameMediator, MailResourceLoader.getString("menu",
51: "mainframe", "menu_folder_markasread"));
52:
53: // tooltip text
54: putValue(SHORT_DESCRIPTION, MailResourceLoader.getString(
55: "menu", "mainframe", "menu_folder_markasread")
56: .replaceAll("&", ""));
57:
58: // icons
59: // putValue(SMALL_ICON, ImageLoader.getSmallImageIcon("mail-read.png"));
60: // putValue(LARGE_ICON, ImageLoader.getImageIcon("mail-read.png"));
61:
62: setEnabled(false);
63:
64: ((MailFrameMediator) frameMediator)
65: .registerTreeSelectionListener(this );
66: }
67:
68: /** {@inheritDoc} */
69: public void actionPerformed(ActionEvent e) {
70: IMailFolderCommandReference r = ((MailFrameMediator) getFrameMediator())
71: .getTreeSelection();
72: CommandProcessor.getInstance().addOp(
73: new MarkFolderAsReadCommand(r));
74: }
75:
76: /** {@inheritDoc} */
77: public void selectionChanged(SelectionChangedEvent e) {
78: if (((TreeSelectionChangedEvent) e).getSelected().length == 1
79: && ((TreeSelectionChangedEvent) e).getSelected()[0] instanceof IMailbox) {
80: setEnabled(true);
81: } else {
82: setEnabled(false);
83: }
84: }
85: }
|