[Monodevelop-patches-list] r1994 - in trunk/MonoDevelop/Core/src: AddIns/DebuggerAddIn Main/Base Main/Base/Gui/Workbench/Layouts
commit-watcher at mono-cvs.ximian.com
commit-watcher at mono-cvs.ximian.com
Fri Oct 22 23:25:40 EDT 2004
Author: toshok
Date: 2004-10-22 23:25:40 -0400 (Fri, 22 Oct 2004)
New Revision: 1994
Modified:
trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/ChangeLog
trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Makefile.am
trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/MonoDevelopDebugger.addin.xml
trunk/MonoDevelop/Core/src/Main/Base/ChangeLog
trunk/MonoDevelop/Core/src/Main/Base/Gui/Workbench/Layouts/SdiWorkspaceLayout.cs
Log:
2004-10-22 Chris Toshok <toshok at ximian.com>
* Makefile.am (FILES): add Gui/DebuggerThreadPad.cs
* MonoDevelopDebugger.addin.xml: add the threadpad xml.
* DebuggingService.cs: add thread (process) events and generate
thread state change events so the threadpad will update
properly.
* Gui/DebuggerThreadPad.cs: new pad, displaying a (for now very
unreactive) thread list.
* Gui/Workbench/Layouts/SdiWorkspaceLayout.cs: add
DebuggerThreadPad.
Modified: trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/ChangeLog
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/ChangeLog 2004-10-22 06:39:41 UTC (rev 1993)
+++ trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/ChangeLog 2004-10-23 03:25:40 UTC (rev 1994)
@@ -1,5 +1,17 @@
2004-10-22 Chris Toshok <toshok at ximian.com>
+ * Makefile.am (FILES): add Gui/DebuggerThreadPad.cs
+
+ * MonoDevelopDebugger.addin.xml: add the threadpad xml.
+
+ * DebuggingService.cs: add thread (process) events and generate
+ thread state change events so the threadpad will update properly.
+
+ * Gui/DebuggerThreadPad.cs: new pad, displaying a (for now very
+ unreactive) thread list.
+
+2004-10-22 Chris Toshok <toshok at ximian.com>
+
* MonoDevelopDebugger.addin.xml: add DebuggerStackTracePad to the
views.
Modified: trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Makefile.am
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Makefile.am 2004-10-22 06:39:41 UTC (rev 1993)
+++ trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/Makefile.am 2004-10-23 03:25:40 UTC (rev 1994)
@@ -12,7 +12,8 @@
DebuggingService.cs \
Gui/DebuggerLocalsPad.cs \
Gui/DebuggerVariablePad.cs \
-Gui/DebuggerStackTracePad.cs
+Gui/DebuggerStackTracePad.cs \
+Gui/DebuggerThreadPad.cs
EXTRA_DIST = $(FILES) $(ADDIN)
Modified: trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/MonoDevelopDebugger.addin.xml
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/MonoDevelopDebugger.addin.xml 2004-10-22 06:39:41 UTC (rev 1993)
+++ trunk/MonoDevelop/Core/src/AddIns/DebuggerAddIn/MonoDevelopDebugger.addin.xml 2004-10-23 03:25:40 UTC (rev 1994)
@@ -19,6 +19,8 @@
class = "MonoDevelop.SourceEditor.Gui.DebuggerLocalsPad"/>
<Class id = "DebuggerStackTracePad"
class = "MonoDevelop.SourceEditor.Gui.DebuggerStackTracePad"/>
+ <Class id = "DebuggerThreadPad"
+ class = "MonoDevelop.SourceEditor.Gui.DebuggerThreadPad"/>
</Extension>
<Extension path="/SharpDevelop/Workbench/MainMenu/Run">
Modified: trunk/MonoDevelop/Core/src/Main/Base/ChangeLog
===================================================================
--- trunk/MonoDevelop/Core/src/Main/Base/ChangeLog 2004-10-22 06:39:41 UTC (rev 1993)
+++ trunk/MonoDevelop/Core/src/Main/Base/ChangeLog 2004-10-23 03:25:40 UTC (rev 1994)
@@ -1,6 +1,11 @@
2004-10-22 Chris Toshok <toshok at ximian.com>
* Gui/Workbench/Layouts/SdiWorkspaceLayout.cs: add
+ DebuggerThreadPad.
+
+2004-10-22 Chris Toshok <toshok at ximian.com>
+
+ * Gui/Workbench/Layouts/SdiWorkspaceLayout.cs: add
MonoDevelop.SourceEditor.Gui.DebuggerStackTracePad to the
debugPads.
Modified: trunk/MonoDevelop/Core/src/Main/Base/Gui/Workbench/Layouts/SdiWorkspaceLayout.cs
===================================================================
--- trunk/MonoDevelop/Core/src/Main/Base/Gui/Workbench/Layouts/SdiWorkspaceLayout.cs 2004-10-22 06:39:41 UTC (rev 1993)
+++ trunk/MonoDevelop/Core/src/Main/Base/Gui/Workbench/Layouts/SdiWorkspaceLayout.cs 2004-10-23 03:25:40 UTC (rev 1994)
@@ -284,7 +284,8 @@
string[] debugPads = new string[] {
"MonoDevelop.SourceEditor.Gui.DebuggerLocalsPad",
- "MonoDevelop.SourceEditor.Gui.DebuggerStackTracePad"
+ "MonoDevelop.SourceEditor.Gui.DebuggerStackTracePad",
+ "MonoDevelop.SourceEditor.Gui.DebuggerThreadPad"
};
string[] editPads = new string[] {
More information about the Monodevelop-patches-list
mailing list