Debugger - Breakpoints - Add icon
This commit is contained in:
parent
e659dcb8f7
commit
c4680f56d4
|
@ -1832,6 +1832,7 @@
|
|||
<None Include="config\ControllerImages\WonderSwanColor.png" />
|
||||
<None Include="images\alt_about_image.png" />
|
||||
<None Include="images\connect_16x16.png" />
|
||||
<None Include="images\add.png" />
|
||||
<Content Include="images\logo.ico" />
|
||||
<None Include="images\Paste.png" />
|
||||
<None Include="images\reboot.png" />
|
||||
|
|
|
@ -70,6 +70,16 @@ namespace BizHawk.Client.EmuHawk.Properties {
|
|||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||
/// </summary>
|
||||
internal static System.Drawing.Bitmap add {
|
||||
get {
|
||||
object obj = ResourceManager.GetObject("add", resourceCulture);
|
||||
return ((System.Drawing.Bitmap)(obj));
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||
/// </summary>
|
||||
|
|
|
@ -1470,4 +1470,7 @@
|
|||
<data name="psx_dualshock" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\config\ControllerImages\psx_dualshock.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="add" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\images\add.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
</root>
|
|
@ -30,40 +30,28 @@
|
|||
{
|
||||
this.components = new System.ComponentModel.Container();
|
||||
this.AddBreakpointButton = new System.Windows.Forms.Button();
|
||||
this.RemoveBreakpointButton = new System.Windows.Forms.Button();
|
||||
this.BreakpointStatsLabel = new System.Windows.Forms.Label();
|
||||
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
|
||||
this.ToggleButton = new System.Windows.Forms.Button();
|
||||
this.BreakpointView = new BizHawk.Client.EmuHawk.VirtualListView();
|
||||
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.ToggleButton = new System.Windows.Forms.Button();
|
||||
this.RemoveBreakpointButton = new System.Windows.Forms.Button();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// AddBreakpointButton
|
||||
//
|
||||
this.AddBreakpointButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
||||
this.AddBreakpointButton.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.add;
|
||||
this.AddBreakpointButton.Location = new System.Drawing.Point(0, 387);
|
||||
this.AddBreakpointButton.Name = "AddBreakpointButton";
|
||||
this.AddBreakpointButton.Size = new System.Drawing.Size(38, 23);
|
||||
this.AddBreakpointButton.Size = new System.Drawing.Size(23, 23);
|
||||
this.AddBreakpointButton.TabIndex = 6;
|
||||
this.AddBreakpointButton.Text = "&Add";
|
||||
this.toolTip1.SetToolTip(this.AddBreakpointButton, "Add a new breakpoint");
|
||||
this.AddBreakpointButton.UseVisualStyleBackColor = true;
|
||||
this.AddBreakpointButton.Click += new System.EventHandler(this.AddBreakpointButton_Click);
|
||||
//
|
||||
// RemoveBreakpointButton
|
||||
//
|
||||
this.RemoveBreakpointButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.RemoveBreakpointButton.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Delete;
|
||||
this.RemoveBreakpointButton.Location = new System.Drawing.Point(167, 387);
|
||||
this.RemoveBreakpointButton.Name = "RemoveBreakpointButton";
|
||||
this.RemoveBreakpointButton.Size = new System.Drawing.Size(23, 23);
|
||||
this.RemoveBreakpointButton.TabIndex = 7;
|
||||
this.toolTip1.SetToolTip(this.RemoveBreakpointButton, "Remove selected breakpoints");
|
||||
this.RemoveBreakpointButton.UseVisualStyleBackColor = true;
|
||||
this.RemoveBreakpointButton.Click += new System.EventHandler(this.RemoveBreakpointButton_Click);
|
||||
//
|
||||
// BreakpointStatsLabel
|
||||
//
|
||||
this.BreakpointStatsLabel.AutoSize = true;
|
||||
|
@ -73,18 +61,6 @@
|
|||
this.BreakpointStatsLabel.TabIndex = 8;
|
||||
this.BreakpointStatsLabel.Text = "label1";
|
||||
//
|
||||
// ToggleButton
|
||||
//
|
||||
this.ToggleButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.ToggleButton.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Refresh;
|
||||
this.ToggleButton.Location = new System.Drawing.Point(138, 387);
|
||||
this.ToggleButton.Name = "ToggleButton";
|
||||
this.ToggleButton.Size = new System.Drawing.Size(23, 23);
|
||||
this.ToggleButton.TabIndex = 9;
|
||||
this.toolTip1.SetToolTip(this.ToggleButton, "Toggle the selected breakpoints");
|
||||
this.ToggleButton.UseVisualStyleBackColor = true;
|
||||
this.ToggleButton.Click += new System.EventHandler(this.ToggleButton_Click);
|
||||
//
|
||||
// BreakpointView
|
||||
//
|
||||
this.BreakpointView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
||||
|
@ -130,6 +106,30 @@
|
|||
this.columnHeader3.Text = "Name";
|
||||
this.columnHeader3.Width = 80;
|
||||
//
|
||||
// ToggleButton
|
||||
//
|
||||
this.ToggleButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.ToggleButton.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Refresh;
|
||||
this.ToggleButton.Location = new System.Drawing.Point(138, 387);
|
||||
this.ToggleButton.Name = "ToggleButton";
|
||||
this.ToggleButton.Size = new System.Drawing.Size(23, 23);
|
||||
this.ToggleButton.TabIndex = 9;
|
||||
this.toolTip1.SetToolTip(this.ToggleButton, "Toggle the selected breakpoints");
|
||||
this.ToggleButton.UseVisualStyleBackColor = true;
|
||||
this.ToggleButton.Click += new System.EventHandler(this.ToggleButton_Click);
|
||||
//
|
||||
// RemoveBreakpointButton
|
||||
//
|
||||
this.RemoveBreakpointButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.RemoveBreakpointButton.Image = global::BizHawk.Client.EmuHawk.Properties.Resources.Delete;
|
||||
this.RemoveBreakpointButton.Location = new System.Drawing.Point(167, 387);
|
||||
this.RemoveBreakpointButton.Name = "RemoveBreakpointButton";
|
||||
this.RemoveBreakpointButton.Size = new System.Drawing.Size(23, 23);
|
||||
this.RemoveBreakpointButton.TabIndex = 7;
|
||||
this.toolTip1.SetToolTip(this.RemoveBreakpointButton, "Remove selected breakpoints");
|
||||
this.RemoveBreakpointButton.UseVisualStyleBackColor = true;
|
||||
this.RemoveBreakpointButton.Click += new System.EventHandler(this.RemoveBreakpointButton_Click);
|
||||
//
|
||||
// BreakpointControl
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
|
|
Loading…
Reference in New Issue