You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
102 lines
2.5 KiB
102 lines
2.5 KiB
// <file> |
|
// <copyright see="prj:///doc/copyright.txt"/> |
|
// <license see="prj:///doc/license.txt"/> |
|
// <owner name="none" email=""/> |
|
// <version>$Revision$</version> |
|
// </file> |
|
|
|
using System; |
|
using System.Diagnostics; |
|
using ICSharpCode.SharpDevelop.Project; |
|
|
|
namespace ICSharpCode.SharpDevelop.Debugging |
|
{ |
|
public interface IDebugger : IDisposable |
|
{ |
|
/// <summary> |
|
/// Returns true if debuger is attached to a process |
|
/// </summary> |
|
bool IsDebugging { |
|
get; |
|
} |
|
|
|
/// <summary> |
|
/// Returns true if process is running |
|
/// Returns false if breakpoint is hit, program is breaked, program is stepped, etc... |
|
/// </summary> |
|
bool IsProcessRunning { |
|
get; |
|
} |
|
|
|
bool CanDebug(IProject project); |
|
|
|
/// <summary> |
|
/// Starts process and attaches debugger |
|
/// </summary> |
|
void Start(ProcessStartInfo processStartInfo); |
|
|
|
void StartWithoutDebugging(ProcessStartInfo processStartInfo); |
|
|
|
/// <summary> |
|
/// Stops/terminates attached process |
|
/// </summary> |
|
void Stop(); |
|
|
|
// ExecutionControl: |
|
|
|
void Break(); |
|
|
|
void Continue(); |
|
|
|
// Stepping: |
|
|
|
void StepInto(); |
|
|
|
void StepOver(); |
|
|
|
void StepOut(); |
|
|
|
/// <summary> |
|
/// Gets the current value of the variable as string that can be displayed in tooltips. |
|
/// </summary> |
|
string GetValueAsString(string variable); |
|
|
|
/// <summary> |
|
/// Gets the tooltip control that shows the value of given variable. |
|
/// Return null if no tooltip is available. |
|
/// </summary> |
|
DebuggerGridControl GetTooltipControl(string variable); |
|
|
|
/// <summary> |
|
/// Queries the debugger whether it is possible to set the instruction pointer to a given position. |
|
/// </summary> |
|
/// <returns>True if possible. False otherwise</returns> |
|
bool CanSetInstructionPointer(string filename, int line, int column); |
|
|
|
/// <summary> |
|
/// Set the instruction pointer to a given position. |
|
/// </summary> |
|
/// <returns>True if successful. False otherwise</returns> |
|
bool SetInstructionPointer(string filename, int line, int column); |
|
|
|
/// <summary> |
|
/// Ocurrs when the debugger is starting. |
|
/// </summary> |
|
event EventHandler DebugStarting; |
|
|
|
/// <summary> |
|
/// Ocurrs after the debugger has started. |
|
/// </summary> |
|
event EventHandler DebugStarted; |
|
|
|
/// <summary> |
|
/// Ocurrs when the value of IsProcessRunning changes. |
|
/// </summary> |
|
event EventHandler IsProcessRunningChanged; |
|
|
|
/// <summary> |
|
/// Ocurrs after the debugging of program is finished. |
|
/// </summary> |
|
event EventHandler DebugStopped; |
|
} |
|
}
|
|
|