.
[taxeditor.git] / plugin.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <?eclipse version="3.2"?>
3 <plugin>
4
5 <extension
6 id="application"
7 point="org.eclipse.core.runtime.applications">
8 <application>
9 <run
10 class="eu.etaxonomy.taxeditor.TaxEditorApplication">
11 </run>
12 </application>
13 </extension>
14 <extension
15 point="org.eclipse.ui.perspectives">
16 <perspective
17 name="RCP Perspective"
18 class="eu.etaxonomy.taxeditor.Perspective"
19 id="eu.etaxonomy.taxeditor.perspective">
20 </perspective>
21 </extension>
22
23 <extension
24 point="org.eclipse.ui.editors">
25 <editor
26 name="Names"
27 default="true"
28 icon="icons/file_obj.gif"
29 class="eu.etaxonomy.taxeditor.SimpleFormEditor"
30 id="eu.etaxonomy.taxeditor.base-editor">
31 </editor>
32 </extension>
33 <extension
34 point="org.eclipse.ui.actionSets">
35 <actionSet
36 label="Master Details Actionset"
37 id="eu.etaxonomy.taxeditor.actionSet">
38 <menu
39 label="Names Demo"
40 id="eu.etaxonomy.taxeditor.menu">
41 <groupMarker
42 name="group">
43 </groupMarker>
44 </menu>
45 <action
46 label="Open"
47 class="eu.etaxonomy.taxeditor.OpenSimpleFormEditorAction"
48 menubarPath="eu.etaxonomy.taxeditor.menu/file"
49 id="eu.etaxonomy.taxeditor.simple">
50 </action>
51 </actionSet>
52 </extension>
53
54 <extension
55 point="org.eclipse.ui.views">
56 <view
57 name="Message"
58 allowMultiple="true"
59 icon="icons/sample2.gif"
60 class="eu.etaxonomy.taxeditor.View"
61 id="eu.etaxonomy.taxeditor.view">
62 </view>
63 <view
64 name="Mailboxes"
65 allowMultiple="true"
66 icon="icons/sample3.gif"
67 class="eu.etaxonomy.taxeditor.NavigationView"
68 id="eu.etaxonomy.taxeditor.navigationView">
69 </view>
70 <view
71 name="Name Form"
72 allowMultiple="true"
73 icon="icons/sample3.gif"
74 class="eu.etaxonomy.taxeditor.FormView"
75 id="eu.etaxonomy.taxeditor.formview">
76 </view>
77 </extension>
78 <extension
79 point="org.eclipse.ui.commands">
80 <category
81 name="Mail"
82 id="eu.etaxonomy.taxeditor.category">
83 </category>
84 <command
85 name="Open Mailbox"
86 description="Opens a mailbox"
87 categoryId="eu.etaxonomy.taxeditor.category"
88 id="eu.etaxonomy.taxeditor.open">
89 </command>
90 <command
91 name="Open Message Dialog"
92 description="Open a message dialog"
93 categoryId="eu.etaxonomy.taxeditor.category"
94 id="eu.etaxonomy.taxeditor.openMessage">
95 </command>
96 </extension>
97 <extension
98 point="org.eclipse.ui.bindings">
99 <key
100 commandId="eu.etaxonomy.taxeditor.open"
101 schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
102 sequence="CTRL+2">
103 </key>
104 <key
105 commandId="eu.etaxonomy.taxeditor.openMessage"
106 schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
107 sequence="CTRL+3">
108 </key>
109 <key
110 commandId="org.eclipse.ui.file.exit"
111 schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
112 sequence="CTRL+X">
113 </key>
114 </extension>
115 <extension
116 id="product"
117 point="org.eclipse.core.runtime.products">
118 <product
119 application="eu.etaxonomy.taxeditor.application"
120 name="Taxonomic Editor">
121 <property
122 name="aboutText"
123 value="Taxonomic Editor &#x0A;(c) 2007 European Distributed Institute of Taxonomy&#x0A;&#x0A;Thanks to our worldwide fan community and Jesus.">
124 </property>
125 <property
126 name="windowImages"
127 value="icons/edit_16x16.gif">
128 </property>
129 <property
130 name="aboutImage"
131 value="logo_edit.gif">
132 </property>
133 <property
134 name="appName"
135 value="Taxonomic Editor">
136 </property>
137 <property
138 name="preferenceCustomization"
139 value="plugin_customization.ini">
140 </property>
141 <property
142 name="startupForegroundColor"
143 value="FFFFFF">
144 </property>
145 <property
146 name="startupMessageRect"
147 value="7,252,445,20">
148 </property>
149 <property
150 name="startupProgressRect"
151 value="5,5,45,10">
152 </property>
153 </product>
154 </extension>
155
156 </plugin>