Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 76f118827e02028bfecfd3b26cb0913d7fae3bf6 (plain) (blame)
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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
   <extension
         point="org.eclipse.ui.menus">
      <menuContribution
            locationURI="popup:org.eclipse.gmf.runtime.diagram.ui.DiagramEditorContextMenu?after=filtersMenu">
         <menu
               icon="icons/papyrus.png"
               id="org.eclipse.papyrus.infra.gmfdiag.menu.editmenu"
               label="Edit">
            <command
                  commandId="org.eclipse.ui.edit.undo"
                  style="push">
            </command>
            <command
                  commandId="org.eclipse.ui.edit.redo"
                  style="push">
            </command>
            <separator
                  name="undo_redo_separator"
                  visible="true">
            </separator>
            <command
                  commandId="org.eclipse.ui.edit.cut"
                  style="push">
            </command>
            <command
                  commandId="org.eclipse.ui.edit.copy"
                  style="push">
            </command>
            <command
                  commandId="org.eclipse.ui.edit.paste"
                  style="push">
            </command>
            <separator
                  name="edit_actions_separator"
                  visible="true">
            </separator>
            <command
                  commandId="org.eclipse.papyrus.infra.gmfdiag.menu.selectelementswithsametype"
                  style="push">
            </command>
         </menu>
      </menuContribution>
   </extension>
   <extension
         point="org.eclipse.ui.handlers">
      <handler
            class="org.eclipse.papyrus.infra.gmfdiag.menu.handlers.CutInDiagramHandler"
            commandId="org.eclipse.ui.edit.cut">
         <activeWhen>
            <and>
               <with
                     variable="activeContexts">
                  <test
                        property="org.eclipse.papyrus.infra.gmfdiag.common.diagram.context.tester.isGmfDiagramContextActive"
                        value="true">
                  </test>
               </with>
               <with
                     variable="selection">
                  <test
                        forcePluginActivation="true"
                        property="org.eclipse.papyrus.infra.gmfdiag.common.diagram.tester.isDiagramEditor"
                        value="true">
                  </test>
               </with>
            </and>
         </activeWhen>
      </handler>
      <handler
            class="org.eclipse.papyrus.infra.gmfdiag.menu.handlers.CopyInDiagramHandler"
            commandId="org.eclipse.ui.edit.copy">
         <activeWhen>
            <and>
               <with
                     variable="activeContexts">
                  <test
                        property="org.eclipse.papyrus.infra.gmfdiag.common.diagram.context.tester.isGmfDiagramContextActive"
                        value="true">
                  </test>
               </with>
               <with
                     variable="selection">
                  <test
                        forcePluginActivation="true"
                        property="org.eclipse.papyrus.infra.gmfdiag.common.diagram.tester.isDiagramEditor"
                        value="true">
                  </test>
               </with>
            </and>
         </activeWhen>
      </handler>
      <handler
            class="org.eclipse.papyrus.infra.gmfdiag.menu.handlers.PasteInDiagramHandler"
            commandId="org.eclipse.ui.edit.paste">
         <activeWhen>
            <and>
               <with
                     variable="activeContexts">
                  <test
                        property="org.eclipse.papyrus.infra.gmfdiag.common.diagram.context.tester.isGmfDiagramContextActive"
                        value="true">
                  </test>
               </with>
               <with
                     variable="selection">
                  <test
                        forcePluginActivation="true"
                        property="org.eclipse.papyrus.infra.gmfdiag.common.diagram.tester.isDiagramEditor"
                        value="true">
                  </test>
               </with>
            </and>
         </activeWhen>
      </handler>
   </extension>
   <extension
         point="org.eclipse.ui.commands">
      <command
            categoryId="org.eclipse.papyrus.editor.category"
            defaultHandler="org.eclipse.papyrus.infra.gmfdiag.menu.handlers.SelectElementWithTheSameTypeHandler"
            description="Select the elements in the current diagram which have the same type"
            id="org.eclipse.papyrus.infra.gmfdiag.menu.selectelementswithsametype"
            name="Select Elements With Same Type">
      </command>
   </extension>
   <extension
         point="org.eclipse.ui.bindings">
      <key
            commandId="org.eclipse.papyrus.infra.gmfdiag.menu.selectelementswithsametype"
            contextId="org.eclipse.gmf.runtime.diagram.ui.diagramContext"
            schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
            sequence="M1+M3+A">
      </key>
   </extension>

</plugin>

Back to the top