Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-patch] 'Run to line' and 'Add expression' actions for assembly editor

Index: ChangeLog
===================================================================
RCS file: /home/tools/org.eclipse.cdt.debug.ui/ChangeLog,v
retrieving revision 1.47
diff -u -r1.47 ChangeLog
--- ChangeLog 29 Nov 2002 21:09:21 -0000 1.47
+++ ChangeLog 2 Dec 2002 21:08:04 -0000
@@ -1,3 +1,7 @@
+2002-12-02 Mikhail Khodjaiants
+ 'Run to line' and 'Add _expression_' actions for assembly editor.
+ *plugin.xml
+
 2002-11-29 Mikhail Khodjaiants
  Cosmetic change for the MemoryView preference page.
  * plugin.properties
Index: plugin.xml
===================================================================
RCS file: /home/tools/org.eclipse.cdt.debug.ui/plugin.xml,v
retrieving revision 1.34
diff -u -r1.34 plugin.xml
--- plugin.xml 2 Dec 2002 02:44:21 -0000 1.34
+++ plugin.xml 2 Dec 2002 21:08:04 -0000
@@ -448,6 +448,39 @@
             </enablement>
          </action>
       </viewerContribution>
+      <viewerContribution
+            targetID="#ASMEditorRulerContext"
+            id="org.eclipse.cdt.debug.ui.AsmEditorPopupActions">
+         <action
+               menubarPath="additions"
+               class="org.eclipse.cdt.debug.internal.ui.actions.AddExpressionActionDelegate"
+               icon="icons/full/obj16/expression_obj.gif"
+               label="%AddExpressionAction.label"
+               id="org.eclipse.cdt.debug.internal.ui.actions.AddExpressionActionDelegate"
+               helpContextId="add_expression_action_context">
+            <enablement>
+               <pluginState
+                     id="org.eclipse.cdt.debug.ui"
+                     value="activated">
+               </pluginState>
+            </enablement>
+         </action>
+         <action
+               menubarPath="additions"
+               class="org.eclipse.cdt.debug.internal.ui.actions.RunToLineActionDelegate"
+               icon="icons/full/clcl16/runtoline_co.gif"
+               label="%RunToLineAction.label"
+               enablesFor="1"
+               id="org.eclipse.cdt.debug.internal.ui.actions.RunToLineActionDelegate"
+               helpContextId="run_to_line_action_context">
+            <enablement>
+               <pluginState
+                     id="org.eclipse.cdt.debug.ui"
+                     value="activated">
+               </pluginState>
+            </enablement>
+         </action>
+      </viewerContribution>
    </extension>
    <extension
          point="org.eclipse.ui.viewActions">

Back to the top