-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
79 lines (77 loc) · 2.7 KB
/
plugin.xml
File metadata and controls
79 lines (77 loc) · 2.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.ui.views">
<view
allowMultiple="false"
class="edu.ualberta.med.sampleProcessingRobot.views.MainView"
icon="icons/robot.png"
id="edu.ualberta.med.sampleProcessingRobot.views.MainView"
name="Main Robot View">
</view>
</extension>
<extension
point="org.eclipse.ui.commands">
<command
id="edu.ualberta.med.sampleProcessingRobot.commands.showPerspective"
name="Sample Processing Robot Administration">
</command>
</extension>
<extension
point="org.eclipse.ui.handlers">
<handler
class="edu.ualberta.med.sampleProcessingRobot.handlers.ShowPerspectiveHandler"
commandId="edu.ualberta.med.sampleProcessingRobot.commands.showPerspective">
<activeWhen>
<and>
<reference
definitionId="edu.ualberta.med.biobank.gui.common.loggedIn">
</reference>
</and>
</activeWhen>
</handler>
</extension>
<extension
point="org.eclipse.ui.menus">
<menuContribution
locationURI="toolbar:org.eclipse.ui.main.toolbar">
<toolbar
id="edu.ualberta.med.sampleProcessingRobot.toolbar.mainPerpective">
<command
commandId="edu.ualberta.med.sampleProcessingRobot.commands.showPerspective"
icon="icons/robot.png"
label="Sample Robot Processing Administration"
style="push">
</command>
</toolbar>
</menuContribution>
</extension>
<extension
point="org.eclipse.ui.perspectives">
<perspective
class="edu.ualberta.med.sampleProcessingRobot.perspectives.MainPerspective"
icon="icons/robot.png"
id="edu.ualberta.med.sampleProcessingRobot.perspectives.MainPerspective"
name="Sample Processing Robot">
</perspective>
</extension>
<extension
point="org.eclipse.ui.perspectiveExtensions">
<perspectiveExtension
targetID="edu.ualberta.med.sampleProcessingRobot.perspectives.MainPerspective">
<view
closeable="false"
id="edu.ualberta.med.sampleProcessingRobot.views.MainView"
minimized="false"
moveable="false"
ratio="0.95"
relationship="right"
relative="org.eclipse.ui.editorss"
showTitle="true"
standalone="true"
visible="true">
</view>
</perspectiveExtension>
</extension>
</plugin>