Skip to main content
summaryrefslogtreecommitdiffstats
blob: c019e9ef44964387bcd53c075a6a2a0414547004 (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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.2"?>
<plugin>

   <extension
         point="org.eclipse.ui.editors">
      <editor
            name="Sash Windows Full Editor"
            extensions="fullEditor"
            icon="icons/sample.gif"
            contributorClass="org.eclipse.papyrus.example.core.sashwindows.fulleditor.editor.MultiTextEditorContributor"
            class="org.eclipse.papyrus.example.core.sashwindows.fulleditor.editor.MultiTextEditor"
            id="org.eclipse.papyrus.example.sashwindows.FullEditor">
      </editor>
      <editor
            class="org.eclipse.papyrus.example.core.sashwindows.fulleditor.editor.DiMultiTextEditor"
            contributorClass="org.eclipse.papyrus.example.core.sashwindows.fulleditor.editor.MultiTextEditorContributor"
            extensions="fullEditor"
            icon="icons/sample.gif"
            id="org.eclipse.papyrus.example.sashwindows.DiFullEditor"
            name="Sash Windows Full Editor (Di ContentProvider)">
      </editor>
   </extension>
   <extension
         point="org.eclipse.ui.newWizards">
      <category
            id="org.eclipse.papyrus.example.sashwindows"
            name="Sash Windows Examples">
      </category>
      <wizard
            name="Sash Windows Full Editor"
            icon="icons/sample.gif"
            category="org.eclipse.papyrus.example.sashwindows"
            class="org.eclipse.papyrus.example.core.sashwindows.fulleditor.wizards.MultiTextNewWizard"
            id="org.eclipse.papyrus.example.sashwindows.wizards.FullEditor">
      </wizard>
   </extension>
   <extension
         point="org.eclipse.ui.menus">
      <menuContribution
            locationURI="menu:org.eclipse.ui.main.menu?after=navigate">
         <menu
               id="org.eclipse.example.multitext.ui.menu"
               label="Sash Windows Full Editor">
            <menu
                  id="org.eclipse.example.multitext.ui.menu.create"
                  label="Create Tab">
               <command
                     commandId="org.eclipse.example.multitext.ui.command.createTestEditor"
                     icon="icons/TextEditor.gif"
                     label="Create New Text Editor"
                     style="push">
               </command>
               <command
                     commandId="org.eclipse.example.multitext.ui.command.createMsgControl"
                     icon="icons/MsgTab.gif"
                     label="Create Msg Tab"
                     style="push">
               </command>
            </menu>
         </menu>
      </menuContribution>
      <menuContribution
            locationURI="toolbar:org.eclipse.ui.main.toolbar">
         <toolbar
               id="org.eclipse.example.multitext.ui.toolbar">
            <command
                  commandId="org.eclipse.example.multitext.ui.command.createTestEditor"
                  icon="icons/TextEditor.gif"
                  style="push">
            </command>
            <command
                  commandId="org.eclipse.example.multitext.ui.command.createMsgControl"
                  icon="icons/MsgTab.gif"
                  style="push">
            </command>
         </toolbar>
      </menuContribution>
   </extension>
   <extension
         point="org.eclipse.ui.commands">
      <command
            id="org.eclipse.example.multitext.ui.command.createTestEditor"
            name="Create New Text Editor">
      </command>
      <command
            id="org.eclipse.example.multitext.ui.command.createMsgControl"
            name="Create Msg Tab">
      </command>
   </extension>
   <extension
         point="org.eclipse.ui.handlers">
      <handler
            class="org.eclipse.papyrus.example.core.sashwindows.fulleditor.texteditor.CreateTextEditorCommandHandler"
            commandId="org.eclipse.example.multitext.ui.command.createTestEditor">
         <activeWhen>
            <or>
               <with
                     variable="activeEditorId">
                  <equals
                        value="org.eclipse.papyrus.example.sashwindows.FullEditor">
                  </equals>
               </with>
               <with
                     variable="activeEditorId">
                  <equals
                        value="org.eclipse.papyrus.example.sashwindows.DiFullEditor">
                  </equals>
               </with>
            </or>
         </activeWhen>
      </handler>
      <handler
            class="org.eclipse.papyrus.example.core.sashwindows.fulleditor.msgpage.CreateMessageCommandHandler"
            commandId="org.eclipse.example.multitext.ui.command.createMsgControl">
         <activeWhen>
            <or>
               <with
                     variable="activeEditorId">
                  <equals
                        value="org.eclipse.papyrus.example.sashwindows.FullEditor">
                  </equals>
               </with>
               <with
                     variable="activeEditorId">
                  <equals
                        value="org.eclipse.papyrus.example.sashwindows.DiFullEditor">
                  </equals>
               </with>
            </or>
         </activeWhen>
      </handler>
   </extension>

</plugin>

Back to the top