01: package com.xoetrope.editor.netbeans.actions;
02:
03: import org.openide.util.HelpCtx;
04: import org.openide.util.NbBundle;
05: import org.openide.util.actions.CallableSystemAction;
06:
07: import net.xoetrope.editor.project.XEditorProjectManager;
08:
09: import com.xoetrope.carousel.technote.TechNoteTopComponent;
10:
11: /**
12: * An action to show the TechNote editor
13: * <p> Copyright (c) Xoetrope Ltd., 2001-2006, This software is licensed under
14: * the GNU Public License (GPL), please see license.txt for more details. If
15: * you make commercial use of this software you must purchase a commercial
16: * license from Xoetrope.</p>
17: * <p> $Revision: 1.3 $</p>
18: */
19: public class ShowTechNoteAction extends CallableSystemAction {
20: /**
21: * Creates a new instance of ShowTechNoteAction
22: */
23: public ShowTechNoteAction() {
24: super ();
25: }
26:
27: public void performAction() {
28: TechNoteTopComponent testPilot = TechNoteTopComponent
29: .getInstance();
30: testPilot.open();
31: testPilot.requestActive();
32: testPilot.requestVisible();
33: }
34:
35: public String getName() {
36: return "TechNote";//NbBundle.getMessage( ShowServiceManagerAction.class, "LBL_ShowServiceManagerAction" );
37: }
38:
39: protected String iconResource() {
40: return "com/xoetrope/editor/netbeans/actions/TechNoteActionIcon.gif";
41: }
42:
43: public HelpCtx getHelpCtx() {
44: return HelpCtx.DEFAULT_HELP;
45: // If you will provide context help then use:
46: // return new HelpCtx(ShowLanguageEditorAction.class);
47: }
48:
49: protected boolean asynchronous() {
50: // performAction() should run in event thread
51: return false;
52: }
53:
54: /** Perform extra initialization of this action's singleton.
55: * PLEASE do not use constructors for this purpose!
56: * protected void initialize() {
57: * super.initialize();
58: * putProperty(Action.SHORT_DESCRIPTION, NbBundle.getMessage(ShowLanguageEditorAction.class, "HINT_Action"));
59: * }
60: */
61: public boolean isEnabled() {
62: try {
63: Object obj = XEditorProjectManager.getCurrentProject();
64: return (XEditorProjectManager
65: .isUserRegistered("XUI Pro TechNote") && (obj != null));
66: } catch (Exception ex) {
67: return false;
68: }
69: }
70: }
|