mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-21 13:28:41 +00:00
118 lines
No EOL
5.5 KiB
C#
118 lines
No EOL
5.5 KiB
C#
namespace Cosmos.Debug.GDB {
|
|
partial class FormLog {
|
|
/// <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 Windows Form 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() {
|
|
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
|
|
this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.mitmCopyToClipboard = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.mitmClear = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.lboxCmd = new System.Windows.Forms.ListBox();
|
|
this.lboxDebug = new System.Windows.Forms.ListBox();
|
|
this.menuStrip1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// menuStrip1
|
|
//
|
|
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.fileToolStripMenuItem});
|
|
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
|
|
this.menuStrip1.Name = "menuStrip1";
|
|
this.menuStrip1.Size = new System.Drawing.Size(489, 24);
|
|
this.menuStrip1.TabIndex = 6;
|
|
this.menuStrip1.Text = "menuStrip1";
|
|
//
|
|
// fileToolStripMenuItem
|
|
//
|
|
this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.mitmCopyToClipboard,
|
|
this.mitmClear});
|
|
this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
|
|
this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
|
|
this.fileToolStripMenuItem.Text = "&File";
|
|
//
|
|
// mitmCopyToClipboard
|
|
//
|
|
this.mitmCopyToClipboard.Name = "mitmCopyToClipboard";
|
|
this.mitmCopyToClipboard.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C)));
|
|
this.mitmCopyToClipboard.Size = new System.Drawing.Size(213, 22);
|
|
this.mitmCopyToClipboard.Text = "&Copy to Clipboard";
|
|
this.mitmCopyToClipboard.Click += new System.EventHandler(this.mitmCopyToClipboard_Click);
|
|
//
|
|
// mitmClear
|
|
//
|
|
this.mitmClear.Name = "mitmClear";
|
|
this.mitmClear.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.L)));
|
|
this.mitmClear.Size = new System.Drawing.Size(213, 22);
|
|
this.mitmClear.Text = "C&lear";
|
|
this.mitmClear.Click += new System.EventHandler(this.mitmClear_Click);
|
|
//
|
|
// lboxCmd
|
|
//
|
|
this.lboxCmd.Dock = System.Windows.Forms.DockStyle.Left;
|
|
this.lboxCmd.FormattingEnabled = true;
|
|
this.lboxCmd.Location = new System.Drawing.Point(0, 24);
|
|
this.lboxCmd.Name = "lboxCmd";
|
|
this.lboxCmd.Size = new System.Drawing.Size(120, 342);
|
|
this.lboxCmd.TabIndex = 7;
|
|
//
|
|
// lboxDebug
|
|
//
|
|
this.lboxDebug.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.lboxDebug.FormattingEnabled = true;
|
|
this.lboxDebug.Location = new System.Drawing.Point(120, 24);
|
|
this.lboxDebug.Name = "lboxDebug";
|
|
this.lboxDebug.Size = new System.Drawing.Size(369, 342);
|
|
this.lboxDebug.TabIndex = 8;
|
|
//
|
|
// FormLog
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(489, 374);
|
|
this.Controls.Add(this.lboxDebug);
|
|
this.Controls.Add(this.lboxCmd);
|
|
this.Controls.Add(this.menuStrip1);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
|
|
this.MainMenuStrip = this.menuStrip1;
|
|
this.Name = "FormLog";
|
|
this.ShowInTaskbar = false;
|
|
this.Text = "Debug Log";
|
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormLog_FormClosing);
|
|
this.menuStrip1.ResumeLayout(false);
|
|
this.menuStrip1.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.MenuStrip menuStrip1;
|
|
private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem mitmCopyToClipboard;
|
|
private System.Windows.Forms.ToolStripMenuItem mitmClear;
|
|
private System.Windows.Forms.ListBox lboxCmd;
|
|
private System.Windows.Forms.ListBox lboxDebug;
|
|
}
|
|
} |