-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
294 lines (292 loc) · 11.9 KB
/
Copy pathplugin.xml
File metadata and controls
294 lines (292 loc) · 11.9 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
id="application"
point="org.eclipse.core.runtime.applications">
<application>
<run
class="powerglobe.application.PowerGlobeRcpApplication">
</run>
</application>
</extension>
<extension
point="org.eclipse.ui.perspectives">
<perspective
class="powerglobe.perspective.Perspective"
fixed="true"
id="powerglobe.perspective.Edit"
name="%perspective.name">
</perspective>
</extension>
<extension
point="org.eclipse.ui.views">
<view
class="powerglobe.view.View"
fastViewWidthRatio="0.85"
id="powerglobe.view.Earth"
name="%view.earth">
</view>
</extension>
<extension
point="org.eclipse.ui.perspectiveExtensions">
<perspectiveExtension
targetID="powerglobe.perspective.Edit">
<view
closeable="false"
id="powerglobe.view.Earth"
minimized="false"
moveable="false"
relationship="right"
relative="org.eclipse.ui.editorss"
showTitle="false"
standalone="true"
visible="true">
</view>
</perspectiveExtension>
</extension>
<extension
point="org.eclipse.ui.menus">
<menuContribution
locationURI="menu:org.eclipse.ui.main.menu">
<menu
label="%menu.file">
<command
commandId="org.eclipse.ui.file.exit"
label="%command.exit">
</command>
<command
commandId="PowerGlobeRCP.command.newProject"
label="New presentation"
style="push">
</command>
<command
commandId="PowerGlobeRCP.command.openProject"
label="Open presentation"
style="push">
</command>
<command
commandId="PowerGlobeRCP.command.save"
label="Save presentation"
style="push">
</command>
<command
commandId="PowerGlobeRCP.command.Settings"
label="Settings"
style="push">
</command>
</menu>
<menu
label="%menu.edit">
</menu>
<menu
label="%menu.slide">
<command
commandId="PowerGlobeRCP.commands.newSlide"
label="%command.newslide"
style="push">
</command>
<command
commandId="PowerGlobeRCP.command.removeSlide"
label="Remove slide"
style="push">
</command>
<command
commandId="PowerGlobeRCP.command.saveSlidePoint"
label="Save slide position"
style="push">
</command>
<command
commandId="PowerGlobeRCP.command.nextSlide"
label="Next slide"
style="push">
</command>
<command
commandId="PowerGlobeRCP.command.prevSlide"
label="Previous slide"
style="push">
</command>
</menu>
<command
commandId="org.eclipse.ui.help.aboutAction"
label="%menu.help"
style="push">
</command>
</menuContribution>
<menuContribution
locationURI="toolbar:org.eclipse.ui.main.toolbar">
<toolbar
id="PowerGlobeRCP.toolbar2">
<command
commandId="PowerGlobeRCP.command.openProject"
icon="icons/fldr_obj.gif"
style="push">
</command>
<command
commandId="PowerGlobeRCP.command.newProject"
icon="icons/new_wiz.gif"
style="push">
</command>
<command
commandId="PowerGlobeRCP.command.save"
hoverIcon="icons/save_edit.gif"
icon="icons/save_edit.gif"
style="push">
</command>
<separator
name="PowerGlobeRCP.separator1"
visible="true">
</separator>
<command
commandId="PowerGlobeRCP.commands.newSlide"
hoverIcon="icons/new_con.gif"
icon="icons/new_con.gif"
style="push">
</command>
<command
commandId="PowerGlobeRCP.command.saveSlidePoint"
icon="icons/link_obj.gif"
style="push">
</command>
<command
commandId="PowerGlobeRCP.command.removeSlide"
icon="icons/delete_obj.gif"
style="push">
</command>
<separator
name="PowerGlobeRCP.separator2">
</separator>
<command
commandId="PowerGlobeRCP.command.startPresentation"
icon="icons/console_view.gif"
style="push">
</command>
<command
commandId="PowerGlobeRCP.command.prevSlide"
icon="icons/nav_backward.gif"
style="push">
</command>
<command
commandId="PowerGlobeRCP.command.nextSlide"
icon="icons/nav_forward.gif"
style="push">
</command>
<command
commandId="PowerGlobeRCP.command.Settings"
icon="icons/prop_ps.gif"
label="Settings"
style="push">
</command>
</toolbar>
</menuContribution>
<menuContribution
allPopups="false"
locationURI="popup:powerglobe.view.View">
<command
commandId="PowerGlobeRCP.command.removeSlide"
style="push">
</command>
</menuContribution>
</extension>
<extension
id="product"
point="org.eclipse.core.runtime.products">
<product
application="PowerGlobe.application"
name="Power Globe">
<property
name="appName"
value="Power Globe">
</property>
<property
name="startupProgressRect"
value="5,275,445,15">
</property>
<property
name="preferenceCustomization"
value="plugin_customization.ini">
</property>
</product>
</extension>
<extension
point="org.eclipse.ui.commands">
<command
defaultHandler="powerglobe.commands.NewSlide"
id="PowerGlobeRCP.commands.newSlide"
name="%command.newslide">
</command>
<command
defaultHandler="powerglobe.commands.NewProject"
id="PowerGlobeRCP.command.newProject"
name="New project">
</command>
<command
defaultHandler="powerglobe.commands.Save"
id="PowerGlobeRCP.command.save"
name="Save">
</command>
<command
defaultHandler="powerglobe.commands.StartPresentation"
id="PowerGlobeRCP.command.startPresentation"
name="Start presentation">
</command>
<command
defaultHandler="powerglobe.commands.SaveSlidePoint"
id="PowerGlobeRCP.command.saveSlidePoint"
name="Save slide point">
</command>
<command
defaultHandler="powerglobe.commands.RemoveSlide"
id="PowerGlobeRCP.command.removeSlide"
name="Remove slide">
</command>
<command
defaultHandler="powerglobe.commands.NextSlide"
id="PowerGlobeRCP.command.nextSlide"
name="Next slide">
</command>
<command
defaultHandler="powerglobe.commands.PreviousSlide"
id="PowerGlobeRCP.command.prevSlide"
name="Previous slide">
</command>
<command
defaultHandler="powerglobe.commands.OpenProject"
id="PowerGlobeRCP.command.openProject"
name="Open project">
</command>
<command
defaultHandler="powerglobe.commands.ProjectSettings"
id="PowerGlobeRCP.command.Settings"
name="Project settings">
</command>
</extension>
<extension
id="product1"
point="org.eclipse.core.runtime.products">
<product
application="PowerGlobe.application"
name="%product.name">
<property
name="appName"
value="%product.name">
</property>
<property
name="aboutImage"
value="mini.png">
</property>
<property
name="aboutText"
value="PowerGlobe - это программа создания презентаций на основе NASA WorldWind, которая позволяет пользователям создавать и проигрывать презентации, содержащие визуализацию географических данных. Такие презентации могут быть использованы в любой области, где требуется визуализация данных на поверхности Земли: прогноз погоды; виртуальные туры и экскурсии; мониторинг пробок на дорогах, загрязнения воздуха, уровня безработицы, лесных пожаров, вулканической активности, сейсмической активности или любых других показателей, которые зависят от местности. Основой для разработки PowerGlobe послужил проект NASA World Wind - 3D модель планеты Земля, разработанной NASA, предоставляющая открытый API, который позволяет разрабатывать дополнения для этого виртуального глобуса. Как и Microsoft PowerPoint, PowerGlobe поддерживает редактирование слайдов, переходов между ними и презентации в целом, а также добавление собственных пользовательских элементов, например, текст, фотографии, видео.


PowerGlobe is a presentation program based on NASA WorldWind which allows users to create and run presentations with geographical data visualization. Such presentations can be used in any area where data visualization on the Earth surface is required: weather forecast; virtual sightseeing tours; monitoring traffic congestion, air pollution, unemployment level, forest fires, volcanic activity, seismic activity, or any other indicators, depending on the terrain. PowerGlobe is based on NASA World Wind — a 3D model of the planet Earth developed by NASA and at the same time a free, open-source API that allows to develop add-ons for this globe. Same as Microsoft PowerPoint, PowerGlobe allows editing slides, transitions between them and the presentation as a whole, as well as adding user’s own elements, such as text, photos, videos and other.">
</property>
<property
name="startupProgressRect"
value="5,275,445,15">
</property>
<property
name="preferenceCustomization"
value="plugin_customization.ini">
</property>
</product>
</extension>
</plugin>