Bug 329430: added extension to replace default icons for codan with custom. Now need the actual icons.
|
@ -25,4 +25,8 @@ markerGrouping.label = Code Analysis Problem Type
|
||||||
markerGroupingEntry.category.Unknown = Unknown
|
markerGroupingEntry.category.Unknown = Unknown
|
||||||
markerGroupingEntry.category.ProgrammingProblems = Programming Problems
|
markerGroupingEntry.category.ProgrammingProblems = Programming Problems
|
||||||
markerGroupingEntry.category.CompilerErrors = Semantic Errors
|
markerGroupingEntry.category.CompilerErrors = Semantic Errors
|
||||||
markerGroupingEntry.category.CodingStyle = Coding Style
|
markerGroupingEntry.category.CodingStyle = Coding Style
|
||||||
|
marker.editor.error = Codan Errors
|
||||||
|
marker.editor.warning = Codan Warnings
|
||||||
|
marker.editor.info = Codan Info
|
||||||
|
action.customize = Customize Problem...
|
BIN
codan/org.eclipse.cdt.codan.ui/icons/add_bug.gif
Normal file
After Width: | Height: | Size: 233 B |
BIN
codan/org.eclipse.cdt.codan.ui/icons/bookmark_bug.gif
Normal file
After Width: | Height: | Size: 358 B |
BIN
codan/org.eclipse.cdt.codan.ui/icons/edit_bug.gif
Normal file
After Width: | Height: | Size: 359 B |
BIN
codan/org.eclipse.cdt.codan.ui/icons/error.gif
Normal file
After Width: | Height: | Size: 354 B |
BIN
codan/org.eclipse.cdt.codan.ui/icons/info.gif
Normal file
After Width: | Height: | Size: 120 B |
BIN
codan/org.eclipse.cdt.codan.ui/icons/inspect_bug.gif
Normal file
After Width: | Height: | Size: 343 B |
BIN
codan/org.eclipse.cdt.codan.ui/icons/quick_assist_obj.gif
Normal file
After Width: | Height: | Size: 225 B |
BIN
codan/org.eclipse.cdt.codan.ui/icons/quick_fix_error_obj.gif
Normal file
After Width: | Height: | Size: 348 B |
BIN
codan/org.eclipse.cdt.codan.ui/icons/quick_fix_warning_obj.gif
Normal file
After Width: | Height: | Size: 559 B |
BIN
codan/org.eclipse.cdt.codan.ui/icons/search_bug.gif
Normal file
After Width: | Height: | Size: 596 B |
BIN
codan/org.eclipse.cdt.codan.ui/icons/small_bug.gif
Normal file
After Width: | Height: | Size: 132 B |
BIN
codan/org.eclipse.cdt.codan.ui/icons/warning.gif
Normal file
After Width: | Height: | Size: 331 B |
|
@ -74,7 +74,7 @@
|
||||||
<view
|
<view
|
||||||
category="org.eclipse.cdt.ui.views"
|
category="org.eclipse.cdt.ui.views"
|
||||||
class="org.eclipse.cdt.codan.internal.ui.views.ProblemDetails"
|
class="org.eclipse.cdt.codan.internal.ui.views.ProblemDetails"
|
||||||
icon="icons/problemDetails.gif"
|
icon="icons/edit_bug.gif"
|
||||||
id="org.eclipse.cdt.codan.internal.ui.views.ProblemDetails"
|
id="org.eclipse.cdt.codan.internal.ui.views.ProblemDetails"
|
||||||
name="%view.name">
|
name="%view.name">
|
||||||
</view>
|
</view>
|
||||||
|
@ -195,6 +195,29 @@
|
||||||
super="org.eclipse.ui.workbench.texteditor.info">
|
super="org.eclipse.ui.workbench.texteditor.info">
|
||||||
</type>
|
</type>
|
||||||
</extension>
|
</extension>
|
||||||
|
<extension
|
||||||
|
point="org.eclipse.ui.editors.markerAnnotationSpecification">
|
||||||
|
<specification
|
||||||
|
annotationType="org.eclipse.cdt.codan.ui.annotation.error"
|
||||||
|
label="%marker.editor.error"
|
||||||
|
icon="icons/error.gif"
|
||||||
|
quickFixIcon="icons/quick_fix_error_obj.gif"
|
||||||
|
presentationLayer="6">
|
||||||
|
</specification>
|
||||||
|
<specification
|
||||||
|
annotationType="org.eclipse.cdt.codan.ui.annotation.warning"
|
||||||
|
label="%marker.editor.warning"
|
||||||
|
icon="icons/warning.gif"
|
||||||
|
quickFixIcon="icons/quick_fix_warning_obj.gif"
|
||||||
|
presentationLayer="5">
|
||||||
|
</specification>
|
||||||
|
<specification
|
||||||
|
annotationType="org.eclipse.cdt.codan.ui.annotation.info"
|
||||||
|
label="%marker.editor.info"
|
||||||
|
icon="icons/info.gif"
|
||||||
|
presentationLayer="4">
|
||||||
|
</specification>
|
||||||
|
</extension>
|
||||||
<extension
|
<extension
|
||||||
point="org.eclipse.ui.popupMenus">
|
point="org.eclipse.ui.popupMenus">
|
||||||
<objectContribution
|
<objectContribution
|
||||||
|
@ -204,7 +227,7 @@
|
||||||
<action
|
<action
|
||||||
class="org.eclipse.cdt.codan.internal.ui.actions.OpenProblemPreferences"
|
class="org.eclipse.cdt.codan.internal.ui.actions.OpenProblemPreferences"
|
||||||
id="org.eclipse.cdt.codan.ui.OpenProblemProperties"
|
id="org.eclipse.cdt.codan.ui.OpenProblemProperties"
|
||||||
label="Customize Problem..."
|
label="%action.customize"
|
||||||
menubarPath="additions"/>
|
menubarPath="additions"/>
|
||||||
|
|
||||||
<filter name="type"
|
<filter name="type"
|
||||||
|
|