Ejemplo n.º 1
0
 public void Setup(InprocDebugger debugger)
 {
     _debugger  = debugger;
     _codeCache = debugger.CodeCache;
     this.CalculateSize();
     this.Invalidate();
 }
Ejemplo n.º 2
0
		public StatisticsTool( InprocDebugger debugger )
			: base( debugger )
		{
			this.InitializeComponent();

			Bitmap image = Properties.Resources.StatisticsIcon as Bitmap;
			this.Icon = Icon.FromHandle( image.GetHicon() );
		}
Ejemplo n.º 3
0
        public BreakpointManager(InprocDebugger debugger)
        {
            this.Debugger = debugger;

            _breakpoints             = new List <Breakpoint>(100);
            _breakpointLookup        = new Dictionary <int, Breakpoint>(100);
            _addressBreakpointLookup = new Dictionary <uint, Breakpoint>(100);
            _biosBreakpointLookup    = new Dictionary <BiosFunctionToken, Breakpoint>(100);
        }
Ejemplo n.º 4
0
        public MemoryTool(InprocDebugger debugger)
            : base(debugger)
        {
            this.InitializeComponent();

            Bitmap image = Properties.Resources.MemoryIcon as Bitmap;

            this.Icon = Icon.FromHandle(image.GetHicon());
        }
Ejemplo n.º 5
0
        public LogTool( InprocDebugger debugger )
            : base(debugger)
        {
            this.InitializeComponent();

            Bitmap image = Properties.Resources.OutputIcon as Bitmap;
            this.Icon = Icon.FromHandle( image.GetHicon() );

            this.logControl.Debugger = debugger;
        }
Ejemplo n.º 6
0
 public void AttachDebugger()
 {
     if (_debugClient != null)
     {
         _debugClient.BringToFront();
         return;
     }
     _debugClient = new InprocDebugger(this);
     _debugClient.BringToFront();
 }
Ejemplo n.º 7
0
        public LogTool(InprocDebugger debugger)
            : base(debugger)
        {
            this.InitializeComponent();

            Bitmap image = Properties.Resources.OutputIcon as Bitmap;

            this.Icon = Icon.FromHandle(image.GetHicon());

            this.logControl.Debugger = debugger;
        }
Ejemplo n.º 8
0
        public ThreadsTool( InprocDebugger debugger )
            : base(debugger)
        {
            this.InitializeComponent();

            Bitmap image = Properties.Resources.ThreadsIcon as Bitmap;
            this.Icon = Icon.FromHandle( image.GetHicon() );

            this.Clear();

            _delayThreadDialog = new DelayThreadDialog();
        }
Ejemplo n.º 9
0
        public ThreadsTool(InprocDebugger debugger)
            : base(debugger)
        {
            this.InitializeComponent();

            Bitmap image = Properties.Resources.ThreadsIcon as Bitmap;

            this.Icon = Icon.FromHandle(image.GetHicon());

            this.Clear();

            _delayThreadDialog = new DelayThreadDialog();
        }
Ejemplo n.º 10
0
        public CodeTool( InprocDebugger debugger )
            : base(debugger)
        {
            this.InitializeComponent();

            Bitmap image = Properties.Resources.DisassemblyIcon as Bitmap;
            this.Icon = Icon.FromHandle( image.GetHicon() );

            this.Disable();

            this.codeView.Setup( debugger );
            this.registersControl.Setup( debugger );

            // TODO: bind to button
            this.codeView.UseHex = true;
        }
Ejemplo n.º 11
0
        public CodeTool(InprocDebugger debugger)
            : base(debugger)
        {
            this.InitializeComponent();

            Bitmap image = Properties.Resources.DisassemblyIcon as Bitmap;

            this.Icon = Icon.FromHandle(image.GetHicon());

            this.Disable();

            this.codeView.Setup(debugger);
            this.registersControl.Setup(debugger);

            // TODO: bind to button
            this.codeView.UseHex = true;
        }
Ejemplo n.º 12
0
 public CodeCache( InprocDebugger debugger )
 {
     this.Debugger = debugger;
     this.Methods = new List<MethodBody>();
 }
Ejemplo n.º 13
0
 public void Setup( InprocDebugger debugger )
 {
     _debugger = debugger;
     _codeCache = debugger.CodeCache;
     this.CalculateSize();
     this.Invalidate();
 }
Ejemplo n.º 14
0
 public JumpToMethodDialog( InprocDebugger debugger )
     : this()
 {
     this.Debugger = debugger;
 }
Ejemplo n.º 15
0
 public JumpToMethodDialog(InprocDebugger debugger)
     : this()
 {
     this.Debugger = debugger;
 }
Ejemplo n.º 16
0
 public void Setup(InprocDebugger debugger)
 {
     _debugger = debugger;
 }
Ejemplo n.º 17
0
 public void Setup( InprocDebugger debugger )
 {
     _debugger = debugger;
 }
Ejemplo n.º 18
0
 public CodeCache(InprocDebugger debugger)
 {
     this.Debugger = debugger;
     this.Methods  = new List <MethodBody>();
 }