Fleshing out debugger types.

This commit is contained in:
Ben Vanik
2015-05-25 00:51:23 -07:00
parent da655d15b3
commit e55be7d2c9
103 changed files with 4008 additions and 2025 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 297 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 355 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 824 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 824 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 824 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 410 B

+10 -2
View File
@@ -290,10 +290,13 @@
<ClInclude Include="src\xenia\cpu\xex_module.h" />
<ClInclude Include="src\xenia\debug\breakpoint.h" />
<ClInclude Include="src\xenia\debug\debugger.h" />
<ClInclude Include="src\xenia\debug\function_data.h" />
<ClInclude Include="src\xenia\debug\function_trace_data.h" />
<ClInclude Include="src\xenia\debug\proto\breakpoints_generated.h" />
<ClInclude Include="src\xenia\debug\proto\common_generated.h" />
<ClInclude Include="src\xenia\debug\proto\control_generated.h" />
<ClInclude Include="src\xenia\debug\proto\messages_generated.h" />
<ClInclude Include="src\xenia\debug\proto\modules_generated.h" />
<ClInclude Include="src\xenia\debug\proto\threads_generated.h" />
<ClInclude Include="src\xenia\emulator.h" />
<ClInclude Include="src\xenia\gpu\gl4\blitter.h" />
<ClInclude Include="src\xenia\gpu\gl4\circular_buffer.h" />
@@ -419,7 +422,12 @@
<ItemGroup>
<None Include="src\xenia\cpu\backend\x64\x64_sequence.inl" />
<None Include="src\xenia\cpu\hir\opcodes.inl" />
<None Include="src\xenia\debug\proto\breakpoints.fbs" />
<None Include="src\xenia\debug\proto\common.fbs" />
<None Include="src\xenia\debug\proto\control.fbs" />
<None Include="src\xenia\debug\proto\messages.fbs" />
<None Include="src\xenia\debug\proto\modules.fbs" />
<None Include="src\xenia\debug\proto\threads.fbs" />
<None Include="src\xenia\gpu\register_table.inc" />
<None Include="src\xenia\kernel\util\export_table_post.inc" />
<None Include="src\xenia\kernel\util\export_table_pre.inc" />
@@ -540,4 +548,4 @@
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>
</Project>
+417 -1377
View File
File diff suppressed because it is too large Load Diff
+127 -2
View File
@@ -30,9 +30,21 @@
this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
this.statusStrip = new System.Windows.Forms.StatusStrip();
this.statusMessageLabel = new System.Windows.Forms.ToolStripStatusLabel();
this.controlToolStrip = new System.Windows.Forms.ToolStrip();
this.threadToolStripLabel = new System.Windows.Forms.ToolStripLabel();
this.threadToolStripComboBox = new System.Windows.Forms.ToolStripComboBox();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.continueToolStripButton = new System.Windows.Forms.ToolStripButton();
this.breakToolStripButton = new System.Windows.Forms.ToolStripButton();
this.stopToolStripButton = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.stepInToolStripButton = new System.Windows.Forms.ToolStripButton();
this.stepOverToolStripButton = new System.Windows.Forms.ToolStripButton();
this.stepOutToolStripButton = new System.Windows.Forms.ToolStripButton();
this.mainMenuStrip.SuspendLayout();
this.mainToolStrip.SuspendLayout();
this.statusStrip.SuspendLayout();
this.controlToolStrip.SuspendLayout();
this.SuspendLayout();
//
// mainMenuStrip
@@ -82,14 +94,114 @@
// statusMessageLabel
//
this.statusMessageLabel.Name = "statusMessageLabel";
this.statusMessageLabel.Size = new System.Drawing.Size(118, 17);
this.statusMessageLabel.Text = "";
this.statusMessageLabel.Size = new System.Drawing.Size(0, 17);
//
// controlToolStrip
//
this.controlToolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.threadToolStripLabel,
this.threadToolStripComboBox,
this.toolStripSeparator1,
this.continueToolStripButton,
this.breakToolStripButton,
this.stopToolStripButton,
this.toolStripSeparator2,
this.stepInToolStripButton,
this.stepOverToolStripButton,
this.stepOutToolStripButton});
this.controlToolStrip.Location = new System.Drawing.Point(0, 49);
this.controlToolStrip.Name = "controlToolStrip";
this.controlToolStrip.Size = new System.Drawing.Size(1571, 25);
this.controlToolStrip.TabIndex = 6;
this.controlToolStrip.Text = "toolStrip1";
//
// threadToolStripLabel
//
this.threadToolStripLabel.Name = "threadToolStripLabel";
this.threadToolStripLabel.Size = new System.Drawing.Size(47, 22);
this.threadToolStripLabel.Text = "Thread:";
//
// threadToolStripComboBox
//
this.threadToolStripComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.threadToolStripComboBox.Name = "threadToolStripComboBox";
this.threadToolStripComboBox.Size = new System.Drawing.Size(250, 25);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
//
// continueToolStripButton
//
this.continueToolStripButton.Image = global::Xenia.Debug.UI.Properties.Resources.play;
this.continueToolStripButton.ImageTransparentColor = System.Drawing.Color.Transparent;
this.continueToolStripButton.Name = "continueToolStripButton";
this.continueToolStripButton.Size = new System.Drawing.Size(76, 22);
this.continueToolStripButton.Text = "Continue";
this.continueToolStripButton.Click += new System.EventHandler(this.continueToolStripButton_Click);
//
// breakToolStripButton
//
this.breakToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.breakToolStripButton.Image = global::Xenia.Debug.UI.Properties.Resources.pause;
this.breakToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
this.breakToolStripButton.Name = "breakToolStripButton";
this.breakToolStripButton.Size = new System.Drawing.Size(23, 22);
this.breakToolStripButton.Text = "Break";
this.breakToolStripButton.Click += new System.EventHandler(this.breakToolStripButton_Click);
//
// stopToolStripButton
//
this.stopToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.stopToolStripButton.Image = global::Xenia.Debug.UI.Properties.Resources.stop;
this.stopToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
this.stopToolStripButton.Name = "stopToolStripButton";
this.stopToolStripButton.Size = new System.Drawing.Size(23, 22);
this.stopToolStripButton.Text = "Stop";
this.stopToolStripButton.Click += new System.EventHandler(this.stopToolStripButton_Click);
//
// toolStripSeparator2
//
this.toolStripSeparator2.Name = "toolStripSeparator2";
this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
//
// stepInToolStripButton
//
this.stepInToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.stepInToolStripButton.Image = global::Xenia.Debug.UI.Properties.Resources.step_in;
this.stepInToolStripButton.ImageTransparentColor = System.Drawing.Color.Transparent;
this.stepInToolStripButton.Name = "stepInToolStripButton";
this.stepInToolStripButton.Size = new System.Drawing.Size(23, 22);
this.stepInToolStripButton.Text = "Step In";
this.stepInToolStripButton.Click += new System.EventHandler(this.stepInToolStripButton_Click);
//
// stepOverToolStripButton
//
this.stepOverToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.stepOverToolStripButton.Image = global::Xenia.Debug.UI.Properties.Resources.step_over;
this.stepOverToolStripButton.ImageTransparentColor = System.Drawing.Color.Transparent;
this.stepOverToolStripButton.Name = "stepOverToolStripButton";
this.stepOverToolStripButton.Size = new System.Drawing.Size(23, 22);
this.stepOverToolStripButton.Text = "Step Over";
this.stepOverToolStripButton.Click += new System.EventHandler(this.stepOverToolStripButton_Click);
//
// stepOutToolStripButton
//
this.stepOutToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.stepOutToolStripButton.Image = global::Xenia.Debug.UI.Properties.Resources.step_out;
this.stepOutToolStripButton.ImageTransparentColor = System.Drawing.Color.Transparent;
this.stepOutToolStripButton.Name = "stepOutToolStripButton";
this.stepOutToolStripButton.Size = new System.Drawing.Size(23, 22);
this.stepOutToolStripButton.Text = "Step Out";
this.stepOutToolStripButton.Click += new System.EventHandler(this.stepOutToolStripButton_Click);
//
// MainWindow
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1571, 1103);
this.Controls.Add(this.controlToolStrip);
this.Controls.Add(this.statusStrip);
this.Controls.Add(this.mainToolStrip);
this.Controls.Add(this.mainMenuStrip);
@@ -103,6 +215,8 @@
this.mainToolStrip.PerformLayout();
this.statusStrip.ResumeLayout(false);
this.statusStrip.PerformLayout();
this.controlToolStrip.ResumeLayout(false);
this.controlToolStrip.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
@@ -117,5 +231,16 @@
private System.Windows.Forms.StatusStrip statusStrip;
private System.Windows.Forms.ToolStripStatusLabel statusMessageLabel;
private WeifenLuo.WinFormsUI.Docking.DockPanel dockPanel;
private System.Windows.Forms.ToolStrip controlToolStrip;
private System.Windows.Forms.ToolStripLabel threadToolStripLabel;
private System.Windows.Forms.ToolStripComboBox threadToolStripComboBox;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private System.Windows.Forms.ToolStripButton continueToolStripButton;
private System.Windows.Forms.ToolStripButton breakToolStripButton;
private System.Windows.Forms.ToolStripButton stopToolStripButton;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
private System.Windows.Forms.ToolStripButton stepInToolStripButton;
private System.Windows.Forms.ToolStripButton stepOverToolStripButton;
private System.Windows.Forms.ToolStripButton stepOutToolStripButton;
}
}
+79
View File
@@ -70,13 +70,19 @@ namespace Xenia.Debug.UI {
SetupDefaultLayout();
// For hotkeys.
KeyPreview = true;
Debugger.StateChanged += Debugger_StateChanged;
Debugger_StateChanged(this, Debugger.CurrentState);
Debugger.CurrentContext.Changed += CurrentContext_Changed;
CurrentContext_Changed();
Debugger.Attach();
}
private void Debugger_StateChanged(object sender, Debugger.State e) {
bool enabled = false;
switch (e) {
case Debugger.State.Idle:
statusMessageLabel.Text = "Idle";
@@ -86,11 +92,36 @@ namespace Xenia.Debug.UI {
break;
case Debugger.State.Attached:
statusMessageLabel.Text = "Attached";
enabled = true;
break;
case Debugger.State.Detached:
statusMessageLabel.Text = "Detached";
break;
}
controlToolStrip.Enabled = enabled;
}
private void CurrentContext_Changed() {
bool enabled = false;
switch (Debugger.CurrentContext.RunState) {
case RunState.Updating:
enabled = false;
break;
case RunState.Running:
enabled = false;
break;
case RunState.Paused:
enabled = true;
break;
}
breakToolStripButton.Enabled = !enabled;
continueToolStripButton.Enabled = enabled;
stepInToolStripButton.Enabled = enabled;
stepOverToolStripButton.Enabled = enabled;
stepOutToolStripButton.Enabled = enabled;
// TODO(benvanik): set thread info/etc.
}
private void SetupDefaultLayout() {
@@ -125,5 +156,53 @@ namespace Xenia.Debug.UI {
dockPanel.ResumeLayout(true, true);
}
protected override bool ProcessCmdKey(ref Message msg, Keys keyData) {
//if (keyData == (Keys.Control | Keys.F)) {
// MessageBox.Show("What the Ctrl+F?");
// return true;
//}
if (keyData == Keys.F11) {
stepInToolStripButton_Click(this, EventArgs.Empty);
return true;
} else if (keyData == Keys.F10) {
stepOverToolStripButton_Click(this, EventArgs.Empty);
return true;
} else if (keyData == (Keys.Shift | Keys.F11)) {
stepOutToolStripButton_Click(this, EventArgs.Empty);
return true;
} else if (keyData == (Keys.Pause)) {
breakToolStripButton_Click(this, EventArgs.Empty);
return true;
} else if (keyData == (Keys.Shift | Keys.F5)) {
stopToolStripButton_Click(this, EventArgs.Empty);
return true;
}
return base.ProcessCmdKey(ref msg, keyData);
}
private void continueToolStripButton_Click(object sender, EventArgs e) {
Debugger.Continue();
}
private void breakToolStripButton_Click(object sender, EventArgs e) {
Debugger.Break();
}
private void stopToolStripButton_Click(object sender, EventArgs e) {
Debugger.Stop();
}
private void stepInToolStripButton_Click(object sender, EventArgs e) {
Debugger.StepIn();
}
private void stepOverToolStripButton_Click(object sender, EventArgs e) {
Debugger.StepOver();
}
private void stepOutToolStripButton_Click(object sender, EventArgs e) {
Debugger.StepOut();
}
}
}
+3
View File
@@ -145,4 +145,7 @@
<metadata name="statusStrip.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>237, 17</value>
</metadata>
<metadata name="controlToolStrip.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>346, 17</value>
</metadata>
</root>
+107 -46
View File
@@ -9,54 +9,115 @@
//------------------------------------------------------------------------------
namespace Xenia.Debug.UI.Properties {
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Resources {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Resources() {
}
using System;
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if ((resourceMan == null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Xenia.Debug.UI.Properties.Resources", typeof(Resources).Assembly);
resourceMan = temp;
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Resources {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Resources() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Xenia.Debug.UI.Properties.Resources", typeof(Resources).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap pause {
get {
object obj = ResourceManager.GetObject("pause", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap play {
get {
object obj = ResourceManager.GetObject("play", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap step_in {
get {
object obj = ResourceManager.GetObject("step_in", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap step_out {
get {
object obj = ResourceManager.GetObject("step_out", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap step_over {
get {
object obj = ResourceManager.GetObject("step_over", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap stop {
get {
object obj = ResourceManager.GetObject("stop", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
}
}
+27 -5
View File
@@ -46,7 +46,7 @@
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Serialization.Formatters.Binary.BinaryFormatter
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
@@ -60,6 +60,7 @@
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
@@ -68,9 +69,10 @@
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" />
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
@@ -85,9 +87,10 @@
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" />
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
@@ -109,9 +112,28 @@
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="pause" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\pause.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="play" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\play.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="step_in" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\step_in.bmp;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="step_out" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\step_out.bmp;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="step_over" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\step_over.bmp;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="stop" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\stop.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
</root>
Binary file not shown.

After

Width:  |  Height:  |  Size: 297 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 355 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 824 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 824 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 824 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 410 B

+35 -1
View File
@@ -23,11 +23,45 @@
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent() {
this.components = new System.ComponentModel.Container();
this.breakpointsListView = new System.Windows.Forms.ListView();
this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.SuspendLayout();
//
// breakpointsListView
//
this.breakpointsListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.breakpointsListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader1,
this.columnHeader2,
this.columnHeader3});
this.breakpointsListView.Location = new System.Drawing.Point(12, 12);
this.breakpointsListView.Name = "breakpointsListView";
this.breakpointsListView.Size = new System.Drawing.Size(738, 208);
this.breakpointsListView.TabIndex = 0;
this.breakpointsListView.UseCompatibleStateImageBehavior = false;
this.breakpointsListView.View = System.Windows.Forms.View.Details;
//
// BreakpointsPanel
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(762, 232);
this.Controls.Add(this.breakpointsListView);
this.Name = "BreakpointsPanel";
this.Text = "Breakpoints";
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.ListView breakpointsListView;
private System.Windows.Forms.ColumnHeader columnHeader1;
private System.Windows.Forms.ColumnHeader columnHeader2;
private System.Windows.Forms.ColumnHeader columnHeader3;
}
}

Some files were not shown because too many files have changed in this diff Show More