2008-06-23 23:33:55 +00:00
|
|
|
<?eclipse version="3.0"?>
|
|
|
|
<plugin>
|
|
|
|
|
|
|
|
<extension point="org.eclipse.ui.viewActions">
|
|
|
|
<viewContribution
|
|
|
|
id="org.eclipse.debug.ui.MemoryView.findNext"
|
|
|
|
targetID="org.eclipse.debug.ui.MemoryView">
|
|
|
|
<action
|
2009-02-09 06:20:34 +00:00
|
|
|
class="org.eclipse.cdt.debug.ui.memory.search.FindAction"
|
2008-09-17 20:58:06 +00:00
|
|
|
enablesFor="1"
|
2009-10-19 13:41:19 +00:00
|
|
|
id="org.eclipse.cdt.debug.ui.memory.search.FindNextAction"
|
2009-10-18 04:53:48 +00:00
|
|
|
helpContextId="FindNextAction_context"
|
2009-05-27 15:55:44 +00:00
|
|
|
label="%action.label.0"
|
2008-10-23 21:09:59 +00:00
|
|
|
menubarPath="additions">
|
2008-06-23 23:33:55 +00:00
|
|
|
</action>
|
|
|
|
</viewContribution>
|
2010-10-18 20:21:51 +00:00
|
|
|
|
2008-06-23 23:33:55 +00:00
|
|
|
<viewContribution
|
|
|
|
id="org.eclipse.debug.ui.MemoryView.findReplace"
|
|
|
|
targetID="org.eclipse.debug.ui.MemoryView">
|
|
|
|
<action
|
2009-02-09 06:20:34 +00:00
|
|
|
class="org.eclipse.cdt.debug.ui.memory.search.FindAction"
|
2008-09-17 20:58:06 +00:00
|
|
|
enablesFor="1"
|
2009-02-09 06:20:34 +00:00
|
|
|
id="org.eclipse.cdt.debug.ui.memory.search.FindAction"
|
2009-10-18 04:53:48 +00:00
|
|
|
helpContextId="FindReplaceAction_context"
|
2009-05-27 15:55:44 +00:00
|
|
|
label="%action.label.1"
|
2008-10-23 21:09:59 +00:00
|
|
|
menubarPath="additions">
|
2008-06-23 23:33:55 +00:00
|
|
|
</action>
|
|
|
|
</viewContribution>
|
2009-03-14 00:25:27 +00:00
|
|
|
|
|
|
|
<viewContribution
|
|
|
|
id="org.eclipse.cdt.debug.ui.memory.memorybrowser.MemoryBrowser.findNext"
|
|
|
|
targetID="org.eclipse.cdt.debug.ui.memory.memorybrowser.MemoryBrowser">
|
|
|
|
<action
|
|
|
|
class="org.eclipse.cdt.debug.ui.memory.search.FindAction"
|
|
|
|
enablesFor="1"
|
2009-10-19 13:41:19 +00:00
|
|
|
id="org.eclipse.cdt.debug.ui.memory.search.FindNextAction"
|
2009-10-18 04:53:48 +00:00
|
|
|
helpContextId="FindNextAction_context"
|
2009-05-27 15:55:44 +00:00
|
|
|
label="%action.label.2"
|
2009-03-14 00:25:27 +00:00
|
|
|
menubarPath="additions">
|
|
|
|
</action>
|
|
|
|
</viewContribution>
|
2010-10-18 20:21:51 +00:00
|
|
|
|
2009-03-14 00:25:27 +00:00
|
|
|
<viewContribution
|
|
|
|
id="org.eclipse.debug.ui.MemoryView.findReplace"
|
|
|
|
targetID="org.eclipse.cdt.debug.ui.memory.memorybrowser.MemoryBrowser">
|
|
|
|
<action
|
|
|
|
class="org.eclipse.cdt.debug.ui.memory.search.FindAction"
|
|
|
|
enablesFor="1"
|
|
|
|
id="org.eclipse.cdt.debug.ui.memory.search.FindAction"
|
2009-10-18 04:53:48 +00:00
|
|
|
helpContextId="FindReplaceAction_context"
|
2009-05-27 15:55:44 +00:00
|
|
|
label="%action.label.3"
|
2009-03-14 00:25:27 +00:00
|
|
|
menubarPath="additions">
|
|
|
|
</action>
|
|
|
|
</viewContribution>
|
|
|
|
|
2008-06-23 23:33:55 +00:00
|
|
|
</extension>
|
|
|
|
|
|
|
|
<extension point="org.eclipse.search.searchResultViewPages">
|
2010-10-18 20:21:51 +00:00
|
|
|
<viewPage
|
|
|
|
class="org.eclipse.cdt.debug.ui.memory.search.MemorySearchResultsPage"
|
|
|
|
icon="icons/full/obj16/tsearch_dpdn_obj.gif"
|
|
|
|
id="org.eclipse.cdt.debug.ui.memory.search.MemorySearchResultsPage"
|
|
|
|
label="Memory Search Results"
|
|
|
|
searchResultClass="org.eclipse.cdt.debug.ui.memory.search.MemorySearchResult">
|
|
|
|
</viewPage>
|
|
|
|
</extension>
|
|
|
|
|
|
|
|
<extension point="org.eclipse.ui.handlers">
|
|
|
|
<handler
|
|
|
|
commandId="org.eclipse.ui.edit.findReplace"
|
|
|
|
class="org.eclipse.cdt.debug.ui.memory.search.FindReplaceHandler">
|
|
|
|
<activeWhen>
|
|
|
|
<or>
|
|
|
|
<with variable="activePartId">
|
|
|
|
<equals value="org.eclipse.debug.ui.MemoryView"/>
|
|
|
|
</with>
|
|
|
|
<with variable="activePartId">
|
|
|
|
<equals value="org.eclipse.cdt.debug.ui.memory.memorybrowser.MemoryBrowser"/>
|
|
|
|
</with>
|
|
|
|
</or>
|
|
|
|
</activeWhen>
|
|
|
|
</handler>
|
2008-06-23 23:33:55 +00:00
|
|
|
</extension>
|
|
|
|
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|