]> git.argeo.org Git - gpl/argeo-slc.git/blob - eclipse/plugins/org.argeo.slc.client.ui/plugin.xml
Processes list view
[gpl/argeo-slc.git] / eclipse / plugins / org.argeo.slc.client.ui / plugin.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <?eclipse version="3.4"?>
3 <plugin>
4
5 <!-- Views -->
6 <extension
7 point="org.eclipse.ui.views">
8 <view
9 class="org.argeo.eclipse.spring.SpringExtensionFactory"
10 icon="icons/execution_module.gif"
11 id="org.argeo.slc.client.ui.executionModulesView"
12 name="Execution Modules"
13 restorable="true">
14 </view>
15 <view
16 class="org.argeo.eclipse.spring.SpringExtensionFactory"
17 icon="icons/execution_module.gif"
18 id="org.argeo.slc.client.ui.jcrExecutionModulesView"
19 name="Execution Modules"
20 restorable="true">
21 </view>
22 <view
23 class="org.argeo.eclipse.spring.SpringExtensionFactory"
24 icon="icons/results.gif"
25 id="org.argeo.slc.client.ui.resultListView"
26 name="Results"
27 restorable="true">
28 </view>
29 <view
30 allowMultiple="true"
31 class="org.argeo.eclipse.spring.SpringExtensionFactory"
32 icon="icons/result_details.gif"
33 id="org.argeo.slc.client.ui.resultDetailView"
34 name="Result details"
35 restorable="true">
36 </view>
37 <!-- <view
38 allowMultiple="true"
39 class="org.argeo.eclipse.spring.SpringExtensionFactory"
40 icon="icons/excel.png"
41 id="org.argeo.slc.client.ui.resultExcelView"
42 name="Result details (Excel)"
43 restorable="true">
44 </view> -->
45 <view
46 id="org.argeo.slc.client.ui.processListView"
47 class="org.argeo.eclipse.spring.SpringExtensionFactory"
48 name="Processes"
49 icon="icons/processes.gif"
50 restorable="true">
51 </view>
52 <view
53 id="org.argeo.slc.client.ui.jcrProcessListView"
54 class="org.argeo.eclipse.spring.SpringExtensionFactory"
55 name="Processes"
56 icon="icons/processes.gif"
57 restorable="true">
58 </view>
59 <view
60 allowMultiple="true"
61 class="org.argeo.eclipse.spring.SpringExtensionFactory"
62 icon="icons/process_details.gif"
63 id="org.argeo.slc.client.ui.processDetailView"
64 name="Process details"
65 restorable="true">
66 </view>
67 <view
68 class="org.argeo.eclipse.spring.SpringExtensionFactory"
69 icon="icons/edit_parameters.gif"
70 id="org.argeo.slc.client.ui.processParametersView"
71 name="Process Parameters"
72 restorable="true">
73 </view>
74 <view
75 class="org.argeo.eclipse.spring.SpringExtensionFactory"
76 icon="icons/batch.gif"
77 id="org.argeo.slc.client.ui.processBuilderView"
78 name="Batch"
79 restorable="true">
80 </view>
81 </extension>
82
83 <!-- Commands definitions -->
84 <extension
85 point="org.eclipse.ui.commands">
86 <!-- Result List -->
87 <command
88 defaultHandler="org.argeo.eclipse.spring.SpringCommandHandler"
89 id="org.argeo.slc.client.ui.refreshResultList"
90 name="Refresh Result List">
91 </command>
92 <command
93 defaultHandler="org.argeo.eclipse.spring.SpringCommandHandler"
94 id="org.argeo.slc.client.ui.removeSelectedResultFromResultList"
95 name="Remove selected results from list">
96 </command>
97 <command
98 defaultHandler="org.argeo.eclipse.spring.SpringCommandHandler"
99 id="org.argeo.slc.client.ui.displayResultDetails"
100 name="Display Result Details">
101 <!-- <commandParameter
102 id="org.argeo.slc.client.commands.resultUuid"
103 name="Result UUID">
104 </commandParameter>
105 <commandParameter
106 id="org.argeo.slc.client.commands.resultName"
107 name="Result Name">
108 </commandParameter> -->
109 </command>
110
111 <!-- Execution Modules -->
112 <command
113 defaultHandler="org.argeo.eclipse.spring.SpringCommandHandler"
114 id="org.argeo.slc.client.ui.refreshExecutionModulesView"
115 name="Refresh Execution Modules View">
116 </command>
117 <!-- Batch -->
118 <command
119 defaultHandler="org.argeo.eclipse.spring.SpringCommandHandler"
120 id="org.argeo.slc.client.ui.launchBatch"
121 name="Launch Batch">
122 </command>
123 <command
124 defaultHandler="org.argeo.eclipse.spring.SpringCommandHandler"
125 id="org.argeo.slc.client.ui.removeSelectedFromBatch"
126 name="Remove Selected From Batch">
127 </command>
128 <command
129 defaultHandler="org.argeo.eclipse.spring.SpringCommandHandler"
130 id="org.argeo.slc.client.ui.clearBatch"
131 name="Clear Batch">
132 </command>
133 <!-- Process List -->
134 <command
135 defaultHandler="org.argeo.eclipse.spring.SpringCommandHandler"
136 id="org.argeo.slc.client.ui.refreshProcessList"
137 name="Refresh Process List ">
138 </command>
139 <command
140 defaultHandler="org.argeo.eclipse.spring.SpringCommandHandler"
141 id="org.argeo.slc.client.ui.displayProcessDetails"
142 name="DisplayProcessDetails">
143 <commandParameter
144 id="org.argeo.slc.client.commands.processUuid"
145 name="Process UUID">
146 </commandParameter>
147 </command>
148 <command
149 defaultHandler="org.argeo.eclipse.spring.SpringCommandHandler"
150 id="org.argeo.slc.client.ui.manageBundles"
151 name="Manage Bundles">
152 </command>
153 </extension>
154
155 <!-- Menu definitions -->
156 <extension
157 id="menu:org.eclipse.ui.main.menu"
158 point="org.eclipse.ui.menus">
159 <menuContribution
160 locationURI="menu:fileMenu">
161 <!-- Should be implemented in later version.
162 <command
163 commandId="org.argeo.slc.client.ui.manageBundles"
164 label="Manage Bundles"
165 style="push"
166 tooltip="Add or remove plugins at run time">
167 </command> -->
168 </menuContribution>
169 <menuContribution
170 locationURI="toolbar:org.argeo.slc.client.ui.resultListView">
171 <command
172 commandId="org.argeo.slc.client.ui.refreshResultList"
173 icon="icons/refresh.png"
174 label="Refresh result list"
175 tooltip="Refresh the result list">
176 </command>
177 <command
178 commandId="org.argeo.slc.client.ui.removeSelectedResultFromResultList"
179 icon="icons/removeAll.png"
180 label="Remove selected"
181 tooltip="Remove selected items from the result list (Also on server side, cannot be undone)">
182 </command>
183 </menuContribution>
184 <menuContribution
185 locationURI="toolbar:org.argeo.slc.client.ui.executionModulesView">
186 <command
187 commandId="org.argeo.slc.client.ui.refreshExecutionModulesView"
188 icon="icons/refresh.png"
189 label="Refresh execution modules"
190 tooltip="Refresh the execution modules view.">
191 </command>
192 </menuContribution>
193 <menuContribution
194 locationURI="toolbar:org.argeo.slc.client.ui.processBuilderView">
195 <command
196 commandId="org.argeo.slc.client.ui.launchBatch"
197 icon="icons/launch.gif"
198 label="Launch Batch"
199 tooltip="Launch the batch built in the process builder view.">
200 </command>
201 <command
202 commandId="org.argeo.slc.client.ui.clearBatch"
203 label="Clear Batch"
204 icon="icons/clear_batch.gif"
205 tooltip="Clear the batch built in the process builder view.">
206 </command>
207 <command
208 commandId="org.argeo.slc.client.ui.removeSelectedFromBatch"
209 icon="icons/remove_one.gif"
210 label="Remove Selected From Batch"
211 tooltip="Remove selected process from process builder view.">
212 </command>
213 </menuContribution>
214 </extension>
215 <extension
216 point="org.eclipse.ui.perspectives">
217 <perspective
218 class="org.argeo.slc.client.ui.SlcExecutionPerspective"
219 icon="icons/slc_execution_perspective.gif"
220 id="org.argeo.slc.client.ui.slcExecutionPerspective"
221 name="SLC Execution">
222 </perspective>
223 </extension>
224 <extension
225 point="org.eclipse.ui.editors">
226 <editor
227 class="org.argeo.eclipse.spring.SpringExtensionFactory"
228 default="false"
229 icon="icons/batch.gif"
230 id="org.argeo.slc.client.ui.processEditor"
231 name="Process">
232 </editor>
233 </extension>
234 <extension
235 point="org.eclipse.ui.elementFactories">
236 <factory
237 class="org.argeo.slc.client.ui.editors.ProcessEditorInputFactory"
238 id="org.argeo.slc.client.ui.processEditorInputFactory">
239 </factory>
240 </extension>
241 </plugin>