Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 1d7fec52b2476806759edab69a146cf8d4b4dafe (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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<plugin>
    <extension
        point="org.eclipse.ui.preferencePages">
        <page
            name="%preference.dataTable.name"
            id="org.eclipse.linuxtools.generic.prefs.graphing.datatable"
            class="org.eclipse.linuxtools.internal.systemtap.graphing.ui.preferences.DataTablePreferencePage"
            category="org.eclipse.linuxtools.generic.prefs.graphing"/>
        <page
            name="%preference.graph.name"
            id="org.eclipse.linuxtools.generic.prefs.graphing.graph"
            class="org.eclipse.linuxtools.internal.systemtap.graphing.ui.preferences.GraphPreferencePage"
            category="org.eclipse.linuxtools.generic.prefs.graphing"/>
        <page
            name="%preference.graphing.name"
            class="org.eclipse.linuxtools.internal.systemtap.graphing.ui.preferences.GraphingPreferencePage"
            category="org.eclipse.linuxtools.systemtap.prefs.view"
            id="org.eclipse.linuxtools.generic.prefs.graphing"/>
    </extension>

    <extension
        point="org.eclipse.core.runtime.preferences">
        <initializer class="org.eclipse.linuxtools.internal.systemtap.graphing.ui.preferences.PreferenceInitializer"/>
    </extension>

    <extension
        point="org.eclipse.ui.commands">
        <category
            name="%category.file.name"
            description="%category.file.desc"
            id="org.eclipse.linuxtools.systemtap.graphing.ui.category.file"/>
        <command
            name="%command.save.name"
            description="%command.save.desc"
            categoryId="org.eclipse.linuxtools.systemtap.graphing.ui.category.file"
            id="org.eclipse.linuxtools.systemtap.graphing.ui.commands.SaveGraphImage"
            defaultHandler="org.eclipse.linuxtools.internal.systemtap.graphing.ui.handlers.SaveGraphImageHandler"/>
    </extension>

    <extension
        point="org.eclipse.ui.menus">
        <menuContribution
            locationURI="toolbar:org.eclipse.linuxtools.systemtap.ui.ide.toolbar?after=chartGroup">
            <command
                commandId="org.eclipse.linuxtools.systemtap.graphing.ui.commands.SaveGraphImage"
                label="%command.save.name"
                icon="icons/actions/chart-save.png">
                <visibleWhen checkEnabled="true"/>
            </command>
        </menuContribution>
    </extension>

    <extension
        point="org.eclipse.ui.editors">
        <editor
            class="org.eclipse.linuxtools.systemtap.graphing.ui.views.GraphSelectorEditor"
            default="false"
            id="org.eclipse.linuxtools.systemtap.graphing.ui.views.GraphSelectorEditor"
            name="Graphs">
        </editor>
    </extension>

</plugin>

Back to the top