Пример #1
0
 public void Setup(InprocDebugger debugger)
 {
     _debugger  = debugger;
     _codeCache = debugger.CodeCache;
     this.CalculateSize();
     this.Invalidate();
 }
Пример #2
0
		public StatisticsTool( InprocDebugger debugger )
			: base( debugger )
		{
			this.InitializeComponent();

			Bitmap image = Properties.Resources.StatisticsIcon as Bitmap;
			this.Icon = Icon.FromHandle( image.GetHicon() );
		}
Пример #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);
        }
Пример #4
0
        public MemoryTool(InprocDebugger debugger)
            : base(debugger)
        {
            this.InitializeComponent();

            Bitmap image = Properties.Resources.MemoryIcon as Bitmap;

            this.Icon = Icon.FromHandle(image.GetHicon());
        }
Пример #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;
        }
Пример #6
0
 public void AttachDebugger()
 {
     if (_debugClient != null)
     {
         _debugClient.BringToFront();
         return;
     }
     _debugClient = new InprocDebugger(this);
     _debugClient.BringToFront();
 }
Пример #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;
        }
Пример #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();
        }
Пример #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();
        }
Пример #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;
        }
Пример #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;
        }
Пример #12
0
 public CodeCache( InprocDebugger debugger )
 {
     this.Debugger = debugger;
     this.Methods = new List<MethodBody>();
 }
Пример #13
0
 public void Setup( InprocDebugger debugger )
 {
     _debugger = debugger;
     _codeCache = debugger.CodeCache;
     this.CalculateSize();
     this.Invalidate();
 }
Пример #14
0
 public JumpToMethodDialog( InprocDebugger debugger )
     : this()
 {
     this.Debugger = debugger;
 }
Пример #15
0
 public JumpToMethodDialog(InprocDebugger debugger)
     : this()
 {
     this.Debugger = debugger;
 }
Пример #16
0
 public void Setup(InprocDebugger debugger)
 {
     _debugger = debugger;
 }
Пример #17
0
 public void Setup( InprocDebugger debugger )
 {
     _debugger = debugger;
 }
Пример #18
0
 public CodeCache(InprocDebugger debugger)
 {
     this.Debugger = debugger;
     this.Methods  = new List <MethodBody>();
 }