namespace ConsoleApplication1 { partial class Display { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Display)); this.DisplayBox = new System.Windows.Forms.PictureBox(); this.COMEventTimer = new System.Windows.Forms.Timer(this.components); this.toolStrip1 = new System.Windows.Forms.ToolStrip(); this.toolStripDropDownButton1 = new System.Windows.Forms.ToolStripDropDownButton(); this.testToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.resumeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.saveStateToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.aCPIPowerDownToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.shutdownToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.resetToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.statusLabel = new System.Windows.Forms.ToolStripLabel(); this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); this.ProgressWatcher = new System.Windows.Forms.Timer(this.components); ((System.ComponentModel.ISupportInitialize)(this.DisplayBox)).BeginInit(); this.toolStrip1.SuspendLayout(); this.SuspendLayout(); // // DisplayBox // this.DisplayBox.BackColor = System.Drawing.Color.Black; this.DisplayBox.Dock = System.Windows.Forms.DockStyle.Fill; this.DisplayBox.Location = new System.Drawing.Point(0, 20); this.DisplayBox.Name = "DisplayBox"; this.DisplayBox.Size = new System.Drawing.Size(292, 246); this.DisplayBox.TabIndex = 0; this.DisplayBox.TabStop = false; this.DisplayBox.MouseMove += new System.Windows.Forms.MouseEventHandler(this.Display_MouseEvent); this.DisplayBox.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Display_MouseEvent); this.DisplayBox.MouseUp += new System.Windows.Forms.MouseEventHandler(this.Display_MouseEvent); // // COMEventTimer // this.COMEventTimer.Tick += new System.EventHandler(this.COMEventTimer_Tick); // // toolStrip1 // this.toolStrip1.AutoSize = false; this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripDropDownButton1, this.toolStripSeparator1, this.statusLabel}); this.toolStrip1.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow; this.toolStrip1.Location = new System.Drawing.Point(0, 0); this.toolStrip1.Name = "toolStrip1"; this.toolStrip1.Size = new System.Drawing.Size(292, 20); this.toolStrip1.TabIndex = 2; this.toolStrip1.Text = "toolStrip1"; // // toolStripDropDownButton1 // this.toolStripDropDownButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.toolStripDropDownButton1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.testToolStripMenuItem, this.resumeToolStripMenuItem, this.saveStateToolStripMenuItem, this.aCPIPowerDownToolStripMenuItem, this.resetToolStripMenuItem, this.shutdownToolStripMenuItem}); this.toolStripDropDownButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripDropDownButton1.Image"))); this.toolStripDropDownButton1.ImageTransparentColor = System.Drawing.Color.Magenta; this.toolStripDropDownButton1.Name = "toolStripDropDownButton1"; this.toolStripDropDownButton1.Size = new System.Drawing.Size(59, 17); this.toolStripDropDownButton1.Text = "Machine"; // // testToolStripMenuItem // this.testToolStripMenuItem.Name = "testToolStripMenuItem"; this.testToolStripMenuItem.Size = new System.Drawing.Size(171, 22); this.testToolStripMenuItem.Text = "Pause"; this.testToolStripMenuItem.Click += new System.EventHandler(this.pauseToolStripMenuItem_Click); // // resumeToolStripMenuItem // this.resumeToolStripMenuItem.Name = "resumeToolStripMenuItem"; this.resumeToolStripMenuItem.Size = new System.Drawing.Size(171, 22); this.resumeToolStripMenuItem.Text = "Resume"; this.resumeToolStripMenuItem.Click += new System.EventHandler(this.resumeToolStripMenuItem_Click); // // saveStateToolStripMenuItem // this.saveStateToolStripMenuItem.Name = "saveStateToolStripMenuItem"; this.saveStateToolStripMenuItem.Size = new System.Drawing.Size(171, 22); this.saveStateToolStripMenuItem.Text = "Save state"; this.saveStateToolStripMenuItem.Click += new System.EventHandler(this.savestateToolStripMenuItem_Click); // // aCPIPowerDownToolStripMenuItem // this.aCPIPowerDownToolStripMenuItem.Name = "aCPIPowerDownToolStripMenuItem"; this.aCPIPowerDownToolStripMenuItem.Size = new System.Drawing.Size(171, 22); this.aCPIPowerDownToolStripMenuItem.Text = "ACPI power down"; this.aCPIPowerDownToolStripMenuItem.Click += new System.EventHandler(this.aCPIPowerButtonToolStripMenuItem_Click); // // shutdownToolStripMenuItem // this.shutdownToolStripMenuItem.Name = "shutdownToolStripMenuItem"; this.shutdownToolStripMenuItem.Size = new System.Drawing.Size(171, 22); this.shutdownToolStripMenuItem.Text = "Shutdown"; this.shutdownToolStripMenuItem.Click += new System.EventHandler(this.powerdownToolStripMenuItem_Click); // // resetToolStripMenuItem // this.resetToolStripMenuItem.Name = "resetToolStripMenuItem"; this.resetToolStripMenuItem.Size = new System.Drawing.Size(171, 22); this.resetToolStripMenuItem.Text = "Reset"; this.resetToolStripMenuItem.Click += new System.EventHandler(this.resetToolStripMenuItem_Click); // // statusLabel // this.statusLabel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.statusLabel.Name = "statusLabel"; this.statusLabel.Size = new System.Drawing.Size(38, 13); this.statusLabel.Text = "Busy.."; this.statusLabel.Visible = false; // // toolStripSeparator1 // this.toolStripSeparator1.Name = "toolStripSeparator1"; this.toolStripSeparator1.Size = new System.Drawing.Size(6, 23); // // ProgressWatcher // this.ProgressWatcher.Tick += new System.EventHandler(this.ProgressWatcher_Tick); // // Display // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(292, 266); this.Controls.Add(this.DisplayBox); this.Controls.Add(this.toolStrip1); this.Name = "Display"; this.Text = "VirtualBox Virtual Machine Display"; this.Load += new System.EventHandler(this.Display_Load); this.KeyUp += new System.Windows.Forms.KeyEventHandler(this.Display_KeyUp); this.Resize += new System.EventHandler(this.Display_Resize); this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Display_KeyDown); ((System.ComponentModel.ISupportInitialize)(this.DisplayBox)).EndInit(); this.toolStrip1.ResumeLayout(false); this.toolStrip1.PerformLayout(); this.ResumeLayout(false); } #endregion private System.Windows.Forms.PictureBox DisplayBox; private System.Windows.Forms.Timer COMEventTimer; private System.Windows.Forms.ToolStrip toolStrip1; private System.Windows.Forms.ToolStripDropDownButton toolStripDropDownButton1; private System.Windows.Forms.ToolStripMenuItem testToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem resumeToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem saveStateToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem aCPIPowerDownToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem shutdownToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem resetToolStripMenuItem; private System.Windows.Forms.ToolStripSeparator toolStripSeparator1; private System.Windows.Forms.ToolStripLabel statusLabel; private System.Windows.Forms.Timer ProgressWatcher; } }