01: package com.xoetrope.editor.netbeans.actions;
02:
03: import java.util.HashMap;
04: import java.util.Iterator;
05: import javax.swing.JOptionPane;
06: import org.openide.util.HelpCtx;
07: import org.openide.util.NbBundle;
08: import org.openide.util.actions.CallableSystemAction;
09: import com.xoetrope.editor.netbeans.visualizer.VisualiserPalette;
10: import net.xoetrope.editor.project.XEditorProject;
11: import net.xoetrope.editor.project.XEditorProjectManager;
12:
13: /**
14: * Show the TestPilot dialog
15: * <p> Copyright (c) Xoetrope Ltd., 2001-2006, This software is licensed under
16: * the GNU Public License (GPL), please see license.txt for more details. If
17: * you make commercial use of this software you must purchase a commercial
18: * license from Xoetrope.</p>
19: * <p> $Revision: 1.3 $</p>
20: */
21: public class CurrentProjectAction extends CallableSystemAction {
22: public CurrentProjectAction() {
23: super ();
24: }
25:
26: public void performAction() {
27: int numProjects = XEditorProjectManager.getNumProjects();
28: XEditorProject currentProject = (XEditorProject) XEditorProjectManager
29: .getCurrentProject();
30: String[] possibilities = new String[numProjects];
31: int idx = 0;
32: HashMap<String, XEditorProject> projects = XEditorProjectManager
33: .getProjects();
34: Iterator<String> iter = projects.keySet().iterator();
35: while (iter.hasNext()) {
36: XEditorProject proj = projects.get(iter.next());
37: possibilities[idx++] = proj.getProjectTitle() + ": "
38: + proj.getPath();
39: }
40:
41: String s = (String) JOptionPane.showInputDialog(null,
42: "Select the current project:", "Project chooser",
43: JOptionPane.PLAIN_MESSAGE, null, possibilities,
44: currentProject.getProjectTitle() + ": "
45: + currentProject.getPath());
46:
47: //If a string was returned, say so.
48: if (s != null)
49: XEditorProjectManager.setCurrentProject(s.substring(s
50: .indexOf(": ") + 2));
51: }
52:
53: public String getName() {
54: return "Project chooser...";//NbBundle.getMessage( ShowServiceManagerAction.class, "LBL_ShowServiceManagerAction" );
55: }
56:
57: protected String iconResource() {
58: return "com/xoetrope/editor/netbeans/actions/CurrentProjectActionIcon.gif";
59: }
60:
61: public HelpCtx getHelpCtx() {
62: return HelpCtx.DEFAULT_HELP;
63: // If you will provide context help then use:
64: // return new HelpCtx(ShowLanguageEditorAction.class);
65: }
66:
67: protected boolean asynchronous() {
68: // performAction() should run in event thread
69: return false;
70: }
71:
72: /** Perform extra initialization of this action's singleton.
73: * PLEASE do not use constructors for this purpose!
74: * protected void initialize() {
75: * super.initialize();
76: * putProperty(Action.SHORT_DESCRIPTION, NbBundle.getMessage(ShowLanguageEditorAction.class, "HINT_Action"));
77: * }
78: */
79: public boolean isEnabled() {
80: return (XEditorProjectManager.isUserRegistered("XUI Pro") && (XEditorProjectManager
81: .getNumProjects() > 1));
82: }
83: }
|