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
|
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.2"?>
<plugin>
<extension
point="org.eclipse.ui.views">
<view
allowMultiple="true"
category="org.eclipse.linuxtools.profiling.ui"
class="org.eclipse.linuxtools.internal.gcov.view.CovView"
icon="icons/toggle.gif"
id="org.eclipse.linuxtools.gcov.view"
name="%gcov"
restorable="false">
</view>
</extension>
<extension
point="org.eclipse.ui.editors">
<editor
class="org.eclipse.linuxtools.internal.gcov.view.annotatedsource.STAnnotatedSourceNotFoundEditor"
icon="icons/src_file_obj.gif"
id="org.eclipse.linuxtools.gcov.view.annotatedsource.STAnnotatedSourceNotFoundEditor"
name="Source Not Found">
</editor>
<editor
default="true"
extensions="gcda, gcno"
icon="icons/toggle.gif"
id="org.eclipse.linuxtools.gcov.editor"
launcher="org.eclipse.linuxtools.internal.gcov.action.OpenGCAction"
name="%gcovEditor">
</editor>
</extension>
<extension
point="org.eclipse.ui.editors.markerAnnotationSpecification">
<specification
annotationType="org.eclipse.linuxtools.gcov.CoverageAnnotation"
colorPreferenceKey="coverage_color"
colorPreferenceValue="192,255,192"
contributesToHeader="false"
highlightPreferenceKey="coverage_highlight"
highlightPreferenceValue="true"
includeOnPreferencePage="true"
isGoToNextNavigationTarget="false"
isGoToNextNavigationTargetKey="coverage_isGoToNextNavigationTargetKey"
isGoToPreviousNavigationTarget="false"
isGoToPreviousNavigationTargetKey="coverage_isGoToPreviousNavigationTargetKey"
label="%coverage"
overviewRulerPreferenceKey="coverage_overviewRuler"
overviewRulerPreferenceValue="false"
presentationLayer="0"
showInNextPrevDropdownToolbarAction="false"
showInNextPrevDropdownToolbarActionKey="coverage_showInNextPrevDropdownToolbarAction"
textPreferenceKey="coverage_text"
textPreferenceValue="true"
textStylePreferenceKey="coverage_stylePreferences"
textStylePreferenceValue="BOX"
verticalRulerPreferenceKey="coverage_verticalRuler"
verticalRulerPreferenceValue="true"/>
<specification
annotationType="org.eclipse.linuxtools.gcov.NoCoverageAnnotation"
colorPreferenceKey="nocoverage_color"
colorPreferenceValue="255,160,160"
contributesToHeader="false"
highlightPreferenceKey="nocoverage_highlight"
highlightPreferenceValue="true"
includeOnPreferencePage="true"
isGoToNextNavigationTarget="false"
isGoToNextNavigationTargetKey="nocoverage_isGoToNextNavigationTargetKey"
isGoToPreviousNavigationTarget="false"
isGoToPreviousNavigationTargetKey="nocoverage_isGoToPreviousNavigationTargetKey"
label="%noCoverage"
overviewRulerPreferenceKey="nocoverage_overviewRuler"
overviewRulerPreferenceValue="false"
presentationLayer="0"
showInNextPrevDropdownToolbarAction="false"
showInNextPrevDropdownToolbarActionKey="nocoverage_showInNextPrevDropdownToolbarAction"
textPreferenceKey="nocoverage_text"
textPreferenceValue="true"
textStylePreferenceKey="nocoverage_stylePreferences"
textStylePreferenceValue="BOX"
verticalRulerPreferenceKey="nocoverage_verticalRuler"
verticalRulerPreferenceValue="false"/>
<specification
annotationType="org.eclipse.linuxtools.gcov.ThoroughCoverageAnnotation"
colorPreferenceKey="thcoverage_color"
colorPreferenceValue="0,240,0"
contributesToHeader="false"
highlightPreferenceKey="thcoverage_highlight"
highlightPreferenceValue="true"
includeOnPreferencePage="true"
isGoToNextNavigationTarget="false"
isGoToNextNavigationTargetKey="thcoverage_isGoToNextNavigationTargetKey"
isGoToPreviousNavigationTarget="false"
isGoToPreviousNavigationTargetKey="thcoverage_isGoToPreviousNavigationTargetKey"
label="%thoroughCoverage"
overviewRulerPreferenceKey="thcoverage_overviewRuler"
overviewRulerPreferenceValue="true"
presentationLayer="0"
showInNextPrevDropdownToolbarAction="false"
showInNextPrevDropdownToolbarActionKey="thcoverage_showInNextPrevDropdownToolbarAction"
textPreferenceKey="thcoverage_text"
textPreferenceValue="true"
textStylePreferenceKey="thcoverage_stylePreferences"
textStylePreferenceValue="BOX"
verticalRulerPreferenceKey="thcoverage_verticalRuler"
verticalRulerPreferenceValue="true">
</specification>
</extension>
<extension
point="org.eclipse.ui.editors.annotationTypes">
<type
name="org.eclipse.linuxtools.gcov.CoverageAnnotation">
</type>
<type
name="org.eclipse.linuxtools.gcov.NoCoverageAnnotation">
</type>
<type
name="org.eclipse.linuxtools.gcov.ThoroughCoverageAnnotation">
</type>
</extension>
</plugin>
|