Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Additional Separator #549 #1648

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion debug/org.eclipse.debug.ui/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.debug.ui; singleton:=true
Bundle-Version: 3.18.700.qualifier
Bundle-Version: 3.18.500.qualifier
Bundle-Activator: org.eclipse.debug.internal.ui.DebugUIPlugin
Bundle-Vendor: %providerName
Bundle-Localization: plugin
Expand Down
12 changes: 6 additions & 6 deletions debug/org.eclipse.debug.ui/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1505,38 +1505,38 @@
definitionId="org.eclipse.ui.edit.copy"
helpContextId="copy_breakpoints_action_context"
class="org.eclipse.debug.internal.ui.actions.breakpointGroups.CopyBreakpointsActionDelegate"
menubarPath="breakpointGroup"
menubarPath="BreakpointAdditionalGroup"
id="org.eclipse.debug.ui.breakpointsView.toolbar.copy"/>
<action
label="%SelectAll.label"
helpContextId="select_all_breakpoints_action_context"
definitionId="org.eclipse.ui.edit.selectAll"
class="org.eclipse.debug.internal.ui.actions.breakpoints.SelectAllBreakpointsAction"
menubarPath="breakpointGroup"
menubarPath="BreakpointAdditionalGroup"
id="org.eclipse.debug.ui.actions.SelectAllBreakpointsAction">
</action>
<action
label="%RemoveAllAction.label"
icon="$nl$/icons/full/elcl16/rem_all_co.png"
helpContextId="remove_all_breakpoints_action_context"
class="org.eclipse.debug.internal.ui.actions.breakpoints.RemoveAllBreakpointsAction"
menubarPath="breakpointGroup"
menubarPath="BreakpointAdditionalGroup"
id="org.eclipse.debug.ui.actions.RemoveAllBreakpoints">
</action>
<action
label="%RemoveAllTriggerpoints.label"
icon="$nl$/icons/full/elcl16/rem_all_triggers.png"
helpContextId="remove_all_breakpoints_action_context"
class="org.eclipse.debug.internal.ui.actions.breakpoints.RemoveAllTriggerPointsAction"
menubarPath="breakpointGroup"
menubarPath="BreakpointAdditionalGroup"
id="org.eclipse.debug.ui.actions.RemoveAllTriggerpoints">
</action>
<action
label="%RemoveAction.label"
icon="$nl$/icons/full/elcl16/rem_co.png"
helpContextId="remove_breakpoint_action_context"
class="org.eclipse.debug.internal.ui.actions.breakpoints.RemoveBreakpointAction"
menubarPath="breakpointGroup"
menubarPath="BreakpointAdditionalGroup"
enablesFor="+"
id="org.eclipse.debug.ui.breakpointsView.toolbar.remove">
</action>
Expand All @@ -1545,7 +1545,7 @@
icon="$nl$/icons/full/elcl16/disabled_co.png"
helpContextId="disable_breakpoint_action_context"
class="org.eclipse.debug.internal.ui.actions.breakpoints.DisableAllBreakpointsAction"
menubarPath="breakpointGroup"
menubarPath="BreakpointAdditionalGroup"
id="org.eclipse.debug.ui.actions.DisableAllBreakpoint">
</action>
<action
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,9 @@ protected void fillContextMenu(IMenuManager menu) {
menu.add(getAction(ACTION_GOTO_MARKER));
menu.add(new Separator(IDebugUIConstants.EMPTY_BREAKPOINT_GROUP));
menu.add(new Separator(IDebugUIConstants.BREAKPOINT_GROUP));
Separator separator = new Separator(IDebugUIConstants.BREAKPOINT_ADDITIONAL_GROUP);
separator.setVisible(false);
menu.add(separator);
IAction action = getAction(PASTE_ACTION);
if (action != null) {
menu.add(action);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -774,6 +774,14 @@ public interface IDebugUIConstants {
*/
String BREAKPOINT_GROUP = "breakpointGroup"; //$NON-NLS-1$

/**
* Identifier for breakpoint operations other than enable/disable succeeding a
* breakpoint group in a menu (value <code>"BreakpointAdditionalGroup"</code>).
*
* @since 3.18
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

new public api

*/
String BREAKPOINT_ADDITIONAL_GROUP = "BreakpointAdditionalGroup"; //$NON-NLS-1$

/**
* Identifier for a "breakpoint group" group in a menu (value <code>"breakpointGroupGroup"</code>).
*
Expand Down
Loading