mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 17:56:01 +02:00
- ui for hardware breakpoints in Properties
This commit is contained in:
parent
dc62fa9320
commit
7e4a18be7c
2 changed files with 19 additions and 0 deletions
|
@ -166,3 +166,10 @@ SoundAction.name=Sound Action
|
||||||
LogAction.name=Log Action
|
LogAction.name=Log Action
|
||||||
ResumeAction.name=Resume Action
|
ResumeAction.name=Resume Action
|
||||||
ExternalToolAction.name=External Tool Action
|
ExternalToolAction.name=External Tool Action
|
||||||
|
|
||||||
|
# Breakpoint Types
|
||||||
|
breapointType.label=Type
|
||||||
|
breapointType.regular.label=Regular
|
||||||
|
breapointType.hardware.label=Hardware
|
||||||
|
breapointType.temporay.label=Temporary
|
||||||
|
breapointType.hardwaretemporaty.label=Hardware Temporary
|
||||||
|
|
|
@ -1677,5 +1677,17 @@
|
||||||
</adapter>
|
</adapter>
|
||||||
</factory>
|
</factory>
|
||||||
</extension>
|
</extension>
|
||||||
|
<extension point="org.eclipse.cdt.debug.ui.breakpointContribution">
|
||||||
|
<breakpointLabels markerType="org.eclipse.cdt.debug.core.cBreakpointMarker">
|
||||||
|
<attribute name="org.eclipse.cdt.debug.core.breakpointType" label="%breapointType.label" type="integer"
|
||||||
|
fieldEditor="org.eclipse.cdt.debug.ui.preferences.ReadOnlyFieldEditor"
|
||||||
|
>
|
||||||
|
<value value="0" label="%breapointType.regular.label"></value>
|
||||||
|
<value value="2" label="%breapointType.hardware.label"></value>
|
||||||
|
<value value="1" label="%breapointType.temporay.label"></value>
|
||||||
|
<value value="3" label="%breapointType.hardwaretemporaty.label"></value>
|
||||||
|
</attribute>
|
||||||
|
</breakpointLabels>
|
||||||
|
</extension>
|
||||||
|
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
Loading…
Add table
Reference in a new issue