[Monodevelop-patches-list] r2483 - in trunk/MonoDevelop/Core/src/MonoDevelop.Base: . Services Services/DebuggerService

Lluis Sanchez <lluis@ximian.com> lluis at mono-cvs.ximian.com
Wed Apr 27 10:17:03 EDT 2005


Author: lluis
Date: 2005-04-27 10:17:03 -0400 (Wed, 27 Apr 2005)
New Revision: 2483

Added:
   trunk/MonoDevelop/Core/src/MonoDevelop.Base/Services/DebuggerService/
   trunk/MonoDevelop/Core/src/MonoDevelop.Base/Services/DebuggerService/IDebuggerService.cs
Removed:
   trunk/MonoDevelop/Core/src/MonoDevelop.Base/Services/IDebuggerService.cs
Modified:
   trunk/MonoDevelop/Core/src/MonoDevelop.Base/ChangeLog
   trunk/MonoDevelop/Core/src/MonoDevelop.Base/Makefile.am
Log:
2005-04-27  Lluis Sanchez Gual  <lluis at novell.com>

	* Makefile.am
	* Services/DebuggerService/IDebuggerService.cs:
	Moved IDebuggerService.cs to its own directory.



Modified: trunk/MonoDevelop/Core/src/MonoDevelop.Base/ChangeLog
===================================================================
--- trunk/MonoDevelop/Core/src/MonoDevelop.Base/ChangeLog	2005-04-26 21:47:34 UTC (rev 2482)
+++ trunk/MonoDevelop/Core/src/MonoDevelop.Base/ChangeLog	2005-04-27 14:17:03 UTC (rev 2483)
@@ -1,3 +1,9 @@
+2005-04-27  Lluis Sanchez Gual  <lluis at novell.com>
+
+	* Makefile.am
+	* Services/DebuggerService/IDebuggerService.cs:
+	Moved IDebuggerService.cs to its own directory.
+
 2005-04-25  Lluis Sanchez Gual  <lluis at novell.com>
 
 	* Commands/MenuItemBuilders.cs: Removed. Menu builders are now

Modified: trunk/MonoDevelop/Core/src/MonoDevelop.Base/Makefile.am
===================================================================
--- trunk/MonoDevelop/Core/src/MonoDevelop.Base/Makefile.am	2005-04-26 21:47:34 UTC (rev 2482)
+++ trunk/MonoDevelop/Core/src/MonoDevelop.Base/Makefile.am	2005-04-27 14:17:03 UTC (rev 2483)
@@ -174,6 +174,7 @@
 Commands/AutostartCommands.cs \
 Commands/ToolsCommands.cs \
 Commands/ViewCommands.cs \
+Services/DebuggerService/IDebuggerService.cs \
 Services/File/IFileService.cs \
 Services/File/DefaultFileService.cs \
 Services/File/FileEventArgs.cs \
@@ -228,7 +229,6 @@
 Services/MessageService.cs \
 Services/Toolbar/ToolbarService.cs \
 Services/MonodocService.cs \
-Services/IDebuggerService.cs \
 Services/SystemAssemblyService.cs \
 Services/DispatchService/AsyncDispatchAttribute.cs \
 Services/DispatchService/DispatchService.cs \

Copied: trunk/MonoDevelop/Core/src/MonoDevelop.Base/Services/DebuggerService/IDebuggerService.cs (from rev 2474, trunk/MonoDevelop/Core/src/MonoDevelop.Base/Services/IDebuggerService.cs)

Deleted: trunk/MonoDevelop/Core/src/MonoDevelop.Base/Services/IDebuggerService.cs
===================================================================
--- trunk/MonoDevelop/Core/src/MonoDevelop.Base/Services/IDebuggerService.cs	2005-04-26 21:47:34 UTC (rev 2482)
+++ trunk/MonoDevelop/Core/src/MonoDevelop.Base/Services/IDebuggerService.cs	2005-04-27 14:17:03 UTC (rev 2483)
@@ -1,44 +0,0 @@
-// IDebuggingService - Interface for the debugger to remove the depend on the
-//                     debugger.
-//
-// Author: Todd Berman <tberman at sevenl.net>
-//
-// (C) 2004 Todd Berman
-
-using System;
-
-namespace MonoDevelop.Services
-{
-
-	public interface IDebuggableEditor {
-		void ExecutingAt (int lineNumber);
-		void ClearExecutingAt (int lineNumber);
-	}
-
-	public interface IDebuggingService {
-		bool IsRunning { get; }
-		bool AddBreakpoint (string filename, int linenum);
-		void RemoveBreakpoint (string filename, int linenum);
-		bool ToggleBreakpoint (string filename, int linenum);
-		
-		event EventHandler PausedEvent;
-		event EventHandler ResumedEvent;
-		event EventHandler StartedEvent;
-		event EventHandler StoppedEvent;
-
-		void Pause ();
-		void Resume ();
-		void Run (IProgressMonitor monitor, string[] args);
-		void Stop ();
-
-		void StepInto ();
-		void StepOver ();
-
-		string[] Backtrace { get; }
-
-		string CurrentFilename { get; }
-		int CurrentLineNumber { get; }
-
-		string LookupValue (string expr);
-	}
-}




More information about the Monodevelop-patches-list mailing list