KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > openharmonise > him > actions > help > ActionAbout


1 /*
2  * The contents of this file are subject to the
3  * Mozilla Public License Version 1.1 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at http://www.mozilla.org/MPL/
6  *
7  * Software distributed under the License is distributed on an "AS IS"
8  * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied.
9  * See the License for the specific language governing rights and
10  * limitations under the License.
11  *
12  * The Initial Developer of the Original Code is Simulacra Media Ltd.
13  * Portions created by Simulacra Media Ltd are Copyright (C) Simulacra Media Ltd, 2004.
14  *
15  * All Rights Reserved.
16  *
17  * Contributor(s):
18  */

19 package org.openharmonise.him.actions.help;
20
21 import java.awt.event.ActionEvent JavaDoc;
22
23 import javax.swing.Icon JavaDoc;
24 import javax.swing.ImageIcon JavaDoc;
25 import javax.swing.JFrame JavaDoc;
26
27 import org.openharmonise.him.actions.*;
28 import org.openharmonise.him.window.about.*;
29 import org.openharmonise.vfs.*;
30 import org.openharmonise.vfs.gui.*;
31
32
33 /**
34  * Action to open the about dialog.
35  *
36  * @author Matthew Large
37  * @version $Revision: 1.1 $
38  *
39  */

40 public class ActionAbout extends AbstractHIMAction implements HIMAction {
41
42     /**
43      *
44      */

45     public ActionAbout() {
46         super();
47     }
48
49     /**
50      * @param vfFile
51      */

52     public ActionAbout(VirtualFile vfFile) {
53         super(vfFile);
54     }
55
56     /* (non-Javadoc)
57      * @see java.awt.event.ActionListener#actionPerformed(java.awt.event.ActionEvent)
58      */

59     public void actionPerformed(ActionEvent JavaDoc arg0) {
60         JFrame JavaDoc frame = new JFrame JavaDoc();
61         frame.setIconImage( ((ImageIcon JavaDoc)IconManager.getInstance().getIcon("16-sim-logo.gif")).getImage() );
62         
63         
64         AboutDialog dialog = new AboutDialog(frame);
65         dialog.show();
66     }
67
68     /* (non-Javadoc)
69      * @see com.simulacramedia.contentmanager.actions.CMAction#getDescription()
70      */

71     public String JavaDoc getDescription() {
72         return "Displays information about Harmonise Information Manager";
73     }
74
75     /* (non-Javadoc)
76      * @see com.simulacramedia.contentmanager.actions.CMAction#getText()
77      */

78     public String JavaDoc getText() {
79         return "About";
80     }
81
82     /* (non-Javadoc)
83      * @see com.simulacramedia.contentmanager.actions.CMAction#getToolTip()
84      */

85     public String JavaDoc getToolTip() {
86         return this.getDescription();
87     }
88
89     /* (non-Javadoc)
90      * @see com.simulacramedia.contentmanager.actions.CMAction#getIcon()
91      */

92     public Icon JavaDoc getIcon() {
93         return IconManager.getInstance().getIcon("16-command-about.png");
94     }
95
96     /* (non-Javadoc)
97      * @see com.simulacramedia.contentmanager.actions.CMAction#getAcceleratorKeycode()
98      */

99     public int getAcceleratorKeycode() {
100         return 0;
101     }
102
103     /* (non-Javadoc)
104      * @see com.simulacramedia.contentmanager.actions.CMAction#getMnemonic()
105      */

106     public String JavaDoc getMnemonic() {
107         return "A";
108     }
109
110     /* (non-Javadoc)
111      * @see com.simulacramedia.contentmanager.actions.CMAction#getAcceleratorMask()
112      */

113     public int getAcceleratorMask() {
114         return 0;
115     }
116
117 }
118
Popular Tags