Project

General

Profile

Download (2.39 KB) Statistics
| Branch: | Tag: | Revision:
1
<?xml version="1.0" encoding="UTF-8"?>
2
<?eclipse version="3.0"?>
3
<!--
4
    Copyright (c) 2005, 2009 IBM Corporation and others.
5
    All rights reserved. This program and the accompanying materials
6
    are made available under the terms of the Eclipse Public License v1.0
7
    which accompanies this distribution, and is available at
8
    http://www.eclipse.org/legal/epl-v10.html
9
   
10
    Contributors:
11
        IBM Corporation - initial API and implementation
12
 -->
13

    
14
<plugin>
15
	<extension
16
			point="org.eclipse.ui.commands">
17
		<category
18
				name="%ViewCategory.Label"
19
				description="%ViewCategory.Label"
20
				id="org.eclipse.gef.category.view">
21
		</category>
22

    
23
		<command
24
				name="%Palette.Label" 
25
				description="" 
26
				categoryId="org.eclipse.ui.category.views" 
27
				id="org.eclipse.gef.ui.palette_view"> 
28
		</command>
29

    
30
		<command
31
				name="%ZoomIn.Tooltip"
32
				description="%ZoomIn.Tooltip"
33
				categoryId="org.eclipse.gef.category.view"
34
				id="org.eclipse.gef.zoom_in">
35
		</command>
36
		
37
		<command
38
				name="%ZoomOut.Tooltip"
39
				description="%ZoomOut.Tooltip"
40
				categoryId="org.eclipse.gef.category.view"
41
				id="org.eclipse.gef.zoom_out">
42
		</command>
43
			
44
	</extension>
45
	<extension
46
			point="org.eclipse.ui.views">
47
		<view
48
				name="%Palette.Label"
49
				icon="icons/palette_view.gif"
50
				category="org.eclipse.ui"
51
				class="org.eclipse.gef.ui.views.palette.PaletteView"
52
				id="org.eclipse.gef.ui.palette_view">
53
		</view>
54
	</extension>
55
	<extension
56
			point="org.eclipse.ui.perspectiveExtensions">
57
		<perspectiveExtension
58
				targetID="org.eclipse.ui.resourcePerspective">
59
			<view
60
					ratio="0.16"
61
					relative="org.eclipse.ui.editorss"
62
					visible="false"
63
					relationship="left"
64
					id="org.eclipse.gef.ui.palette_view">
65
			</view>
66
		</perspectiveExtension>
67
	</extension>
68
<!-- UNSUPPORTED extension point -->
69
<!--
70
	<extension point="org.eclipse.ui.bindings">
71
		<key
72
			sequence="M1+="
73
			commandId="org.eclipse.gef.zoom_in"
74
			schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"/>
75
		<key
76
			sequence="M1+-"
77
			commandId="org.eclipse.gef.zoom_out"
78
			schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"/>
79

    
80
	</extension>
81
	-->
82
	<extension point="org.eclipse.core.runtime.adapters">
83
		<factory
84
				class="org.eclipse.gef.internal.PropertySourceAdapterFactory"
85
				adaptableType="org.eclipse.gef.editparts.AbstractEditPart">
86
			<adapter type="org.eclipse.ui.views.properties.IPropertySource"/>
87
		</factory>
88
	</extension>
89

    
90
</plugin>
(12-12/12)