Browse Source
git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@107 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61shortcuts
4 changed files with 50 additions and 37 deletions
@ -1,70 +1,74 @@ |
|||||||
<AddIn name="SharpDevelop Debugger" author="David Srbecký" copyright="GPL" url="" description="SharpDevelop Managed Debugger" version="0.1.0.0"> |
<AddIn name="SharpDevelop Debugger" author="David Srbecký" copyright="GPL" url="" description="SharpDevelop Managed Debugger" version="0.1.0.0"> |
||||||
<Runtime> |
<Runtime> |
||||||
<Import assembly="Debugger.AddIn.dll"/> |
<Import assembly="Debugger.AddIn.dll"/> |
||||||
</Runtime> |
</Runtime> |
||||||
|
|
||||||
<Path name="/SharpDevelop/Services/DebuggerService/Debugger"> |
<Path name="/SharpDevelop/Services/DebuggerService/Debugger"> |
||||||
<Class id="DefaultDebugger" class="ICSharpCode.SharpDevelop.Services.WindowsDebugger"/> |
<Class id="DefaultDebugger" class="ICSharpCode.SharpDevelop.Services.WindowsDebugger"/> |
||||||
</Path> |
</Path> |
||||||
|
|
||||||
<!--<Path name = "/SharpDevelop/Workbench/MainMenu/View"> |
<Path name = "/SharpDevelop/Workbench/MainMenu/View"> |
||||||
<MenuItem id = "Debugger" label = "${res:XML.MainMenu.ViewMenu.DebugMenu}"> |
<MenuItem id = "Debugger" |
||||||
<MenuItem id = "DebugViewMenuBuilder" |
label = "${res:XML.MainMenu.ViewMenu.DebugMenu}" |
||||||
type = "Builder" |
type = "Menu" |
||||||
class = "ICSharpCode.SharpDevelop.Commands.DebugSelectionMenuBuilder" /> |
insertafter = "Tools" |
||||||
</MenuItem> |
insertbefore = "ViewItemsSeparator"> |
||||||
</Path>--> |
<MenuItem id = "DebugViewMenuBuilder" |
||||||
|
type = "Builder" |
||||||
<!--<Path name = "/SharpDevelop/Workbench/MainMenu/Debug"> |
class = "ICSharpCode.SharpDevelop.Commands.DebugViewMenuBuilder"/> |
||||||
<MenuItem id = "CatchHandledExceptionsSeparator" |
</MenuItem> |
||||||
|
</Path> |
||||||
|
|
||||||
|
<!--<Path name = "/SharpDevelop/Workbench/MainMenu/Debug"> |
||||||
|
<MenuItem id = "CatchHandledExceptionsSeparator" |
||||||
type = "Separator" |
type = "Separator" |
||||||
insertafter = "Step out" /> |
insertafter = "Step out" /> |
||||||
<MenuItem id = "CatchHandledExceptions" |
<MenuItem id = "CatchHandledExceptions" |
||||||
label = "" |
label = "" |
||||||
class = "ICSharpCode.SharpDevelop.Services.DebbugerExceptionMenuBuilder"/> |
class = "ICSharpCode.SharpDevelop.Services.DebbugerExceptionMenuBuilder"/> |
||||||
</Path>--> |
</Path>--> |
||||||
|
|
||||||
<Path name = "/SharpDevelop/Workbench/Pads"> |
<Path name = "/SharpDevelop/Workbench/Pads"> |
||||||
<Pad id = "BreakPointsPad3" |
<Pad id = "BreakPointsPad3" |
||||||
category = "Main" |
category = "Debugger" |
||||||
title = "Breakpoints" |
title = "Breakpoints" |
||||||
icon = "PadIcons.ProjectBrowser" |
icon = "PadIcons.ProjectBrowser" |
||||||
shortcut = "Control|Alt|B" |
shortcut = "Control|Alt|B" |
||||||
class = "ICSharpCode.SharpDevelop.Gui.Pads.BreakPointsPad"/> |
class = "ICSharpCode.SharpDevelop.Gui.Pads.BreakPointsPad"/> |
||||||
|
|
||||||
<Pad id = "CallStackPad3" |
<Pad id = "CallStackPad3" |
||||||
category = "Main" |
category = "Debugger" |
||||||
title = "Callstack" |
title = "Callstack" |
||||||
icon = "PadIcons.ProjectBrowser" |
icon = "PadIcons.ProjectBrowser" |
||||||
shortcut = "Control|Alt|C" |
shortcut = "Control|Alt|C" |
||||||
class = "ICSharpCode.SharpDevelop.Gui.Pads.CallStackPad"/> |
class = "ICSharpCode.SharpDevelop.Gui.Pads.CallStackPad"/> |
||||||
|
|
||||||
<Pad id = "LoadedModulesPad3" |
<Pad id = "LoadedModulesPad3" |
||||||
category = "Main" |
category = "Debugger" |
||||||
title = "Loaded modules" |
title = "Loaded modules" |
||||||
icon = "PadIcons.ProjectBrowser" |
icon = "PadIcons.ProjectBrowser" |
||||||
shortcut = "Control|Alt|U" |
shortcut = "Control|Alt|U" |
||||||
class = "ICSharpCode.SharpDevelop.Gui.Pads.LoadedModulesPad"/> |
class = "ICSharpCode.SharpDevelop.Gui.Pads.LoadedModulesPad"/> |
||||||
|
|
||||||
<Pad id = "RunningThreadsPad3" |
<Pad id = "RunningThreadsPad3" |
||||||
category = "Main" |
category = "Debugger" |
||||||
title = "Threads" |
title = "Threads" |
||||||
icon = "PadIcons.ProjectBrowser" |
icon = "PadIcons.ProjectBrowser" |
||||||
shortcut = "Control|Alt|H" |
shortcut = "Control|Alt|H" |
||||||
class = "ICSharpCode.SharpDevelop.Gui.Pads.RunningThreadsPad"/> |
class = "ICSharpCode.SharpDevelop.Gui.Pads.RunningThreadsPad"/> |
||||||
|
|
||||||
<Pad id = "LocalVarPad3" |
<Pad id = "LocalVarPad3" |
||||||
category = "Main" |
category = "Debugger" |
||||||
title = "Local variables" |
title = "Local variables" |
||||||
icon = "PadIcons.ProjectBrowser" |
icon = "PadIcons.ProjectBrowser" |
||||||
shortcut = "Control|Alt|V" |
shortcut = "Control|Alt|V" |
||||||
class = "ICSharpCode.SharpDevelop.Gui.Pads.LocalVarPad"/> |
class = "ICSharpCode.SharpDevelop.Gui.Pads.LocalVarPad"/> |
||||||
|
|
||||||
<Pad id = "ExceptionHistoryPad" |
<Pad id = "ExceptionHistoryPad" |
||||||
category = "Main" |
category = "Debugger" |
||||||
title = "Exception history" |
title = "Exception history" |
||||||
icon = "PadIcons.ProjectBrowser" |
icon = "PadIcons.ProjectBrowser" |
||||||
shortcut = "Control|Alt|E" |
shortcut = "Control|Alt|E" |
||||||
class = "ICSharpCode.SharpDevelop.Gui.Pads.ExceptionHistoryPad"/> |
class = "ICSharpCode.SharpDevelop.Gui.Pads.ExceptionHistoryPad"/> |
||||||
</Path> |
</Path> |
||||||
</AddIn> |
</AddIn> |
||||||
|
@ -0,0 +1,17 @@ |
|||||||
|
// <file>
|
||||||
|
// <owner name="Daneiel Grunwald" email="daniel@danielgrunwald.de"/>
|
||||||
|
// </file>
|
||||||
|
|
||||||
|
using System; |
||||||
|
|
||||||
|
namespace ICSharpCode.SharpDevelop.Commands |
||||||
|
{ |
||||||
|
public class DebugViewMenuBuilder : ViewMenuBuilder |
||||||
|
{ |
||||||
|
protected override string Category { |
||||||
|
get { |
||||||
|
return "Debugger"; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue