/* * Copyright (c) 2009 Craig Sutherland * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation * files (the "Software"), to deal in the Software without * restriction, including without limitation the rights to use, * copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following * conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR * OTHER DEALINGS IN THE SOFTWARE. */ namespace FastForward.Monitor { partial class BuildHistoryForm { /// /// 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.Windows.Forms.ToolStrip toolStrip1; System.Windows.Forms.SplitContainer splitContainer1; System.Windows.Forms.ColumnHeader columnHeader1; System.Windows.Forms.ColumnHeader columnHeader3; System.Windows.Forms.ColumnHeader columnHeader2; System.Windows.Forms.ImageList imageList1; System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(BuildHistoryForm)); System.Windows.Forms.Panel panel2; System.Windows.Forms.Panel panel1; System.Windows.Forms.Label label1; System.Windows.Forms.ToolStripButton refreshButton; System.Windows.Forms.ToolStripButton saveButton; System.Windows.Forms.ToolStripButton printButton; this.buildsList = new System.Windows.Forms.ListView(); this.viewBrowser = new System.Windows.Forms.WebBrowser(); this.activeView = new System.Windows.Forms.ComboBox(); this.statusStrip1 = new System.Windows.Forms.StatusStrip(); this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel(); this.toolStripContainer1 = new System.Windows.Forms.ToolStripContainer(); this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); toolStrip1 = new System.Windows.Forms.ToolStrip(); splitContainer1 = new System.Windows.Forms.SplitContainer(); columnHeader1 = new System.Windows.Forms.ColumnHeader(); columnHeader3 = new System.Windows.Forms.ColumnHeader(); columnHeader2 = new System.Windows.Forms.ColumnHeader(); imageList1 = new System.Windows.Forms.ImageList(this.components); panel2 = new System.Windows.Forms.Panel(); panel1 = new System.Windows.Forms.Panel(); label1 = new System.Windows.Forms.Label(); refreshButton = new System.Windows.Forms.ToolStripButton(); saveButton = new System.Windows.Forms.ToolStripButton(); printButton = new System.Windows.Forms.ToolStripButton(); toolStrip1.SuspendLayout(); splitContainer1.Panel1.SuspendLayout(); splitContainer1.Panel2.SuspendLayout(); splitContainer1.SuspendLayout(); panel2.SuspendLayout(); panel1.SuspendLayout(); this.statusStrip1.SuspendLayout(); this.toolStripContainer1.ContentPanel.SuspendLayout(); this.toolStripContainer1.TopToolStripPanel.SuspendLayout(); this.toolStripContainer1.SuspendLayout(); this.SuspendLayout(); // // toolStrip1 // toolStrip1.Dock = System.Windows.Forms.DockStyle.None; toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden; toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { refreshButton, this.toolStripSeparator1, saveButton, printButton}); toolStrip1.Location = new System.Drawing.Point(0, 0); toolStrip1.Name = "toolStrip1"; toolStrip1.Size = new System.Drawing.Size(545, 25); toolStrip1.Stretch = true; toolStrip1.TabIndex = 0; // // splitContainer1 // splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill; splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1; splitContainer1.Location = new System.Drawing.Point(0, 0); splitContainer1.Name = "splitContainer1"; // // splitContainer1.Panel1 // splitContainer1.Panel1.Controls.Add(this.buildsList); // // splitContainer1.Panel2 // splitContainer1.Panel2.Controls.Add(panel2); splitContainer1.Panel2.Controls.Add(panel1); splitContainer1.Size = new System.Drawing.Size(545, 348); splitContainer1.SplitterDistance = 194; splitContainer1.TabIndex = 0; // // buildsList // this.buildsList.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { columnHeader1, columnHeader3, columnHeader2}); this.buildsList.Dock = System.Windows.Forms.DockStyle.Fill; this.buildsList.FullRowSelect = true; this.buildsList.HideSelection = false; this.buildsList.LargeImageList = imageList1; this.buildsList.Location = new System.Drawing.Point(0, 0); this.buildsList.MultiSelect = false; this.buildsList.Name = "buildsList"; this.buildsList.Size = new System.Drawing.Size(194, 348); this.buildsList.SmallImageList = imageList1; this.buildsList.TabIndex = 0; this.buildsList.UseCompatibleStateImageBehavior = false; this.buildsList.View = System.Windows.Forms.View.Details; this.buildsList.ItemSelectionChanged += new System.Windows.Forms.ListViewItemSelectionChangedEventHandler(this.buildsList_ItemSelectionChanged); // // columnHeader1 // columnHeader1.Text = "Date"; columnHeader1.Width = 104; // // columnHeader3 // columnHeader3.Text = "Label"; // // columnHeader2 // columnHeader2.Text = "Status"; // // imageList1 // imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream"))); imageList1.TransparentColor = System.Drawing.Color.Transparent; imageList1.Images.SetKeyName(0, "Failure"); imageList1.Images.SetKeyName(1, "Success"); // // panel2 // panel2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; panel2.Controls.Add(this.viewBrowser); panel2.Dock = System.Windows.Forms.DockStyle.Fill; panel2.Location = new System.Drawing.Point(0, 37); panel2.Name = "panel2"; panel2.Size = new System.Drawing.Size(347, 311); panel2.TabIndex = 1; // // viewBrowser // this.viewBrowser.AllowNavigation = false; this.viewBrowser.AllowWebBrowserDrop = false; this.viewBrowser.Dock = System.Windows.Forms.DockStyle.Fill; this.viewBrowser.IsWebBrowserContextMenuEnabled = false; this.viewBrowser.Location = new System.Drawing.Point(0, 0); this.viewBrowser.MinimumSize = new System.Drawing.Size(20, 20); this.viewBrowser.Name = "viewBrowser"; this.viewBrowser.ScriptErrorsSuppressed = true; this.viewBrowser.Size = new System.Drawing.Size(343, 307); this.viewBrowser.TabIndex = 2; this.viewBrowser.WebBrowserShortcutsEnabled = false; this.viewBrowser.DocumentCompleted += new System.Windows.Forms.WebBrowserDocumentCompletedEventHandler(this.viewBrowser_DocumentCompleted); // // panel1 // panel1.Controls.Add(this.activeView); panel1.Controls.Add(label1); panel1.Dock = System.Windows.Forms.DockStyle.Top; panel1.Location = new System.Drawing.Point(0, 0); panel1.Name = "panel1"; panel1.Size = new System.Drawing.Size(347, 37); panel1.TabIndex = 0; // // activeView // this.activeView.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.activeView.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.activeView.FormattingEnabled = true; this.activeView.Location = new System.Drawing.Point(42, 8); this.activeView.Name = "activeView"; this.activeView.Size = new System.Drawing.Size(293, 21); this.activeView.TabIndex = 1; // // label1 // label1.AutoSize = true; label1.Location = new System.Drawing.Point(3, 11); label1.Name = "label1"; label1.Size = new System.Drawing.Size(33, 13); label1.TabIndex = 0; label1.Text = "View:"; // // statusStrip1 // this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripStatusLabel1}); this.statusStrip1.Location = new System.Drawing.Point(0, 373); this.statusStrip1.Name = "statusStrip1"; this.statusStrip1.Size = new System.Drawing.Size(545, 22); this.statusStrip1.TabIndex = 0; this.statusStrip1.Text = "statusStrip1"; // // toolStripStatusLabel1 // this.toolStripStatusLabel1.Name = "toolStripStatusLabel1"; this.toolStripStatusLabel1.Size = new System.Drawing.Size(530, 17); this.toolStripStatusLabel1.Spring = true; this.toolStripStatusLabel1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // toolStripContainer1 // // // toolStripContainer1.ContentPanel // this.toolStripContainer1.ContentPanel.Controls.Add(splitContainer1); this.toolStripContainer1.ContentPanel.Size = new System.Drawing.Size(545, 348); this.toolStripContainer1.Dock = System.Windows.Forms.DockStyle.Fill; this.toolStripContainer1.Location = new System.Drawing.Point(0, 0); this.toolStripContainer1.Name = "toolStripContainer1"; this.toolStripContainer1.Size = new System.Drawing.Size(545, 373); this.toolStripContainer1.TabIndex = 1; this.toolStripContainer1.Text = "toolStripContainer1"; // // toolStripContainer1.TopToolStripPanel // this.toolStripContainer1.TopToolStripPanel.Controls.Add(toolStrip1); // // toolStripSeparator1 // this.toolStripSeparator1.Name = "toolStripSeparator1"; this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25); // // refreshButton // refreshButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; refreshButton.Image = global::FastForward.Monitor.Properties.Resources.reload; refreshButton.ImageTransparentColor = System.Drawing.Color.Magenta; refreshButton.Name = "refreshButton"; refreshButton.Size = new System.Drawing.Size(23, 22); refreshButton.Text = "Refresh"; refreshButton.Click += new System.EventHandler(this.refreshButton_Click); // // saveButton // saveButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; saveButton.Image = global::FastForward.Monitor.Properties.Resources.disk; saveButton.ImageTransparentColor = System.Drawing.Color.Magenta; saveButton.Name = "saveButton"; saveButton.Size = new System.Drawing.Size(23, 22); saveButton.Text = "Save the current report"; saveButton.Click += new System.EventHandler(this.saveButton_Click); // // printButton // printButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; printButton.Image = global::FastForward.Monitor.Properties.Resources.printer; printButton.ImageTransparentColor = System.Drawing.Color.Magenta; printButton.Name = "printButton"; printButton.Size = new System.Drawing.Size(23, 22); printButton.Text = "Print the current report"; printButton.Click += new System.EventHandler(this.printButton_Click); // // BuildHistoryForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(545, 395); this.Controls.Add(this.toolStripContainer1); this.Controls.Add(this.statusStrip1); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow; this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Name = "BuildHistoryForm"; toolStrip1.ResumeLayout(false); toolStrip1.PerformLayout(); splitContainer1.Panel1.ResumeLayout(false); splitContainer1.Panel2.ResumeLayout(false); splitContainer1.ResumeLayout(false); panel2.ResumeLayout(false); panel1.ResumeLayout(false); panel1.PerformLayout(); this.statusStrip1.ResumeLayout(false); this.statusStrip1.PerformLayout(); this.toolStripContainer1.ContentPanel.ResumeLayout(false); this.toolStripContainer1.TopToolStripPanel.ResumeLayout(false); this.toolStripContainer1.TopToolStripPanel.PerformLayout(); this.toolStripContainer1.ResumeLayout(false); this.toolStripContainer1.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.StatusStrip statusStrip1; private System.Windows.Forms.ToolStripContainer toolStripContainer1; private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel1; private System.Windows.Forms.ListView buildsList; private System.Windows.Forms.ComboBox activeView; private System.Windows.Forms.WebBrowser viewBrowser; private System.Windows.Forms.ToolStripSeparator toolStripSeparator1; } }