Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 20a0ac25226d22f83d62dcd3f61c9100de5617a4 (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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
   <extension
         point="org.eclipse.ui.menus">
      <menuContribution
            allPopups="false"
            locationURI="popup:org.eclipse.papyrus.uml.diagram.ui.popupmenu.format?after=org.eclipse.papyrus.uml.diagram.menu.commands.CopyAppearancePropertiesCommand">
         <separator
               name="org.eclipse.papyrus.infra.gmfdiag.css.separator"
               visible="true">
         </separator>
         <command
               commandId="org.eclipse.papyrus.infra.gmfdiag.css.createStyle"
               icon="icons/sourceEditor.gif"
               style="push">
            <visibleWhen
                  checkEnabled="true">
            </visibleWhen>
         </command>
         <command
               commandId="org.eclipse.papyrus.infra.gmfdiag.css.editStyle"
               icon="icons/sourceEditor.gif"
               style="push">
            <visibleWhen
                  checkEnabled="true">
            </visibleWhen>
         </command>
         <command
               commandId="org.eclipse.papyrus.infra.gmfdiag.css.applyStyle"
               icon="icons/sourceEditor.gif"
               style="push">
            <visibleWhen
                  checkEnabled="true">
            </visibleWhen>
         </command>
      </menuContribution>
   </extension>
   <extension
         point="org.eclipse.ui.commands">
      <command
            categoryId="org.eclipse.papyrus.editor.category"
            description="Creates a new style based on the selected item"
            id="org.eclipse.papyrus.infra.gmfdiag.css.createStyle"
            name="Create a new style">
      </command>
      <command
            description="Replace an existing style based on the selected item"
            id="org.eclipse.papyrus.infra.gmfdiag.css.editStyle"
            name="Edit an existing style">
      </command>
      <command
            categoryId="org.eclipse.papyrus.editor.category"
            description="Apply a style on the selected item"
            id="org.eclipse.papyrus.infra.gmfdiag.css.applyStyle"
            name="Apply a style">
      </command>
   </extension>
   <extension
         point="org.eclipse.ui.handlers">
      <handler
            class="org.eclipse.papyrus.infra.gmfdiag.css.configuration.handler.ApplyStyleHandler"
            commandId="org.eclipse.papyrus.infra.gmfdiag.css.applyStyle">
      </handler>
      <handler
            class="org.eclipse.papyrus.infra.gmfdiag.css.configuration.handler.CreateStyleHandler"
            commandId="org.eclipse.papyrus.infra.gmfdiag.css.createStyle">
      </handler>
      <handler
            class="org.eclipse.papyrus.infra.gmfdiag.css.configuration.handler.EditStyleHandler"
            commandId="org.eclipse.papyrus.infra.gmfdiag.css.editStyle">
      </handler>
   </extension>

</plugin>

Back to the top