From 1741944fb0e8b45e773545b7260b540daa32d8a6 Mon Sep 17 00:00:00 2001 From: Mikhail Khodjaiants Date: Mon, 10 Mar 2003 23:07:45 +0000 Subject: [PATCH] Implementing the "Display As Array" action. --- debug/org.eclipse.cdt.debug.ui/ChangeLog | 6 + .../plugin.properties | 2 + debug/org.eclipse.cdt.debug.ui/plugin.xml | 20 ++- .../ui/actions/CastToArrayActionDelegate.java | 127 ++++++++++++++++++ 4 files changed, 153 insertions(+), 2 deletions(-) create mode 100644 debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/actions/CastToArrayActionDelegate.java diff --git a/debug/org.eclipse.cdt.debug.ui/ChangeLog b/debug/org.eclipse.cdt.debug.ui/ChangeLog index 84865ea1515..49dc50e0856 100644 --- a/debug/org.eclipse.cdt.debug.ui/ChangeLog +++ b/debug/org.eclipse.cdt.debug.ui/ChangeLog @@ -1,3 +1,9 @@ +2003-03-10 Mikhail Khodjaiants + Implementing the "Display As Array" action. + * plugin.xml + * plugin.propeties + * CastToArrayActionDelegate.java: new + 2003-03-09 Mikhail Khodjaiants The implementation of the "Cast To Type" and "Restore Default Type" actions. * plugin.xml diff --git a/debug/org.eclipse.cdt.debug.ui/plugin.properties b/debug/org.eclipse.cdt.debug.ui/plugin.properties index a1b507918f4..eb06d4cbc71 100644 --- a/debug/org.eclipse.cdt.debug.ui/plugin.properties +++ b/debug/org.eclipse.cdt.debug.ui/plugin.properties @@ -66,3 +66,5 @@ CastToTypeAction.label=Cast To Type... CastToTypeAction.tooltip=Cast Varibale To Type RestoreDefaultTypeAction.label=Restore Default Type RestoreDefaultTypeAction.tooltip=Restore Default Type Of Variable +CastToArrayAction.label=Display As Array... +CastToArrayAction.tooltip=Display Variable As Array diff --git a/debug/org.eclipse.cdt.debug.ui/plugin.xml b/debug/org.eclipse.cdt.debug.ui/plugin.xml index 1d9ce2a0855..e1bb4fd0fbc 100644 --- a/debug/org.eclipse.cdt.debug.ui/plugin.xml +++ b/debug/org.eclipse.cdt.debug.ui/plugin.xml @@ -816,8 +816,8 @@ id="org.eclipse.cdt.debug.internal.ui.actions.RestoreDefaultTypeActionDelegate"> + value="activated" + id="org.eclipse.cdt.debug.ui"> @@ -837,6 +837,22 @@ + + + + + +