1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 package org.xnap.gui.action;
21
22 import java.awt.event.ActionEvent;
23
24 import javax.swing.AbstractAction;
25 import javax.swing.Action;
26
27 import org.xnap.XNap;
28 import org.xnap.gui.PluginPreferencesDialog;
29 import org.xnap.gui.XNapFrame;
30 import org.xnap.gui.util.IconHelper;
31
32 /***
33 * Provides an action that shows the preferences dialog.
34 *
35 * Don't use this action directly, rather use the static {@link
36 * ActionHelper#pluginPreferencesDialogAction member}.
37 */
38 public class PluginPreferencesDialogAction extends AbstractAction
39 {
40
41
42
43
44
45
46
47 public PluginPreferencesDialogAction()
48 {
49 putValue(Action.NAME, XNap.tr("Configure Plugins") + "...");
50 putValue(IconHelper.XNAP_ICON, "package_utilities.png");
51 putValue(Action.SHORT_DESCRIPTION,
52 XNap.tr("Shows the plugin settings dialog."));
53 }
54
55
56
57 public void actionPerformed(ActionEvent event)
58 {
59 PluginPreferencesDialog.showDialog(XNapFrame.getInstance());
60 }
61
62 }