Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJared Burns2004-10-18 20:01:04 +0000
committerJared Burns2004-10-18 20:01:04 +0000
commit51083a4f5f1777746971caa7152dc9efc432837d (patch)
treefb9b2d45ff3b76550e6e9669e7701cc2f1d9c964 /org.eclipse.debug.ui/plugin.xml
parent5510a190a922fc40f8e29d02ebb3fe828a87b0ba (diff)
downloadeclipse.platform.debug-51083a4f5f1777746971caa7152dc9efc432837d.tar.gz
eclipse.platform.debug-51083a4f5f1777746971caa7152dc9efc432837d.tar.xz
eclipse.platform.debug-51083a4f5f1777746971caa7152dc9efc432837d.zip
Bug 74673 - Add Expand/Collapse All to Breakpoints view
Diffstat (limited to 'org.eclipse.debug.ui/plugin.xml')
-rw-r--r--org.eclipse.debug.ui/plugin.xml34
1 files changed, 26 insertions, 8 deletions
diff --git a/org.eclipse.debug.ui/plugin.xml b/org.eclipse.debug.ui/plugin.xml
index 728ab3988..9ee31a6dc 100644
--- a/org.eclipse.debug.ui/plugin.xml
+++ b/org.eclipse.debug.ui/plugin.xml
@@ -383,7 +383,7 @@
<extension
point="org.eclipse.ui.actionSets">
<actionSet
- label="%BreakpoingActionSet.label"
+ label="%BreakpointActionSet.label"
visible="false"
id="org.eclipse.debug.ui.breakpointActionSet">
<menu
@@ -685,13 +685,31 @@
</selection>
</action>
<action
- id="org.eclipse.debug.ui.breakpointsView.toolbar.setDefaultBreakpointGroup"
- menubarPath="defaultBreakpointGroup"
- class="org.eclipse.debug.internal.ui.actions.breakpointGroups.SetDefaultBreakpointGroupAction"
- icon="icons/full/obj16/breakpoint_group.gif"
- helpContextId="set_default_breakpoint_group_action_context"
- label="%setDefaultGroup.label"
- tooltip="%setDefaultGroup.tooltip">
+ id="org.eclipse.debug.ui.breakpointsView.toolbar.linkWithDebugView"
+ toolbarPath="navigationGroup"
+ class="org.eclipse.debug.internal.ui.actions.LinkBreakpointsWithDebugViewAction"
+ icon="icons/full/elcl16/synced.gif"
+ helpContextId="link_breakpoints_with_debug_view_action_context"
+ label="Link with Debug View"
+ tooltip="Link with Debug View">
+ </action>
+ <action
+ id="org.eclipse.debug.ui.breakpointsView.toolbar.collapseAll"
+ toolbarPath="navigationGroup"
+ class="org.eclipse.debug.internal.ui.actions.BreakpointsCollapseAllAction"
+ icon="icons/full/elcl16/collapseall.gif"
+ helpContextId="breakpoints_collapse_all_action_context"
+ label="Collapse All"
+ tooltip="Collapse All">
+ </action>
+ <action
+ id="org.eclipse.debug.ui.breakpointsView.toolbar.expandAll"
+ toolbarPath="navigationGroup"
+ class="org.eclipse.debug.internal.ui.actions.BreakpointsExpandAllAction"
+ icon="icons/full/elcl16/expandall.gif"
+ helpContextId="breakpoints_expand_all_action_context"
+ label="Expand All"
+ tooltip="Expand All">
</action>
<action
id="org.eclipse.debug.ui.breakpointsView.toolbar.clearDefaultBreakpointGroup"

Back to the top