reactosdbg/RosDBG/SourceView.Designer.cs
Christoph von Wittich 8d962e9c5f add support for edit->copy menu
svn path=/trunk/tools/reactosdbg/; revision=794
2008-08-20 18:10:51 +00:00

132 lines
5.9 KiB
C#

namespace RosDBG
{
partial class SourceView
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Component Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SourceView));
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
this.btnCopy = new System.Windows.Forms.ToolStripButton();
this.btnBreakpoint = new System.Windows.Forms.ToolStripButton();
this.SourceCode = new System.Windows.Forms.RichTextBox();
this.splitContainer1.Panel1.SuspendLayout();
this.splitContainer1.Panel2.SuspendLayout();
this.splitContainer1.SuspendLayout();
this.toolStrip1.SuspendLayout();
this.SuspendLayout();
//
// splitContainer1
//
this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
this.splitContainer1.Location = new System.Drawing.Point(0, 0);
this.splitContainer1.Name = "splitContainer1";
this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
//
// splitContainer1.Panel1
//
this.splitContainer1.Panel1.Controls.Add(this.toolStrip1);
//
// splitContainer1.Panel2
//
this.splitContainer1.Panel2.Controls.Add(this.SourceCode);
this.splitContainer1.Size = new System.Drawing.Size(497, 308);
this.splitContainer1.SplitterDistance = 25;
this.splitContainer1.TabIndex = 2;
//
// toolStrip1
//
this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.btnCopy,
this.btnBreakpoint});
this.toolStrip1.Location = new System.Drawing.Point(0, 0);
this.toolStrip1.Name = "toolStrip1";
this.toolStrip1.Size = new System.Drawing.Size(497, 25);
this.toolStrip1.TabIndex = 0;
this.toolStrip1.Text = "toolStrip1";
//
// btnCopy
//
this.btnCopy.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.btnCopy.Enabled = false;
this.btnCopy.Image = ((System.Drawing.Image)(resources.GetObject("btnCopy.Image")));
this.btnCopy.ImageTransparentColor = System.Drawing.Color.Magenta;
this.btnCopy.Name = "btnCopy";
this.btnCopy.Size = new System.Drawing.Size(23, 22);
this.btnCopy.ToolTipText = "Copy";
this.btnCopy.Click += new System.EventHandler(this.btnCopy_Click);
//
// btnBreakpoint
//
this.btnBreakpoint.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.btnBreakpoint.Enabled = false;
this.btnBreakpoint.Image = ((System.Drawing.Image)(resources.GetObject("btnBreakpoint.Image")));
this.btnBreakpoint.ImageTransparentColor = System.Drawing.Color.Magenta;
this.btnBreakpoint.Name = "btnBreakpoint";
this.btnBreakpoint.Size = new System.Drawing.Size(23, 22);
this.btnBreakpoint.ToolTipText = "Set Breakpoint";
//
// SourceCode
//
this.SourceCode.Dock = System.Windows.Forms.DockStyle.Fill;
this.SourceCode.Location = new System.Drawing.Point(0, 0);
this.SourceCode.Name = "SourceCode";
this.SourceCode.ReadOnly = true;
this.SourceCode.Size = new System.Drawing.Size(497, 279);
this.SourceCode.TabIndex = 3;
this.SourceCode.Text = "";
this.SourceCode.SelectionChanged += new System.EventHandler(this.SourceCode_SelectionChanged);
//
// SourceView
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.splitContainer1);
this.Name = "SourceView";
this.Size = new System.Drawing.Size(497, 308);
this.splitContainer1.Panel1.ResumeLayout(false);
this.splitContainer1.Panel1.PerformLayout();
this.splitContainer1.Panel2.ResumeLayout(false);
this.splitContainer1.ResumeLayout(false);
this.toolStrip1.ResumeLayout(false);
this.toolStrip1.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.SplitContainer splitContainer1;
private System.Windows.Forms.ToolStrip toolStrip1;
private System.Windows.Forms.ToolStripButton btnCopy;
private System.Windows.Forms.ToolStripButton btnBreakpoint;
private System.Windows.Forms.RichTextBox SourceCode;
}
}