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 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
|
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.ui.commands">
<category
id="StarPU.commands.category"
name="StarPU Category">
</category>
<command
categoryId="StarPU.commands.category"
name="StarPU FxT tool"
id="StarPU.commands.traceGenCommand">
</command>
<command
categoryId="StarPU.commands.category"
id="StarPU.commands.traceVizCommand"
name="Visualize Paje trace">
</command>
<command
categoryId="StarPU.commands.category"
id="StarPU.commands.taskGraphCommand"
name="Run Task graph">
</command>
<command
categoryId="StarPU.commands.category"
id="StarPU.commands.svgCommand"
name="Generate SVG graph">
</command>
</extension>
<extension
point="org.eclipse.ui.handlers">
<handler
class="starpu.handlers.TraceGenHandler"
commandId="StarPU.commands.traceGenCommand">
</handler>
<handler
class="starpu.handlers.TraceVizHandler"
commandId="StarPU.commands.traceVizCommand">
</handler>
<handler
class="starpu.handlers.TaskGraphHandler"
commandId="StarPU.commands.taskGraphCommand">
</handler>
<handler
class="starpu.handlers.SvgHandler"
commandId="StarPU.commands.svgCommand">
</handler>
</extension>
<extension
point="org.eclipse.ui.bindings">
<key
commandId="StarPU.commands.traceGenCommand"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
contextId="org.eclipse.ui.contexts.window"
sequence="M1+6">
</key>
<key
commandId="StarPU.commands.traceVizCommand"
contextId="org.eclipse.ui.contexts.window"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
sequence="M1+7">
</key>
<key
commandId="StarPU.commands.taskGraphCommand"
contextId="org.eclipse.ui.contexts.window"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
sequence="M1+8">
</key>
<key
commandId="StarPU.commands.svgCommand"
contextId="org.eclipse.ui.contexts.window"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
sequence="M1+9">
</key>
</extension>
<extension
point="org.eclipse.ui.menus">
<menuContribution
locationURI="menu:org.eclipse.ui.main.menu?after=additions">
<menu
id="StarPU.menus.sampleMenu"
label="StarPU"
mnemonic="M">
<command
commandId="StarPU.commands.traceGenCommand"
id="StarPU.menus.traceGenCommand"
mnemonic="S">
</command>
<command
commandId="StarPU.commands.traceVizCommand"
id="StarPU.menus.traceVizCommand"
mnemonic="S"
style="push">
</command>
<command
commandId="StarPU.commands.taskGraphCommand"
id="StarPU.commands.taskGraphCommand"
style="push">
</command>
<command
commandId="StarPU.commands.svgCommand"
id="StarPU.commands.svgCommand"
style="push">
</command>
</menu>
</menuContribution>
<menuContribution
locationURI="toolbar:org.eclipse.ui.main.toolbar?after=additions">
<toolbar
id="StarPU.toolbars.sampleToolbar">
<command
id="StarPU.toolbars.traceGenCommand"
commandId="StarPU.commands.traceGenCommand"
icon="icons/fxt.png"
tooltip="StarPU FxT tool">
</command>
</toolbar>
</menuContribution>
<menuContribution
locationURI="toolbar:org.eclipse.ui.main.toolbar?after=additions">
<toolbar
id="StarPU.toolbars.sampleToolbar">
<command
commandId="StarPU.commands.traceVizCommand"
icon="icons/vite.png"
id="StarPU.toolbars.traceVizCommand"
tooltip="Vizualise Paje trace">
</command>
</toolbar>
</menuContribution>
<menuContribution
locationURI="toolbar:org.eclipse.ui.main.toolbar?after=additions">
<toolbar
id="StarPU.toolbars.sampleToolbar">
<command
commandId="StarPU.commands.taskGraphCommand"
icon="icons/taskGraph.png"
id="StarPU.toolbars.taskGraphCommand"
tooltip="Run Task graph">
</command>
</toolbar>
</menuContribution>
<menuContribution
locationURI="toolbar:org.eclipse.ui.main.toolbar?after=additions">
<toolbar
id="StarPU.toolbars.sampleToolbar">
<command
commandId="StarPU.commands.svgCommand"
icon="icons/svg.png"
id="StarPU.toolbars.svgCommand"
tooltip="Generate SVG graph">
</command>
</toolbar>
</menuContribution>
</extension>
</plugin>
|