/* * 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 WebPageForm { /// /// 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() { System.Windows.Forms.StatusStrip statusStrip1; System.Windows.Forms.ToolStrip toolStrip1; System.Windows.Forms.ToolStripButton refreshButton; System.Windows.Forms.ToolStripButton externalBrowserButton; System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(WebPageForm)); this.statusLabel = new System.Windows.Forms.ToolStripStatusLabel(); this.seperator = new System.Windows.Forms.ToolStripSeparator(); this.toolStripContainer1 = new System.Windows.Forms.ToolStripContainer(); this.pageBrowser = new System.Windows.Forms.WebBrowser(); this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); this.previousButton = new System.Windows.Forms.ToolStripButton(); this.nextButton = new System.Windows.Forms.ToolStripButton(); statusStrip1 = new System.Windows.Forms.StatusStrip(); toolStrip1 = new System.Windows.Forms.ToolStrip(); refreshButton = new System.Windows.Forms.ToolStripButton(); externalBrowserButton = new System.Windows.Forms.ToolStripButton(); statusStrip1.SuspendLayout(); toolStrip1.SuspendLayout(); this.toolStripContainer1.ContentPanel.SuspendLayout(); this.toolStripContainer1.TopToolStripPanel.SuspendLayout(); this.toolStripContainer1.SuspendLayout(); this.SuspendLayout(); // // statusStrip1 // statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.statusLabel}); statusStrip1.Location = new System.Drawing.Point(0, 356); statusStrip1.Name = "statusStrip1"; statusStrip1.Size = new System.Drawing.Size(586, 22); statusStrip1.TabIndex = 0; // // statusLabel // this.statusLabel.Name = "statusLabel"; this.statusLabel.Size = new System.Drawing.Size(571, 17); this.statusLabel.Spring = true; this.statusLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // toolStrip1 // toolStrip1.Dock = System.Windows.Forms.DockStyle.None; toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden; toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.previousButton, this.nextButton, this.seperator, refreshButton, this.toolStripSeparator1, externalBrowserButton}); toolStrip1.Location = new System.Drawing.Point(0, 0); toolStrip1.Name = "toolStrip1"; toolStrip1.Size = new System.Drawing.Size(586, 25); toolStrip1.Stretch = true; toolStrip1.TabIndex = 0; // // seperator // this.seperator.Name = "seperator"; this.seperator.Size = new System.Drawing.Size(6, 25); // // toolStripContainer1 // // // toolStripContainer1.ContentPanel // this.toolStripContainer1.ContentPanel.Controls.Add(this.pageBrowser); this.toolStripContainer1.ContentPanel.Size = new System.Drawing.Size(586, 331); 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(586, 356); this.toolStripContainer1.TabIndex = 0; this.toolStripContainer1.Text = "toolStripContainer1"; // // toolStripContainer1.TopToolStripPanel // this.toolStripContainer1.TopToolStripPanel.Controls.Add(toolStrip1); // // pageBrowser // this.pageBrowser.AllowWebBrowserDrop = false; this.pageBrowser.Dock = System.Windows.Forms.DockStyle.Fill; this.pageBrowser.Location = new System.Drawing.Point(0, 0); this.pageBrowser.MinimumSize = new System.Drawing.Size(20, 20); this.pageBrowser.Name = "pageBrowser"; this.pageBrowser.ScriptErrorsSuppressed = true; this.pageBrowser.Size = new System.Drawing.Size(586, 331); this.pageBrowser.TabIndex = 0; this.pageBrowser.Navigating += new System.Windows.Forms.WebBrowserNavigatingEventHandler(this.pageBrowser_Navigating); this.pageBrowser.Navigated += new System.Windows.Forms.WebBrowserNavigatedEventHandler(this.pageBrowser_Navigated); // // toolStripSeparator1 // this.toolStripSeparator1.Name = "toolStripSeparator1"; this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25); // // previousButton // this.previousButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.previousButton.Enabled = false; this.previousButton.Image = global::FastForward.Monitor.Properties.Resources.resultset_previous; this.previousButton.ImageTransparentColor = System.Drawing.Color.Magenta; this.previousButton.Name = "previousButton"; this.previousButton.Size = new System.Drawing.Size(23, 22); this.previousButton.Text = "Previous"; this.previousButton.Click += new System.EventHandler(this.previousButton_Click); // // nextButton // this.nextButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.nextButton.Enabled = false; this.nextButton.Image = global::FastForward.Monitor.Properties.Resources.resultset_next; this.nextButton.ImageTransparentColor = System.Drawing.Color.Magenta; this.nextButton.Name = "nextButton"; this.nextButton.Size = new System.Drawing.Size(23, 22); this.nextButton.Text = "Next"; this.nextButton.Click += new System.EventHandler(this.nextButton_Click); // // 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); // // externalBrowserButton // externalBrowserButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; externalBrowserButton.Image = global::FastForward.Monitor.Properties.Resources.world_go; externalBrowserButton.ImageTransparentColor = System.Drawing.Color.Magenta; externalBrowserButton.Name = "externalBrowserButton"; externalBrowserButton.Size = new System.Drawing.Size(23, 22); externalBrowserButton.Text = "Open in external browser"; externalBrowserButton.Click += new System.EventHandler(this.externalBrowserButton_Click); // // WebPageForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(586, 378); this.Controls.Add(this.toolStripContainer1); this.Controls.Add(statusStrip1); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow; this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Name = "WebPageForm"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "Web View: "; statusStrip1.ResumeLayout(false); statusStrip1.PerformLayout(); toolStrip1.ResumeLayout(false); toolStrip1.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.ToolStripContainer toolStripContainer1; private System.Windows.Forms.WebBrowser pageBrowser; private System.Windows.Forms.ToolStripSeparator seperator; private System.Windows.Forms.ToolStripButton previousButton; private System.Windows.Forms.ToolStripButton nextButton; private System.Windows.Forms.ToolStripStatusLabel statusLabel; private System.Windows.Forms.ToolStripSeparator toolStripSeparator1; } }