Skip to main content
summaryrefslogtreecommitdiffstats
blob: 5f285ccd881d27283dfbf995a78ff8f2af8c2f64 (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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<plugin>
	<extension
		point="org.eclipse.ui.perspectives">
		<perspective
			name="%perspective.graphing.name"
			class="org.eclipse.linuxtools.systemtap.ui.graphing.GraphingPerspective"
			icon="icons/perspective_obj.gif"
			id="org.eclipse.linuxtools.systemtap.ui.graphing.GraphingPerspective"/>
	</extension>
	
	<extension
		point="org.eclipse.ui.views">
		<view
        allowMultiple="false"
        category="org.eclipse.linuxtools.systemtap.ui"
        class="org.eclipse.linuxtools.systemtap.ui.graphing.views.GraphSelectorView"
        icon="icons/views/selector_obj.gif"
        id="org.eclipse.linuxtools.systemtap.ui.graphing.views.GraphSelectorView"
        name="%view.graphSelector.name">
		</view>
	</extension>
	
	<extension
		point="org.eclipse.help.toc">
		<toc
			file="toc.xml"
			primary="true"/>
		<toc file="documentation/tocconcepts.xml"/>
		<toc file="documentation/tocgettingstarted.xml"/>
		<toc file="documentation/tocreference.xml"/>
		<toc file="documentation/toctasks.xml"/>
	</extension>
	
	<extension
		point="org.eclipse.ui.preferencePages">
		<page
			name="%preference.graphing.name"
			id="com.qualityeclipse.systemtap.prefs.graphing"
			class="org.eclipse.linuxtools.systemtap.ui.graphing.preferences.GraphingPreferencePage"
			category="com.qualityeclipse.systemtap.prefs.view"/>
	</extension>
	
	<extension
		point="org.eclipse.core.runtime.preferences">
		<initializer class="org.eclipse.linuxtools.systemtap.ui.graphing.preferences.PreferenceInitializer"/>
	</extension>

	<extension
		point="org.eclipse.ui.commands">
		<command
			name="%command.open.name"
			description="%command.open.desc"
			categoryId="org.eclipse.linuxtools.systemtap.ui.graphing.category.file"
			id="org.eclipse.linuxtools.systemtap.ui.graphing.commands.OpenScriptOutput"/>
		<command
			name="%command.export.name"
			description="%command.export.desc"
			categoryId="org.eclipse.linuxtools.systemtap.ui.graphing.category.file"
			id="org.eclipse.linuxtools.systemtap.ui.graphing.commands.ExportDataSet"/>
		<command
			name="%command.save.name"
			description="%command.save.desc"
			categoryId="org.eclipse.linuxtools.systemtap.ui.graphing.category.file"
			id="org.eclipse.linuxtools.systemtap.ui.graphing.commands.SaveGraphImage"/>
		<command
			name="%command.import.name"
			description="%command.import.desc"
			categoryId="org.eclipse.linuxtools.systemtap.ui.graphing.category.file"
			id="org.eclipse.linuxtools.systemtap.ui.graphing.commands.ImportDataSet"/>
			
		<category
			name="%category.file.name"
			description="%category.file.desc"
			id="org.eclipse.linuxtools.systemtap.ui.graphing.category.file"/>
			 <command
                        name="%command.modifyParsing.name"
                        description="%command.modifyParsing.desc"
                        categoryId="org.eclipse.linuxtools.systemtap.ui.graphing.category.edit"
                        id="org.eclipse.linuxtools.systemtap.ui.graphing.commands.ModifyParsing"/>

                <category
                        name="%category.edit.name"
                        description="%category.edit.desc"
                        id="org.eclipse.linuxtools.systemtap.ui.graphing.category.edit"/>
	</extension>
	
	
	<extension
		point="org.eclipse.ui.actionSets">
		<actionSet
			label="actionset.graph.name"
			visible="false"
			id="org.eclipse.linuxtools.systemtap.ui.graphing.GraphingActionSet">
			<action
				label="%action.save.name"
				tooltip="%action.save.desc"
				id="org.eclipse.linuxtools.systemtap.ui.graphing.actions.SaveGraphImage"
				icon="icons/actions/save_wiz.gif"
				toolbarPath="org.eclipse.ui.workbench.file/save.ext"
				class="org.eclipse.linuxtools.systemtap.ui.graphing.actions.SaveGraphImageAction"
				definitionId="org.eclipse.linuxtools.systemtap.ui.graphing.commands.SaveGraphImage"
				style="push"
				state="false"/>
			<action
				label="%action.export.name"
				tooltip="%action.export.desc"
				id="org.eclipse.linuxtools.systemtap.ui.graphing.actions.ExportDataSet"
				icon="icons/actions/export_wiz.gif"
				toolbarPath="org.eclipse.ui.workbench.file/export.ext"
				class="org.eclipse.linuxtools.systemtap.ui.graphing.actions.ExportDataSetAction"
				definitionId="org.eclipse.linuxtools.systemtap.ui.graphing.commands.ExportDataSet"
				style="push"
				state="false"/>
			<action
				label="%action.import.name"
				tooltip="%action.import.desc"
				id="org.eclipse.linuxtools.systemtap.ui.graphing.actions.ImportDataSet"
				icon="icons/actions/import_wiz.gif"
				toolbarPath="org.eclipse.ui.workbench.file/import.ext"
				class="org.eclipse.linuxtools.systemtap.ui.graphing.actions.ImportDataSetAction"
				definitionId="org.eclipse.linuxtools.systemtap.ui.graphing.commands.ImportDataSet"
				style="push"
				state="false"/>
			<action
				label="%action.open.name"
				tooltip="%action.open.desc"
				id="org.eclipse.linuxtools.systemtap.ui.graphing.actions.OpenScriptOutput"
				icon="icons/actions/open_wiz.gif"
				toolbarPath="org.eclipse.ui.workbench.file/new.ext"
				class="org.eclipse.linuxtools.systemtap.ui.graphing.actions.OpenScriptOutputAction"
				definitionId="org.eclipse.linuxtools.systemtap.ui.graphing.commands.OpenScriptOutput"
				style="push"
				state="false"/>
		</actionSet>
	</extension>
	
	<extension
		point="org.eclipse.ui.perspectiveExtensions">
		<perspectiveExtension
			targetID="org.eclipse.linuxtools.systemtap.ui.graphing.GraphingPerspective">
			<actionSet id="org.eclipse.linuxtools.systemtap.ui.graphing.GraphingActionSet"/>
		</perspectiveExtension>
				<perspectiveExtension
           targetID="org.eclipse.linuxtools.systemtap.ui.graphing.GraphingPerspective">
         
                        <view
                                ratio="0.60f"
                                relative="org.eclipse.linuxtools.systemtap.ui.graphing.views.GraphSelectorView"
                                relationship="top"
                                id="org.eclipse.linuxtools.systemtap.ui.graphing.views.GraphSelectorView"/>
                        <viewShortcut id="org.eclipse.linuxtools.systemtap.ui.graphing.views.GraphSelectorView"/>
                       
         </perspectiveExtension>
	</extension>
</plugin>

Back to the top