]> git.argeo.org Git - gpl/argeo-slc.git/blob - eclipse/plugins/org.argeo.slc.client.ui/plugin.xml
+ change default UI window size
[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
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/results.gif"
18 id="org.argeo.slc.client.ui.resultListView"
19 name="Results"
20 restorable="true">
21 </view>
22 <view
23 allowMultiple="true"
24 class="org.argeo.eclipse.spring.SpringExtensionFactory"
25 icon="icons/result_details.gif"
26 id="org.argeo.slc.client.ui.resultDetailView"
27 name="Result details"
28 restorable="true">
29 </view>
30 <view
31 id="org.argeo.slc.client.ui.processListView"
32 class="org.argeo.eclipse.spring.SpringExtensionFactory"
33 name="Processes"
34 icon="icons/processes.gif"
35 restorable="true">
36 </view>
37 <view
38 allowMultiple="true"
39 class="org.argeo.eclipse.spring.SpringExtensionFactory"
40 icon="icons/process_details.gif"
41 id="org.argeo.slc.client.ui.processDetailView"
42 name="Process details"
43 restorable="true">
44 </view>
45 <view
46 class="org.argeo.eclipse.spring.SpringExtensionFactory"
47 icon="icons/edit_parameters.gif"
48 id="org.argeo.slc.client.ui.processParametersView"
49 name="Process Parameters"
50 restorable="true">
51 </view>
52 <view
53 class="org.argeo.eclipse.spring.SpringExtensionFactory"
54 icon="icons/batch.gif"
55 id="org.argeo.slc.client.ui.processBuilderView"
56 name="Batch"
57 restorable="true">
58 </view>
59 </extension>
60
61 <extension
62 point="org.eclipse.ui.commands">
63 <command
64 defaultHandler="org.argeo.eclipse.spring.SpringCommandHandler"
65 id="org.argeo.slc.client.ui.refreshResultList"
66 name="RefreshResultList">
67 </command>
68 <command
69 defaultHandler="org.argeo.eclipse.spring.SpringCommandHandler"
70 id="org.argeo.slc.client.ui.launchBatch"
71 name="LaunchBatch">
72 </command>
73 <command
74 defaultHandler="org.argeo.eclipse.spring.SpringCommandHandler"
75 id="org.argeo.slc.client.ui.removeSelectedFromBatch"
76 name="RemoveSelectedFromBatch">
77 </command>
78 <command
79 defaultHandler="org.argeo.eclipse.spring.SpringCommandHandler"
80 id="org.argeo.slc.client.ui.clearBatch"
81 name="ClearBatch">
82 </command>
83 <command
84 defaultHandler="org.argeo.eclipse.spring.SpringCommandHandler"
85 id="org.argeo.slc.client.ui.refreshProcessList"
86 name="RefreshProcessList ">
87 </command>
88 <command
89 defaultHandler="org.argeo.eclipse.spring.SpringCommandHandler"
90 id="org.argeo.slc.client.ui.displayProcessDetails"
91 name="DisplayProcessDetails">
92 <commandParameter
93 id="org.argeo.slc.client.commands.processUuid"
94 name="Process UUID">
95 </commandParameter>
96 </command>
97 <command
98 defaultHandler="org.argeo.eclipse.spring.SpringCommandHandler"
99 id="org.argeo.slc.client.ui.displayResultDetails"
100 name="DisplayResultDetails">
101 <commandParameter
102 id="org.argeo.slc.client.commands.resultUuid"
103 name="Result UUID">
104 </commandParameter>
105 </command>
106 </extension>
107 <extension
108 point="org.eclipse.ui.bindings">
109 <key
110 commandId="org.argeo.slc.client.ui.refreshResultList"
111 schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
112 sequence="CTRL+R">
113 </key>
114 </extension>
115
116 <extension
117 id="menu:org.eclipse.ui.main.menu"
118 point="org.eclipse.ui.menus">
119 <menuContribution
120 locationURI="menu:org.eclipse.ui.main.menu?after=fileMenu">
121 <menu
122 id="slcMenu"
123 label="SLC">
124 <command
125 commandId="org.argeo.slc.client.ui.refreshResultList"
126 label="Refresh"
127 style="push"
128 tooltip="Refresh the result list">
129 </command>
130 </menu>
131 </menuContribution>
132 <menuContribution
133 locationURI="toolbar:org.eclipse.ui.main.toolbar">
134 <toolbar
135 id="org.argeo.slc.client.ui.ResultViewToolbar">
136 <command
137 commandId="org.argeo.slc.client.ui.refreshResultList"
138 icon="icons/refresh.png"
139 label="Refresh"
140 style="toggle"
141 tooltip="Refresh the result list">
142 </command>
143 <separator
144 name="resultListViewGroup">
145 </separator>
146 </toolbar>
147 </menuContribution>
148 <menuContribution
149 locationURI="toolbar:org.argeo.slc.client.ui.processBuilderView">
150 <command
151 commandId="org.argeo.slc.client.ui.launchBatch"
152 icon="icons/launch.gif"
153 label="Launch Batch"
154 tooltip="Launch the batch built in the process builder view.">
155 </command>
156 <command
157 commandId="org.argeo.slc.client.ui.clearBatch"
158 label="Clear Batch"
159 icon="icons/clear_batch.gif"
160 tooltip="Clear the batch built in the process builder view.">
161 </command>
162 <command
163 commandId="org.argeo.slc.client.ui.removeSelectedFromBatch"
164 icon="icons/remove_one.gif"
165 label="Remove Selected From Batch"
166 tooltip="Remove selected process from process builder view.">
167 </command>
168 </menuContribution>
169 </extension>
170 </plugin>