blob: 5214ce657d096db5a0b68ab04b668d610ae9118f (
plain)
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
|
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.ui.actionSets">
<actionSet id="org.eclipse.debug.ui.SmartLaunchActionSet"
label="%Gom.SmartLaunch.Label">
<action
class="org.tizen.common.gom.smartlaunch.action.GomSmartLaunchToolbarAction"
icon="icons/smart_launch.png"
id="org.eclipse.debug.ui.SmartLaunchActionSet"
label="%Gom.SmartLaunch.Label"
style="pulldown"
toolbarPath="buildConfig"
tooltip="%Gom.SmartLaunch.Tooltip"/>
</actionSet>
</extension>
<extension
point="org.eclipse.ui.commands">
<command
categoryId="org.tizen.common.gom.category"
defaultHandler="org.tizen.common.gom.smartlaunch.handler.GomSmartLaunchCycleHandler:true"
id="org.tizen.common.gom.smartlaunch.ui.tizensmartlauncher.up"
name="Backward Launch History">
</command>
<command
categoryId="org.tizen.common.gom.category"
defaultHandler="org.tizen.common.gom.smartlaunch.handler.GomSmartLaunchCycleHandler:true"
id="org.tizen.common.gom.smartlaunch.ui.tizensmartlauncher.down"
name="Forward Launch History">
</command>
<command
categoryId="org.tizen.common.gom.category"
defaultHandler="org.tizen.common.gom.smartlaunch.handler.GomSmartLaunchHandler:true"
id="org.tizen.common.gom.smartlaunch.ui.tizensmartlauncher.new"
name="New Launch Configuration">
</command>
<category
id="org.tizen.common.gom.category"
name="Smart Launch">
</category>
</extension>
<extension
point="org.eclipse.ui.bindings">
<sequenceModifier
find="M2+M3"
replace="M1"
platforms="cocoa">
</sequenceModifier>
<key
commandId="org.tizen.common.gom.smartlaunch.ui.tizensmartlauncher.down"
contextId="org.eclipse.ui.contexts.window"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
sequence="M2+M3+[">
</key>
<key
commandId="org.tizen.common.gom.smartlaunch.ui.tizensmartlauncher.up"
contextId="org.eclipse.ui.contexts.window"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
sequence="M2+M3+]">
</key>
<key
commandId="org.tizen.common.gom.smartlaunch.ui.tizensmartlauncher.new"
contextId="org.eclipse.ui.contexts.window"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
sequence="M2+M3+F12">
</key>
</extension>
</plugin>
|