/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.Windows.Forms.MenuStrip menuStrip; System.Windows.Forms.SplitContainer splitContainer1; System.Windows.Forms.SplitContainer splitContainer2; System.Windows.Forms.StatusStrip statusStrip1; System.Windows.Forms.Timer timer; System.Windows.Forms.ToolStripContainer toolStripContainer1; this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.openToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.closeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.searchBox = new System.Windows.Forms.TextBox(); this.hitsBox = new System.Windows.Forms.ListBox(); this.webBrowser = new System.Windows.Forms.WebBrowser(); this.searchStatusLabel = new System.Windows.Forms.ToolStripStatusLabel(); menuStrip = new System.Windows.Forms.MenuStrip(); splitContainer1 = new System.Windows.Forms.SplitContainer(); splitContainer2 = new System.Windows.Forms.SplitContainer(); statusStrip1 = new System.Windows.Forms.StatusStrip(); timer = new System.Windows.Forms.Timer(this.components); toolStripContainer1 = new System.Windows.Forms.ToolStripContainer(); menuStrip.SuspendLayout(); splitContainer1.Panel1.SuspendLayout(); splitContainer1.Panel2.SuspendLayout(); splitContainer1.SuspendLayout(); splitContainer2.Panel1.SuspendLayout(); splitContainer2.Panel2.SuspendLayout(); splitContainer2.SuspendLayout(); statusStrip1.SuspendLayout(); toolStripContainer1.BottomToolStripPanel.SuspendLayout(); toolStripContainer1.ContentPanel.SuspendLayout(); toolStripContainer1.SuspendLayout(); this.SuspendLayout(); // // menuStrip // menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.fileToolStripMenuItem, this.helpToolStripMenuItem}); menuStrip.Location = new System.Drawing.Point(0, 0); menuStrip.Name = "menuStrip"; menuStrip.Size = new System.Drawing.Size(562, 24); menuStrip.TabIndex = 0; menuStrip.Text = "menuStrip"; // // fileToolStripMenuItem // this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.openToolStripMenuItem, this.closeToolStripMenuItem, this.toolStripSeparator1, this.exitToolStripMenuItem}); this.fileToolStripMenuItem.Name = "fileToolStripMenuItem"; this.fileToolStripMenuItem.Size = new System.Drawing.Size(35, 20); this.fileToolStripMenuItem.Text = "&File"; // // openToolStripMenuItem // this.openToolStripMenuItem.Name = "openToolStripMenuItem"; this.openToolStripMenuItem.Size = new System.Drawing.Size(100, 22); this.openToolStripMenuItem.Text = "&Open"; this.openToolStripMenuItem.Click += new System.EventHandler(this.openToolStripMenuItem_Click); // // closeToolStripMenuItem // this.closeToolStripMenuItem.Name = "closeToolStripMenuItem"; this.closeToolStripMenuItem.Size = new System.Drawing.Size(100, 22); this.closeToolStripMenuItem.Text = "&Close"; // // toolStripSeparator1 // this.toolStripSeparator1.Name = "toolStripSeparator1"; this.toolStripSeparator1.Size = new System.Drawing.Size(97, 6); // // exitToolStripMenuItem // this.exitToolStripMenuItem.Name = "exitToolStripMenuItem"; this.exitToolStripMenuItem.Size = new System.Drawing.Size(100, 22); this.exitToolStripMenuItem.Text = "E&xit"; this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click); // // helpToolStripMenuItem // this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.aboutToolStripMenuItem}); this.helpToolStripMenuItem.Name = "helpToolStripMenuItem"; this.helpToolStripMenuItem.Size = new System.Drawing.Size(40, 20); this.helpToolStripMenuItem.Text = "&Help"; // // aboutToolStripMenuItem // this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem"; this.aboutToolStripMenuItem.Size = new System.Drawing.Size(103, 22); this.aboutToolStripMenuItem.Text = "&About"; this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click); // // splitContainer1 // splitContainer1.DataBindings.Add(new System.Windows.Forms.Binding("SplitterDistance", global::BzReader.Properties.Settings.Default, "SplitterDistance", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged)); 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(splitContainer2); splitContainer1.Panel1MinSize = 130; // // splitContainer1.Panel2 // splitContainer1.Panel2.Controls.Add(this.webBrowser); splitContainer1.Size = new System.Drawing.Size(562, 405); splitContainer1.SplitterDistance = global::BzReader.Properties.Settings.Default.SplitterDistance; splitContainer1.TabIndex = 1; // // splitContainer2 // splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill; splitContainer2.FixedPanel = System.Windows.Forms.FixedPanel.Panel1; splitContainer2.IsSplitterFixed = true; splitContainer2.Location = new System.Drawing.Point(0, 0); splitContainer2.Name = "splitContainer2"; splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal; // // splitContainer2.Panel1 // splitContainer2.Panel1.Controls.Add(this.searchBox); splitContainer2.Panel1MinSize = 20; // // splitContainer2.Panel2 // splitContainer2.Panel2.Controls.Add(this.hitsBox); splitContainer2.Size = new System.Drawing.Size(130, 405); splitContainer2.SplitterDistance = 20; splitContainer2.TabIndex = 0; // // searchBox // this.searchBox.Dock = System.Windows.Forms.DockStyle.Fill; this.searchBox.Location = new System.Drawing.Point(0, 0); this.searchBox.Name = "searchBox"; this.searchBox.Size = new System.Drawing.Size(130, 20); this.searchBox.TabIndex = 0; this.searchBox.TextChanged += new System.EventHandler(this.searchBox_TextChanged); this.searchBox.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.searchBox_PreviewKeyDown); // // hitsBox // this.hitsBox.Dock = System.Windows.Forms.DockStyle.Fill; this.hitsBox.FormattingEnabled = true; this.hitsBox.Location = new System.Drawing.Point(0, 0); this.hitsBox.Name = "hitsBox"; this.hitsBox.Size = new System.Drawing.Size(130, 381); this.hitsBox.TabIndex = 0; this.hitsBox.SelectedValueChanged += new System.EventHandler(this.hitsBox_SelectedValueChanged); // // webBrowser // this.webBrowser.Dock = System.Windows.Forms.DockStyle.Fill; this.webBrowser.Location = new System.Drawing.Point(0, 0); this.webBrowser.MinimumSize = new System.Drawing.Size(20, 20); this.webBrowser.Name = "webBrowser"; this.webBrowser.Size = new System.Drawing.Size(428, 405); this.webBrowser.TabIndex = 0; // // statusStrip1 // statusStrip1.Dock = System.Windows.Forms.DockStyle.None; statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.searchStatusLabel}); statusStrip1.Location = new System.Drawing.Point(0, 0); statusStrip1.Name = "statusStrip1"; statusStrip1.Size = new System.Drawing.Size(562, 22); statusStrip1.TabIndex = 2; statusStrip1.Text = "statusStrip"; // // searchStatusLabel // this.searchStatusLabel.Name = "searchStatusLabel"; this.searchStatusLabel.Size = new System.Drawing.Size(0, 17); // // timer // timer.Enabled = true; timer.Tick += new System.EventHandler(this.timer_Tick); // // toolStripContainer1 // // // toolStripContainer1.BottomToolStripPanel // toolStripContainer1.BottomToolStripPanel.Controls.Add(statusStrip1); // // toolStripContainer1.ContentPanel // toolStripContainer1.ContentPanel.Controls.Add(splitContainer1); toolStripContainer1.ContentPanel.Size = new System.Drawing.Size(562, 405); toolStripContainer1.Dock = System.Windows.Forms.DockStyle.Fill; toolStripContainer1.LeftToolStripPanelVisible = false; toolStripContainer1.Location = new System.Drawing.Point(0, 24); toolStripContainer1.Name = "toolStripContainer1"; toolStripContainer1.RightToolStripPanelVisible = false; toolStripContainer1.Size = new System.Drawing.Size(562, 427); toolStripContainer1.TabIndex = 3; toolStripContainer1.Text = "toolStripContainer1"; toolStripContainer1.TopToolStripPanelVisible = false; // // BrowseForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(562, 451); this.Controls.Add(toolStripContainer1); this.Controls.Add(menuStrip); this.MainMenuStrip = menuStrip; this.Name = "BrowseForm"; this.StartPosition = System.Windows.Forms.FormStartPosition.Manual; this.Text = "BzReader"; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.BrowseForm_FormClosing); menuStrip.ResumeLayout(false); menuStrip.PerformLayout(); splitContainer1.Panel1.ResumeLayout(false); splitContainer1.Panel2.ResumeLayout(false); splitContainer1.ResumeLayout(false); splitContainer2.Panel1.ResumeLayout(false); splitContainer2.Panel1.PerformLayout(); splitContainer2.Panel2.ResumeLayout(false); splitContainer2.ResumeLayout(false); statusStrip1.ResumeLayout(false); statusStrip1.PerformLayout(); toolStripContainer1.BottomToolStripPanel.ResumeLayout(false); toolStripContainer1.BottomToolStripPanel.PerformLayout(); toolStripContainer1.ContentPanel.ResumeLayout(false); toolStripContainer1.ResumeLayout(false); toolStripContainer1.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.Windows.Forms.ToolStrip commands; System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CurrentStatusWindow)); System.Windows.Forms.StatusStrip statusBar; System.Windows.Forms.ImageList explorerImages; this.refreshCommand = new System.Windows.Forms.ToolStripButton(); this.currentStatus = new System.Windows.Forms.ToolStripStatusLabel(); this.splitContainer1 = new System.Windows.Forms.SplitContainer(); this.statusExplorer = new System.Windows.Forms.TreeView(); this.statusDetails = new System.Windows.Forms.PropertyGrid(); this.statusProgress = new System.Windows.Forms.ProgressBar(); this.displayWorker = new System.ComponentModel.BackgroundWorker(); this.refreshTimer = new System.Windows.Forms.Timer(this.components); commands = new System.Windows.Forms.ToolStrip(); statusBar = new System.Windows.Forms.StatusStrip(); explorerImages = new System.Windows.Forms.ImageList(this.components); commands.SuspendLayout(); statusBar.SuspendLayout(); this.splitContainer1.Panel1.SuspendLayout(); this.splitContainer1.Panel2.SuspendLayout(); this.splitContainer1.SuspendLayout(); this.SuspendLayout(); // // commands // commands.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden; commands.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.refreshCommand}); commands.Location = new System.Drawing.Point(0, 0); commands.Name = "commands"; commands.Size = new System.Drawing.Size(533, 25); commands.TabIndex = 0; commands.Text = "toolStrip1"; // // refreshCommand // this.refreshCommand.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.refreshCommand.Image = ((System.Drawing.Image)(resources.GetObject("refreshCommand.Image"))); this.refreshCommand.ImageTransparentColor = System.Drawing.Color.Magenta; this.refreshCommand.Name = "refreshCommand"; this.refreshCommand.Size = new System.Drawing.Size(23, 22); this.refreshCommand.Text = "Refresh"; this.refreshCommand.Click += new System.EventHandler(this.refreshCommand_Click); // // statusBar // statusBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.currentStatus}); statusBar.Location = new System.Drawing.Point(0, 366); statusBar.Name = "statusBar"; statusBar.Size = new System.Drawing.Size(533, 22); statusBar.TabIndex = 1; statusBar.Text = "statusStrip1"; // // currentStatus // this.currentStatus.Name = "currentStatus"; this.currentStatus.Size = new System.Drawing.Size(518, 17); this.currentStatus.Spring = true; this.currentStatus.Text = "Loading status..."; this.currentStatus.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // explorerImages // explorerImages.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("explorerImages.ImageStream"))); explorerImages.TransparentColor = System.Drawing.Color.Transparent; explorerImages.Images.SetKeyName(0, "Unknown"); explorerImages.Images.SetKeyName(1, "CompletedSuccess"); explorerImages.Images.SetKeyName(2, "CompletedFailed"); explorerImages.Images.SetKeyName(3, "Pending"); explorerImages.Images.SetKeyName(4, "Cancelled"); explorerImages.Images.SetKeyName(5, "Running"); // // splitContainer1 // this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill; this.splitContainer1.Location = new System.Drawing.Point(0, 25); this.splitContainer1.Name = "splitContainer1"; // // splitContainer1.Panel1 // this.splitContainer1.Panel1.Controls.Add(this.statusExplorer); // // splitContainer1.Panel2 // this.splitContainer1.Panel2.Controls.Add(this.statusDetails); this.splitContainer1.Panel2.Controls.Add(this.statusProgress); this.splitContainer1.Size = new System.Drawing.Size(533, 341); this.splitContainer1.SplitterDistance = 177; this.splitContainer1.TabIndex = 2; // // statusExplorer // this.statusExplorer.Dock = System.Windows.Forms.DockStyle.Fill; this.statusExplorer.ImageKey = "Unknown"; this.statusExplorer.ImageList = explorerImages; this.statusExplorer.Location = new System.Drawing.Point(0, 0); this.statusExplorer.Name = "statusExplorer"; this.statusExplorer.SelectedImageIndex = 0; this.statusExplorer.Size = new System.Drawing.Size(177, 341); this.statusExplorer.TabIndex = 0; this.statusExplorer.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.statusExplorer_AfterSelect); // // statusDetails // this.statusDetails.CommandsVisibleIfAvailable = false; this.statusDetails.Dock = System.Windows.Forms.DockStyle.Fill; this.statusDetails.Location = new System.Drawing.Point(0, 23); this.statusDetails.Name = "statusDetails"; this.statusDetails.PropertySort = System.Windows.Forms.PropertySort.Alphabetical; this.statusDetails.Size = new System.Drawing.Size(352, 318); this.statusDetails.TabIndex = 0; this.statusDetails.ToolbarVisible = false; // // statusProgress // this.statusProgress.Dock = System.Windows.Forms.DockStyle.Top; this.statusProgress.Location = new System.Drawing.Point(0, 0); this.statusProgress.Name = "statusProgress"; this.statusProgress.Size = new System.Drawing.Size(352, 23); this.statusProgress.Style = System.Windows.Forms.ProgressBarStyle.Continuous; this.statusProgress.TabIndex = 1; // // displayWorker // this.displayWorker.DoWork += new System.ComponentModel.DoWorkEventHandler(this.displayWorker_DoWork); this.displayWorker.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.displayWorker_RunWorkerCompleted); // // refreshTimer // this.refreshTimer.Interval = 5000; this.refreshTimer.Tick += new System.EventHandler(this.refreshTimer_Tick); // // CurrentStatusWindow // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(533, 388); this.Controls.Add(this.splitContainer1); this.Controls.Add(statusBar); this.Controls.Add(commands); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow; this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Name = "CurrentStatusWindow"; this.Text = "Current Status for ..."; commands.ResumeLayout(false); commands.PerformLayout(); statusBar.ResumeLayout(false); statusBar.PerformLayout(); this.splitContainer1.Panel1.ResumeLayout(false); this.splitContainer1.Panel2.ResumeLayout(false); this.splitContainer1.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem; System.Windows.Forms.ToolStripSeparator toolStripMenuItem1; System.Windows.Forms.ToolStripSeparator toolStripMenuItem2; System.Windows.Forms.SplitContainer splitContainer1; System.Windows.Forms.StatusStrip statusStrip1; System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel1; System.Windows.Forms.SplitContainer splitContainer2; System.Windows.Forms.ToolStripSeparator toolStripSeparator1; System.Windows.Forms.MenuStrip menuStrip1; this.newToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.openToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.saveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.saveAsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.canvas = new TouhouSpring.Particle.Canvas(); this.toolStripStatusLabelNumParticles = new System.Windows.Forms.ToolStripStatusLabel(); this.toolStripStatusLabelFps = new System.Windows.Forms.ToolStripStatusLabel(); this.toolStripStatusColor = new System.Windows.Forms.ToolStripStatusLabel(); this.toolStrip1 = new System.Windows.Forms.ToolStrip(); this.toolStripButtonPlayPause = new System.Windows.Forms.ToolStripButton(); this.toolStripButtonRestart = new System.Windows.Forms.ToolStripButton(); this.treeView = new System.Windows.Forms.TreeView(); this.toolStrip = new System.Windows.Forms.ToolStrip(); this.toolStripButtonNewEffect = new System.Windows.Forms.ToolStripButton(); this.toolStripDropDownButtonNewModifier = new System.Windows.Forms.ToolStripDropDownButton(); this.toolStripButtonDelete = new System.Windows.Forms.ToolStripButton(); this.toolStripButtonMoveUp = new System.Windows.Forms.ToolStripButton(); this.toolStripButtonMoveDown = new System.Windows.Forms.ToolStripButton(); this.propertyGrid = new System.Windows.Forms.PropertyGrid(); this.timerFps = new System.Windows.Forms.Timer(this.components); this.colorDialog = new System.Windows.Forms.ColorDialog(); this.saveFileDialog = new System.Windows.Forms.SaveFileDialog(); this.openFileDialog = new System.Windows.Forms.OpenFileDialog(); fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator(); toolStripMenuItem2 = new System.Windows.Forms.ToolStripSeparator(); splitContainer1 = new System.Windows.Forms.SplitContainer(); statusStrip1 = new System.Windows.Forms.StatusStrip(); toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel(); splitContainer2 = new System.Windows.Forms.SplitContainer(); toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); menuStrip1 = new System.Windows.Forms.MenuStrip(); ((System.ComponentModel.ISupportInitialize)(splitContainer1)).BeginInit(); splitContainer1.Panel1.SuspendLayout(); splitContainer1.Panel2.SuspendLayout(); splitContainer1.SuspendLayout(); statusStrip1.SuspendLayout(); this.toolStrip1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(splitContainer2)).BeginInit(); splitContainer2.Panel1.SuspendLayout(); splitContainer2.Panel2.SuspendLayout(); splitContainer2.SuspendLayout(); this.toolStrip.SuspendLayout(); menuStrip1.SuspendLayout(); this.SuspendLayout(); // // fileToolStripMenuItem // fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.newToolStripMenuItem, this.openToolStripMenuItem, toolStripMenuItem1, this.saveToolStripMenuItem, this.saveAsToolStripMenuItem, toolStripMenuItem2, this.exitToolStripMenuItem}); fileToolStripMenuItem.Name = "fileToolStripMenuItem"; fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20); fileToolStripMenuItem.Text = "&File"; // // newToolStripMenuItem // this.newToolStripMenuItem.Name = "newToolStripMenuItem"; this.newToolStripMenuItem.Size = new System.Drawing.Size(114, 22); this.newToolStripMenuItem.Text = "&New"; this.newToolStripMenuItem.Click += new System.EventHandler(this.newToolStripMenuItem_Click); // // openToolStripMenuItem // this.openToolStripMenuItem.Name = "openToolStripMenuItem"; this.openToolStripMenuItem.Size = new System.Drawing.Size(114, 22); this.openToolStripMenuItem.Text = "&Open"; this.openToolStripMenuItem.Click += new System.EventHandler(this.openToolStripMenuItem_Click); // // toolStripMenuItem1 // toolStripMenuItem1.Name = "toolStripMenuItem1"; toolStripMenuItem1.Size = new System.Drawing.Size(111, 6); // // saveToolStripMenuItem // this.saveToolStripMenuItem.Enabled = false; this.saveToolStripMenuItem.Name = "saveToolStripMenuItem"; this.saveToolStripMenuItem.Size = new System.Drawing.Size(114, 22); this.saveToolStripMenuItem.Text = "&Save"; this.saveToolStripMenuItem.Click += new System.EventHandler(this.saveToolStripMenuItem_Click); // // saveAsToolStripMenuItem // this.saveAsToolStripMenuItem.Enabled = false; this.saveAsToolStripMenuItem.Name = "saveAsToolStripMenuItem"; this.saveAsToolStripMenuItem.Size = new System.Drawing.Size(114, 22); this.saveAsToolStripMenuItem.Text = "Save &As"; // // toolStripMenuItem2 // toolStripMenuItem2.Name = "toolStripMenuItem2"; toolStripMenuItem2.Size = new System.Drawing.Size(111, 6); // // exitToolStripMenuItem // this.exitToolStripMenuItem.Name = "exitToolStripMenuItem"; this.exitToolStripMenuItem.Size = new System.Drawing.Size(114, 22); this.exitToolStripMenuItem.Text = "E&xit"; this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click); // // splitContainer1 // splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill; splitContainer1.Location = new System.Drawing.Point(0, 24); splitContainer1.Name = "splitContainer1"; // // splitContainer1.Panel1 // splitContainer1.Panel1.Controls.Add(this.canvas); splitContainer1.Panel1.Controls.Add(statusStrip1); splitContainer1.Panel1.Controls.Add(this.toolStrip1); // // splitContainer1.Panel2 // splitContainer1.Panel2.Controls.Add(splitContainer2); splitContainer1.Size = new System.Drawing.Size(716, 464); splitContainer1.SplitterDistance = 510; splitContainer1.TabIndex = 1; // // canvas // this.canvas.ClearColor = new Microsoft.Xna.Framework.Color(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); this.canvas.Dock = System.Windows.Forms.DockStyle.Fill; this.canvas.GridColor = new Microsoft.Xna.Framework.Color(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); this.canvas.KeepUpdating = false; this.canvas.Location = new System.Drawing.Point(0, 25); this.canvas.Name = "canvas"; this.canvas.Size = new System.Drawing.Size(510, 417); this.canvas.SystemInstance = null; this.canvas.TabIndex = 0; this.canvas.Text = "canvas1"; // // statusStrip1 // statusStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Visible; statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripStatusLabelNumParticles, this.toolStripStatusLabelFps, toolStripStatusLabel1, this.toolStripStatusColor}); statusStrip1.Location = new System.Drawing.Point(0, 442); statusStrip1.Name = "statusStrip1"; statusStrip1.Size = new System.Drawing.Size(510, 22); statusStrip1.SizingGrip = false; statusStrip1.TabIndex = 1; statusStrip1.Text = "statusStrip1"; // // toolStripStatusLabelNumParticles // this.toolStripStatusLabelNumParticles.Name = "toolStripStatusLabelNumParticles"; this.toolStripStatusLabelNumParticles.Size = new System.Drawing.Size(76, 17); this.toolStripStatusLabelNumParticles.Text = "Nb Particles :"; // // toolStripStatusLabelFps // this.toolStripStatusLabelFps.Name = "toolStripStatusLabelFps"; this.toolStripStatusLabelFps.Size = new System.Drawing.Size(29, 17); this.toolStripStatusLabelFps.Text = "FPS:"; // // toolStripStatusLabel1 // toolStripStatusLabel1.Name = "toolStripStatusLabel1"; toolStripStatusLabel1.Size = new System.Drawing.Size(74, 17); toolStripStatusLabel1.Text = "Background:"; // // toolStripStatusColor // this.toolStripStatusColor.BackColor = System.Drawing.Color.Black; this.toolStripStatusColor.Name = "toolStripStatusColor"; this.toolStripStatusColor.Size = new System.Drawing.Size(19, 17); this.toolStripStatusColor.Text = " "; this.toolStripStatusColor.Click += new System.EventHandler(this.toolStripStatusColor_Click); // // toolStrip1 // this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripButtonPlayPause, this.toolStripButtonRestart}); this.toolStrip1.Location = new System.Drawing.Point(0, 0); this.toolStrip1.Name = "toolStrip1"; this.toolStrip1.Size = new System.Drawing.Size(510, 25); this.toolStrip1.TabIndex = 2; this.toolStrip1.Text = "toolStrip1"; // // toolStripButtonPlayPause // this.toolStripButtonPlayPause.Checked = true; this.toolStripButtonPlayPause.CheckOnClick = true; this.toolStripButtonPlayPause.CheckState = System.Windows.Forms.CheckState.Checked; this.toolStripButtonPlayPause.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.toolStripButtonPlayPause.Image = global::TouhouSpring.Particle.Properties.Resources.Pause_16x16; this.toolStripButtonPlayPause.Name = "toolStripButtonPlayPause"; this.toolStripButtonPlayPause.Size = new System.Drawing.Size(23, 22); this.toolStripButtonPlayPause.Click += new System.EventHandler(this.toolStripButtonPlayPause_Click); // // toolStripButtonRestart // this.toolStripButtonRestart.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.toolStripButtonRestart.Image = global::TouhouSpring.Particle.Properties.Resources.Restart_16x16; this.toolStripButtonRestart.Name = "toolStripButtonRestart"; this.toolStripButtonRestart.Size = new System.Drawing.Size(23, 22); this.toolStripButtonRestart.Text = "toolStripButtonRestart"; this.toolStripButtonRestart.Click += new System.EventHandler(this.toolStripButtonRestart_Click); // // splitContainer2 // splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill; splitContainer2.Location = new System.Drawing.Point(0, 0); splitContainer2.Name = "splitContainer2"; splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal; // // splitContainer2.Panel1 // splitContainer2.Panel1.Controls.Add(this.treeView); splitContainer2.Panel1.Controls.Add(this.toolStrip); // // splitContainer2.Panel2 // splitContainer2.Panel2.Controls.Add(this.propertyGrid); splitContainer2.Size = new System.Drawing.Size(202, 464); splitContainer2.SplitterDistance = 158; splitContainer2.TabIndex = 0; // // treeView // this.treeView.Dock = System.Windows.Forms.DockStyle.Fill; this.treeView.Enabled = false; this.treeView.HideSelection = false; this.treeView.Location = new System.Drawing.Point(0, 25); this.treeView.Name = "treeView"; this.treeView.ShowRootLines = false; this.treeView.Size = new System.Drawing.Size(202, 133); this.treeView.TabIndex = 0; this.treeView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView_AfterSelect); // // toolStrip // this.toolStrip.Enabled = false; this.toolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripButtonNewEffect, this.toolStripDropDownButtonNewModifier, toolStripSeparator1, this.toolStripButtonDelete, this.toolStripButtonMoveUp, this.toolStripButtonMoveDown}); this.toolStrip.Location = new System.Drawing.Point(0, 0); this.toolStrip.Name = "toolStrip"; this.toolStrip.Size = new System.Drawing.Size(202, 25); this.toolStrip.TabIndex = 1; this.toolStrip.Text = "toolStrip1"; // // toolStripButtonNewEffect // this.toolStripButtonNewEffect.Image = global::TouhouSpring.Particle.Properties.Resources.Add_16x16; this.toolStripButtonNewEffect.Name = "toolStripButtonNewEffect"; this.toolStripButtonNewEffect.Size = new System.Drawing.Size(84, 22); this.toolStripButtonNewEffect.Text = "New Effect"; this.toolStripButtonNewEffect.Click += new System.EventHandler(this.toolStripButtonNewEffect_Click); // // toolStripDropDownButtonNewModifier // this.toolStripDropDownButtonNewModifier.Image = global::TouhouSpring.Particle.Properties.Resources.Add_16x16; this.toolStripDropDownButtonNewModifier.Name = "toolStripDropDownButtonNewModifier"; this.toolStripDropDownButtonNewModifier.Size = new System.Drawing.Size(108, 20); this.toolStripDropDownButtonNewModifier.Text = "New Modifier"; this.toolStripDropDownButtonNewModifier.Visible = false; // // toolStripSeparator1 // toolStripSeparator1.Name = "toolStripSeparator1"; toolStripSeparator1.Size = new System.Drawing.Size(6, 25); // // toolStripButtonDelete // this.toolStripButtonDelete.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.toolStripButtonDelete.Image = global::TouhouSpring.Particle.Properties.Resources.Delete_16x16; this.toolStripButtonDelete.Name = "toolStripButtonDelete"; this.toolStripButtonDelete.Size = new System.Drawing.Size(23, 22); this.toolStripButtonDelete.Text = "Delete"; this.toolStripButtonDelete.Visible = false; this.toolStripButtonDelete.Click += new System.EventHandler(this.toolStripButtonDelete_Click); // // toolStripButtonMoveUp // this.toolStripButtonMoveUp.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.toolStripButtonMoveUp.Image = global::TouhouSpring.Particle.Properties.Resources.UpArrow_16x16; this.toolStripButtonMoveUp.Name = "toolStripButtonMoveUp"; this.toolStripButtonMoveUp.Size = new System.Drawing.Size(23, 22); this.toolStripButtonMoveUp.Text = "Move Up"; this.toolStripButtonMoveUp.Visible = false; this.toolStripButtonMoveUp.Click += new System.EventHandler(this.toolStripButtonMoveUp_Click); // // toolStripButtonMoveDown // this.toolStripButtonMoveDown.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.toolStripButtonMoveDown.Image = global::TouhouSpring.Particle.Properties.Resources.DownArrow_16x16; this.toolStripButtonMoveDown.Name = "toolStripButtonMoveDown"; this.toolStripButtonMoveDown.Size = new System.Drawing.Size(23, 22); this.toolStripButtonMoveDown.Text = "Move Down"; this.toolStripButtonMoveDown.Visible = false; this.toolStripButtonMoveDown.Click += new System.EventHandler(this.toolStripButtonMoveDown_Click); // // propertyGrid // this.propertyGrid.Dock = System.Windows.Forms.DockStyle.Fill; this.propertyGrid.Enabled = false; this.propertyGrid.Location = new System.Drawing.Point(0, 0); this.propertyGrid.Name = "propertyGrid"; this.propertyGrid.Size = new System.Drawing.Size(202, 302); this.propertyGrid.TabIndex = 0; this.propertyGrid.PropertyValueChanged += new System.Windows.Forms.PropertyValueChangedEventHandler(this.propertyGrid_PropertyValueChanged); // // menuStrip1 // menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { fileToolStripMenuItem}); menuStrip1.Location = new System.Drawing.Point(0, 0); menuStrip1.Name = "menuStrip1"; menuStrip1.Size = new System.Drawing.Size(716, 24); menuStrip1.TabIndex = 0; menuStrip1.Text = "menuStrip1"; // // timerFps // this.timerFps.Enabled = true; this.timerFps.Interval = 500; this.timerFps.Tick += new System.EventHandler(this.timerFps_Tick); // // saveFileDialog // this.saveFileDialog.Filter = "XML File (*.xml)|*.xml"; this.saveFileDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.fileDialog_FileOk); // // openFileDialog // this.openFileDialog.Filter = "XML File (*.xml)|*.xml"; this.openFileDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.fileDialog_FileOk); // // Main // this.ClientSize = new System.Drawing.Size(716, 488); this.Controls.Add(splitContainer1); this.Controls.Add(menuStrip1); this.MainMenuStrip = menuStrip1; this.Name = "Main"; this.Text = "Particle Workshop"; this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Main_FormClosing); splitContainer1.Panel1.ResumeLayout(false); splitContainer1.Panel1.PerformLayout(); splitContainer1.Panel2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(splitContainer1)).EndInit(); splitContainer1.ResumeLayout(false); statusStrip1.ResumeLayout(false); statusStrip1.PerformLayout(); this.toolStrip1.ResumeLayout(false); this.toolStrip1.PerformLayout(); splitContainer2.Panel1.ResumeLayout(false); splitContainer2.Panel1.PerformLayout(); splitContainer2.Panel2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(splitContainer2)).EndInit(); splitContainer2.ResumeLayout(false); this.toolStrip.ResumeLayout(false); this.toolStrip.PerformLayout(); menuStrip1.ResumeLayout(false); menuStrip1.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { System.Windows.Forms.StatusStrip ssBottom; System.Windows.Forms.GroupBox gbSourceImage; System.Windows.Forms.GroupBox gbTargetImage; System.Windows.Forms.FlowLayoutPanel flpActions; System.Windows.Forms.GroupBox gbAdvanced; System.Windows.Forms.GroupBox gbBorderPixelHandling; System.Windows.Forms.Label label7; System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm)); System.Windows.Forms.Label label6; System.Windows.Forms.Label label5; System.Windows.Forms.Label label4; System.Windows.Forms.GroupBox gbTargetResolution; System.Windows.Forms.Label label9; System.Windows.Forms.Label label8; System.Windows.Forms.Label label2; System.Windows.Forms.Label label1; System.Windows.Forms.GroupBox gbMethod; System.Windows.Forms.GroupBox gbDescription; System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea(); System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series(); this.tssBusy = new System.Windows.Forms.ToolStripStatusLabel(); this.tssBenchmark = new System.Windows.Forms.ToolStripStatusLabel(); this.iwhSourceImage = new ImageResizer.UserControls.ImageWithDetails(); this.iwhTargetImage = new ImageResizer.UserControls.ImageWithDetails(); this.butResize = new System.Windows.Forms.Button(); this.butSwitch = new System.Windows.Forms.Button(); this.butRepeat = new System.Windows.Forms.Button(); this.nudRadius = new System.Windows.Forms.NumericUpDown(); this.lblRadius = new System.Windows.Forms.Label(); this.lblRepititionCount = new System.Windows.Forms.Label(); this.nudRepetitionCount = new System.Windows.Forms.NumericUpDown(); this.chkUseCenteredGrid = new System.Windows.Forms.CheckBox(); this.chkUseThresholds = new System.Windows.Forms.CheckBox(); this.cmbVerticalBPH = new System.Windows.Forms.ComboBox(); this.cmbHorizontalBPH = new System.Windows.Forms.ComboBox(); this.chkKeepAspect = new System.Windows.Forms.CheckBox(); this.nudWidth = new System.Windows.Forms.NumericUpDown(); this.nudHeight = new System.Windows.Forms.NumericUpDown(); this.cmbResizeMethod = new System.Windows.Forms.ComboBox(); this.txtDescription = new System.Windows.Forms.TextBox(); this.msMain = new System.Windows.Forms.MenuStrip(); this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.openToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.saveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.saveAsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.closeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.sourceImageToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.stretchToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.centerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.zoomToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.targetImageToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.stretchToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); this.centerToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); this.zoomToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); this.scriptToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.clearToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.loadToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.saveToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator(); this.showToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.executeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.wikiToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator(); this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.tlpMainLayout = new System.Windows.Forms.TableLayoutPanel(); this.pnMiddle = new System.Windows.Forms.Panel(); this.gbKernelFunction = new System.Windows.Forms.GroupBox(); this.chtKernel = new System.Windows.Forms.DataVisualization.Charting.Chart(); this.gbActions = new System.Windows.Forms.GroupBox(); this.ofdOpenFile = new System.Windows.Forms.OpenFileDialog(); this.sfdSave = new System.Windows.Forms.SaveFileDialog(); this.ofdOpenScript = new System.Windows.Forms.OpenFileDialog(); this.sfdSaveScript = new System.Windows.Forms.SaveFileDialog(); ssBottom = new System.Windows.Forms.StatusStrip(); gbSourceImage = new System.Windows.Forms.GroupBox(); gbTargetImage = new System.Windows.Forms.GroupBox(); flpActions = new System.Windows.Forms.FlowLayoutPanel(); gbAdvanced = new System.Windows.Forms.GroupBox(); gbBorderPixelHandling = new System.Windows.Forms.GroupBox(); label7 = new System.Windows.Forms.Label(); label6 = new System.Windows.Forms.Label(); label5 = new System.Windows.Forms.Label(); label4 = new System.Windows.Forms.Label(); gbTargetResolution = new System.Windows.Forms.GroupBox(); label9 = new System.Windows.Forms.Label(); label8 = new System.Windows.Forms.Label(); label2 = new System.Windows.Forms.Label(); label1 = new System.Windows.Forms.Label(); gbMethod = new System.Windows.Forms.GroupBox(); gbDescription = new System.Windows.Forms.GroupBox(); ssBottom.SuspendLayout(); gbSourceImage.SuspendLayout(); gbTargetImage.SuspendLayout(); flpActions.SuspendLayout(); gbAdvanced.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.nudRadius)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.nudRepetitionCount)).BeginInit(); gbBorderPixelHandling.SuspendLayout(); gbTargetResolution.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.nudWidth)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.nudHeight)).BeginInit(); gbMethod.SuspendLayout(); gbDescription.SuspendLayout(); this.msMain.SuspendLayout(); this.tlpMainLayout.SuspendLayout(); this.pnMiddle.SuspendLayout(); this.gbKernelFunction.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.chtKernel)).BeginInit(); this.gbActions.SuspendLayout(); this.SuspendLayout(); // // ssBottom // ssBottom.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.tssBusy, this.tssBenchmark}); ssBottom.Location = new System.Drawing.Point(0, 580); ssBottom.Name = "ssBottom"; ssBottom.Size = new System.Drawing.Size(889, 22); ssBottom.TabIndex = 1; ssBottom.Text = "statusStrip1"; // // tssBusy // this.tssBusy.Image = global::ImageResizer.Properties.Resources.ProgressCircularBlue; this.tssBusy.Name = "tssBusy"; this.tssBusy.Size = new System.Drawing.Size(75, 17); this.tssBusy.Text = "Resizing..."; this.tssBusy.Visible = false; // // tssBenchmark // this.tssBenchmark.Name = "tssBenchmark"; this.tssBenchmark.Size = new System.Drawing.Size(0, 17); // // gbSourceImage // gbSourceImage.Controls.Add(this.iwhSourceImage); gbSourceImage.Dock = System.Windows.Forms.DockStyle.Fill; gbSourceImage.Location = new System.Drawing.Point(3, 3); gbSourceImage.Name = "gbSourceImage"; gbSourceImage.Size = new System.Drawing.Size(288, 550); gbSourceImage.TabIndex = 0; gbSourceImage.TabStop = false; gbSourceImage.Text = "Source Image"; // // iwhSourceImage // this.iwhSourceImage.AllowDrop = true; this.iwhSourceImage.Dock = System.Windows.Forms.DockStyle.Fill; this.iwhSourceImage.Location = new System.Drawing.Point(3, 16); this.iwhSourceImage.Name = "iwhSourceImage"; this.iwhSourceImage.Size = new System.Drawing.Size(282, 531); this.iwhSourceImage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage; this.iwhSourceImage.TabIndex = 0; this.iwhSourceImage.Click += new System.EventHandler(this.iwhSourceImage_Click); this.iwhSourceImage.DragDrop += new System.Windows.Forms.DragEventHandler(this.iwhSourceImage_DragDrop); this.iwhSourceImage.DragEnter += new System.Windows.Forms.DragEventHandler(this.iwhSourceImage_DragEnter); // // gbTargetImage // gbTargetImage.Controls.Add(this.iwhTargetImage); gbTargetImage.Dock = System.Windows.Forms.DockStyle.Fill; gbTargetImage.Location = new System.Drawing.Point(597, 3); gbTargetImage.Name = "gbTargetImage"; gbTargetImage.Size = new System.Drawing.Size(289, 550); gbTargetImage.TabIndex = 1; gbTargetImage.TabStop = false; gbTargetImage.Text = "Target Image"; // // iwhTargetImage // this.iwhTargetImage.Dock = System.Windows.Forms.DockStyle.Fill; this.iwhTargetImage.Location = new System.Drawing.Point(3, 16); this.iwhTargetImage.Name = "iwhTargetImage"; this.iwhTargetImage.Size = new System.Drawing.Size(283, 531); this.iwhTargetImage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage; this.iwhTargetImage.TabIndex = 0; this.iwhTargetImage.Click += new System.EventHandler(this.iwhTargetImage_Click); // // flpActions // flpActions.AutoSize = true; flpActions.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; flpActions.Controls.Add(this.butResize); flpActions.Controls.Add(this.butSwitch); flpActions.Controls.Add(this.butRepeat); flpActions.Dock = System.Windows.Forms.DockStyle.Top; flpActions.Location = new System.Drawing.Point(3, 16); flpActions.Name = "flpActions"; flpActions.Size = new System.Drawing.Size(288, 29); flpActions.TabIndex = 0; // // butResize // this.butResize.Image = global::ImageResizer.Properties.Resources.Resize; this.butResize.Location = new System.Drawing.Point(3, 3); this.butResize.Name = "butResize"; this.butResize.Size = new System.Drawing.Size(75, 23); this.butResize.TabIndex = 0; this.butResize.Text = "Resize"; this.butResize.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; this.butResize.UseVisualStyleBackColor = true; this.butResize.Click += new System.EventHandler(this.btResize_Click); // // butSwitch // this.butSwitch.Image = global::ImageResizer.Properties.Resources.Switch; this.butSwitch.Location = new System.Drawing.Point(84, 3); this.butSwitch.Name = "butSwitch"; this.butSwitch.Size = new System.Drawing.Size(75, 23); this.butSwitch.TabIndex = 0; this.butSwitch.Text = "Switch"; this.butSwitch.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; this.butSwitch.UseVisualStyleBackColor = true; this.butSwitch.Click += new System.EventHandler(this.btSwitch_Click); // // butRepeat // this.butRepeat.Image = global::ImageResizer.Properties.Resources.Repeat; this.butRepeat.Location = new System.Drawing.Point(165, 3); this.butRepeat.Name = "butRepeat"; this.butRepeat.Size = new System.Drawing.Size(75, 23); this.butRepeat.TabIndex = 0; this.butRepeat.Text = "Repeat"; this.butRepeat.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; this.butRepeat.UseVisualStyleBackColor = true; this.butRepeat.Click += new System.EventHandler(this.btRepeat_Click); // // gbAdvanced // gbAdvanced.AutoSize = true; gbAdvanced.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; gbAdvanced.Controls.Add(this.nudRadius); gbAdvanced.Controls.Add(this.lblRadius); gbAdvanced.Controls.Add(this.lblRepititionCount); gbAdvanced.Controls.Add(this.nudRepetitionCount); gbAdvanced.Controls.Add(this.chkUseCenteredGrid); gbAdvanced.Controls.Add(this.chkUseThresholds); gbAdvanced.Dock = System.Windows.Forms.DockStyle.Top; gbAdvanced.Location = new System.Drawing.Point(0, 285); gbAdvanced.Name = "gbAdvanced"; gbAdvanced.Size = new System.Drawing.Size(294, 130); gbAdvanced.TabIndex = 3; gbAdvanced.TabStop = false; gbAdvanced.Text = "Advanced"; // // nudRadius // this.nudRadius.DecimalPlaces = 2; this.nudRadius.Increment = new decimal(new int[] { 1, 0, 0, 65536}); this.nudRadius.Location = new System.Drawing.Point(57, 91); this.nudRadius.Minimum = new decimal(new int[] { 5, 0, 0, 65536}); this.nudRadius.Name = "nudRadius"; this.nudRadius.Size = new System.Drawing.Size(49, 20); this.nudRadius.TabIndex = 3; this.nudRadius.Value = new decimal(new int[] { 1, 0, 0, 0}); this.nudRadius.ValueChanged += new System.EventHandler(this.nudRadius_ValueChanged); // // lblRadius // this.lblRadius.AutoSize = true; this.lblRadius.Location = new System.Drawing.Point(6, 93); this.lblRadius.Name = "lblRadius"; this.lblRadius.Size = new System.Drawing.Size(40, 13); this.lblRadius.TabIndex = 2; this.lblRadius.Text = "Radius"; // // lblRepititionCount // this.lblRepititionCount.AutoSize = true; this.lblRepititionCount.Location = new System.Drawing.Point(6, 44); this.lblRepititionCount.Name = "lblRepititionCount"; this.lblRepititionCount.Size = new System.Drawing.Size(42, 13); this.lblRepititionCount.TabIndex = 2; this.lblRepititionCount.Text = "Repeat"; // // nudRepetitionCount // this.nudRepetitionCount.Location = new System.Drawing.Point(57, 42); this.nudRepetitionCount.Maximum = new decimal(new int[] { 10, 0, 0, 0}); this.nudRepetitionCount.Minimum = new decimal(new int[] { 1, 0, 0, 0}); this.nudRepetitionCount.Name = "nudRepetitionCount"; this.nudRepetitionCount.Size = new System.Drawing.Size(49, 20); this.nudRepetitionCount.TabIndex = 1; this.nudRepetitionCount.Value = new decimal(new int[] { 1, 0, 0, 0}); // // chkUseCenteredGrid // this.chkUseCenteredGrid.AutoSize = true; this.chkUseCenteredGrid.Location = new System.Drawing.Point(6, 68); this.chkUseCenteredGrid.Name = "chkUseCenteredGrid"; this.chkUseCenteredGrid.Size = new System.Drawing.Size(113, 17); this.chkUseCenteredGrid.TabIndex = 0; this.chkUseCenteredGrid.Text = "Use Centered Grid"; this.chkUseCenteredGrid.UseVisualStyleBackColor = true; // // chkUseThresholds // this.chkUseThresholds.AutoSize = true; this.chkUseThresholds.Location = new System.Drawing.Point(6, 19); this.chkUseThresholds.Name = "chkUseThresholds"; this.chkUseThresholds.Size = new System.Drawing.Size(100, 17); this.chkUseThresholds.TabIndex = 0; this.chkUseThresholds.Text = "Use Thresholds"; this.chkUseThresholds.UseVisualStyleBackColor = true; // // gbBorderPixelHandling // gbBorderPixelHandling.AutoSize = true; gbBorderPixelHandling.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; gbBorderPixelHandling.Controls.Add(label7); gbBorderPixelHandling.Controls.Add(label6); gbBorderPixelHandling.Controls.Add(this.cmbVerticalBPH); gbBorderPixelHandling.Controls.Add(this.cmbHorizontalBPH); gbBorderPixelHandling.Controls.Add(label5); gbBorderPixelHandling.Controls.Add(label4); gbBorderPixelHandling.Dock = System.Windows.Forms.DockStyle.Top; gbBorderPixelHandling.Location = new System.Drawing.Point(0, 199); gbBorderPixelHandling.Name = "gbBorderPixelHandling"; gbBorderPixelHandling.Size = new System.Drawing.Size(294, 86); gbBorderPixelHandling.TabIndex = 3; gbBorderPixelHandling.TabStop = false; gbBorderPixelHandling.Text = "Border pixel handling"; // // label7 // label7.Image = ((System.Drawing.Image)(resources.GetObject("label7.Image"))); label7.Location = new System.Drawing.Point(259, 51); label7.Name = "label7"; label7.Size = new System.Drawing.Size(16, 16); label7.TabIndex = 2; // // label6 // label6.Image = ((System.Drawing.Image)(resources.GetObject("label6.Image"))); label6.Location = new System.Drawing.Point(259, 22); label6.Name = "label6"; label6.Size = new System.Drawing.Size(16, 16); label6.TabIndex = 2; // // cmbVerticalBPH // this.cmbVerticalBPH.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbVerticalBPH.FormattingEnabled = true; this.cmbVerticalBPH.Location = new System.Drawing.Point(90, 46); this.cmbVerticalBPH.Name = "cmbVerticalBPH"; this.cmbVerticalBPH.Size = new System.Drawing.Size(161, 21); this.cmbVerticalBPH.TabIndex = 1; // // cmbHorizontalBPH // this.cmbHorizontalBPH.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbHorizontalBPH.FormattingEnabled = true; this.cmbHorizontalBPH.Location = new System.Drawing.Point(90, 19); this.cmbHorizontalBPH.Name = "cmbHorizontalBPH"; this.cmbHorizontalBPH.Size = new System.Drawing.Size(161, 21); this.cmbHorizontalBPH.TabIndex = 1; // // label5 // label5.AutoSize = true; label5.Location = new System.Drawing.Point(6, 49); label5.Name = "label5"; label5.Size = new System.Drawing.Size(49, 13); label5.TabIndex = 0; label5.Text = "Vertically"; // // label4 // label4.AutoSize = true; label4.Location = new System.Drawing.Point(6, 22); label4.Name = "label4"; label4.Size = new System.Drawing.Size(61, 13); label4.TabIndex = 0; label4.Text = "Horizontally"; // // gbTargetResolution // gbTargetResolution.AutoSize = true; gbTargetResolution.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; gbTargetResolution.Controls.Add(this.chkKeepAspect); gbTargetResolution.Controls.Add(label9); gbTargetResolution.Controls.Add(label8); gbTargetResolution.Controls.Add(this.nudWidth); gbTargetResolution.Controls.Add(this.nudHeight); gbTargetResolution.Controls.Add(label2); gbTargetResolution.Controls.Add(label1); gbTargetResolution.Dock = System.Windows.Forms.DockStyle.Top; gbTargetResolution.Location = new System.Drawing.Point(0, 115); gbTargetResolution.Name = "gbTargetResolution"; gbTargetResolution.Size = new System.Drawing.Size(294, 84); gbTargetResolution.TabIndex = 3; gbTargetResolution.TabStop = false; gbTargetResolution.Text = "Target Resolution"; // // chkKeepAspect // this.chkKeepAspect.AutoSize = true; this.chkKeepAspect.Location = new System.Drawing.Point(201, 32); this.chkKeepAspect.Name = "chkKeepAspect"; this.chkKeepAspect.Size = new System.Drawing.Size(87, 17); this.chkKeepAspect.TabIndex = 3; this.chkKeepAspect.Text = "Keep Aspect"; this.chkKeepAspect.UseVisualStyleBackColor = true; this.chkKeepAspect.CheckedChanged += new System.EventHandler(this.chkKeepAspect_CheckedChanged); // // label9 // label9.Image = ((System.Drawing.Image)(resources.GetObject("label9.Image"))); label9.Location = new System.Drawing.Point(132, 21); label9.Name = "label9"; label9.Size = new System.Drawing.Size(16, 16); label9.TabIndex = 2; // // label8 // label8.Image = ((System.Drawing.Image)(resources.GetObject("label8.Image"))); label8.Location = new System.Drawing.Point(132, 47); label8.Name = "label8"; label8.Size = new System.Drawing.Size(16, 16); label8.TabIndex = 2; // // nudWidth // this.nudWidth.Increment = new decimal(new int[] { 16, 0, 0, 0}); this.nudWidth.Location = new System.Drawing.Point(57, 19); this.nudWidth.Maximum = new decimal(new int[] { 32768, 0, 0, 0}); this.nudWidth.Name = "nudWidth"; this.nudWidth.Size = new System.Drawing.Size(68, 20); this.nudWidth.TabIndex = 1; this.nudWidth.ValueChanged += new System.EventHandler(this.nudWidth_ValueChanged); // // nudHeight // this.nudHeight.Increment = new decimal(new int[] { 16, 0, 0, 0}); this.nudHeight.Location = new System.Drawing.Point(57, 45); this.nudHeight.Maximum = new decimal(new int[] { 32768, 0, 0, 0}); this.nudHeight.Name = "nudHeight"; this.nudHeight.Size = new System.Drawing.Size(68, 20); this.nudHeight.TabIndex = 1; this.nudHeight.ValueChanged += new System.EventHandler(this.nudHeight_ValueChanged); // // label2 // label2.AutoSize = true; label2.Location = new System.Drawing.Point(6, 47); label2.Name = "label2"; label2.Size = new System.Drawing.Size(38, 13); label2.TabIndex = 0; label2.Text = "Height"; // // label1 // label1.AutoSize = true; label1.Location = new System.Drawing.Point(6, 21); label1.Name = "label1"; label1.Size = new System.Drawing.Size(35, 13); label1.TabIndex = 0; label1.Text = "Width"; // // gbMethod // gbMethod.AutoSize = true; gbMethod.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; gbMethod.Controls.Add(this.cmbResizeMethod); gbMethod.Dock = System.Windows.Forms.DockStyle.Top; gbMethod.Location = new System.Drawing.Point(0, 0); gbMethod.Name = "gbMethod"; gbMethod.Size = new System.Drawing.Size(294, 59); gbMethod.TabIndex = 3; gbMethod.TabStop = false; gbMethod.Text = "Method"; // // cmbResizeMethod // this.cmbResizeMethod.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbResizeMethod.FormattingEnabled = true; this.cmbResizeMethod.Location = new System.Drawing.Point(6, 19); this.cmbResizeMethod.Name = "cmbResizeMethod"; this.cmbResizeMethod.Size = new System.Drawing.Size(282, 21); this.cmbResizeMethod.TabIndex = 0; this.cmbResizeMethod.SelectedValueChanged += new System.EventHandler(this.cbResizeMethod_SelectedValueChanged); // // gbDescription // gbDescription.AutoSize = true; gbDescription.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; gbDescription.Controls.Add(this.txtDescription); gbDescription.Dock = System.Windows.Forms.DockStyle.Top; gbDescription.Location = new System.Drawing.Point(0, 59); gbDescription.Name = "gbDescription"; gbDescription.Size = new System.Drawing.Size(294, 56); gbDescription.TabIndex = 5; gbDescription.TabStop = false; gbDescription.Text = "Description"; // // txtDescription // this.txtDescription.Dock = System.Windows.Forms.DockStyle.Top; this.txtDescription.Location = new System.Drawing.Point(3, 16); this.txtDescription.Multiline = true; this.txtDescription.Name = "txtDescription"; this.txtDescription.ReadOnly = true; this.txtDescription.Size = new System.Drawing.Size(288, 37); this.txtDescription.TabIndex = 0; // // msMain // this.msMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.fileToolStripMenuItem, this.viewToolStripMenuItem, this.scriptToolStripMenuItem, this.helpToolStripMenuItem}); this.msMain.Location = new System.Drawing.Point(0, 0); this.msMain.Name = "msMain"; this.msMain.Size = new System.Drawing.Size(889, 24); this.msMain.TabIndex = 0; this.msMain.Text = "menuStrip1"; // // fileToolStripMenuItem // this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.openToolStripMenuItem, this.saveToolStripMenuItem, this.saveAsToolStripMenuItem, this.closeToolStripMenuItem, this.toolStripSeparator1, this.exitToolStripMenuItem}); this.fileToolStripMenuItem.Name = "fileToolStripMenuItem"; this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20); this.fileToolStripMenuItem.Text = "File"; // // openToolStripMenuItem // this.openToolStripMenuItem.Name = "openToolStripMenuItem"; this.openToolStripMenuItem.Size = new System.Drawing.Size(114, 22); this.openToolStripMenuItem.Text = "Open"; this.openToolStripMenuItem.Click += new System.EventHandler(this.openToolStripMenuItem_Click); // // saveToolStripMenuItem // this.saveToolStripMenuItem.Name = "saveToolStripMenuItem"; this.saveToolStripMenuItem.Size = new System.Drawing.Size(114, 22); this.saveToolStripMenuItem.Text = "Save"; this.saveToolStripMenuItem.Click += new System.EventHandler(this.saveToolStripMenuItem_Click); // // saveAsToolStripMenuItem // this.saveAsToolStripMenuItem.Name = "saveAsToolStripMenuItem"; this.saveAsToolStripMenuItem.Size = new System.Drawing.Size(114, 22); this.saveAsToolStripMenuItem.Text = "Save As"; this.saveAsToolStripMenuItem.Click += new System.EventHandler(this.saveAsToolStripMenuItem_Click); // // closeToolStripMenuItem // this.closeToolStripMenuItem.Name = "closeToolStripMenuItem"; this.closeToolStripMenuItem.Size = new System.Drawing.Size(114, 22); this.closeToolStripMenuItem.Text = "Close"; this.closeToolStripMenuItem.Click += new System.EventHandler(this.closeToolStripMenuItem_Click); // // toolStripSeparator1 // this.toolStripSeparator1.Name = "toolStripSeparator1"; this.toolStripSeparator1.Size = new System.Drawing.Size(111, 6); // // exitToolStripMenuItem // this.exitToolStripMenuItem.Name = "exitToolStripMenuItem"; this.exitToolStripMenuItem.Size = new System.Drawing.Size(114, 22); this.exitToolStripMenuItem.Text = "Exit"; this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click); // // viewToolStripMenuItem // this.viewToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.sourceImageToolStripMenuItem, this.targetImageToolStripMenuItem}); this.viewToolStripMenuItem.Name = "viewToolStripMenuItem"; this.viewToolStripMenuItem.Size = new System.Drawing.Size(44, 20); this.viewToolStripMenuItem.Text = "View"; // // sourceImageToolStripMenuItem // this.sourceImageToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.stretchToolStripMenuItem, this.centerToolStripMenuItem, this.zoomToolStripMenuItem}); this.sourceImageToolStripMenuItem.Name = "sourceImageToolStripMenuItem"; this.sourceImageToolStripMenuItem.Size = new System.Drawing.Size(152, 22); this.sourceImageToolStripMenuItem.Text = "Source Image"; // // stretchToolStripMenuItem // this.stretchToolStripMenuItem.Name = "stretchToolStripMenuItem"; this.stretchToolStripMenuItem.Size = new System.Drawing.Size(152, 22); this.stretchToolStripMenuItem.Text = "Stretch"; this.stretchToolStripMenuItem.Click += new System.EventHandler(this.stretchToolStripMenuItem_Click); // // centerToolStripMenuItem // this.centerToolStripMenuItem.Name = "centerToolStripMenuItem"; this.centerToolStripMenuItem.Size = new System.Drawing.Size(152, 22); this.centerToolStripMenuItem.Text = "Actual"; this.centerToolStripMenuItem.Click += new System.EventHandler(this.centerToolStripMenuItem_Click); // // zoomToolStripMenuItem // this.zoomToolStripMenuItem.Name = "zoomToolStripMenuItem"; this.zoomToolStripMenuItem.Size = new System.Drawing.Size(152, 22); this.zoomToolStripMenuItem.Text = "Fit"; this.zoomToolStripMenuItem.Click += new System.EventHandler(this.zoomToolStripMenuItem_Click); // // targetImageToolStripMenuItem // this.targetImageToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.stretchToolStripMenuItem1, this.centerToolStripMenuItem1, this.zoomToolStripMenuItem1}); this.targetImageToolStripMenuItem.Name = "targetImageToolStripMenuItem"; this.targetImageToolStripMenuItem.Size = new System.Drawing.Size(152, 22); this.targetImageToolStripMenuItem.Text = "Target Image"; // // stretchToolStripMenuItem1 // this.stretchToolStripMenuItem1.Name = "stretchToolStripMenuItem1"; this.stretchToolStripMenuItem1.Size = new System.Drawing.Size(111, 22); this.stretchToolStripMenuItem1.Text = "Stretch"; this.stretchToolStripMenuItem1.Click += new System.EventHandler(this.stretchToolStripMenuItem1_Click); // // centerToolStripMenuItem1 // this.centerToolStripMenuItem1.Name = "centerToolStripMenuItem1"; this.centerToolStripMenuItem1.Size = new System.Drawing.Size(111, 22); this.centerToolStripMenuItem1.Text = "Actual"; this.centerToolStripMenuItem1.Click += new System.EventHandler(this.centerToolStripMenuItem1_Click); // // zoomToolStripMenuItem1 // this.zoomToolStripMenuItem1.Name = "zoomToolStripMenuItem1"; this.zoomToolStripMenuItem1.Size = new System.Drawing.Size(111, 22); this.zoomToolStripMenuItem1.Text = "Fit"; this.zoomToolStripMenuItem1.Click += new System.EventHandler(this.zoomToolStripMenuItem1_Click); // // scriptToolStripMenuItem // this.scriptToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.clearToolStripMenuItem, this.loadToolStripMenuItem, this.saveToolStripMenuItem1, this.toolStripSeparator3, this.showToolStripMenuItem, this.executeToolStripMenuItem}); this.scriptToolStripMenuItem.Name = "scriptToolStripMenuItem"; this.scriptToolStripMenuItem.Size = new System.Drawing.Size(49, 20); this.scriptToolStripMenuItem.Text = "Script"; // // clearToolStripMenuItem // this.clearToolStripMenuItem.Name = "clearToolStripMenuItem"; this.clearToolStripMenuItem.Size = new System.Drawing.Size(152, 22); this.clearToolStripMenuItem.Text = "Clear"; this.clearToolStripMenuItem.Click += new System.EventHandler(this.clearToolStripMenuItem_Click); // // loadToolStripMenuItem // this.loadToolStripMenuItem.Name = "loadToolStripMenuItem"; this.loadToolStripMenuItem.Size = new System.Drawing.Size(152, 22); this.loadToolStripMenuItem.Text = "Load"; this.loadToolStripMenuItem.Click += new System.EventHandler(this.loadToolStripMenuItem_Click); // // saveToolStripMenuItem1 // this.saveToolStripMenuItem1.Name = "saveToolStripMenuItem1"; this.saveToolStripMenuItem1.Size = new System.Drawing.Size(152, 22); this.saveToolStripMenuItem1.Text = "Save"; this.saveToolStripMenuItem1.Click += new System.EventHandler(this.saveToolStripMenuItem1_Click); // // toolStripSeparator3 // this.toolStripSeparator3.Name = "toolStripSeparator3"; this.toolStripSeparator3.Size = new System.Drawing.Size(149, 6); // // showToolStripMenuItem // this.showToolStripMenuItem.Name = "showToolStripMenuItem"; this.showToolStripMenuItem.Size = new System.Drawing.Size(152, 22); this.showToolStripMenuItem.Text = "Show"; this.showToolStripMenuItem.Click += new System.EventHandler(this.showToolStripMenuItem_Click); // // executeToolStripMenuItem // this.executeToolStripMenuItem.Name = "executeToolStripMenuItem"; this.executeToolStripMenuItem.Size = new System.Drawing.Size(152, 22); this.executeToolStripMenuItem.Text = "Execute"; this.executeToolStripMenuItem.Click += new System.EventHandler(this.executeToolStripMenuItem_Click); // // helpToolStripMenuItem // this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.wikiToolStripMenuItem, this.toolStripSeparator2, this.aboutToolStripMenuItem}); this.helpToolStripMenuItem.Name = "helpToolStripMenuItem"; this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20); this.helpToolStripMenuItem.Text = "Help"; // // wikiToolStripMenuItem // this.wikiToolStripMenuItem.Name = "wikiToolStripMenuItem"; this.wikiToolStripMenuItem.Size = new System.Drawing.Size(107, 22); this.wikiToolStripMenuItem.Text = "Wiki"; this.wikiToolStripMenuItem.Click += new System.EventHandler(this.wikiToolStripMenuItem_Click); // // toolStripSeparator2 // this.toolStripSeparator2.Name = "toolStripSeparator2"; this.toolStripSeparator2.Size = new System.Drawing.Size(104, 6); // // aboutToolStripMenuItem // this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem"; this.aboutToolStripMenuItem.Size = new System.Drawing.Size(107, 22); this.aboutToolStripMenuItem.Text = "About"; this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click); // // tlpMainLayout // this.tlpMainLayout.ColumnCount = 3; this.tlpMainLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F)); this.tlpMainLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); this.tlpMainLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F)); this.tlpMainLayout.Controls.Add(gbSourceImage, 0, 0); this.tlpMainLayout.Controls.Add(gbTargetImage, 2, 0); this.tlpMainLayout.Controls.Add(this.pnMiddle, 1, 0); this.tlpMainLayout.Dock = System.Windows.Forms.DockStyle.Fill; this.tlpMainLayout.Location = new System.Drawing.Point(0, 24); this.tlpMainLayout.Name = "tlpMainLayout"; this.tlpMainLayout.RowCount = 1; this.tlpMainLayout.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F)); this.tlpMainLayout.Size = new System.Drawing.Size(889, 556); this.tlpMainLayout.TabIndex = 2; // // pnMiddle // this.pnMiddle.Controls.Add(this.gbKernelFunction); this.pnMiddle.Controls.Add(this.gbActions); this.pnMiddle.Controls.Add(gbAdvanced); this.pnMiddle.Controls.Add(gbBorderPixelHandling); this.pnMiddle.Controls.Add(gbTargetResolution); this.pnMiddle.Controls.Add(gbDescription); this.pnMiddle.Controls.Add(gbMethod); this.pnMiddle.Dock = System.Windows.Forms.DockStyle.Fill; this.pnMiddle.Location = new System.Drawing.Point(297, 3); this.pnMiddle.Name = "pnMiddle"; this.pnMiddle.Size = new System.Drawing.Size(294, 550); this.pnMiddle.TabIndex = 2; // // gbKernelFunction // this.gbKernelFunction.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; this.gbKernelFunction.Controls.Add(this.chtKernel); this.gbKernelFunction.Dock = System.Windows.Forms.DockStyle.Fill; this.gbKernelFunction.Location = new System.Drawing.Point(0, 463); this.gbKernelFunction.Name = "gbKernelFunction"; this.gbKernelFunction.Size = new System.Drawing.Size(294, 87); this.gbKernelFunction.TabIndex = 6; this.gbKernelFunction.TabStop = false; this.gbKernelFunction.Text = "Kernel"; // // chtKernel // this.chtKernel.BackColor = System.Drawing.SystemColors.Control; chartArea1.Name = "chaChart"; this.chtKernel.ChartAreas.Add(chartArea1); this.chtKernel.Dock = System.Windows.Forms.DockStyle.Fill; this.chtKernel.Location = new System.Drawing.Point(3, 16); this.chtKernel.Name = "chtKernel"; series1.ChartArea = "chaChart"; series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Area; series1.Name = "dsKernelData"; this.chtKernel.Series.Add(series1); this.chtKernel.Size = new System.Drawing.Size(288, 68); this.chtKernel.TabIndex = 0; this.chtKernel.Text = "chart1"; // // gbActions // this.gbActions.AutoSize = true; this.gbActions.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; this.gbActions.Controls.Add(flpActions); this.gbActions.Dock = System.Windows.Forms.DockStyle.Top; this.gbActions.Location = new System.Drawing.Point(0, 415); this.gbActions.Name = "gbActions"; this.gbActions.Size = new System.Drawing.Size(294, 48); this.gbActions.TabIndex = 4; this.gbActions.TabStop = false; this.gbActions.Text = "Actions"; // // ofdOpenFile // this.ofdOpenFile.FileName = "InputImage"; this.ofdOpenFile.Filter = "Image Files|*.bmp;*.jpg;*.jpeg;*.png;*.gif"; this.ofdOpenFile.RestoreDirectory = true; this.ofdOpenFile.Title = "Select Image to resize"; // // sfdSave // this.sfdSave.DefaultExt = "png"; this.sfdSave.FileName = "OutputImage"; this.sfdSave.Filter = "Portable Network Graphics|*.png|JPEG Files|*.jpg;*.jpeg|Windows Bitmap|*.bmp|Grap" + "hics Interchange Format|*.gif|Image Files|*.bmp;*.jpg;*.jpeg;*.png;*.gif"; this.sfdSave.RestoreDirectory = true; this.sfdSave.Title = "Enter filename"; // // ofdOpenScript // this.ofdOpenScript.DefaultExt = "irs"; this.ofdOpenScript.FileName = "InputScript"; this.ofdOpenScript.Filter = "Image Resizer Script Files|*.irs|All files|*.*"; this.ofdOpenScript.RestoreDirectory = true; this.ofdOpenScript.Title = "Select script to load"; // // sfdSaveScript // this.sfdSaveScript.DefaultExt = "irs"; this.sfdSaveScript.FileName = "OutputScript"; this.sfdSaveScript.Filter = "Image Resizer Script Files|*.irs|All files|*.*"; this.sfdSaveScript.RestoreDirectory = true; this.sfdSaveScript.Title = "Enter filename"; // // MainForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(889, 602); this.Controls.Add(this.tlpMainLayout); this.Controls.Add(ssBottom); this.Controls.Add(this.msMain); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.MainMenuStrip = this.msMain; this.MinimumSize = new System.Drawing.Size(600, 600); this.Name = "MainForm"; this.Text = "ImageResizer"; ssBottom.ResumeLayout(false); ssBottom.PerformLayout(); gbSourceImage.ResumeLayout(false); gbTargetImage.ResumeLayout(false); flpActions.ResumeLayout(false); gbAdvanced.ResumeLayout(false); gbAdvanced.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.nudRadius)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nudRepetitionCount)).EndInit(); gbBorderPixelHandling.ResumeLayout(false); gbBorderPixelHandling.PerformLayout(); gbTargetResolution.ResumeLayout(false); gbTargetResolution.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.nudWidth)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nudHeight)).EndInit(); gbMethod.ResumeLayout(false); gbDescription.ResumeLayout(false); gbDescription.PerformLayout(); this.msMain.ResumeLayout(false); this.msMain.PerformLayout(); this.tlpMainLayout.ResumeLayout(false); this.pnMiddle.ResumeLayout(false); this.pnMiddle.PerformLayout(); this.gbKernelFunction.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.chtKernel)).EndInit(); this.gbActions.ResumeLayout(false); this.gbActions.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.Windows.Forms.GroupBox groupBox1; System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmOPTICSAnalyzer)); System.Windows.Forms.GroupBox groupBox2; System.Windows.Forms.Panel panel1; System.Windows.Forms.Label label10; System.Windows.Forms.Label label9; System.Windows.Forms.Label label8; System.Windows.Forms.Label label7; System.Windows.Forms.Label label6; System.Windows.Forms.GroupBox groupBox4; System.Windows.Forms.Label label3; System.Windows.Forms.Label label2; System.Windows.Forms.Label label1; System.Windows.Forms.StatusStrip statusStrip1; this.lvImages = new System.Windows.Forms.ListView(); this.imgListStatus = new System.Windows.Forms.ImageList(this.components); this.btnRefresh = new System.Windows.Forms.Button(); this.picHistogram = new System.Windows.Forms.PictureBox(); this.nudSelectionB = new System.Windows.Forms.NumericUpDown(); this.nudSelectionA = new System.Windows.Forms.NumericUpDown(); this.cmbWidth = new System.Windows.Forms.ComboBox(); this.cmbHeight = new System.Windows.Forms.ComboBox(); this.nudThreshold = new System.Windows.Forms.NumericUpDown(); this.lblUnreachable = new System.Windows.Forms.Label(); this.lblNotReachable = new System.Windows.Forms.Label(); this.picThumbnail = new System.Windows.Forms.PictureBox(); this.txtImageRDist = new System.Windows.Forms.TextBox(); this.txtImageIndex = new System.Windows.Forms.TextBox(); this.txtImagePath = new System.Windows.Forms.TextBox(); this.lblConfigPath = new System.Windows.Forms.ToolStripStatusLabel(); groupBox1 = new System.Windows.Forms.GroupBox(); groupBox2 = new System.Windows.Forms.GroupBox(); panel1 = new System.Windows.Forms.Panel(); label10 = new System.Windows.Forms.Label(); label9 = new System.Windows.Forms.Label(); label8 = new System.Windows.Forms.Label(); label7 = new System.Windows.Forms.Label(); label6 = new System.Windows.Forms.Label(); groupBox4 = new System.Windows.Forms.GroupBox(); label3 = new System.Windows.Forms.Label(); label2 = new System.Windows.Forms.Label(); label1 = new System.Windows.Forms.Label(); statusStrip1 = new System.Windows.Forms.StatusStrip(); groupBox1.SuspendLayout(); groupBox2.SuspendLayout(); panel1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.picHistogram)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.nudSelectionB)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.nudSelectionA)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.nudThreshold)).BeginInit(); groupBox4.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.picThumbnail)).BeginInit(); statusStrip1.SuspendLayout(); this.SuspendLayout(); // // groupBox1 // groupBox1.Controls.Add(this.lvImages); groupBox1.Location = new System.Drawing.Point(12, 9); groupBox1.Name = "groupBox1"; groupBox1.Size = new System.Drawing.Size(873, 462); groupBox1.TabIndex = 0; groupBox1.TabStop = false; groupBox1.Text = "Selected Images"; // // lvImages // this.lvImages.BackColor = System.Drawing.SystemColors.ControlDark; this.lvImages.Dock = System.Windows.Forms.DockStyle.Fill; this.lvImages.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lvImages.Location = new System.Drawing.Point(3, 18); this.lvImages.MultiSelect = false; this.lvImages.Name = "lvImages"; this.lvImages.ShowGroups = false; this.lvImages.Size = new System.Drawing.Size(867, 441); this.lvImages.StateImageList = this.imgListStatus; this.lvImages.TabIndex = 0; this.lvImages.TileSize = new System.Drawing.Size(128, 128); this.lvImages.UseCompatibleStateImageBehavior = false; this.lvImages.SelectedIndexChanged += new System.EventHandler(this.lvImages_SelectedIndexChanged); this.lvImages.KeyDown += new System.Windows.Forms.KeyEventHandler(this.lvImages_KeyDown); // // imgListStatus // this.imgListStatus.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imgListStatus.ImageStream"))); this.imgListStatus.TransparentColor = System.Drawing.Color.Transparent; this.imgListStatus.Images.SetKeyName(0, "green.png"); this.imgListStatus.Images.SetKeyName(1, "red.png"); // // groupBox2 // groupBox2.Controls.Add(this.btnRefresh); groupBox2.Controls.Add(panel1); groupBox2.Controls.Add(label10); groupBox2.Controls.Add(this.nudSelectionB); groupBox2.Controls.Add(this.nudSelectionA); groupBox2.Controls.Add(label9); groupBox2.Controls.Add(this.cmbWidth); groupBox2.Controls.Add(this.cmbHeight); groupBox2.Controls.Add(this.nudThreshold); groupBox2.Controls.Add(label8); groupBox2.Controls.Add(label7); groupBox2.Controls.Add(label6); groupBox2.Location = new System.Drawing.Point(12, 480); groupBox2.Name = "groupBox2"; groupBox2.Size = new System.Drawing.Size(1464, 410); groupBox2.TabIndex = 1; groupBox2.TabStop = false; groupBox2.Text = "Reachability Plot"; // // btnRefresh // this.btnRefresh.Location = new System.Drawing.Point(1319, 21); this.btnRefresh.Name = "btnRefresh"; this.btnRefresh.Size = new System.Drawing.Size(139, 30); this.btnRefresh.TabIndex = 9; this.btnRefresh.Text = "Refresh"; this.btnRefresh.UseVisualStyleBackColor = true; this.btnRefresh.Click += new System.EventHandler(this.btnRefresh_Click); // // panel1 // panel1.AutoScroll = true; panel1.BackColor = System.Drawing.Color.White; panel1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; panel1.Controls.Add(this.picHistogram); panel1.Location = new System.Drawing.Point(6, 56); panel1.Name = "panel1"; panel1.Size = new System.Drawing.Size(1452, 348); panel1.TabIndex = 12; // // picHistogram // this.picHistogram.Location = new System.Drawing.Point(4, 4); this.picHistogram.Name = "picHistogram"; this.picHistogram.Size = new System.Drawing.Size(925, 213); this.picHistogram.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.picHistogram.TabIndex = 0; this.picHistogram.TabStop = false; this.picHistogram.Paint += new System.Windows.Forms.PaintEventHandler(this.picHistogram_Paint); this.picHistogram.MouseDown += new System.Windows.Forms.MouseEventHandler(this.picHistogram_MouseDown); this.picHistogram.MouseMove += new System.Windows.Forms.MouseEventHandler(this.picHistogram_MouseMove); this.picHistogram.MouseUp += new System.Windows.Forms.MouseEventHandler(this.picHistogram_MouseUp); // // label10 // label10.AutoSize = true; label10.Location = new System.Drawing.Point(643, 30); label10.Name = "label10"; label10.Size = new System.Drawing.Size(116, 17); label10.TabIndex = 11; label10.Text = "Selection Index B"; // // nudSelectionB // this.nudSelectionB.Location = new System.Drawing.Point(765, 27); this.nudSelectionB.Name = "nudSelectionB"; this.nudSelectionB.Size = new System.Drawing.Size(82, 22); this.nudSelectionB.TabIndex = 7; this.nudSelectionB.ValueChanged += new System.EventHandler(this.nudSelectionB_ValueChanged); // // nudSelectionA // this.nudSelectionA.Location = new System.Drawing.Point(555, 28); this.nudSelectionA.Name = "nudSelectionA"; this.nudSelectionA.Size = new System.Drawing.Size(82, 22); this.nudSelectionA.TabIndex = 6; this.nudSelectionA.ValueChanged += new System.EventHandler(this.nudSelectionA_ValueChanged); // // label9 // label9.AutoSize = true; label9.Location = new System.Drawing.Point(431, 29); label9.Name = "label9"; label9.Size = new System.Drawing.Size(116, 17); label9.TabIndex = 8; label9.Text = "Selection Index A"; // // cmbWidth // this.cmbWidth.FormattingEnabled = true; this.cmbWidth.Items.AddRange(new object[] { "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "20", "25", "30", "50", "75", "100", "200", "400", "500"}); this.cmbWidth.Location = new System.Drawing.Point(95, 26); this.cmbWidth.Name = "cmbWidth"; this.cmbWidth.Size = new System.Drawing.Size(71, 24); this.cmbWidth.TabIndex = 4; this.cmbWidth.Text = "100"; this.cmbWidth.TextChanged += new System.EventHandler(this.cmbWidth_TextChanged); // // cmbHeight // this.cmbHeight.FormattingEnabled = true; this.cmbHeight.Items.AddRange(new object[] { "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "20", "25", "30", "50", "75", "100", "200", "400", "500"}); this.cmbHeight.Location = new System.Drawing.Point(266, 27); this.cmbHeight.Name = "cmbHeight"; this.cmbHeight.Size = new System.Drawing.Size(71, 24); this.cmbHeight.TabIndex = 5; this.cmbHeight.Text = "25"; this.cmbHeight.TextChanged += new System.EventHandler(this.cmbHeight_TextChanged); // // nudThreshold // this.nudThreshold.Location = new System.Drawing.Point(1073, 27); this.nudThreshold.Maximum = new decimal(new int[] { -727379968, 232, 0, 0}); this.nudThreshold.Name = "nudThreshold"; this.nudThreshold.Size = new System.Drawing.Size(113, 22); this.nudThreshold.TabIndex = 8; this.nudThreshold.ValueChanged += new System.EventHandler(this.nudThreshold_ValueChanged); // // label8 // label8.AutoSize = true; label8.Location = new System.Drawing.Point(868, 29); label8.Name = "label8"; label8.Size = new System.Drawing.Size(199, 17); label8.TabIndex = 4; label8.Text = "Reachability Outlier Threshold"; // // label7 // label7.AutoSize = true; label7.Location = new System.Drawing.Point(172, 30); label7.Name = "label7"; label7.Size = new System.Drawing.Size(88, 17); label7.TabIndex = 3; label7.Text = "Scale Height"; // // label6 // label6.AutoSize = true; label6.Location = new System.Drawing.Point(6, 29); label6.Name = "label6"; label6.Size = new System.Drawing.Size(83, 17); label6.TabIndex = 2; label6.Text = "Scale Width"; // // groupBox4 // groupBox4.Controls.Add(this.lblUnreachable); groupBox4.Controls.Add(this.lblNotReachable); groupBox4.Controls.Add(this.picThumbnail); groupBox4.Controls.Add(this.txtImageRDist); groupBox4.Controls.Add(this.txtImageIndex); groupBox4.Controls.Add(this.txtImagePath); groupBox4.Controls.Add(label3); groupBox4.Controls.Add(label2); groupBox4.Controls.Add(label1); groupBox4.Location = new System.Drawing.Point(891, 9); groupBox4.Name = "groupBox4"; groupBox4.Size = new System.Drawing.Size(585, 462); groupBox4.TabIndex = 3; groupBox4.TabStop = false; groupBox4.Text = "Selected Image"; // // lblUnreachable // this.lblUnreachable.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128))))); this.lblUnreachable.Location = new System.Drawing.Point(18, 365); this.lblUnreachable.Name = "lblUnreachable"; this.lblUnreachable.Size = new System.Drawing.Size(172, 49); this.lblUnreachable.TabIndex = 8; this.lblUnreachable.Text = "UNREACHABLE"; this.lblUnreachable.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.lblUnreachable.Visible = false; // // lblNotReachable // this.lblNotReachable.BackColor = System.Drawing.Color.Yellow; this.lblNotReachable.Location = new System.Drawing.Point(18, 303); this.lblNotReachable.Name = "lblNotReachable"; this.lblNotReachable.Size = new System.Drawing.Size(172, 48); this.lblNotReachable.TabIndex = 7; this.lblNotReachable.Text = "OUT OF THRESHOLD"; this.lblNotReachable.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.lblNotReachable.Visible = false; // // picThumbnail // this.picThumbnail.Location = new System.Drawing.Point(196, 46); this.picThumbnail.Name = "picThumbnail"; this.picThumbnail.Size = new System.Drawing.Size(384, 403); this.picThumbnail.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom; this.picThumbnail.TabIndex = 6; this.picThumbnail.TabStop = false; this.picThumbnail.DoubleClick += new System.EventHandler(this.picThumbnail_DoubleClick); // // txtImageRDist // this.txtImageRDist.Location = new System.Drawing.Point(10, 116); this.txtImageRDist.Name = "txtImageRDist"; this.txtImageRDist.ReadOnly = true; this.txtImageRDist.Size = new System.Drawing.Size(126, 22); this.txtImageRDist.TabIndex = 3; // // txtImageIndex // this.txtImageIndex.Location = new System.Drawing.Point(59, 53); this.txtImageIndex.Name = "txtImageIndex"; this.txtImageIndex.ReadOnly = true; this.txtImageIndex.Size = new System.Drawing.Size(77, 22); this.txtImageIndex.TabIndex = 2; // // txtImagePath // this.txtImagePath.Location = new System.Drawing.Point(59, 21); this.txtImagePath.Name = "txtImagePath"; this.txtImagePath.ReadOnly = true; this.txtImagePath.Size = new System.Drawing.Size(468, 22); this.txtImagePath.TabIndex = 1; // // label3 // label3.AutoSize = true; label3.Location = new System.Drawing.Point(7, 96); label3.Name = "label3"; label3.Size = new System.Drawing.Size(144, 17); label3.TabIndex = 2; label3.Text = "Reachability Distance"; // // label2 // label2.AutoSize = true; label2.Location = new System.Drawing.Point(12, 56); label2.Name = "label2"; label2.Size = new System.Drawing.Size(41, 17); label2.TabIndex = 1; label2.Text = "Index"; // // label1 // label1.AutoSize = true; label1.Location = new System.Drawing.Point(16, 21); label1.Name = "label1"; label1.Size = new System.Drawing.Size(37, 17); label1.TabIndex = 0; label1.Text = "Path"; // // statusStrip1 // statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.lblConfigPath}); statusStrip1.Location = new System.Drawing.Point(0, 893); statusStrip1.Name = "statusStrip1"; statusStrip1.Size = new System.Drawing.Size(1488, 25); statusStrip1.TabIndex = 4; statusStrip1.Text = "jo"; // // lblConfigPath // this.lblConfigPath.Name = "lblConfigPath"; this.lblConfigPath.Size = new System.Drawing.Size(151, 20); this.lblConfigPath.Text = "toolStripStatusLabel1"; // // frmOPTICSAnalyzer // this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(1488, 918); this.Controls.Add(statusStrip1); this.Controls.Add(groupBox4); this.Controls.Add(groupBox2); this.Controls.Add(groupBox1); this.Name = "frmOPTICSAnalyzer"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "OPTICSAnalyzer"; groupBox1.ResumeLayout(false); groupBox2.ResumeLayout(false); groupBox2.PerformLayout(); panel1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.picHistogram)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nudSelectionB)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nudSelectionA)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nudThreshold)).EndInit(); groupBox4.ResumeLayout(false); groupBox4.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.picThumbnail)).EndInit(); statusStrip1.ResumeLayout(false); statusStrip1.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.Windows.Forms.TableLayoutPanel tableMainForm; System.Windows.Forms.GroupBox groupMain; System.Windows.Forms.TableLayoutPanel tableMain; System.Windows.Forms.Label labelInputFile; System.Windows.Forms.Label labelOutputFile; System.Windows.Forms.Button buttonBrowseOut; System.Windows.Forms.TabControl tabControlOptions; System.Windows.Forms.TabPage tabProcessing; System.Windows.Forms.TableLayoutPanel tableProcessing; System.Windows.Forms.ToolStrip toolStripProcessing; System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm)); System.Windows.Forms.Panel panelProcessingInput; System.Windows.Forms.TabPage tabEncoding; System.Windows.Forms.TableLayoutPanel tableEncoding; System.Windows.Forms.GroupBox groupEncodingGeneral; System.Windows.Forms.TableLayoutPanel tableEncodingGeneral; System.Windows.Forms.Label labelGeneralModeVariableHint; System.Windows.Forms.Label labelGeneralModeConstantHint; System.Windows.Forms.Label labelGeneralMode; System.Windows.Forms.Label labelGeneralTitle; System.Windows.Forms.Label labelGeneralTitleHint; System.Windows.Forms.GroupBox groupEncodingVideo; System.Windows.Forms.Panel panelEncodingModeSwapper; System.Windows.Forms.Label labelVideoSizeLimit; System.Windows.Forms.Label labelVideoSizeLimitUnit; System.Windows.Forms.Label labelVideoSizeLimitHint; System.Windows.Forms.Label labelVideoBitrate; System.Windows.Forms.Label labelVideoBitrateUnit; System.Windows.Forms.Label labelVideoBitrateHint; System.Windows.Forms.Label labelVideoCrf; System.Windows.Forms.Label labelVideoCrfHint; System.Windows.Forms.Label labelVideoCrfTolerance; System.Windows.Forms.Label labelVideoCrfToleranceHint; System.Windows.Forms.Label labelVideoHQHint; System.Windows.Forms.GroupBox groupEncodingAudio; System.Windows.Forms.TableLayoutPanel tableEncodingAudio; System.Windows.Forms.Label labelAudioHint; System.Windows.Forms.Panel panelEncodingModeSwapperTwo; System.Windows.Forms.Label labelAudioBitrate; System.Windows.Forms.Label labelAudioBitrateUnit; System.Windows.Forms.Label labelAudioBitrateHint; System.Windows.Forms.Label labelAudioQuality; System.Windows.Forms.Label labelAudioQualityHint; System.Windows.Forms.TabPage tabAdvanced; System.Windows.Forms.TableLayoutPanel tableAdvanced; System.Windows.Forms.Label labelAdvancedWarning; System.Windows.Forms.GroupBox groupAdvancedProcessing; System.Windows.Forms.TableLayoutPanel tableAdvancedProcessing; System.Windows.Forms.Label labelProcessingLevels; System.Windows.Forms.Label labelProcessingLevelsHint; System.Windows.Forms.Label labelProcessingDeinterlaceHint; System.Windows.Forms.Label labelProcessingDenoiseHint; System.Windows.Forms.GroupBox groupAdvancedEncoding; System.Windows.Forms.TableLayoutPanel tableAdvancedEncoding; System.Windows.Forms.Label labelEncodingFrameRateHint; System.Windows.Forms.Label labelEncodingFrameRate; System.Windows.Forms.Label labelEncodingNGOVHint; System.Windows.Forms.Label labelEncodingThreads; System.Windows.Forms.Label labelEncodingThreadsHint; System.Windows.Forms.Label labelEncodingSlices; System.Windows.Forms.Label labelEncodingSlicesHint; System.Windows.Forms.Label labelEncodingArguments; System.Windows.Forms.StatusStrip statusStrip; this.textBoxIn = new System.Windows.Forms.TextBox(); this.buttonBrowseIn = new System.Windows.Forms.Button(); this.textBoxOut = new System.Windows.Forms.TextBox(); this.buttonGo = new System.Windows.Forms.Button(); this.buttonTrim = new System.Windows.Forms.ToolStripSplitButton(); this.buttonMultipleTrim = new System.Windows.Forms.ToolStripMenuItem(); this.buttonCrop = new System.Windows.Forms.ToolStripButton(); this.buttonResize = new System.Windows.Forms.ToolStripButton(); this.buttonSubtitle = new System.Windows.Forms.ToolStripButton(); this.buttonReverse = new System.Windows.Forms.ToolStripButton(); this.buttonOverlay = new System.Windows.Forms.ToolStripButton(); this.buttonCaption = new System.Windows.Forms.ToolStripButton(); this.boxAdvancedScripting = new System.Windows.Forms.ToolStripButton(); this.buttonExportProcessing = new System.Windows.Forms.ToolStripButton(); this.buttonPreview = new System.Windows.Forms.ToolStripButton(); this.buttonDub = new System.Windows.Forms.ToolStripButton(); this.listViewProcessingScript = new System.Windows.Forms.ListView(); this.imageListFilters = new System.Windows.Forms.ImageList(this.components); this.textBoxProcessingScript = new System.Windows.Forms.TextBox(); this.buttonVariableDefault = new System.Windows.Forms.Button(); this.boxTitle = new System.Windows.Forms.TextBox(); this.boxConstant = new System.Windows.Forms.RadioButton(); this.boxVariable = new System.Windows.Forms.RadioButton(); this.buttonConstantDefault = new System.Windows.Forms.Button(); this.tableLayoutPanelEncodingVideo = new System.Windows.Forms.TableLayoutPanel(); this.tableVideoConstantOptions = new System.Windows.Forms.TableLayoutPanel(); this.boxLimit = new System.Windows.Forms.TextBox(); this.boxBitrate = new System.Windows.Forms.TextBox(); this.tableVideoVariableOptions = new System.Windows.Forms.TableLayoutPanel(); this.numericCrf = new System.Windows.Forms.NumericUpDown(); this.numericCrfTolerance = new System.Windows.Forms.NumericUpDown(); this.boxHQ = new System.Windows.Forms.CheckBox(); this.buttonAudioEnabledDefault = new System.Windows.Forms.Button(); this.boxAudio = new System.Windows.Forms.CheckBox(); this.tableAudioConstantOptions = new System.Windows.Forms.TableLayoutPanel(); this.boxAudioBitrate = new System.Windows.Forms.TextBox(); this.tableAudioVariableOptions = new System.Windows.Forms.TableLayoutPanel(); this.numericAudioQuality = new System.Windows.Forms.NumericUpDown(); this.comboLevels = new System.Windows.Forms.ComboBox(); this.boxDeinterlace = new System.Windows.Forms.CheckBox(); this.boxDenoise = new System.Windows.Forms.CheckBox(); this.boxFrameRate = new System.Windows.Forms.TextBox(); this.boxNGOV = new System.Windows.Forms.CheckBox(); this.trackThreads = new System.Windows.Forms.TrackBar(); this.labelThreads = new System.Windows.Forms.Label(); this.trackSlices = new System.Windows.Forms.TrackBar(); this.labelSlices = new System.Windows.Forms.Label(); this.boxArguments = new System.Windows.Forms.TextBox(); this.toolStripStatusLabel = new System.Windows.Forms.ToolStripStatusLabel(); this.panelContainTheProgressBar = new System.Windows.Forms.Panel(); this.boxIndexingProgressDetails = new System.Windows.Forms.CheckBox(); this.boxIndexingProgress = new System.Windows.Forms.TextBox(); this.labelIndexingProgress = new System.Windows.Forms.Label(); this.progressBarIndexing = new System.Windows.Forms.ProgressBar(); this.panelHideTheOptions = new System.Windows.Forms.Panel(); this.buttonRate = new System.Windows.Forms.ToolStripButton(); tableMainForm = new System.Windows.Forms.TableLayoutPanel(); groupMain = new System.Windows.Forms.GroupBox(); tableMain = new System.Windows.Forms.TableLayoutPanel(); labelInputFile = new System.Windows.Forms.Label(); labelOutputFile = new System.Windows.Forms.Label(); buttonBrowseOut = new System.Windows.Forms.Button(); tabControlOptions = new System.Windows.Forms.TabControl(); tabProcessing = new System.Windows.Forms.TabPage(); tableProcessing = new System.Windows.Forms.TableLayoutPanel(); toolStripProcessing = new System.Windows.Forms.ToolStrip(); panelProcessingInput = new System.Windows.Forms.Panel(); tabEncoding = new System.Windows.Forms.TabPage(); tableEncoding = new System.Windows.Forms.TableLayoutPanel(); groupEncodingGeneral = new System.Windows.Forms.GroupBox(); tableEncodingGeneral = new System.Windows.Forms.TableLayoutPanel(); labelGeneralModeVariableHint = new System.Windows.Forms.Label(); labelGeneralModeConstantHint = new System.Windows.Forms.Label(); labelGeneralMode = new System.Windows.Forms.Label(); labelGeneralTitle = new System.Windows.Forms.Label(); labelGeneralTitleHint = new System.Windows.Forms.Label(); groupEncodingVideo = new System.Windows.Forms.GroupBox(); panelEncodingModeSwapper = new System.Windows.Forms.Panel(); labelVideoSizeLimit = new System.Windows.Forms.Label(); labelVideoSizeLimitUnit = new System.Windows.Forms.Label(); labelVideoSizeLimitHint = new System.Windows.Forms.Label(); labelVideoBitrate = new System.Windows.Forms.Label(); labelVideoBitrateUnit = new System.Windows.Forms.Label(); labelVideoBitrateHint = new System.Windows.Forms.Label(); labelVideoCrf = new System.Windows.Forms.Label(); labelVideoCrfHint = new System.Windows.Forms.Label(); labelVideoCrfTolerance = new System.Windows.Forms.Label(); labelVideoCrfToleranceHint = new System.Windows.Forms.Label(); labelVideoHQHint = new System.Windows.Forms.Label(); groupEncodingAudio = new System.Windows.Forms.GroupBox(); tableEncodingAudio = new System.Windows.Forms.TableLayoutPanel(); labelAudioHint = new System.Windows.Forms.Label(); panelEncodingModeSwapperTwo = new System.Windows.Forms.Panel(); labelAudioBitrate = new System.Windows.Forms.Label(); labelAudioBitrateUnit = new System.Windows.Forms.Label(); labelAudioBitrateHint = new System.Windows.Forms.Label(); labelAudioQuality = new System.Windows.Forms.Label(); labelAudioQualityHint = new System.Windows.Forms.Label(); tabAdvanced = new System.Windows.Forms.TabPage(); tableAdvanced = new System.Windows.Forms.TableLayoutPanel(); labelAdvancedWarning = new System.Windows.Forms.Label(); groupAdvancedProcessing = new System.Windows.Forms.GroupBox(); tableAdvancedProcessing = new System.Windows.Forms.TableLayoutPanel(); labelProcessingLevels = new System.Windows.Forms.Label(); labelProcessingLevelsHint = new System.Windows.Forms.Label(); labelProcessingDeinterlaceHint = new System.Windows.Forms.Label(); labelProcessingDenoiseHint = new System.Windows.Forms.Label(); groupAdvancedEncoding = new System.Windows.Forms.GroupBox(); tableAdvancedEncoding = new System.Windows.Forms.TableLayoutPanel(); labelEncodingFrameRateHint = new System.Windows.Forms.Label(); labelEncodingFrameRate = new System.Windows.Forms.Label(); labelEncodingNGOVHint = new System.Windows.Forms.Label(); labelEncodingThreads = new System.Windows.Forms.Label(); labelEncodingThreadsHint = new System.Windows.Forms.Label(); labelEncodingSlices = new System.Windows.Forms.Label(); labelEncodingSlicesHint = new System.Windows.Forms.Label(); labelEncodingArguments = new System.Windows.Forms.Label(); statusStrip = new System.Windows.Forms.StatusStrip(); tableMainForm.SuspendLayout(); groupMain.SuspendLayout(); tableMain.SuspendLayout(); tabControlOptions.SuspendLayout(); tabProcessing.SuspendLayout(); tableProcessing.SuspendLayout(); toolStripProcessing.SuspendLayout(); panelProcessingInput.SuspendLayout(); tabEncoding.SuspendLayout(); tableEncoding.SuspendLayout(); groupEncodingGeneral.SuspendLayout(); tableEncodingGeneral.SuspendLayout(); groupEncodingVideo.SuspendLayout(); this.tableLayoutPanelEncodingVideo.SuspendLayout(); panelEncodingModeSwapper.SuspendLayout(); this.tableVideoConstantOptions.SuspendLayout(); this.tableVideoVariableOptions.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.numericCrf)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.numericCrfTolerance)).BeginInit(); groupEncodingAudio.SuspendLayout(); tableEncodingAudio.SuspendLayout(); panelEncodingModeSwapperTwo.SuspendLayout(); this.tableAudioConstantOptions.SuspendLayout(); this.tableAudioVariableOptions.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.numericAudioQuality)).BeginInit(); tabAdvanced.SuspendLayout(); tableAdvanced.SuspendLayout(); groupAdvancedProcessing.SuspendLayout(); tableAdvancedProcessing.SuspendLayout(); groupAdvancedEncoding.SuspendLayout(); tableAdvancedEncoding.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.trackThreads)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.trackSlices)).BeginInit(); statusStrip.SuspendLayout(); this.panelContainTheProgressBar.SuspendLayout(); this.panelHideTheOptions.SuspendLayout(); this.SuspendLayout(); // // tableMainForm // tableMainForm.ColumnCount = 1; tableMainForm.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); tableMainForm.Controls.Add(groupMain, 0, 0); tableMainForm.Controls.Add(tabControlOptions, 0, 1); tableMainForm.Dock = System.Windows.Forms.DockStyle.Fill; tableMainForm.Location = new System.Drawing.Point(3, 3); tableMainForm.Name = "tableMainForm"; tableMainForm.RowCount = 3; tableMainForm.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 84F)); tableMainForm.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F)); tableMainForm.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F)); tableMainForm.Size = new System.Drawing.Size(1067, 443); tableMainForm.TabIndex = 0; // // groupMain // groupMain.Controls.Add(tableMain); groupMain.Dock = System.Windows.Forms.DockStyle.Fill; groupMain.Location = new System.Drawing.Point(3, 3); groupMain.Name = "groupMain"; groupMain.Size = new System.Drawing.Size(1061, 78); groupMain.TabIndex = 0; groupMain.TabStop = false; groupMain.Text = "Main"; // // tableMain // tableMain.ColumnCount = 4; tableMain.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 69F)); tableMain.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); tableMain.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 68F)); tableMain.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 77F)); tableMain.Controls.Add(labelInputFile, 0, 0); tableMain.Controls.Add(this.textBoxIn, 1, 0); tableMain.Controls.Add(this.buttonBrowseIn, 2, 0); tableMain.Controls.Add(labelOutputFile, 0, 1); tableMain.Controls.Add(this.textBoxOut, 1, 1); tableMain.Controls.Add(buttonBrowseOut, 2, 1); tableMain.Controls.Add(this.buttonGo, 3, 0); tableMain.Dock = System.Windows.Forms.DockStyle.Fill; tableMain.Location = new System.Drawing.Point(3, 16); tableMain.Name = "tableMain"; tableMain.RowCount = 2; tableMain.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F)); tableMain.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F)); tableMain.Size = new System.Drawing.Size(1055, 59); tableMain.TabIndex = 0; // // labelInputFile // labelInputFile.AutoSize = true; labelInputFile.Dock = System.Windows.Forms.DockStyle.Fill; labelInputFile.Location = new System.Drawing.Point(3, 0); labelInputFile.Name = "labelInputFile"; labelInputFile.Size = new System.Drawing.Size(63, 29); labelInputFile.TabIndex = 0; labelInputFile.Text = "Input file:"; labelInputFile.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // textBoxIn // this.textBoxIn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); this.textBoxIn.Location = new System.Drawing.Point(72, 4); this.textBoxIn.Name = "textBoxIn"; this.textBoxIn.Size = new System.Drawing.Size(835, 20); this.textBoxIn.TabIndex = 1; // // buttonBrowseIn // this.buttonBrowseIn.Dock = System.Windows.Forms.DockStyle.Fill; this.buttonBrowseIn.Location = new System.Drawing.Point(913, 3); this.buttonBrowseIn.Name = "buttonBrowseIn"; this.buttonBrowseIn.Size = new System.Drawing.Size(62, 23); this.buttonBrowseIn.TabIndex = 2; this.buttonBrowseIn.Text = "Browse"; this.buttonBrowseIn.UseVisualStyleBackColor = true; this.buttonBrowseIn.Click += new System.EventHandler(this.buttonBrowseIn_Click); // // labelOutputFile // labelOutputFile.AutoSize = true; labelOutputFile.Dock = System.Windows.Forms.DockStyle.Fill; labelOutputFile.Location = new System.Drawing.Point(3, 29); labelOutputFile.Name = "labelOutputFile"; labelOutputFile.Size = new System.Drawing.Size(63, 30); labelOutputFile.TabIndex = 0; labelOutputFile.Text = "Output file:"; labelOutputFile.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // textBoxOut // this.textBoxOut.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); this.textBoxOut.Location = new System.Drawing.Point(72, 34); this.textBoxOut.Name = "textBoxOut"; this.textBoxOut.Size = new System.Drawing.Size(835, 20); this.textBoxOut.TabIndex = 3; // // buttonBrowseOut // buttonBrowseOut.Dock = System.Windows.Forms.DockStyle.Fill; buttonBrowseOut.Location = new System.Drawing.Point(913, 32); buttonBrowseOut.Name = "buttonBrowseOut"; buttonBrowseOut.Size = new System.Drawing.Size(62, 24); buttonBrowseOut.TabIndex = 4; buttonBrowseOut.Text = "Browse"; buttonBrowseOut.UseVisualStyleBackColor = true; buttonBrowseOut.Click += new System.EventHandler(this.buttonBrowseOut_Click); // // buttonGo // this.buttonGo.Dock = System.Windows.Forms.DockStyle.Fill; this.buttonGo.Enabled = false; this.buttonGo.Location = new System.Drawing.Point(981, 3); this.buttonGo.Name = "buttonGo"; tableMain.SetRowSpan(this.buttonGo, 2); this.buttonGo.Size = new System.Drawing.Size(71, 53); this.buttonGo.TabIndex = 5; this.buttonGo.Text = "Convert"; this.buttonGo.UseVisualStyleBackColor = true; this.buttonGo.Click += new System.EventHandler(this.buttonGo_Click); // // tabControlOptions // tabControlOptions.Controls.Add(tabProcessing); tabControlOptions.Controls.Add(tabEncoding); tabControlOptions.Controls.Add(tabAdvanced); tabControlOptions.Dock = System.Windows.Forms.DockStyle.Fill; tabControlOptions.Location = new System.Drawing.Point(3, 87); tabControlOptions.Name = "tabControlOptions"; tabControlOptions.SelectedIndex = 0; tabControlOptions.Size = new System.Drawing.Size(1061, 333); tabControlOptions.TabIndex = 1; // // tabProcessing // tabProcessing.Controls.Add(tableProcessing); tabProcessing.Location = new System.Drawing.Point(4, 22); tabProcessing.Name = "tabProcessing"; tabProcessing.Padding = new System.Windows.Forms.Padding(3); tabProcessing.Size = new System.Drawing.Size(1053, 307); tabProcessing.TabIndex = 3; tabProcessing.Text = "Processing"; // // tableProcessing // tableProcessing.ColumnCount = 1; tableProcessing.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); tableProcessing.Controls.Add(toolStripProcessing, 0, 0); tableProcessing.Controls.Add(panelProcessingInput, 0, 1); tableProcessing.Dock = System.Windows.Forms.DockStyle.Fill; tableProcessing.Location = new System.Drawing.Point(3, 3); tableProcessing.Name = "tableProcessing"; tableProcessing.RowCount = 2; tableProcessing.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F)); tableProcessing.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F)); tableProcessing.Size = new System.Drawing.Size(1047, 301); tableProcessing.TabIndex = 0; // // toolStripProcessing // toolStripProcessing.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden; toolStripProcessing.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.buttonTrim, this.buttonCrop, this.buttonResize, this.buttonSubtitle, this.buttonReverse, this.buttonOverlay, this.buttonCaption, this.boxAdvancedScripting, this.buttonExportProcessing, this.buttonPreview, this.buttonDub, this.buttonRate}); toolStripProcessing.Location = new System.Drawing.Point(0, 0); toolStripProcessing.Name = "toolStripProcessing"; toolStripProcessing.RenderMode = System.Windows.Forms.ToolStripRenderMode.System; toolStripProcessing.ShowItemToolTips = false; toolStripProcessing.Size = new System.Drawing.Size(1047, 25); toolStripProcessing.TabIndex = 0; toolStripProcessing.TabStop = true; // // buttonTrim // this.buttonTrim.AccessibleDescription = "Select a clip from your video."; this.buttonTrim.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.buttonMultipleTrim}); this.buttonTrim.Enabled = false; this.buttonTrim.Margin = new System.Windows.Forms.Padding(0, 1, 3, 2); this.buttonTrim.Name = "buttonTrim"; this.buttonTrim.Size = new System.Drawing.Size(48, 22); this.buttonTrim.Text = "Trim"; this.buttonTrim.ButtonClick += new System.EventHandler(this.buttonTrim_Click); this.buttonTrim.MouseEnter += new System.EventHandler(this.ToolStripItemTooltip); this.buttonTrim.MouseLeave += new System.EventHandler(this.clearToolTip); // // buttonMultipleTrim // this.buttonMultipleTrim.AccessibleDescription = "Select many clips from your video, and sort them on a timeline."; this.buttonMultipleTrim.Name = "buttonMultipleTrim"; this.buttonMultipleTrim.Size = new System.Drawing.Size(152, 22); this.buttonMultipleTrim.Text = "Multiple Trim"; this.buttonMultipleTrim.Click += new System.EventHandler(this.buttonMultipleTrim_Click); this.buttonMultipleTrim.MouseEnter += new System.EventHandler(this.ToolStripItemTooltip); this.buttonMultipleTrim.MouseLeave += new System.EventHandler(this.clearToolTip); // // buttonCrop // this.buttonCrop.AccessibleDescription = "Crop your video into a smaller frame."; this.buttonCrop.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.buttonCrop.Enabled = false; this.buttonCrop.Name = "buttonCrop"; this.buttonCrop.Size = new System.Drawing.Size(37, 22); this.buttonCrop.Text = "Crop"; this.buttonCrop.Click += new System.EventHandler(this.buttonCrop_Click); this.buttonCrop.MouseEnter += new System.EventHandler(this.ToolStripItemTooltip); this.buttonCrop.MouseLeave += new System.EventHandler(this.clearToolTip); // // buttonResize // this.buttonResize.AccessibleDescription = "Scale your video."; this.buttonResize.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.buttonResize.Enabled = false; this.buttonResize.Name = "buttonResize"; this.buttonResize.Size = new System.Drawing.Size(43, 22); this.buttonResize.Text = "Resize"; this.buttonResize.Click += new System.EventHandler(this.buttonResize_Click); this.buttonResize.MouseEnter += new System.EventHandler(this.ToolStripItemTooltip); this.buttonResize.MouseLeave += new System.EventHandler(this.clearToolTip); // // buttonSubtitle // this.buttonSubtitle.AccessibleDescription = "Burn subtitles into the video."; this.buttonSubtitle.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.buttonSubtitle.Enabled = false; this.buttonSubtitle.Name = "buttonSubtitle"; this.buttonSubtitle.Size = new System.Drawing.Size(56, 22); this.buttonSubtitle.Text = "Subtitles"; this.buttonSubtitle.Click += new System.EventHandler(this.buttonSubtitle_Click); this.buttonSubtitle.MouseEnter += new System.EventHandler(this.ToolStripItemTooltip); this.buttonSubtitle.MouseLeave += new System.EventHandler(this.clearToolTip); // // buttonReverse // this.buttonReverse.AccessibleDescription = "Everything is backwards!"; this.buttonReverse.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.buttonReverse.Enabled = false; this.buttonReverse.Name = "buttonReverse"; this.buttonReverse.Size = new System.Drawing.Size(51, 22); this.buttonReverse.Text = "Reverse"; this.buttonReverse.Click += new System.EventHandler(this.buttonReverse_Click); this.buttonReverse.MouseEnter += new System.EventHandler(this.ToolStripItemTooltip); this.buttonReverse.MouseLeave += new System.EventHandler(this.clearToolTip); // // buttonOverlay // this.buttonOverlay.AccessibleDescription = "Overlay a picture on top of your video."; this.buttonOverlay.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.buttonOverlay.Enabled = false; this.buttonOverlay.Name = "buttonOverlay"; this.buttonOverlay.Size = new System.Drawing.Size(51, 22); this.buttonOverlay.Text = "Overlay"; this.buttonOverlay.Click += new System.EventHandler(this.buttonOverlay_Click); this.buttonOverlay.MouseEnter += new System.EventHandler(this.ToolStripItemTooltip); this.buttonOverlay.MouseLeave += new System.EventHandler(this.clearToolTip); // // buttonCaption // this.buttonCaption.AccessibleDescription = "Add some funny text to your video."; this.buttonCaption.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.buttonCaption.Enabled = false; this.buttonCaption.Name = "buttonCaption"; this.buttonCaption.Size = new System.Drawing.Size(53, 22); this.buttonCaption.Text = "Caption"; this.buttonCaption.Click += new System.EventHandler(this.buttonCaption_Click); this.buttonCaption.MouseEnter += new System.EventHandler(this.ToolStripItemTooltip); this.buttonCaption.MouseLeave += new System.EventHandler(this.clearToolTip); // // boxAdvancedScripting // this.boxAdvancedScripting.AccessibleDescription = "Are you a bad enough dude? Take care, there is no way back. You will have to star" + "t over if you f**k up."; this.boxAdvancedScripting.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; this.boxAdvancedScripting.Name = "boxAdvancedScripting"; this.boxAdvancedScripting.Size = new System.Drawing.Size(64, 22); this.boxAdvancedScripting.Text = "Advanced"; this.boxAdvancedScripting.Click += new System.EventHandler(this.boxAdvancedScripting_Click); this.boxAdvancedScripting.MouseEnter += new System.EventHandler(this.ToolStripItemTooltip); this.boxAdvancedScripting.MouseLeave += new System.EventHandler(this.clearToolTip); // // buttonExportProcessing // this.buttonExportProcessing.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; this.buttonExportProcessing.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.buttonExportProcessing.Enabled = false; this.buttonExportProcessing.Image = ((System.Drawing.Image)(resources.GetObject("buttonExportProcessing.Image"))); this.buttonExportProcessing.ImageTransparentColor = System.Drawing.Color.Magenta; this.buttonExportProcessing.Name = "buttonExportProcessing"; this.buttonExportProcessing.Size = new System.Drawing.Size(44, 22); this.buttonExportProcessing.Text = "Export"; this.buttonExportProcessing.Click += new System.EventHandler(this.buttonExportProcessing_Click); // // buttonPreview // this.buttonPreview.AccessibleDescription = "Open a preview window that will loop your processing settings. Note that this doe" + "sn\'t reflect output encoding quality."; this.buttonPreview.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; this.buttonPreview.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.buttonPreview.Enabled = false; this.buttonPreview.Name = "buttonPreview"; this.buttonPreview.Size = new System.Drawing.Size(84, 22); this.buttonPreview.Text = "Preview filters"; this.buttonPreview.Click += new System.EventHandler(this.buttonPreview_Click); this.buttonPreview.MouseEnter += new System.EventHandler(this.ToolStripItemTooltip); this.buttonPreview.MouseLeave += new System.EventHandler(this.clearToolTip); // // buttonDub // this.buttonDub.AccessibleDescription = "Add or replace the audio on your video."; this.buttonDub.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.buttonDub.Enabled = false; this.buttonDub.Name = "buttonDub"; this.buttonDub.Size = new System.Drawing.Size(33, 22); this.buttonDub.Text = "Dub"; this.buttonDub.Click += new System.EventHandler(this.buttonDub_Click); this.buttonDub.MouseEnter += new System.EventHandler(this.ToolStripItemTooltip); this.buttonDub.MouseLeave += new System.EventHandler(this.clearToolTip); // // panelProcessingInput // panelProcessingInput.Controls.Add(this.listViewProcessingScript); panelProcessingInput.Controls.Add(this.textBoxProcessingScript); panelProcessingInput.Dock = System.Windows.Forms.DockStyle.Fill; panelProcessingInput.Location = new System.Drawing.Point(0, 25); panelProcessingInput.Margin = new System.Windows.Forms.Padding(0); panelProcessingInput.Name = "panelProcessingInput"; panelProcessingInput.Size = new System.Drawing.Size(1047, 276); panelProcessingInput.TabIndex = 1; // // listViewProcessingScript // this.listViewProcessingScript.AccessibleDescription = "Double click a filter to edit it. Select a filter and press Delete to remove it."; this.listViewProcessingScript.Dock = System.Windows.Forms.DockStyle.Fill; this.listViewProcessingScript.LargeImageList = this.imageListFilters; this.listViewProcessingScript.Location = new System.Drawing.Point(0, 0); this.listViewProcessingScript.Margin = new System.Windows.Forms.Padding(0); this.listViewProcessingScript.Name = "listViewProcessingScript"; this.listViewProcessingScript.Size = new System.Drawing.Size(1047, 276); this.listViewProcessingScript.TabIndex = 3; this.listViewProcessingScript.UseCompatibleStateImageBehavior = false; this.listViewProcessingScript.ItemActivate += new System.EventHandler(this.listViewProcessingScript_ItemActivate); this.listViewProcessingScript.KeyUp += new System.Windows.Forms.KeyEventHandler(this.listViewProcessingScript_KeyUp); this.listViewProcessingScript.MouseEnter += new System.EventHandler(this.ControlTooltip); this.listViewProcessingScript.MouseLeave += new System.EventHandler(this.clearToolTip); // // imageListFilters // this.imageListFilters.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageListFilters.ImageStream"))); this.imageListFilters.TransparentColor = System.Drawing.Color.Transparent; this.imageListFilters.Images.SetKeyName(0, "Trim"); this.imageListFilters.Images.SetKeyName(1, "Crop"); this.imageListFilters.Images.SetKeyName(2, "Subtitles"); this.imageListFilters.Images.SetKeyName(3, "Reverse"); this.imageListFilters.Images.SetKeyName(4, "Resize"); this.imageListFilters.Images.SetKeyName(5, "Overlay"); this.imageListFilters.Images.SetKeyName(6, "Caption"); this.imageListFilters.Images.SetKeyName(7, "Dub"); this.imageListFilters.Images.SetKeyName(8, "Rate"); // // textBoxProcessingScript // this.textBoxProcessingScript.AcceptsReturn = true; this.textBoxProcessingScript.Dock = System.Windows.Forms.DockStyle.Fill; this.textBoxProcessingScript.Location = new System.Drawing.Point(0, 0); this.textBoxProcessingScript.Margin = new System.Windows.Forms.Padding(0); this.textBoxProcessingScript.Multiline = true; this.textBoxProcessingScript.Name = "textBoxProcessingScript"; this.textBoxProcessingScript.Size = new System.Drawing.Size(1047, 276); this.textBoxProcessingScript.TabIndex = 2; this.textBoxProcessingScript.Text = "# This is an AviSynth script. You may write advanced commands below, or just pres" + "s the buttons above for smooth sailing."; this.textBoxProcessingScript.Visible = false; this.textBoxProcessingScript.Leave += new System.EventHandler(this.textBoxProcessingScript_Leave); // // tabEncoding // tabEncoding.BackColor = System.Drawing.SystemColors.Control; tabEncoding.Controls.Add(tableEncoding); tabEncoding.Location = new System.Drawing.Point(4, 22); tabEncoding.Name = "tabEncoding"; tabEncoding.Padding = new System.Windows.Forms.Padding(3); tabEncoding.Size = new System.Drawing.Size(1053, 307); tabEncoding.TabIndex = 0; tabEncoding.Text = "Encoding"; // // tableEncoding // tableEncoding.ColumnCount = 1; tableEncoding.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); tableEncoding.Controls.Add(groupEncodingGeneral, 0, 0); tableEncoding.Controls.Add(groupEncodingVideo, 0, 1); tableEncoding.Controls.Add(groupEncodingAudio, 0, 2); tableEncoding.Dock = System.Windows.Forms.DockStyle.Fill; tableEncoding.Location = new System.Drawing.Point(3, 3); tableEncoding.Name = "tableEncoding"; tableEncoding.RowCount = 4; tableEncoding.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 107F)); tableEncoding.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 107F)); tableEncoding.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 79F)); tableEncoding.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F)); tableEncoding.Size = new System.Drawing.Size(1047, 301); tableEncoding.TabIndex = 0; // // groupEncodingGeneral // groupEncodingGeneral.Controls.Add(tableEncodingGeneral); groupEncodingGeneral.Dock = System.Windows.Forms.DockStyle.Fill; groupEncodingGeneral.Location = new System.Drawing.Point(3, 3); groupEncodingGeneral.Name = "groupEncodingGeneral"; groupEncodingGeneral.Size = new System.Drawing.Size(1041, 101); groupEncodingGeneral.TabIndex = 1; groupEncodingGeneral.TabStop = false; groupEncodingGeneral.Text = "General"; // // tableEncodingGeneral // tableEncodingGeneral.ColumnCount = 5; tableEncodingGeneral.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 79F)); tableEncodingGeneral.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 88F)); tableEncodingGeneral.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 60F)); tableEncodingGeneral.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 248F)); tableEncodingGeneral.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); tableEncodingGeneral.Controls.Add(this.buttonVariableDefault, 2, 2); tableEncodingGeneral.Controls.Add(labelGeneralModeVariableHint, 3, 2); tableEncodingGeneral.Controls.Add(labelGeneralModeConstantHint, 3, 1); tableEncodingGeneral.Controls.Add(labelGeneralMode, 0, 1); tableEncodingGeneral.Controls.Add(labelGeneralTitle, 0, 0); tableEncodingGeneral.Controls.Add(this.boxTitle, 1, 0); tableEncodingGeneral.Controls.Add(labelGeneralTitleHint, 4, 0); tableEncodingGeneral.Controls.Add(this.boxConstant, 1, 1); tableEncodingGeneral.Controls.Add(this.boxVariable, 1, 2); tableEncodingGeneral.Controls.Add(this.buttonConstantDefault, 2, 1); tableEncodingGeneral.Dock = System.Windows.Forms.DockStyle.Fill; tableEncodingGeneral.Location = new System.Drawing.Point(3, 16); tableEncodingGeneral.Name = "tableEncodingGeneral"; tableEncodingGeneral.RowCount = 3; tableEncodingGeneral.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F)); tableEncodingGeneral.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F)); tableEncodingGeneral.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F)); tableEncodingGeneral.Size = new System.Drawing.Size(1035, 82); tableEncodingGeneral.TabIndex = 0; // // buttonVariableDefault // this.buttonVariableDefault.Dock = System.Windows.Forms.DockStyle.Fill; this.buttonVariableDefault.Location = new System.Drawing.Point(170, 59); this.buttonVariableDefault.Name = "buttonVariableDefault"; this.buttonVariableDefault.Size = new System.Drawing.Size(54, 22); this.buttonVariableDefault.TabIndex = 5; this.buttonVariableDefault.Text = "Default"; this.buttonVariableDefault.UseVisualStyleBackColor = true; this.buttonVariableDefault.Visible = false; this.buttonVariableDefault.Click += new System.EventHandler(this.buttonVariableDefault_Click); // // labelGeneralModeVariableHint // labelGeneralModeVariableHint.AutoSize = true; tableEncodingGeneral.SetColumnSpan(labelGeneralModeVariableHint, 2); labelGeneralModeVariableHint.Dock = System.Windows.Forms.DockStyle.Fill; labelGeneralModeVariableHint.Location = new System.Drawing.Point(230, 56); labelGeneralModeVariableHint.Name = "labelGeneralModeVariableHint"; labelGeneralModeVariableHint.Size = new System.Drawing.Size(802, 28); labelGeneralModeVariableHint.TabIndex = 0; labelGeneralModeVariableHint.Text = "This will make your video get the size it deserves to look good."; labelGeneralModeVariableHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // labelGeneralModeConstantHint // labelGeneralModeConstantHint.AutoSize = true; tableEncodingGeneral.SetColumnSpan(labelGeneralModeConstantHint, 2); labelGeneralModeConstantHint.Dock = System.Windows.Forms.DockStyle.Fill; labelGeneralModeConstantHint.Location = new System.Drawing.Point(230, 28); labelGeneralModeConstantHint.Name = "labelGeneralModeConstantHint"; labelGeneralModeConstantHint.Size = new System.Drawing.Size(802, 28); labelGeneralModeConstantHint.TabIndex = 0; labelGeneralModeConstantHint.Text = "This will make your video have a specific filesize, and suffer lower quality to m" + "atch that size."; labelGeneralModeConstantHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // labelGeneralMode // labelGeneralMode.AutoSize = true; labelGeneralMode.Dock = System.Windows.Forms.DockStyle.Fill; labelGeneralMode.Location = new System.Drawing.Point(3, 28); labelGeneralMode.Name = "labelGeneralMode"; labelGeneralMode.Size = new System.Drawing.Size(73, 28); labelGeneralMode.TabIndex = 0; labelGeneralMode.Text = "Mode:"; labelGeneralMode.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // labelGeneralTitle // labelGeneralTitle.AutoSize = true; labelGeneralTitle.Dock = System.Windows.Forms.DockStyle.Fill; labelGeneralTitle.Location = new System.Drawing.Point(3, 0); labelGeneralTitle.Name = "labelGeneralTitle"; labelGeneralTitle.Size = new System.Drawing.Size(73, 28); labelGeneralTitle.TabIndex = 0; labelGeneralTitle.Text = "Title:"; labelGeneralTitle.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // boxTitle // this.boxTitle.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); tableEncodingGeneral.SetColumnSpan(this.boxTitle, 3); this.boxTitle.Location = new System.Drawing.Point(82, 4); this.boxTitle.Name = "boxTitle"; this.boxTitle.Size = new System.Drawing.Size(390, 20); this.boxTitle.TabIndex = 1; this.boxTitle.TextChanged += new System.EventHandler(this.UpdateArguments); // // labelGeneralTitleHint // labelGeneralTitleHint.AutoSize = true; labelGeneralTitleHint.Dock = System.Windows.Forms.DockStyle.Fill; labelGeneralTitleHint.Location = new System.Drawing.Point(478, 0); labelGeneralTitleHint.Name = "labelGeneralTitleHint"; labelGeneralTitleHint.Size = new System.Drawing.Size(554, 28); labelGeneralTitleHint.TabIndex = 0; labelGeneralTitleHint.Text = "Adds a string of text to the metadata of the video, which can be used to indicate" + " the source of a video, for example. Leave blank for no title."; labelGeneralTitleHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // boxConstant // this.boxConstant.AutoSize = true; this.boxConstant.Checked = true; this.boxConstant.Dock = System.Windows.Forms.DockStyle.Fill; this.boxConstant.Location = new System.Drawing.Point(82, 31); this.boxConstant.Name = "boxConstant"; this.boxConstant.Size = new System.Drawing.Size(82, 22); this.boxConstant.TabIndex = 2; this.boxConstant.TabStop = true; this.boxConstant.Text = "Constant"; this.boxConstant.UseVisualStyleBackColor = true; this.boxConstant.CheckedChanged += new System.EventHandler(this.boxConstant_CheckedChanged); // // boxVariable // this.boxVariable.AutoSize = true; this.boxVariable.Dock = System.Windows.Forms.DockStyle.Fill; this.boxVariable.Location = new System.Drawing.Point(82, 59); this.boxVariable.Name = "boxVariable"; this.boxVariable.Size = new System.Drawing.Size(82, 22); this.boxVariable.TabIndex = 3; this.boxVariable.Text = "Variable"; this.boxVariable.UseVisualStyleBackColor = true; this.boxVariable.CheckedChanged += new System.EventHandler(this.boxVariable_CheckedChanged); // // buttonConstantDefault // this.buttonConstantDefault.Dock = System.Windows.Forms.DockStyle.Fill; this.buttonConstantDefault.Location = new System.Drawing.Point(170, 31); this.buttonConstantDefault.Name = "buttonConstantDefault"; this.buttonConstantDefault.Size = new System.Drawing.Size(54, 22); this.buttonConstantDefault.TabIndex = 4; this.buttonConstantDefault.Text = "Default"; this.buttonConstantDefault.UseVisualStyleBackColor = true; this.buttonConstantDefault.Visible = false; this.buttonConstantDefault.Click += new System.EventHandler(this.buttonConstantDefault_Click); // // groupEncodingVideo // groupEncodingVideo.Controls.Add(this.tableLayoutPanelEncodingVideo); groupEncodingVideo.Dock = System.Windows.Forms.DockStyle.Fill; groupEncodingVideo.Location = new System.Drawing.Point(3, 110); groupEncodingVideo.Name = "groupEncodingVideo"; groupEncodingVideo.Size = new System.Drawing.Size(1041, 101); groupEncodingVideo.TabIndex = 2; groupEncodingVideo.TabStop = false; groupEncodingVideo.Text = "Video"; // // tableLayoutPanelEncodingVideo // this.tableLayoutPanelEncodingVideo.ColumnCount = 4; this.tableLayoutPanelEncodingVideo.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 79F)); this.tableLayoutPanelEncodingVideo.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 118F)); this.tableLayoutPanelEncodingVideo.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 30F)); this.tableLayoutPanelEncodingVideo.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); this.tableLayoutPanelEncodingVideo.Controls.Add(panelEncodingModeSwapper, 0, 1); this.tableLayoutPanelEncodingVideo.Controls.Add(this.boxHQ, 0, 0); this.tableLayoutPanelEncodingVideo.Controls.Add(labelVideoHQHint, 3, 0); this.tableLayoutPanelEncodingVideo.Dock = System.Windows.Forms.DockStyle.Fill; this.tableLayoutPanelEncodingVideo.Location = new System.Drawing.Point(3, 16); this.tableLayoutPanelEncodingVideo.Name = "tableLayoutPanelEncodingVideo"; this.tableLayoutPanelEncodingVideo.RowCount = 3; this.tableLayoutPanelEncodingVideo.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F)); this.tableLayoutPanelEncodingVideo.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F)); this.tableLayoutPanelEncodingVideo.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F)); this.tableLayoutPanelEncodingVideo.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F)); this.tableLayoutPanelEncodingVideo.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F)); this.tableLayoutPanelEncodingVideo.Size = new System.Drawing.Size(1035, 82); this.tableLayoutPanelEncodingVideo.TabIndex = 0; // // panelEncodingModeSwapper // this.tableLayoutPanelEncodingVideo.SetColumnSpan(panelEncodingModeSwapper, 4); panelEncodingModeSwapper.Controls.Add(this.tableVideoConstantOptions); panelEncodingModeSwapper.Controls.Add(this.tableVideoVariableOptions); panelEncodingModeSwapper.Dock = System.Windows.Forms.DockStyle.Fill; panelEncodingModeSwapper.Location = new System.Drawing.Point(0, 28); panelEncodingModeSwapper.Margin = new System.Windows.Forms.Padding(0); panelEncodingModeSwapper.Name = "panelEncodingModeSwapper"; this.tableLayoutPanelEncodingVideo.SetRowSpan(panelEncodingModeSwapper, 2); panelEncodingModeSwapper.Size = new System.Drawing.Size(1035, 56); panelEncodingModeSwapper.TabIndex = 2; // // tableVideoConstantOptions // this.tableVideoConstantOptions.ColumnCount = 4; this.tableVideoConstantOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 79F)); this.tableVideoConstantOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 118F)); this.tableVideoConstantOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 30F)); this.tableVideoConstantOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); this.tableVideoConstantOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F)); this.tableVideoConstantOptions.Controls.Add(labelVideoSizeLimit, 0, 0); this.tableVideoConstantOptions.Controls.Add(this.boxLimit, 1, 0); this.tableVideoConstantOptions.Controls.Add(labelVideoSizeLimitUnit, 2, 0); this.tableVideoConstantOptions.Controls.Add(labelVideoSizeLimitHint, 3, 0); this.tableVideoConstantOptions.Controls.Add(labelVideoBitrate, 0, 1); this.tableVideoConstantOptions.Controls.Add(this.boxBitrate, 1, 1); this.tableVideoConstantOptions.Controls.Add(labelVideoBitrateUnit, 2, 1); this.tableVideoConstantOptions.Controls.Add(labelVideoBitrateHint, 3, 1); this.tableVideoConstantOptions.Dock = System.Windows.Forms.DockStyle.Fill; this.tableVideoConstantOptions.Location = new System.Drawing.Point(0, 0); this.tableVideoConstantOptions.Margin = new System.Windows.Forms.Padding(0); this.tableVideoConstantOptions.Name = "tableVideoConstantOptions"; this.tableVideoConstantOptions.RowCount = 2; this.tableVideoConstantOptions.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F)); this.tableVideoConstantOptions.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F)); this.tableVideoConstantOptions.Size = new System.Drawing.Size(1035, 56); this.tableVideoConstantOptions.TabIndex = 0; // // labelVideoSizeLimit // labelVideoSizeLimit.AutoSize = true; labelVideoSizeLimit.Dock = System.Windows.Forms.DockStyle.Fill; labelVideoSizeLimit.Location = new System.Drawing.Point(3, 0); labelVideoSizeLimit.Name = "labelVideoSizeLimit"; labelVideoSizeLimit.Size = new System.Drawing.Size(73, 28); labelVideoSizeLimit.TabIndex = 0; labelVideoSizeLimit.Text = "Size limit:"; labelVideoSizeLimit.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // boxLimit // this.boxLimit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); this.boxLimit.Location = new System.Drawing.Point(82, 4); this.boxLimit.Margin = new System.Windows.Forms.Padding(3, 3, 0, 3); this.boxLimit.Name = "boxLimit"; this.boxLimit.Size = new System.Drawing.Size(115, 20); this.boxLimit.TabIndex = 1; this.boxLimit.TextChanged += new System.EventHandler(this.UpdateArguments); this.boxLimit.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBoxNumbersOnly); // // labelVideoSizeLimitUnit // labelVideoSizeLimitUnit.AutoSize = true; labelVideoSizeLimitUnit.Dock = System.Windows.Forms.DockStyle.Fill; labelVideoSizeLimitUnit.Location = new System.Drawing.Point(197, 0); labelVideoSizeLimitUnit.Margin = new System.Windows.Forms.Padding(0); labelVideoSizeLimitUnit.Name = "labelVideoSizeLimitUnit"; labelVideoSizeLimitUnit.Size = new System.Drawing.Size(30, 28); labelVideoSizeLimitUnit.TabIndex = 0; labelVideoSizeLimitUnit.Text = "MiB"; labelVideoSizeLimitUnit.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // labelVideoSizeLimitHint // labelVideoSizeLimitHint.AutoSize = true; labelVideoSizeLimitHint.Dock = System.Windows.Forms.DockStyle.Fill; labelVideoSizeLimitHint.Location = new System.Drawing.Point(230, 0); labelVideoSizeLimitHint.Name = "labelVideoSizeLimitHint"; labelVideoSizeLimitHint.Size = new System.Drawing.Size(802, 28); labelVideoSizeLimitHint.TabIndex = 0; labelVideoSizeLimitHint.Text = "Will adjust the quality to attempt to stay below this limit, and cut off the end " + "of a video if needed. Leave blank for no limit. The limit on 4chan is 3 MB."; labelVideoSizeLimitHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // labelVideoBitrate // labelVideoBitrate.AutoSize = true; labelVideoBitrate.Dock = System.Windows.Forms.DockStyle.Fill; labelVideoBitrate.Location = new System.Drawing.Point(3, 28); labelVideoBitrate.Name = "labelVideoBitrate"; labelVideoBitrate.Size = new System.Drawing.Size(73, 28); labelVideoBitrate.TabIndex = 0; labelVideoBitrate.Text = "Bitrate:"; labelVideoBitrate.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // boxBitrate // this.boxBitrate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); this.boxBitrate.Location = new System.Drawing.Point(82, 32); this.boxBitrate.Margin = new System.Windows.Forms.Padding(3, 3, 0, 3); this.boxBitrate.Name = "boxBitrate"; this.boxBitrate.Size = new System.Drawing.Size(115, 20); this.boxBitrate.TabIndex = 2; this.boxBitrate.TextChanged += new System.EventHandler(this.UpdateArguments); this.boxBitrate.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBoxNumbersOnly); // // labelVideoBitrateUnit // labelVideoBitrateUnit.AutoSize = true; labelVideoBitrateUnit.Dock = System.Windows.Forms.DockStyle.Fill; labelVideoBitrateUnit.Location = new System.Drawing.Point(197, 28); labelVideoBitrateUnit.Margin = new System.Windows.Forms.Padding(0); labelVideoBitrateUnit.Name = "labelVideoBitrateUnit"; labelVideoBitrateUnit.Size = new System.Drawing.Size(30, 28); labelVideoBitrateUnit.TabIndex = 0; labelVideoBitrateUnit.Text = "Kb/s"; labelVideoBitrateUnit.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // labelVideoBitrateHint // labelVideoBitrateHint.AutoSize = true; labelVideoBitrateHint.Dock = System.Windows.Forms.DockStyle.Fill; labelVideoBitrateHint.Location = new System.Drawing.Point(230, 28); labelVideoBitrateHint.Name = "labelVideoBitrateHint"; labelVideoBitrateHint.Size = new System.Drawing.Size(802, 28); labelVideoBitrateHint.TabIndex = 0; labelVideoBitrateHint.Text = "Determines the quality of the video. Keep blank to let the program pick one based" + " on size limit and duration."; labelVideoBitrateHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // tableVideoVariableOptions // this.tableVideoVariableOptions.ColumnCount = 4; this.tableVideoVariableOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 79F)); this.tableVideoVariableOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 118F)); this.tableVideoVariableOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 30F)); this.tableVideoVariableOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); this.tableVideoVariableOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F)); this.tableVideoVariableOptions.Controls.Add(labelVideoCrf, 0, 0); this.tableVideoVariableOptions.Controls.Add(this.numericCrf, 1, 0); this.tableVideoVariableOptions.Controls.Add(labelVideoCrfHint, 3, 0); this.tableVideoVariableOptions.Controls.Add(labelVideoCrfTolerance, 0, 1); this.tableVideoVariableOptions.Controls.Add(this.numericCrfTolerance, 1, 1); this.tableVideoVariableOptions.Controls.Add(labelVideoCrfToleranceHint, 4, 1); this.tableVideoVariableOptions.Dock = System.Windows.Forms.DockStyle.Fill; this.tableVideoVariableOptions.Location = new System.Drawing.Point(0, 0); this.tableVideoVariableOptions.Margin = new System.Windows.Forms.Padding(0); this.tableVideoVariableOptions.Name = "tableVideoVariableOptions"; this.tableVideoVariableOptions.RowCount = 2; this.tableVideoVariableOptions.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F)); this.tableVideoVariableOptions.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F)); this.tableVideoVariableOptions.Size = new System.Drawing.Size(1035, 56); this.tableVideoVariableOptions.TabIndex = 0; // // labelVideoCrf // labelVideoCrf.AutoSize = true; labelVideoCrf.Dock = System.Windows.Forms.DockStyle.Fill; labelVideoCrf.Location = new System.Drawing.Point(3, 0); labelVideoCrf.Name = "labelVideoCrf"; labelVideoCrf.Size = new System.Drawing.Size(73, 28); labelVideoCrf.TabIndex = 0; labelVideoCrf.Text = "CRF:"; labelVideoCrf.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // numericCrf // this.tableVideoVariableOptions.SetColumnSpan(this.numericCrf, 2); this.numericCrf.Dock = System.Windows.Forms.DockStyle.Fill; this.numericCrf.Location = new System.Drawing.Point(82, 3); this.numericCrf.Maximum = new decimal(new int[] { 63, 0, 0, 0}); this.numericCrf.Name = "numericCrf"; this.numericCrf.Size = new System.Drawing.Size(142, 20); this.numericCrf.TabIndex = 1; this.numericCrf.TabStop = false; this.numericCrf.Value = new decimal(new int[] { 10, 0, 0, 0}); this.numericCrf.ValueChanged += new System.EventHandler(this.UpdateArguments); // // labelVideoCrfHint // labelVideoCrfHint.AutoSize = true; labelVideoCrfHint.Dock = System.Windows.Forms.DockStyle.Fill; labelVideoCrfHint.Location = new System.Drawing.Point(230, 0); labelVideoCrfHint.Name = "labelVideoCrfHint"; labelVideoCrfHint.Size = new System.Drawing.Size(802, 28); labelVideoCrfHint.TabIndex = 0; labelVideoCrfHint.Text = "The constant rate factor of the video determines what level of quality the video " + "should get."; labelVideoCrfHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // labelVideoCrfTolerance // labelVideoCrfTolerance.AutoSize = true; labelVideoCrfTolerance.Dock = System.Windows.Forms.DockStyle.Fill; labelVideoCrfTolerance.Location = new System.Drawing.Point(3, 28); labelVideoCrfTolerance.Name = "labelVideoCrfTolerance"; labelVideoCrfTolerance.Size = new System.Drawing.Size(73, 28); labelVideoCrfTolerance.TabIndex = 0; labelVideoCrfTolerance.Text = "Tolerance:"; labelVideoCrfTolerance.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // numericCrfTolerance // this.tableVideoVariableOptions.SetColumnSpan(this.numericCrfTolerance, 2); this.numericCrfTolerance.Dock = System.Windows.Forms.DockStyle.Fill; this.numericCrfTolerance.Location = new System.Drawing.Point(82, 31); this.numericCrfTolerance.Maximum = new decimal(new int[] { 63, 0, 0, 0}); this.numericCrfTolerance.Name = "numericCrfTolerance"; this.numericCrfTolerance.Size = new System.Drawing.Size(142, 20); this.numericCrfTolerance.TabIndex = 2; this.numericCrfTolerance.TabStop = false; this.numericCrfTolerance.Value = new decimal(new int[] { 20, 0, 0, 0}); this.numericCrfTolerance.ValueChanged += new System.EventHandler(this.UpdateArguments); // // labelVideoCrfToleranceHint // labelVideoCrfToleranceHint.AutoSize = true; labelVideoCrfToleranceHint.Dock = System.Windows.Forms.DockStyle.Fill; labelVideoCrfToleranceHint.Location = new System.Drawing.Point(230, 28); labelVideoCrfToleranceHint.Name = "labelVideoCrfToleranceHint"; labelVideoCrfToleranceHint.Size = new System.Drawing.Size(802, 28); labelVideoCrfToleranceHint.TabIndex = 0; labelVideoCrfToleranceHint.Text = "This value determines how far the encoder is allowed to stray from the CRF value " + "in order to not waste too many bits on some frames."; labelVideoCrfToleranceHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // boxHQ // this.boxHQ.AutoSize = true; this.boxHQ.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; this.tableLayoutPanelEncodingVideo.SetColumnSpan(this.boxHQ, 3); this.boxHQ.Dock = System.Windows.Forms.DockStyle.Fill; this.boxHQ.Location = new System.Drawing.Point(6, 3); this.boxHQ.Margin = new System.Windows.Forms.Padding(6, 3, 6, 3); this.boxHQ.Name = "boxHQ"; this.boxHQ.Size = new System.Drawing.Size(215, 22); this.boxHQ.TabIndex = 1; this.boxHQ.Text = "Enable high quality mode:"; this.boxHQ.TextAlign = System.Drawing.ContentAlignment.MiddleRight; this.boxHQ.UseVisualStyleBackColor = true; this.boxHQ.CheckedChanged += new System.EventHandler(this.UpdateArguments); // // labelVideoHQHint // labelVideoHQHint.AutoSize = true; labelVideoHQHint.Dock = System.Windows.Forms.DockStyle.Fill; labelVideoHQHint.Location = new System.Drawing.Point(230, 0); labelVideoHQHint.Name = "labelVideoHQHint"; labelVideoHQHint.Size = new System.Drawing.Size(802, 28); labelVideoHQHint.TabIndex = 0; labelVideoHQHint.Text = "Enables two-pass encoding and adds some extra encoding arguments, increasing outp" + "ut quality, but increases the time it takes to encode your file."; labelVideoHQHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // groupEncodingAudio // groupEncodingAudio.Controls.Add(tableEncodingAudio); groupEncodingAudio.Dock = System.Windows.Forms.DockStyle.Fill; groupEncodingAudio.Location = new System.Drawing.Point(3, 217); groupEncodingAudio.Name = "groupEncodingAudio"; groupEncodingAudio.Size = new System.Drawing.Size(1041, 73); groupEncodingAudio.TabIndex = 3; groupEncodingAudio.TabStop = false; groupEncodingAudio.Text = "Audio"; // // tableEncodingAudio // tableEncodingAudio.ColumnCount = 5; tableEncodingAudio.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 79F)); tableEncodingAudio.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 88F)); tableEncodingAudio.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 30F)); tableEncodingAudio.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 30F)); tableEncodingAudio.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); tableEncodingAudio.Controls.Add(this.buttonAudioEnabledDefault, 2, 0); tableEncodingAudio.Controls.Add(this.boxAudio, 0, 0); tableEncodingAudio.Controls.Add(labelAudioHint, 4, 0); tableEncodingAudio.Controls.Add(panelEncodingModeSwapperTwo, 0, 1); tableEncodingAudio.Dock = System.Windows.Forms.DockStyle.Fill; tableEncodingAudio.Location = new System.Drawing.Point(3, 16); tableEncodingAudio.Margin = new System.Windows.Forms.Padding(0); tableEncodingAudio.Name = "tableEncodingAudio"; tableEncodingAudio.RowCount = 2; tableEncodingAudio.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F)); tableEncodingAudio.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F)); tableEncodingAudio.Size = new System.Drawing.Size(1035, 54); tableEncodingAudio.TabIndex = 0; // // buttonAudioEnabledDefault // tableEncodingAudio.SetColumnSpan(this.buttonAudioEnabledDefault, 2); this.buttonAudioEnabledDefault.Dock = System.Windows.Forms.DockStyle.Fill; this.buttonAudioEnabledDefault.Location = new System.Drawing.Point(170, 3); this.buttonAudioEnabledDefault.Name = "buttonAudioEnabledDefault"; this.buttonAudioEnabledDefault.Size = new System.Drawing.Size(54, 22); this.buttonAudioEnabledDefault.TabIndex = 6; this.buttonAudioEnabledDefault.Text = "Default"; this.buttonAudioEnabledDefault.UseVisualStyleBackColor = true; this.buttonAudioEnabledDefault.Visible = false; this.buttonAudioEnabledDefault.Click += new System.EventHandler(this.buttonAudioEnabledDefault_Click); // // boxAudio // this.boxAudio.AutoSize = true; this.boxAudio.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; tableEncodingAudio.SetColumnSpan(this.boxAudio, 2); this.boxAudio.Dock = System.Windows.Forms.DockStyle.Fill; this.boxAudio.Location = new System.Drawing.Point(6, 3); this.boxAudio.Margin = new System.Windows.Forms.Padding(6, 3, 6, 3); this.boxAudio.Name = "boxAudio"; this.boxAudio.Size = new System.Drawing.Size(155, 22); this.boxAudio.TabIndex = 1; this.boxAudio.Text = "Enable audio:"; this.boxAudio.TextAlign = System.Drawing.ContentAlignment.MiddleRight; this.boxAudio.UseVisualStyleBackColor = true; this.boxAudio.CheckedChanged += new System.EventHandler(this.boxAudio_CheckedChanged); // // labelAudioHint // labelAudioHint.AutoSize = true; labelAudioHint.Dock = System.Windows.Forms.DockStyle.Fill; labelAudioHint.Location = new System.Drawing.Point(230, 0); labelAudioHint.Name = "labelAudioHint"; labelAudioHint.Size = new System.Drawing.Size(802, 28); labelAudioHint.TabIndex = 0; labelAudioHint.Text = "Do you want a WebM with sound? You found the setting for it."; labelAudioHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // panelEncodingModeSwapperTwo // tableEncodingAudio.SetColumnSpan(panelEncodingModeSwapperTwo, 5); panelEncodingModeSwapperTwo.Controls.Add(this.tableAudioConstantOptions); panelEncodingModeSwapperTwo.Controls.Add(this.tableAudioVariableOptions); panelEncodingModeSwapperTwo.Dock = System.Windows.Forms.DockStyle.Fill; panelEncodingModeSwapperTwo.Location = new System.Drawing.Point(0, 28); panelEncodingModeSwapperTwo.Margin = new System.Windows.Forms.Padding(0); panelEncodingModeSwapperTwo.Name = "panelEncodingModeSwapperTwo"; panelEncodingModeSwapperTwo.Size = new System.Drawing.Size(1035, 28); panelEncodingModeSwapperTwo.TabIndex = 2; // // tableAudioConstantOptions // this.tableAudioConstantOptions.ColumnCount = 4; this.tableAudioConstantOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 79F)); this.tableAudioConstantOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 118F)); this.tableAudioConstantOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 30F)); this.tableAudioConstantOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); this.tableAudioConstantOptions.Controls.Add(labelAudioBitrate, 0, 0); this.tableAudioConstantOptions.Controls.Add(this.boxAudioBitrate, 1, 0); this.tableAudioConstantOptions.Controls.Add(labelAudioBitrateUnit, 2, 0); this.tableAudioConstantOptions.Controls.Add(labelAudioBitrateHint, 4, 0); this.tableAudioConstantOptions.Dock = System.Windows.Forms.DockStyle.Fill; this.tableAudioConstantOptions.Location = new System.Drawing.Point(0, 0); this.tableAudioConstantOptions.Margin = new System.Windows.Forms.Padding(0); this.tableAudioConstantOptions.Name = "tableAudioConstantOptions"; this.tableAudioConstantOptions.RowCount = 1; this.tableAudioConstantOptions.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F)); this.tableAudioConstantOptions.Size = new System.Drawing.Size(1035, 28); this.tableAudioConstantOptions.TabIndex = 0; // // labelAudioBitrate // labelAudioBitrate.AutoSize = true; labelAudioBitrate.Dock = System.Windows.Forms.DockStyle.Fill; labelAudioBitrate.Location = new System.Drawing.Point(3, 0); labelAudioBitrate.Name = "labelAudioBitrate"; labelAudioBitrate.Size = new System.Drawing.Size(73, 28); labelAudioBitrate.TabIndex = 0; labelAudioBitrate.Text = "Bitrate:"; labelAudioBitrate.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // boxAudioBitrate // this.boxAudioBitrate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); this.boxAudioBitrate.Enabled = false; this.boxAudioBitrate.Location = new System.Drawing.Point(82, 4); this.boxAudioBitrate.Margin = new System.Windows.Forms.Padding(3, 3, 0, 3); this.boxAudioBitrate.Name = "boxAudioBitrate"; this.boxAudioBitrate.Size = new System.Drawing.Size(115, 20); this.boxAudioBitrate.TabIndex = 1; this.boxAudioBitrate.TextChanged += new System.EventHandler(this.UpdateArguments); this.boxAudioBitrate.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBoxNumbersOnly); // // labelAudioBitrateUnit // labelAudioBitrateUnit.AutoSize = true; labelAudioBitrateUnit.Dock = System.Windows.Forms.DockStyle.Fill; labelAudioBitrateUnit.Location = new System.Drawing.Point(197, 0); labelAudioBitrateUnit.Margin = new System.Windows.Forms.Padding(0); labelAudioBitrateUnit.Name = "labelAudioBitrateUnit"; labelAudioBitrateUnit.Size = new System.Drawing.Size(30, 28); labelAudioBitrateUnit.TabIndex = 0; labelAudioBitrateUnit.Text = "Kb/s"; labelAudioBitrateUnit.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // labelAudioBitrateHint // labelAudioBitrateHint.AutoSize = true; labelAudioBitrateHint.Dock = System.Windows.Forms.DockStyle.Fill; labelAudioBitrateHint.Location = new System.Drawing.Point(230, 0); labelAudioBitrateHint.Name = "labelAudioBitrateHint"; labelAudioBitrateHint.Size = new System.Drawing.Size(802, 28); labelAudioBitrateHint.TabIndex = 0; labelAudioBitrateHint.Text = "Determines the quality of the audio."; labelAudioBitrateHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // tableAudioVariableOptions // this.tableAudioVariableOptions.ColumnCount = 4; this.tableAudioVariableOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 79F)); this.tableAudioVariableOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 118F)); this.tableAudioVariableOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 30F)); this.tableAudioVariableOptions.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); this.tableAudioVariableOptions.Controls.Add(labelAudioQuality, 0, 0); this.tableAudioVariableOptions.Controls.Add(this.numericAudioQuality, 1, 0); this.tableAudioVariableOptions.Controls.Add(labelAudioQualityHint, 4, 0); this.tableAudioVariableOptions.Dock = System.Windows.Forms.DockStyle.Fill; this.tableAudioVariableOptions.Location = new System.Drawing.Point(0, 0); this.tableAudioVariableOptions.Margin = new System.Windows.Forms.Padding(0); this.tableAudioVariableOptions.Name = "tableAudioVariableOptions"; this.tableAudioVariableOptions.RowCount = 1; this.tableAudioVariableOptions.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F)); this.tableAudioVariableOptions.Size = new System.Drawing.Size(1035, 28); this.tableAudioVariableOptions.TabIndex = 0; // // labelAudioQuality // labelAudioQuality.AutoSize = true; labelAudioQuality.Dock = System.Windows.Forms.DockStyle.Fill; labelAudioQuality.Location = new System.Drawing.Point(3, 0); labelAudioQuality.Name = "labelAudioQuality"; labelAudioQuality.Size = new System.Drawing.Size(73, 28); labelAudioQuality.TabIndex = 0; labelAudioQuality.Text = "Quality:"; labelAudioQuality.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // numericAudioQuality // this.tableAudioVariableOptions.SetColumnSpan(this.numericAudioQuality, 2); this.numericAudioQuality.Dock = System.Windows.Forms.DockStyle.Fill; this.numericAudioQuality.Enabled = false; this.numericAudioQuality.Location = new System.Drawing.Point(82, 3); this.numericAudioQuality.Maximum = new decimal(new int[] { 10, 0, 0, 0}); this.numericAudioQuality.Name = "numericAudioQuality"; this.numericAudioQuality.Size = new System.Drawing.Size(142, 20); this.numericAudioQuality.TabIndex = 1; this.numericAudioQuality.TabStop = false; this.numericAudioQuality.Value = new decimal(new int[] { 3, 0, 0, 0}); this.numericAudioQuality.ValueChanged += new System.EventHandler(this.UpdateArguments); // // labelAudioQualityHint // labelAudioQualityHint.AutoSize = true; labelAudioQualityHint.Dock = System.Windows.Forms.DockStyle.Fill; labelAudioQualityHint.Location = new System.Drawing.Point(230, 0); labelAudioQualityHint.Name = "labelAudioQualityHint"; labelAudioQualityHint.Size = new System.Drawing.Size(802, 28); labelAudioQualityHint.TabIndex = 0; labelAudioQualityHint.Text = "Determines the average quality of the audio. 10 is the highest quality."; labelAudioQualityHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // tabAdvanced // tabAdvanced.AutoScroll = true; tabAdvanced.BackColor = System.Drawing.SystemColors.Control; tabAdvanced.Controls.Add(tableAdvanced); tabAdvanced.Location = new System.Drawing.Point(4, 22); tabAdvanced.Name = "tabAdvanced"; tabAdvanced.Padding = new System.Windows.Forms.Padding(3); tabAdvanced.Size = new System.Drawing.Size(1053, 307); tabAdvanced.TabIndex = 4; tabAdvanced.Text = "Advanced"; // // tableAdvanced // tableAdvanced.ColumnCount = 1; tableAdvanced.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); tableAdvanced.Controls.Add(labelAdvancedWarning, 0, 0); tableAdvanced.Controls.Add(groupAdvancedProcessing, 0, 1); tableAdvanced.Controls.Add(groupAdvancedEncoding, 0, 2); tableAdvanced.Dock = System.Windows.Forms.DockStyle.Fill; tableAdvanced.Location = new System.Drawing.Point(3, 3); tableAdvanced.Name = "tableAdvanced"; tableAdvanced.RowCount = 4; tableAdvanced.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F)); tableAdvanced.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 107F)); tableAdvanced.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 163F)); tableAdvanced.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F)); tableAdvanced.Size = new System.Drawing.Size(1047, 301); tableAdvanced.TabIndex = 1; // // labelAdvancedWarning // labelAdvancedWarning.AutoSize = true; tableAdvanced.SetColumnSpan(labelAdvancedWarning, 3); labelAdvancedWarning.Dock = System.Windows.Forms.DockStyle.Fill; labelAdvancedWarning.Location = new System.Drawing.Point(3, 3); labelAdvancedWarning.Margin = new System.Windows.Forms.Padding(3); labelAdvancedWarning.Name = "labelAdvancedWarning"; labelAdvancedWarning.Size = new System.Drawing.Size(1041, 22); labelAdvancedWarning.TabIndex = 0; labelAdvancedWarning.Text = "Do not modify these settings unless you are 100% sure you know what you\'re doing." + ""; labelAdvancedWarning.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // groupAdvancedProcessing // groupAdvancedProcessing.Controls.Add(tableAdvancedProcessing); groupAdvancedProcessing.Dock = System.Windows.Forms.DockStyle.Fill; groupAdvancedProcessing.Location = new System.Drawing.Point(3, 31); groupAdvancedProcessing.Name = "groupAdvancedProcessing"; groupAdvancedProcessing.Size = new System.Drawing.Size(1041, 101); groupAdvancedProcessing.TabIndex = 1; groupAdvancedProcessing.TabStop = false; groupAdvancedProcessing.Text = "Processing"; // // tableAdvancedProcessing // tableAdvancedProcessing.ColumnCount = 3; tableAdvancedProcessing.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 79F)); tableAdvancedProcessing.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 148F)); tableAdvancedProcessing.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); tableAdvancedProcessing.Controls.Add(labelProcessingLevels, 0, 0); tableAdvancedProcessing.Controls.Add(this.comboLevels, 1, 0); tableAdvancedProcessing.Controls.Add(labelProcessingLevelsHint, 2, 0); tableAdvancedProcessing.Controls.Add(this.boxDeinterlace, 0, 1); tableAdvancedProcessing.Controls.Add(labelProcessingDeinterlaceHint, 2, 1); tableAdvancedProcessing.Controls.Add(this.boxDenoise, 0, 2); tableAdvancedProcessing.Controls.Add(labelProcessingDenoiseHint, 2, 2); tableAdvancedProcessing.Dock = System.Windows.Forms.DockStyle.Fill; tableAdvancedProcessing.Location = new System.Drawing.Point(3, 16); tableAdvancedProcessing.Name = "tableAdvancedProcessing"; tableAdvancedProcessing.RowCount = 3; tableAdvancedProcessing.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F)); tableAdvancedProcessing.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F)); tableAdvancedProcessing.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F)); tableAdvancedProcessing.Size = new System.Drawing.Size(1035, 82); tableAdvancedProcessing.TabIndex = 1; // // labelProcessingLevels // labelProcessingLevels.AutoSize = true; labelProcessingLevels.Dock = System.Windows.Forms.DockStyle.Fill; labelProcessingLevels.Location = new System.Drawing.Point(3, 0); labelProcessingLevels.Name = "labelProcessingLevels"; labelProcessingLevels.Size = new System.Drawing.Size(73, 28); labelProcessingLevels.TabIndex = 0; labelProcessingLevels.Text = "Color levels:"; labelProcessingLevels.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // comboLevels // this.comboLevels.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); this.comboLevels.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboLevels.Items.AddRange(new object[] { "Leave them alone", "Expand (TV -> PC)", "Contract (PC -> TV)"}); this.comboLevels.Location = new System.Drawing.Point(82, 3); this.comboLevels.Name = "comboLevels"; this.comboLevels.Size = new System.Drawing.Size(142, 21); this.comboLevels.TabIndex = 1; this.comboLevels.SelectedIndexChanged += new System.EventHandler(this.comboLevels_SelectedIndexChanged); // // labelProcessingLevelsHint // labelProcessingLevelsHint.AutoSize = true; labelProcessingLevelsHint.Dock = System.Windows.Forms.DockStyle.Fill; labelProcessingLevelsHint.Location = new System.Drawing.Point(230, 0); labelProcessingLevelsHint.Name = "labelProcessingLevelsHint"; labelProcessingLevelsHint.Size = new System.Drawing.Size(802, 28); labelProcessingLevelsHint.TabIndex = 0; labelProcessingLevelsHint.Text = "If your video looks either too dark or too light, this may be the fault of the in" + "put color range being whack. You can manually fix this by using this option."; labelProcessingLevelsHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // boxDeinterlace // this.boxDeinterlace.AutoSize = true; this.boxDeinterlace.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; tableAdvancedProcessing.SetColumnSpan(this.boxDeinterlace, 2); this.boxDeinterlace.Dock = System.Windows.Forms.DockStyle.Fill; this.boxDeinterlace.Location = new System.Drawing.Point(3, 31); this.boxDeinterlace.Name = "boxDeinterlace"; this.boxDeinterlace.Size = new System.Drawing.Size(221, 22); this.boxDeinterlace.TabIndex = 2; this.boxDeinterlace.Text = "Deinterlace:"; this.boxDeinterlace.TextAlign = System.Drawing.ContentAlignment.MiddleRight; this.boxDeinterlace.UseVisualStyleBackColor = true; this.boxDeinterlace.CheckedChanged += new System.EventHandler(this.boxDeinterlace_CheckedChanged); // // labelProcessingDeinterlaceHint // labelProcessingDeinterlaceHint.AutoSize = true; labelProcessingDeinterlaceHint.Dock = System.Windows.Forms.DockStyle.Fill; labelProcessingDeinterlaceHint.Location = new System.Drawing.Point(230, 28); labelProcessingDeinterlaceHint.Name = "labelProcessingDeinterlaceHint"; labelProcessingDeinterlaceHint.Size = new System.Drawing.Size(802, 28); labelProcessingDeinterlaceHint.TabIndex = 0; labelProcessingDeinterlaceHint.Text = "Attempt to deinterlace an interlaced input video."; labelProcessingDeinterlaceHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // boxDenoise // this.boxDenoise.AutoSize = true; this.boxDenoise.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; tableAdvancedProcessing.SetColumnSpan(this.boxDenoise, 2); this.boxDenoise.Dock = System.Windows.Forms.DockStyle.Fill; this.boxDenoise.Location = new System.Drawing.Point(3, 59); this.boxDenoise.Name = "boxDenoise"; this.boxDenoise.Size = new System.Drawing.Size(221, 22); this.boxDenoise.TabIndex = 3; this.boxDenoise.Text = "Denoise:"; this.boxDenoise.TextAlign = System.Drawing.ContentAlignment.MiddleRight; this.boxDenoise.UseVisualStyleBackColor = true; this.boxDenoise.CheckedChanged += new System.EventHandler(this.boxDenoise_CheckedChanged); // // labelProcessingDenoiseHint // labelProcessingDenoiseHint.AutoSize = true; labelProcessingDenoiseHint.Dock = System.Windows.Forms.DockStyle.Fill; labelProcessingDenoiseHint.Location = new System.Drawing.Point(230, 56); labelProcessingDenoiseHint.Name = "labelProcessingDenoiseHint"; labelProcessingDenoiseHint.Size = new System.Drawing.Size(802, 28); labelProcessingDenoiseHint.TabIndex = 0; labelProcessingDenoiseHint.Text = "Denoise the video, resulting in less detailed video but more bang for your buck w" + "hen it comes to bitrate."; labelProcessingDenoiseHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // groupAdvancedEncoding // groupAdvancedEncoding.AutoSize = true; groupAdvancedEncoding.Controls.Add(tableAdvancedEncoding); groupAdvancedEncoding.Dock = System.Windows.Forms.DockStyle.Fill; groupAdvancedEncoding.Location = new System.Drawing.Point(3, 138); groupAdvancedEncoding.Name = "groupAdvancedEncoding"; groupAdvancedEncoding.Size = new System.Drawing.Size(1041, 157); groupAdvancedEncoding.TabIndex = 2; groupAdvancedEncoding.TabStop = false; groupAdvancedEncoding.Text = "Encoding"; // // tableAdvancedEncoding // tableAdvancedEncoding.ColumnCount = 4; tableAdvancedEncoding.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 79F)); tableAdvancedEncoding.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 118F)); tableAdvancedEncoding.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 30F)); tableAdvancedEncoding.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); tableAdvancedEncoding.Controls.Add(this.boxFrameRate, 1, 2); tableAdvancedEncoding.Controls.Add(labelEncodingFrameRateHint, 3, 2); tableAdvancedEncoding.Controls.Add(labelEncodingFrameRate, 0, 2); tableAdvancedEncoding.Controls.Add(labelEncodingNGOVHint, 3, 3); tableAdvancedEncoding.Controls.Add(this.boxNGOV, 0, 3); tableAdvancedEncoding.Controls.Add(labelEncodingThreads, 0, 0); tableAdvancedEncoding.Controls.Add(this.trackThreads, 1, 0); tableAdvancedEncoding.Controls.Add(this.labelThreads, 2, 0); tableAdvancedEncoding.Controls.Add(labelEncodingThreadsHint, 3, 0); tableAdvancedEncoding.Controls.Add(labelEncodingSlices, 0, 1); tableAdvancedEncoding.Controls.Add(this.trackSlices, 1, 1); tableAdvancedEncoding.Controls.Add(this.labelSlices, 2, 1); tableAdvancedEncoding.Controls.Add(labelEncodingSlicesHint, 3, 1); tableAdvancedEncoding.Controls.Add(labelEncodingArguments, 0, 4); tableAdvancedEncoding.Controls.Add(this.boxArguments, 1, 4); tableAdvancedEncoding.Dock = System.Windows.Forms.DockStyle.Fill; tableAdvancedEncoding.Location = new System.Drawing.Point(3, 16); tableAdvancedEncoding.Name = "tableAdvancedEncoding"; tableAdvancedEncoding.RowCount = 5; tableAdvancedEncoding.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F)); tableAdvancedEncoding.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F)); tableAdvancedEncoding.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F)); tableAdvancedEncoding.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F)); tableAdvancedEncoding.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F)); tableAdvancedEncoding.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F)); tableAdvancedEncoding.Size = new System.Drawing.Size(1035, 138); tableAdvancedEncoding.TabIndex = 0; // // boxFrameRate // this.boxFrameRate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); tableAdvancedEncoding.SetColumnSpan(this.boxFrameRate, 2); this.boxFrameRate.Location = new System.Drawing.Point(82, 60); this.boxFrameRate.Margin = new System.Windows.Forms.Padding(3, 3, 0, 3); this.boxFrameRate.Name = "boxFrameRate"; this.boxFrameRate.Size = new System.Drawing.Size(145, 20); this.boxFrameRate.TabIndex = 8; this.boxFrameRate.TextChanged += new System.EventHandler(this.UpdateArguments); this.boxFrameRate.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBoxNumbersOnly); // // labelEncodingFrameRateHint // labelEncodingFrameRateHint.AutoSize = true; labelEncodingFrameRateHint.Dock = System.Windows.Forms.DockStyle.Fill; labelEncodingFrameRateHint.Location = new System.Drawing.Point(230, 56); labelEncodingFrameRateHint.Name = "labelEncodingFrameRateHint"; labelEncodingFrameRateHint.Size = new System.Drawing.Size(802, 28); labelEncodingFrameRateHint.TabIndex = 7; labelEncodingFrameRateHint.Text = "If you want to change the frame rate of your video, input your desired frame rate" + " here. Keep blank to leave the frame rate alone."; labelEncodingFrameRateHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // labelEncodingFrameRate // labelEncodingFrameRate.AutoSize = true; labelEncodingFrameRate.Dock = System.Windows.Forms.DockStyle.Fill; labelEncodingFrameRate.Location = new System.Drawing.Point(3, 56); labelEncodingFrameRate.Name = "labelEncodingFrameRate"; labelEncodingFrameRate.Size = new System.Drawing.Size(73, 28); labelEncodingFrameRate.TabIndex = 6; labelEncodingFrameRate.Text = "Frame rate:"; labelEncodingFrameRate.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // labelEncodingNGOVHint // labelEncodingNGOVHint.AutoSize = true; labelEncodingNGOVHint.Dock = System.Windows.Forms.DockStyle.Fill; labelEncodingNGOVHint.Location = new System.Drawing.Point(230, 84); labelEncodingNGOVHint.Name = "labelEncodingNGOVHint"; labelEncodingNGOVHint.Size = new System.Drawing.Size(802, 28); labelEncodingNGOVHint.TabIndex = 0; labelEncodingNGOVHint.Text = "Use the next-gen VP9/Opus encoders instead of the standard VP8/Vorbis. Will resul" + "t in extremely long encoding times and less compatibility.\r\nKeep this disabled u" + "ntil Moot allows VP9 WebMs."; labelEncodingNGOVHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // boxNGOV // this.boxNGOV.AutoSize = true; this.boxNGOV.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; tableAdvancedEncoding.SetColumnSpan(this.boxNGOV, 3); this.boxNGOV.Dock = System.Windows.Forms.DockStyle.Fill; this.boxNGOV.Location = new System.Drawing.Point(3, 87); this.boxNGOV.Name = "boxNGOV"; this.boxNGOV.Size = new System.Drawing.Size(221, 22); this.boxNGOV.TabIndex = 4; this.boxNGOV.Text = "VP9/Opus:"; this.boxNGOV.TextAlign = System.Drawing.ContentAlignment.MiddleRight; this.boxNGOV.UseVisualStyleBackColor = true; this.boxNGOV.CheckedChanged += new System.EventHandler(this.boxNGOV_CheckedChanged); // // labelEncodingThreads // labelEncodingThreads.AutoSize = true; labelEncodingThreads.Dock = System.Windows.Forms.DockStyle.Fill; labelEncodingThreads.Location = new System.Drawing.Point(3, 0); labelEncodingThreads.Name = "labelEncodingThreads"; labelEncodingThreads.Size = new System.Drawing.Size(73, 28); labelEncodingThreads.TabIndex = 0; labelEncodingThreads.Text = "Threads:"; labelEncodingThreads.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // trackThreads // this.trackThreads.Dock = System.Windows.Forms.DockStyle.Fill; this.trackThreads.Location = new System.Drawing.Point(79, 0); this.trackThreads.Margin = new System.Windows.Forms.Padding(0); this.trackThreads.Maximum = 16; this.trackThreads.Minimum = 1; this.trackThreads.Name = "trackThreads"; this.trackThreads.Size = new System.Drawing.Size(118, 28); this.trackThreads.TabIndex = 1; this.trackThreads.Value = 1; this.trackThreads.ValueChanged += new System.EventHandler(this.trackThreads_ValueChanged); // // labelThreads // this.labelThreads.AutoSize = true; this.labelThreads.Dock = System.Windows.Forms.DockStyle.Fill; this.labelThreads.Location = new System.Drawing.Point(197, 0); this.labelThreads.Margin = new System.Windows.Forms.Padding(0); this.labelThreads.Name = "labelThreads"; this.labelThreads.Size = new System.Drawing.Size(30, 28); this.labelThreads.TabIndex = 0; this.labelThreads.Text = "1"; this.labelThreads.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // labelEncodingThreadsHint // labelEncodingThreadsHint.AutoSize = true; labelEncodingThreadsHint.Dock = System.Windows.Forms.DockStyle.Fill; labelEncodingThreadsHint.Location = new System.Drawing.Point(230, 0); labelEncodingThreadsHint.Name = "labelEncodingThreadsHint"; labelEncodingThreadsHint.Size = new System.Drawing.Size(802, 28); labelEncodingThreadsHint.TabIndex = 0; labelEncodingThreadsHint.Text = "Determines amount of threads ffmpeg uses. Try setting this to 1 if ffmpeg.exe cra" + "shes as soon as you click Convert."; labelEncodingThreadsHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // labelEncodingSlices // labelEncodingSlices.AutoSize = true; labelEncodingSlices.Dock = System.Windows.Forms.DockStyle.Fill; labelEncodingSlices.Location = new System.Drawing.Point(3, 28); labelEncodingSlices.Name = "labelEncodingSlices"; labelEncodingSlices.Size = new System.Drawing.Size(73, 28); labelEncodingSlices.TabIndex = 0; labelEncodingSlices.Text = "Slices:"; labelEncodingSlices.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // trackSlices // this.trackSlices.Dock = System.Windows.Forms.DockStyle.Fill; this.trackSlices.Location = new System.Drawing.Point(79, 28); this.trackSlices.Margin = new System.Windows.Forms.Padding(0); this.trackSlices.Maximum = 4; this.trackSlices.Minimum = 1; this.trackSlices.Name = "trackSlices"; this.trackSlices.Size = new System.Drawing.Size(118, 28); this.trackSlices.TabIndex = 2; this.trackSlices.Value = 1; this.trackSlices.ValueChanged += new System.EventHandler(this.trackSlices_ValueChanged); // // labelSlices // this.labelSlices.AutoSize = true; this.labelSlices.Dock = System.Windows.Forms.DockStyle.Fill; this.labelSlices.Location = new System.Drawing.Point(197, 28); this.labelSlices.Margin = new System.Windows.Forms.Padding(0); this.labelSlices.Name = "labelSlices"; this.labelSlices.Size = new System.Drawing.Size(30, 28); this.labelSlices.TabIndex = 0; this.labelSlices.Text = "1"; this.labelSlices.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // labelEncodingSlicesHint // labelEncodingSlicesHint.AutoSize = true; labelEncodingSlicesHint.Dock = System.Windows.Forms.DockStyle.Fill; labelEncodingSlicesHint.Location = new System.Drawing.Point(230, 28); labelEncodingSlicesHint.Name = "labelEncodingSlicesHint"; labelEncodingSlicesHint.Size = new System.Drawing.Size(802, 28); labelEncodingSlicesHint.TabIndex = 0; labelEncodingSlicesHint.Text = "Split frames into slices before encoding them. Results in a higher quality per fr" + "ame. 4 slices is standard for 720p resolutions."; labelEncodingSlicesHint.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // labelEncodingArguments // labelEncodingArguments.AutoSize = true; labelEncodingArguments.Dock = System.Windows.Forms.DockStyle.Fill; labelEncodingArguments.ImageAlign = System.Drawing.ContentAlignment.MiddleRight; labelEncodingArguments.Location = new System.Drawing.Point(3, 112); labelEncodingArguments.Name = "labelEncodingArguments"; labelEncodingArguments.Size = new System.Drawing.Size(73, 28); labelEncodingArguments.TabIndex = 0; labelEncodingArguments.Text = "Arguments:"; labelEncodingArguments.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // boxArguments // this.boxArguments.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); tableAdvancedEncoding.SetColumnSpan(this.boxArguments, 3); this.boxArguments.Location = new System.Drawing.Point(82, 116); this.boxArguments.Name = "boxArguments"; this.boxArguments.Size = new System.Drawing.Size(950, 20); this.boxArguments.TabIndex = 5; // // statusStrip // statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripStatusLabel}); statusStrip.Location = new System.Drawing.Point(3, 424); statusStrip.Name = "statusStrip"; statusStrip.Size = new System.Drawing.Size(1067, 22); statusStrip.SizingGrip = false; statusStrip.TabIndex = 6; // // toolStripStatusLabel // this.toolStripStatusLabel.Name = "toolStripStatusLabel"; this.toolStripStatusLabel.Size = new System.Drawing.Size(1052, 17); this.toolStripStatusLabel.Spring = true; this.toolStripStatusLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // panelContainTheProgressBar // this.panelContainTheProgressBar.Anchor = System.Windows.Forms.AnchorStyles.None; this.panelContainTheProgressBar.AutoSize = true; this.panelContainTheProgressBar.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; this.panelContainTheProgressBar.BackColor = System.Drawing.SystemColors.Control; this.panelContainTheProgressBar.Controls.Add(this.boxIndexingProgressDetails); this.panelContainTheProgressBar.Controls.Add(this.boxIndexingProgress); this.panelContainTheProgressBar.Controls.Add(this.labelIndexingProgress); this.panelContainTheProgressBar.Controls.Add(this.progressBarIndexing); this.panelContainTheProgressBar.Location = new System.Drawing.Point(299, 148); this.panelContainTheProgressBar.Name = "panelContainTheProgressBar"; this.panelContainTheProgressBar.Size = new System.Drawing.Size(469, 205); this.panelContainTheProgressBar.TabIndex = 0; // // boxIndexingProgressDetails // this.boxIndexingProgressDetails.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.boxIndexingProgressDetails.Appearance = System.Windows.Forms.Appearance.Button; this.boxIndexingProgressDetails.AutoSize = true; this.boxIndexingProgressDetails.Location = new System.Drawing.Point(414, 5); this.boxIndexingProgressDetails.Name = "boxIndexingProgressDetails"; this.boxIndexingProgressDetails.Size = new System.Drawing.Size(49, 23); this.boxIndexingProgressDetails.TabIndex = 1; this.boxIndexingProgressDetails.Text = "Details"; this.boxIndexingProgressDetails.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.boxIndexingProgressDetails.UseVisualStyleBackColor = true; this.boxIndexingProgressDetails.CheckedChanged += new System.EventHandler(this.boxIndexingProgressDetails_CheckedChanged); // // boxIndexingProgress // this.boxIndexingProgress.BackColor = System.Drawing.SystemColors.ControlLightLight; this.boxIndexingProgress.Location = new System.Drawing.Point(6, 61); this.boxIndexingProgress.Margin = new System.Windows.Forms.Padding(3, 3, 3, 6); this.boxIndexingProgress.Multiline = true; this.boxIndexingProgress.Name = "boxIndexingProgress"; this.boxIndexingProgress.ReadOnly = true; this.boxIndexingProgress.Size = new System.Drawing.Size(457, 138); this.boxIndexingProgress.TabIndex = 0; this.boxIndexingProgress.Visible = false; // // labelIndexingProgress // this.labelIndexingProgress.BackColor = System.Drawing.Color.Transparent; this.labelIndexingProgress.Location = new System.Drawing.Point(4, 5); this.labelIndexingProgress.Name = "labelIndexingProgress"; this.labelIndexingProgress.Size = new System.Drawing.Size(460, 23); this.labelIndexingProgress.TabIndex = 1; this.labelIndexingProgress.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // progressBarIndexing // this.progressBarIndexing.Location = new System.Drawing.Point(6, 32); this.progressBarIndexing.Margin = new System.Windows.Forms.Padding(6); this.progressBarIndexing.Name = "progressBarIndexing"; this.progressBarIndexing.Size = new System.Drawing.Size(457, 23); this.progressBarIndexing.Style = System.Windows.Forms.ProgressBarStyle.Marquee; this.progressBarIndexing.TabIndex = 0; this.progressBarIndexing.Value = 30; // // panelHideTheOptions // this.panelHideTheOptions.BackColor = System.Drawing.SystemColors.ControlDark; this.panelHideTheOptions.Controls.Add(this.panelContainTheProgressBar); this.panelHideTheOptions.Location = new System.Drawing.Point(3, 88); this.panelHideTheOptions.Name = "panelHideTheOptions"; this.panelHideTheOptions.Size = new System.Drawing.Size(1067, 356); this.panelHideTheOptions.TabIndex = 3; // // buttonRate // this.buttonRate.AccessibleDescription = "Speed up or slow down your video."; this.buttonRate.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.buttonRate.Enabled = false; this.buttonRate.Name = "buttonRate"; this.buttonRate.Size = new System.Drawing.Size(78, 22); this.buttonRate.Text = "Change Rate"; this.buttonRate.Click += new System.EventHandler(this.buttonRate_Click); this.buttonRate.MouseEnter += new System.EventHandler(this.ToolStripItemTooltip); this.buttonRate.MouseLeave += new System.EventHandler(this.clearToolTip); // // MainForm // this.AcceptButton = this.buttonGo; this.AllowDrop = true; this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(1073, 446); this.Controls.Add(statusStrip); this.Controls.Add(tableMainForm); this.Controls.Add(this.panelHideTheOptions); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D; this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.MaximizeBox = false; this.MinimumSize = new System.Drawing.Size(975, 270); this.Name = "MainForm"; this.Padding = new System.Windows.Forms.Padding(3, 3, 3, 0); this.Text = "WebM for Gits"; this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing); this.Load += new System.EventHandler(this.MainForm_Load); this.Shown += new System.EventHandler(this.MainForm_Shown); this.DragDrop += new System.Windows.Forms.DragEventHandler(this.HandleDragDrop); this.DragEnter += new System.Windows.Forms.DragEventHandler(this.HandleDragEnter); tableMainForm.ResumeLayout(false); groupMain.ResumeLayout(false); tableMain.ResumeLayout(false); tableMain.PerformLayout(); tabControlOptions.ResumeLayout(false); tabProcessing.ResumeLayout(false); tableProcessing.ResumeLayout(false); tableProcessing.PerformLayout(); toolStripProcessing.ResumeLayout(false); toolStripProcessing.PerformLayout(); panelProcessingInput.ResumeLayout(false); panelProcessingInput.PerformLayout(); tabEncoding.ResumeLayout(false); tableEncoding.ResumeLayout(false); groupEncodingGeneral.ResumeLayout(false); tableEncodingGeneral.ResumeLayout(false); tableEncodingGeneral.PerformLayout(); groupEncodingVideo.ResumeLayout(false); this.tableLayoutPanelEncodingVideo.ResumeLayout(false); this.tableLayoutPanelEncodingVideo.PerformLayout(); panelEncodingModeSwapper.ResumeLayout(false); this.tableVideoConstantOptions.ResumeLayout(false); this.tableVideoConstantOptions.PerformLayout(); this.tableVideoVariableOptions.ResumeLayout(false); this.tableVideoVariableOptions.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.numericCrf)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.numericCrfTolerance)).EndInit(); groupEncodingAudio.ResumeLayout(false); tableEncodingAudio.ResumeLayout(false); tableEncodingAudio.PerformLayout(); panelEncodingModeSwapperTwo.ResumeLayout(false); this.tableAudioConstantOptions.ResumeLayout(false); this.tableAudioConstantOptions.PerformLayout(); this.tableAudioVariableOptions.ResumeLayout(false); this.tableAudioVariableOptions.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.numericAudioQuality)).EndInit(); tabAdvanced.ResumeLayout(false); tableAdvanced.ResumeLayout(false); tableAdvanced.PerformLayout(); groupAdvancedProcessing.ResumeLayout(false); tableAdvancedProcessing.ResumeLayout(false); tableAdvancedProcessing.PerformLayout(); groupAdvancedEncoding.ResumeLayout(false); tableAdvancedEncoding.ResumeLayout(false); tableAdvancedEncoding.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.trackThreads)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.trackSlices)).EndInit(); statusStrip.ResumeLayout(false); statusStrip.PerformLayout(); this.panelContainTheProgressBar.ResumeLayout(false); this.panelContainTheProgressBar.PerformLayout(); this.panelHideTheOptions.ResumeLayout(false); this.panelHideTheOptions.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.Windows.Forms.StatusStrip statusStrip1; System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DeleteUnusedBranchesForm)); this.pnlBranchesArea = new System.Windows.Forms.Panel(); this.imgLoading = new System.Windows.Forms.PictureBox(); this.BranchesGrid = new System.Windows.Forms.DataGridView(); this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel(); this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel(); this.buttonSettings = new System.Windows.Forms.Button(); this.Cancel = new System.Windows.Forms.Button(); this.Delete = new System.Windows.Forms.Button(); this.instructionLabel = new System.Windows.Forms.Label(); this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel(); this.regexFilter = new System.Windows.Forms.TextBox(); this.IncludeRemoteBranches = new System.Windows.Forms.CheckBox(); this.remote = new System.Windows.Forms.TextBox(); this.useRegexFilter = new System.Windows.Forms.CheckBox(); this.Refresh = new System.Windows.Forms.Button(); this.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.mergedIntoBranch = new System.Windows.Forms.TextBox(); this.olderThanDays = new System.Windows.Forms.NumericUpDown(); this.includeUnmergedBranches = new System.Windows.Forms.CheckBox(); this.lblStatus = new System.Windows.Forms.ToolStripStatusLabel(); this.branchBindingSource = new System.Windows.Forms.BindingSource(this.components); this.deleteDataGridViewCheckBoxColumn = new System.Windows.Forms.DataGridViewCheckBoxColumn(); this.nameDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.dateDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.Author = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.Message = new System.Windows.Forms.DataGridViewTextBoxColumn(); statusStrip1 = new System.Windows.Forms.StatusStrip(); this.pnlBranchesArea.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.imgLoading)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.BranchesGrid)).BeginInit(); this.tableLayoutPanel1.SuspendLayout(); this.tableLayoutPanel2.SuspendLayout(); this.tableLayoutPanel3.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.olderThanDays)).BeginInit(); statusStrip1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.branchBindingSource)).BeginInit(); this.SuspendLayout(); // // statusStrip1 // statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.lblStatus}); statusStrip1.Location = new System.Drawing.Point(0, 399); statusStrip1.Name = "statusStrip1"; statusStrip1.Size = new System.Drawing.Size(760, 22); statusStrip1.TabIndex = 2; statusStrip1.Text = "statusStrip1"; // // lblStatus // this.lblStatus.Name = "lblStatus"; this.lblStatus.Size = new System.Drawing.Size(0, 17); // // pnlBranchesArea // this.pnlBranchesArea.Controls.Add(this.imgLoading); this.pnlBranchesArea.Controls.Add(this.BranchesGrid); this.pnlBranchesArea.Dock = System.Windows.Forms.DockStyle.Fill; this.pnlBranchesArea.Location = new System.Drawing.Point(3, 218); this.pnlBranchesArea.Name = "pnlBranchesArea"; this.pnlBranchesArea.Size = new System.Drawing.Size(754, 141); this.pnlBranchesArea.TabIndex = 2; // // imgLoading // this.imgLoading.BackColor = System.Drawing.SystemColors.AppWorkspace; this.imgLoading.Dock = System.Windows.Forms.DockStyle.Fill; this.imgLoading.Location = new System.Drawing.Point(0, 0); this.imgLoading.Name = "imgLoading"; this.imgLoading.Size = new System.Drawing.Size(754, 141); this.imgLoading.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage; this.imgLoading.TabIndex = 1; this.imgLoading.TabStop = false; this.imgLoading.Visible = false; // // BranchesGrid // this.BranchesGrid.AllowUserToAddRows = false; this.BranchesGrid.AllowUserToDeleteRows = false; this.BranchesGrid.AutoGenerateColumns = false; this.BranchesGrid.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.BranchesGrid.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.deleteDataGridViewCheckBoxColumn, this.nameDataGridViewTextBoxColumn, this.dateDataGridViewTextBoxColumn, this.Author, this.Message}); this.BranchesGrid.DataSource = this.branchBindingSource; this.BranchesGrid.Dock = System.Windows.Forms.DockStyle.Fill; this.BranchesGrid.Location = new System.Drawing.Point(0, 0); this.BranchesGrid.Name = "BranchesGrid"; this.BranchesGrid.RowHeadersVisible = false; this.BranchesGrid.Size = new System.Drawing.Size(754, 141); this.BranchesGrid.TabIndex = 0; this.BranchesGrid.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.BranchesGrid_CellContentClick); // // deleteDataGridViewCheckBoxColumn // this.deleteDataGridViewCheckBoxColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None; this.deleteDataGridViewCheckBoxColumn.DataPropertyName = "Delete"; this.deleteDataGridViewCheckBoxColumn.FillWeight = 20F; this.deleteDataGridViewCheckBoxColumn.HeaderText = "Delete"; this.deleteDataGridViewCheckBoxColumn.Name = "deleteDataGridViewCheckBoxColumn"; this.deleteDataGridViewCheckBoxColumn.Width = 50; // // nameDataGridViewTextBoxColumn // this.nameDataGridViewTextBoxColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells; this.nameDataGridViewTextBoxColumn.DataPropertyName = "Name"; dataGridViewCellStyle1.Padding = new System.Windows.Forms.Padding(5, 0, 5, 0); this.nameDataGridViewTextBoxColumn.DefaultCellStyle = dataGridViewCellStyle1; this.nameDataGridViewTextBoxColumn.FillWeight = 2F; this.nameDataGridViewTextBoxColumn.HeaderText = "Name"; this.nameDataGridViewTextBoxColumn.MinimumWidth = 100; this.nameDataGridViewTextBoxColumn.Name = "nameDataGridViewTextBoxColumn"; this.nameDataGridViewTextBoxColumn.ReadOnly = true; // // dateDataGridViewTextBoxColumn // this.dateDataGridViewTextBoxColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None; this.dateDataGridViewTextBoxColumn.DataPropertyName = "Date"; this.dateDataGridViewTextBoxColumn.FillWeight = 300F; this.dateDataGridViewTextBoxColumn.HeaderText = "Last activity"; this.dateDataGridViewTextBoxColumn.Name = "dateDataGridViewTextBoxColumn"; this.dateDataGridViewTextBoxColumn.ReadOnly = true; this.dateDataGridViewTextBoxColumn.Width = 175; // // Author // this.Author.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells; this.Author.DataPropertyName = "Author"; dataGridViewCellStyle2.Padding = new System.Windows.Forms.Padding(5, 0, 5, 0); this.Author.DefaultCellStyle = dataGridViewCellStyle2; this.Author.FillWeight = 2F; this.Author.HeaderText = "Last author"; this.Author.Name = "Author"; this.Author.ReadOnly = true; this.Author.Width = 85; // // Message // this.Message.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill; this.Message.DataPropertyName = "Message"; this.Message.HeaderText = "Last message"; this.Message.Name = "Message"; this.Message.ReadOnly = true; this.Message.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; // // branchBindingSource // this.branchBindingSource.DataSource = typeof(DeleteUnusedBranches.Branch); // // tableLayoutPanel1 // this.tableLayoutPanel1.ColumnCount = 1; this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); this.tableLayoutPanel1.Controls.Add(this.pnlBranchesArea, 0, 2); this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel2, 0, 3); this.tableLayoutPanel1.Controls.Add(this.instructionLabel, 0, 0); this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel3, 0, 1); this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill; this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0); this.tableLayoutPanel1.Name = "tableLayoutPanel1"; this.tableLayoutPanel1.RowCount = 4; this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F)); this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 190F)); this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F)); this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 37F)); this.tableLayoutPanel1.Size = new System.Drawing.Size(760, 399); this.tableLayoutPanel1.TabIndex = 1; // // tableLayoutPanel2 // this.tableLayoutPanel2.ColumnCount = 4; this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F)); this.tableLayoutPanel2.Controls.Add(this.buttonSettings, 0, 0); this.tableLayoutPanel2.Controls.Add(this.Cancel, 3, 0); this.tableLayoutPanel2.Controls.Add(this.Delete, 2, 0); this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill; this.tableLayoutPanel2.Location = new System.Drawing.Point(3, 365); this.tableLayoutPanel2.Name = "tableLayoutPanel2"; this.tableLayoutPanel2.RowCount = 1; this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F)); this.tableLayoutPanel2.Size = new System.Drawing.Size(754, 31); this.tableLayoutPanel2.TabIndex = 2; // // buttonSettings // this.buttonSettings.Location = new System.Drawing.Point(3, 3); this.buttonSettings.Name = "buttonSettings"; this.buttonSettings.Size = new System.Drawing.Size(75, 25); this.buttonSettings.TabIndex = 2; this.buttonSettings.Text = "Settings"; this.buttonSettings.UseVisualStyleBackColor = true; this.buttonSettings.Click += new System.EventHandler(this.buttonSettings_Click); // // Cancel // this.Cancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.Cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.Cancel.Location = new System.Drawing.Point(676, 3); this.Cancel.Name = "Cancel"; this.Cancel.Size = new System.Drawing.Size(75, 25); this.Cancel.TabIndex = 0; this.Cancel.Text = "Close"; this.Cancel.UseVisualStyleBackColor = true; // // Delete // this.Delete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.Delete.Location = new System.Drawing.Point(595, 3); this.Delete.Name = "Delete"; this.Delete.Size = new System.Drawing.Size(75, 25); this.Delete.TabIndex = 1; this.Delete.Text = "Delete"; this.Delete.UseVisualStyleBackColor = true; this.Delete.Click += new System.EventHandler(this.Delete_Click); // // instructionLabel // this.instructionLabel.Anchor = System.Windows.Forms.AnchorStyles.Left; this.instructionLabel.AutoSize = true; this.instructionLabel.Location = new System.Drawing.Point(3, 6); this.instructionLabel.Name = "instructionLabel"; this.instructionLabel.Size = new System.Drawing.Size(19, 13); this.instructionLabel.TabIndex = 1; this.instructionLabel.Text = "...."; // // tableLayoutPanel3 // this.tableLayoutPanel3.ColumnCount = 2; this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F)); this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F)); this.tableLayoutPanel3.Controls.Add(this.regexFilter, 1, 3); this.tableLayoutPanel3.Controls.Add(this.IncludeRemoteBranches, 0, 2); this.tableLayoutPanel3.Controls.Add(this.remote, 1, 2); this.tableLayoutPanel3.Controls.Add(this.useRegexFilter, 0, 3); this.tableLayoutPanel3.Controls.Add(this.Refresh, 1, 5); this.tableLayoutPanel3.Controls.Add(this.label1, 0, 0); this.tableLayoutPanel3.Controls.Add(this.label2, 0, 1); this.tableLayoutPanel3.Controls.Add(this.mergedIntoBranch, 1, 1); this.tableLayoutPanel3.Controls.Add(this.olderThanDays, 1, 0); this.tableLayoutPanel3.Controls.Add(this.includeUnmergedBranches, 0, 4); this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill; this.tableLayoutPanel3.Location = new System.Drawing.Point(3, 28); this.tableLayoutPanel3.Name = "tableLayoutPanel3"; this.tableLayoutPanel3.RowCount = 6; this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F)); this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F)); this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F)); this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F)); this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F)); this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F)); this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F)); this.tableLayoutPanel3.Size = new System.Drawing.Size(754, 184); this.tableLayoutPanel3.TabIndex = 3; // // regexFilter // this.regexFilter.Location = new System.Drawing.Point(380, 93); this.regexFilter.Name = "regexFilter"; this.regexFilter.Size = new System.Drawing.Size(218, 20); this.regexFilter.TabIndex = 6; this.regexFilter.Text = "/(feature|develop)/"; this.regexFilter.TextChanged += new System.EventHandler(this.regexFilter_TextChanged); // // IncludeRemoteBranches // this.IncludeRemoteBranches.AutoSize = true; this.IncludeRemoteBranches.Location = new System.Drawing.Point(3, 63); this.IncludeRemoteBranches.Name = "IncludeRemoteBranches"; this.IncludeRemoteBranches.Size = new System.Drawing.Size(162, 17); this.IncludeRemoteBranches.TabIndex = 3; this.IncludeRemoteBranches.Text = "Delete remote branches from"; this.IncludeRemoteBranches.UseVisualStyleBackColor = true; this.IncludeRemoteBranches.CheckedChanged += new System.EventHandler(this.IncludeRemoteBranches_CheckedChanged); // // remote // this.remote.Location = new System.Drawing.Point(380, 63); this.remote.Name = "remote"; this.remote.Size = new System.Drawing.Size(218, 20); this.remote.TabIndex = 4; this.remote.Text = "origin"; this.remote.TextChanged += new System.EventHandler(this.remote_TextChanged); // // useRegexFilter // this.useRegexFilter.AutoSize = true; this.useRegexFilter.Location = new System.Drawing.Point(3, 93); this.useRegexFilter.Name = "useRegexFilter"; this.useRegexFilter.Size = new System.Drawing.Size(155, 17); this.useRegexFilter.TabIndex = 5; this.useRegexFilter.Text = "Use regex to filter branches"; this.useRegexFilter.UseVisualStyleBackColor = true; this.useRegexFilter.CheckedChanged += new System.EventHandler(this.useRegexFilter_CheckedChanged); // // Refresh // this.Refresh.Location = new System.Drawing.Point(380, 153); this.Refresh.Name = "Refresh"; this.Refresh.Size = new System.Drawing.Size(124, 23); this.Refresh.TabIndex = 7; this.Refresh.Text = "Search branches"; this.Refresh.UseVisualStyleBackColor = true; this.Refresh.Click += new System.EventHandler(this.Refresh_Click); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(3, 5); this.label1.Margin = new System.Windows.Forms.Padding(3, 5, 3, 0); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(168, 13); this.label1.TabIndex = 9; this.label1.Text = "Delete branches older than x days"; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(3, 35); this.label2.Margin = new System.Windows.Forms.Padding(3, 5, 3, 0); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(200, 13); this.label2.TabIndex = 10; this.label2.Text = "Delete branches fully merged into branch"; // // mergedIntoBranch // this.mergedIntoBranch.Location = new System.Drawing.Point(380, 33); this.mergedIntoBranch.Name = "mergedIntoBranch"; this.mergedIntoBranch.Size = new System.Drawing.Size(218, 20); this.mergedIntoBranch.TabIndex = 12; this.mergedIntoBranch.TextChanged += new System.EventHandler(this.mergedIntoBranch_TextChanged); // // olderThanDays // this.olderThanDays.Location = new System.Drawing.Point(380, 3); this.olderThanDays.Maximum = new decimal(new int[] { 100000, 0, 0, 0}); this.olderThanDays.Name = "olderThanDays"; this.olderThanDays.Size = new System.Drawing.Size(120, 20); this.olderThanDays.TabIndex = 13; this.olderThanDays.ValueChanged += new System.EventHandler(this.olderThanDays_ValueChanged); // // includeUnmergedBranches // this.includeUnmergedBranches.AutoSize = true; this.includeUnmergedBranches.Location = new System.Drawing.Point(3, 123); this.includeUnmergedBranches.Name = "includeUnmergedBranches"; this.includeUnmergedBranches.Size = new System.Drawing.Size(158, 17); this.includeUnmergedBranches.TabIndex = 14; this.includeUnmergedBranches.Text = "Include unmerged branches"; this.includeUnmergedBranches.UseVisualStyleBackColor = true; this.includeUnmergedBranches.CheckedChanged += new System.EventHandler(this.includeUnmergedBranches_CheckedChanged); // // DeleteUnusedBranchesForm // this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; this.CancelButton = this.Cancel; this.ClientSize = new System.Drawing.Size(760, 421); this.Controls.Add(this.tableLayoutPanel1); this.Controls.Add(statusStrip1); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.MinimumSize = new System.Drawing.Size(600, 400); this.Name = "DeleteUnusedBranchesForm"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "Delete obsolete branches"; this.pnlBranchesArea.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.imgLoading)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.BranchesGrid)).EndInit(); this.tableLayoutPanel1.ResumeLayout(false); this.tableLayoutPanel1.PerformLayout(); this.tableLayoutPanel2.ResumeLayout(false); this.tableLayoutPanel3.ResumeLayout(false); this.tableLayoutPanel3.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.olderThanDays)).EndInit(); statusStrip1.ResumeLayout(false); statusStrip1.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.branchBindingSource)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { System.Windows.Forms.ToolStripSeparator toolStripSeparator2; System.Windows.Forms.ToolStripSeparator menuItem4; System.Windows.Forms.ToolStripSeparator toolStripSeparator1; System.Windows.Forms.StatusStrip status; System.Windows.Forms.ToolStripSeparator toolStripSeparator4; System.Windows.Forms.ToolStripSeparator toolStripSeparator5; System.Windows.Forms.ToolStripSeparator toolStripSeparator6; System.Windows.Forms.ToolStripSeparator toolStripSeparator7; System.Windows.Forms.ToolStripMenuItem playDialogueNodeToolStripMenuItem; System.Windows.Forms.ToolStripMenuItem exportGameLipsyncToolStripMenuItem; System.Windows.Forms.ToolStripMenuItem menuItemHelp; WeifenLuo.WinFormsUI.Docking.AutoHideStripSkin autoHideStripSkin1 = new WeifenLuo.WinFormsUI.Docking.AutoHideStripSkin(); WeifenLuo.WinFormsUI.Docking.DockPanelGradient dockPanelGradient1 = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient(); WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient1 = new WeifenLuo.WinFormsUI.Docking.TabGradient(); WeifenLuo.WinFormsUI.Docking.DockPaneStripSkin dockPaneStripSkin1 = new WeifenLuo.WinFormsUI.Docking.DockPaneStripSkin(); WeifenLuo.WinFormsUI.Docking.DockPaneStripGradient dockPaneStripGradient1 = new WeifenLuo.WinFormsUI.Docking.DockPaneStripGradient(); WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient2 = new WeifenLuo.WinFormsUI.Docking.TabGradient(); WeifenLuo.WinFormsUI.Docking.DockPanelGradient dockPanelGradient2 = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient(); WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient3 = new WeifenLuo.WinFormsUI.Docking.TabGradient(); WeifenLuo.WinFormsUI.Docking.DockPaneStripToolWindowGradient dockPaneStripToolWindowGradient1 = new WeifenLuo.WinFormsUI.Docking.DockPaneStripToolWindowGradient(); WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient4 = new WeifenLuo.WinFormsUI.Docking.TabGradient(); WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient5 = new WeifenLuo.WinFormsUI.Docking.TabGradient(); WeifenLuo.WinFormsUI.Docking.DockPanelGradient dockPanelGradient3 = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient(); WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient6 = new WeifenLuo.WinFormsUI.Docking.TabGradient(); WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient7 = new WeifenLuo.WinFormsUI.Docking.TabGradient(); this.statusProgressBar = new System.Windows.Forms.ToolStripProgressBar(); this.statusLabel = new System.Windows.Forms.ToolStripStatusLabel(); this.faceFXToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.menuMain = new System.Windows.Forms.MenuStrip(); this.menuItemProject = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemNewProject = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemOpenProject = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemNewDialogue = new System.Windows.Forms.ToolStripMenuItem(); this.saveFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.saveAllDirtyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripSeparator8 = new System.Windows.Forms.ToolStripSeparator(); this.menuItemSaveAll = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemReloadFile = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemReloadAllFiles = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemCloseAll = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemCloseProject = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemExit = new System.Windows.Forms.ToolStripMenuItem(); this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.replaceActorsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripSeparator12 = new System.Windows.Forms.ToolStripSeparator(); this.projectPropertiesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemViews = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemProjectExplorer = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemProjectProperties = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemOutputLog = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemSearchResults = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemResetPanels = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemExport = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemPlayDialogue = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemCheck = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemCheckAll = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator(); this.menuItemImportLocalization = new System.Windows.Forms.ToolStripMenuItem(); this.exportDialoguesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripSeparator10 = new System.Windows.Forms.ToolStripSeparator(); this.menuItemShowStats = new System.Windows.Forms.ToolStripMenuItem(); this.showAllStatsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemExportStats = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripSeparator9 = new System.Windows.Forms.ToolStripSeparator(); this.menuItemLocalization = new System.Windows.Forms.ToolStripMenuItem(); this.unreal4pomanifestToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemVoicing = new System.Windows.Forms.ToolStripMenuItem(); this.exportGameConstantsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.unreal4ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemAsk = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemAbout = new System.Windows.Forms.ToolStripMenuItem(); this.dockPanel = new WeifenLuo.WinFormsUI.Docking.DockPanel(); this.menuItemSearchAll = new System.Windows.Forms.ToolStripMenuItem(); toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator(); menuItem4 = new System.Windows.Forms.ToolStripSeparator(); toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); status = new System.Windows.Forms.StatusStrip(); toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator(); toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator(); toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator(); toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator(); playDialogueNodeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); exportGameLipsyncToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); menuItemHelp = new System.Windows.Forms.ToolStripMenuItem(); status.SuspendLayout(); this.menuMain.SuspendLayout(); this.SuspendLayout(); // // toolStripSeparator2 // toolStripSeparator2.Name = "toolStripSeparator2"; toolStripSeparator2.Size = new System.Drawing.Size(227, 6); // // menuItem4 // menuItem4.Name = "menuItem4"; menuItem4.Size = new System.Drawing.Size(242, 6); // // toolStripSeparator1 // toolStripSeparator1.Name = "toolStripSeparator1"; toolStripSeparator1.Size = new System.Drawing.Size(177, 6); // // status // status.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.statusProgressBar, this.statusLabel }); status.Location = new System.Drawing.Point(0, 423); status.Name = "status"; status.Size = new System.Drawing.Size(691, 22); status.TabIndex = 4; // // statusProgressBar // this.statusProgressBar.Name = "statusProgressBar"; this.statusProgressBar.Size = new System.Drawing.Size(100, 16); // // statusLabel // this.statusLabel.Name = "statusLabel"; this.statusLabel.Size = new System.Drawing.Size(45, 17); this.statusLabel.Text = "Default"; // // toolStripSeparator4 // toolStripSeparator4.Name = "toolStripSeparator4"; toolStripSeparator4.Size = new System.Drawing.Size(242, 6); // // toolStripSeparator5 // toolStripSeparator5.Name = "toolStripSeparator5"; toolStripSeparator5.Size = new System.Drawing.Size(242, 6); // // toolStripSeparator6 // toolStripSeparator6.Name = "toolStripSeparator6"; toolStripSeparator6.Size = new System.Drawing.Size(242, 6); // // toolStripSeparator7 // toolStripSeparator7.Name = "toolStripSeparator7"; toolStripSeparator7.Size = new System.Drawing.Size(242, 6); // // playDialogueNodeToolStripMenuItem // playDialogueNodeToolStripMenuItem.Image = global::DialogueEditor.Properties.Resources.filmDot; playDialogueNodeToolStripMenuItem.Name = "playDialogueNodeToolStripMenuItem"; playDialogueNodeToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Shift | System.Windows.Forms.Keys.F5))); playDialogueNodeToolStripMenuItem.Size = new System.Drawing.Size(230, 22); playDialogueNodeToolStripMenuItem.Text = "Play Dialogue Node"; playDialogueNodeToolStripMenuItem.Click += new System.EventHandler(this.OnPlayDialogueNode); // // exportGameLipsyncToolStripMenuItem // exportGameLipsyncToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.faceFXToolStripMenuItem }); exportGameLipsyncToolStripMenuItem.Image = global::DialogueEditor.Properties.Resources.Export; exportGameLipsyncToolStripMenuItem.Name = "exportGameLipsyncToolStripMenuItem"; exportGameLipsyncToolStripMenuItem.Size = new System.Drawing.Size(230, 22); exportGameLipsyncToolStripMenuItem.Text = "Export Game Lipsync"; // // faceFXToolStripMenuItem // this.faceFXToolStripMenuItem.Name = "faceFXToolStripMenuItem"; this.faceFXToolStripMenuItem.Size = new System.Drawing.Size(114, 22); this.faceFXToolStripMenuItem.Text = "Face FX"; this.faceFXToolStripMenuItem.Click += new System.EventHandler(this.OnExportLipsyncFaceFX); // // menuItemHelp // menuItemHelp.Image = global::DialogueEditor.Properties.Resources.help; menuItemHelp.Name = "menuItemHelp"; menuItemHelp.ShortcutKeys = System.Windows.Forms.Keys.F1; menuItemHelp.Size = new System.Drawing.Size(118, 22); menuItemHelp.Text = "Help"; menuItemHelp.Click += new System.EventHandler(this.OnShowHelp); // // menuMain // this.menuMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.menuItemProject, this.editToolStripMenuItem, this.menuItemViews, this.menuItemExport, this.menuItemAsk }); this.menuMain.Location = new System.Drawing.Point(0, 0); this.menuMain.Name = "menuMain"; this.menuMain.Size = new System.Drawing.Size(691, 24); this.menuMain.TabIndex = 7; // // menuItemProject // this.menuItemProject.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.menuItemNewProject, this.menuItemOpenProject, toolStripSeparator4, this.menuItemNewDialogue, toolStripSeparator5, this.saveFileToolStripMenuItem, this.saveAllDirtyToolStripMenuItem, this.toolStripSeparator8, this.menuItemSaveAll, toolStripSeparator7, this.menuItemReloadFile, this.menuItemReloadAllFiles, toolStripSeparator6, this.menuItemCloseAll, this.menuItemCloseProject, menuItem4, this.menuItemExit }); this.menuItemProject.Name = "menuItemProject"; this.menuItemProject.Size = new System.Drawing.Size(37, 20); this.menuItemProject.Text = "&File"; // // menuItemNewProject // this.menuItemNewProject.Image = global::DialogueEditor.Properties.Resources.book; this.menuItemNewProject.Name = "menuItemNewProject"; this.menuItemNewProject.Size = new System.Drawing.Size(245, 22); this.menuItemNewProject.Text = "&New Project"; this.menuItemNewProject.Click += new System.EventHandler(this.OnNewProject); // // menuItemOpenProject // this.menuItemOpenProject.Image = global::DialogueEditor.Properties.Resources.book_open; this.menuItemOpenProject.Name = "menuItemOpenProject"; this.menuItemOpenProject.Size = new System.Drawing.Size(245, 22); this.menuItemOpenProject.Text = "&Open Project"; this.menuItemOpenProject.Click += new System.EventHandler(this.OnOpenProject); // // menuItemNewDialogue // this.menuItemNewDialogue.Image = global::DialogueEditor.Properties.Resources.page; this.menuItemNewDialogue.Name = "menuItemNewDialogue"; this.menuItemNewDialogue.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N))); this.menuItemNewDialogue.Size = new System.Drawing.Size(245, 22); this.menuItemNewDialogue.Text = "New &Dialogue"; this.menuItemNewDialogue.Click += new System.EventHandler(this.OnNewDialogue); // // saveFileToolStripMenuItem // this.saveFileToolStripMenuItem.Image = global::DialogueEditor.Properties.Resources.page_save_white; this.saveFileToolStripMenuItem.Name = "saveFileToolStripMenuItem"; this.saveFileToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S))); this.saveFileToolStripMenuItem.Size = new System.Drawing.Size(245, 22); this.saveFileToolStripMenuItem.Text = "&Save File"; this.saveFileToolStripMenuItem.Click += new System.EventHandler(this.OnSaveFile); // // saveAllDirtyToolStripMenuItem // this.saveAllDirtyToolStripMenuItem.Image = global::DialogueEditor.Properties.Resources.page_saves; this.saveAllDirtyToolStripMenuItem.Name = "saveAllDirtyToolStripMenuItem"; this.saveAllDirtyToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift) | System.Windows.Forms.Keys.S))); this.saveAllDirtyToolStripMenuItem.Size = new System.Drawing.Size(245, 22); this.saveAllDirtyToolStripMenuItem.Text = "Save Opened Files"; this.saveAllDirtyToolStripMenuItem.Click += new System.EventHandler(this.OnSaveAllFiles); // // toolStripSeparator8 // this.toolStripSeparator8.Name = "toolStripSeparator8"; this.toolStripSeparator8.Size = new System.Drawing.Size(242, 6); // // menuItemSaveAll // this.menuItemSaveAll.Image = global::DialogueEditor.Properties.Resources.drive_disk; this.menuItemSaveAll.Name = "menuItemSaveAll"; this.menuItemSaveAll.Size = new System.Drawing.Size(245, 22); this.menuItemSaveAll.Text = "&Force Save Full Project"; this.menuItemSaveAll.Click += new System.EventHandler(this.OnForceSaveAll); // // menuItemReloadFile // this.menuItemReloadFile.Image = global::DialogueEditor.Properties.Resources.arrow_redo; this.menuItemReloadFile.Name = "menuItemReloadFile"; this.menuItemReloadFile.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.R))); this.menuItemReloadFile.Size = new System.Drawing.Size(245, 22); this.menuItemReloadFile.Text = "&Reload File"; this.menuItemReloadFile.Click += new System.EventHandler(this.OnReloadFile); // // menuItemReloadAllFiles // this.menuItemReloadAllFiles.Image = global::DialogueEditor.Properties.Resources.arrow_refresh; this.menuItemReloadAllFiles.Name = "menuItemReloadAllFiles"; this.menuItemReloadAllFiles.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift) | System.Windows.Forms.Keys.R))); this.menuItemReloadAllFiles.Size = new System.Drawing.Size(245, 22); this.menuItemReloadAllFiles.Text = "Reload Full Project"; this.menuItemReloadAllFiles.Click += new System.EventHandler(this.OnReloadAllFiles); // // menuItemCloseAll // this.menuItemCloseAll.Image = global::DialogueEditor.Properties.Resources.page_white_delete; this.menuItemCloseAll.Name = "menuItemCloseAll"; this.menuItemCloseAll.Size = new System.Drawing.Size(245, 22); this.menuItemCloseAll.Text = "&Close Opened Files"; this.menuItemCloseAll.Click += new System.EventHandler(this.OnCloseAllFiles); // // menuItemCloseProject // this.menuItemCloseProject.Image = global::DialogueEditor.Properties.Resources.drive_delete; this.menuItemCloseProject.Name = "menuItemCloseProject"; this.menuItemCloseProject.Size = new System.Drawing.Size(245, 22); this.menuItemCloseProject.Text = "Close &Project"; this.menuItemCloseProject.Click += new System.EventHandler(this.OnCloseProject); // // menuItemExit // this.menuItemExit.Name = "menuItemExit"; this.menuItemExit.Size = new System.Drawing.Size(245, 22); this.menuItemExit.Text = "&Exit"; this.menuItemExit.Click += new System.EventHandler(this.OnExit); // // editToolStripMenuItem // this.editToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.menuItemSearchAll, this.replaceActorsToolStripMenuItem, this.toolStripSeparator12, this.projectPropertiesToolStripMenuItem }); this.editToolStripMenuItem.Name = "editToolStripMenuItem"; this.editToolStripMenuItem.Size = new System.Drawing.Size(39, 20); this.editToolStripMenuItem.Text = "Edit"; // // replaceActorsToolStripMenuItem // this.replaceActorsToolStripMenuItem.Image = global::DialogueEditor.Properties.Resources.group; this.replaceActorsToolStripMenuItem.Name = "replaceActorsToolStripMenuItem"; this.replaceActorsToolStripMenuItem.Size = new System.Drawing.Size(198, 22); this.replaceActorsToolStripMenuItem.Text = "Replace Actor"; this.replaceActorsToolStripMenuItem.Click += new System.EventHandler(this.OnReplaceActor); // // toolStripSeparator12 // this.toolStripSeparator12.Name = "toolStripSeparator12"; this.toolStripSeparator12.Size = new System.Drawing.Size(195, 6); // // projectPropertiesToolStripMenuItem // this.projectPropertiesToolStripMenuItem.Image = global::DialogueEditor.Properties.Resources.book; this.projectPropertiesToolStripMenuItem.Name = "projectPropertiesToolStripMenuItem"; this.projectPropertiesToolStripMenuItem.Size = new System.Drawing.Size(198, 22); this.projectPropertiesToolStripMenuItem.Text = "Project properties"; this.projectPropertiesToolStripMenuItem.Click += new System.EventHandler(this.OnEditProjectProperties); // // menuItemViews // this.menuItemViews.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.menuItemProjectExplorer, this.menuItemProjectProperties, this.menuItemOutputLog, this.menuItemSearchResults, toolStripSeparator1, this.menuItemResetPanels }); this.menuItemViews.Name = "menuItemViews"; this.menuItemViews.Size = new System.Drawing.Size(44, 20); this.menuItemViews.Text = "&View"; // // menuItemProjectExplorer // this.menuItemProjectExplorer.CheckOnClick = true; this.menuItemProjectExplorer.Name = "menuItemProjectExplorer"; this.menuItemProjectExplorer.Size = new System.Drawing.Size(180, 22); this.menuItemProjectExplorer.Text = "Project &Explorer"; this.menuItemProjectExplorer.CheckedChanged += new System.EventHandler(this.OnCheckProjectExplorer); // // menuItemProjectProperties // this.menuItemProjectProperties.CheckOnClick = true; this.menuItemProjectProperties.Name = "menuItemProjectProperties"; this.menuItemProjectProperties.Size = new System.Drawing.Size(180, 22); this.menuItemProjectProperties.Text = "&Properties"; this.menuItemProjectProperties.CheckedChanged += new System.EventHandler(this.OnCheckProperties); // // menuItemOutputLog // this.menuItemOutputLog.CheckOnClick = true; this.menuItemOutputLog.Name = "menuItemOutputLog"; this.menuItemOutputLog.Size = new System.Drawing.Size(180, 22); this.menuItemOutputLog.Text = "&Output Log"; this.menuItemOutputLog.CheckedChanged += new System.EventHandler(this.OnCheckOutputLog); // // menuItemSearchResults // this.menuItemSearchResults.CheckOnClick = true; this.menuItemSearchResults.Name = "menuItemSearchResults"; this.menuItemSearchResults.Size = new System.Drawing.Size(180, 22); this.menuItemSearchResults.Text = "&Search Results"; this.menuItemSearchResults.CheckedChanged += new System.EventHandler(this.OnCheckSearchResults); // // menuItemResetPanels // this.menuItemResetPanels.Name = "menuItemResetPanels"; this.menuItemResetPanels.Size = new System.Drawing.Size(180, 22); this.menuItemResetPanels.Text = "&Reset Panels"; this.menuItemResetPanels.Click += new System.EventHandler(this.OnResetPanels); // // menuItemExport // this.menuItemExport.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.menuItemPlayDialogue, playDialogueNodeToolStripMenuItem, toolStripSeparator2, this.menuItemCheck, this.menuItemCheckAll, this.toolStripSeparator3, this.menuItemImportLocalization, this.exportDialoguesToolStripMenuItem, this.toolStripSeparator10, this.menuItemShowStats, this.showAllStatsToolStripMenuItem, this.menuItemExportStats, this.toolStripSeparator9, this.menuItemLocalization, this.menuItemVoicing, exportGameLipsyncToolStripMenuItem, this.exportGameConstantsToolStripMenuItem }); this.menuItemExport.Name = "menuItemExport"; this.menuItemExport.Size = new System.Drawing.Size(48, 20); this.menuItemExport.Text = "&Tools"; // // menuItemPlayDialogue // this.menuItemPlayDialogue.Image = global::DialogueEditor.Properties.Resources.film; this.menuItemPlayDialogue.Name = "menuItemPlayDialogue"; this.menuItemPlayDialogue.ShortcutKeys = System.Windows.Forms.Keys.F5; this.menuItemPlayDialogue.Size = new System.Drawing.Size(230, 22); this.menuItemPlayDialogue.Text = "&Play Dialogue"; this.menuItemPlayDialogue.Click += new System.EventHandler(this.OnPlayDialogue); // // menuItemCheck // this.menuItemCheck.Image = global::DialogueEditor.Properties.Resources.check; this.menuItemCheck.Name = "menuItemCheck"; this.menuItemCheck.ShortcutKeys = System.Windows.Forms.Keys.F7; this.menuItemCheck.Size = new System.Drawing.Size(230, 22); this.menuItemCheck.Text = "Check Dialogue"; this.menuItemCheck.Click += new System.EventHandler(this.OnCheckCurrent); // // menuItemCheckAll // this.menuItemCheckAll.Image = global::DialogueEditor.Properties.Resources.check2; this.menuItemCheckAll.Name = "menuItemCheckAll"; this.menuItemCheckAll.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Shift | System.Windows.Forms.Keys.F7))); this.menuItemCheckAll.Size = new System.Drawing.Size(230, 22); this.menuItemCheckAll.Text = "&Check All Dialogues"; this.menuItemCheckAll.Click += new System.EventHandler(this.OnCheckAll); // // toolStripSeparator3 // this.toolStripSeparator3.Name = "toolStripSeparator3"; this.toolStripSeparator3.Size = new System.Drawing.Size(227, 6); // // menuItemImportLocalization // this.menuItemImportLocalization.Image = global::DialogueEditor.Properties.Resources.Import; this.menuItemImportLocalization.Name = "menuItemImportLocalization"; this.menuItemImportLocalization.Size = new System.Drawing.Size(230, 22); this.menuItemImportLocalization.Text = "Import Dialogues"; this.menuItemImportLocalization.Click += new System.EventHandler(this.OnImportDialogues); // // exportDialoguesToolStripMenuItem // this.exportDialoguesToolStripMenuItem.Image = global::DialogueEditor.Properties.Resources.Export; this.exportDialoguesToolStripMenuItem.Name = "exportDialoguesToolStripMenuItem"; this.exportDialoguesToolStripMenuItem.Size = new System.Drawing.Size(230, 22); this.exportDialoguesToolStripMenuItem.Text = "Export Dialogues"; this.exportDialoguesToolStripMenuItem.Click += new System.EventHandler(this.OnExportDialogues); // // toolStripSeparator10 // this.toolStripSeparator10.Name = "toolStripSeparator10"; this.toolStripSeparator10.Size = new System.Drawing.Size(227, 6); // // menuItemShowStats // this.menuItemShowStats.Image = global::DialogueEditor.Properties.Resources.chart_bar; this.menuItemShowStats.Name = "menuItemShowStats"; this.menuItemShowStats.ShortcutKeys = System.Windows.Forms.Keys.F4; this.menuItemShowStats.Size = new System.Drawing.Size(230, 22); this.menuItemShowStats.Text = "Show Dialogue Stats"; this.menuItemShowStats.Click += new System.EventHandler(this.OnShowStats); // // showAllStatsToolStripMenuItem // this.showAllStatsToolStripMenuItem.Image = global::DialogueEditor.Properties.Resources.chart_bar; this.showAllStatsToolStripMenuItem.Name = "showAllStatsToolStripMenuItem"; this.showAllStatsToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Shift | System.Windows.Forms.Keys.F4))); this.showAllStatsToolStripMenuItem.Size = new System.Drawing.Size(230, 22); this.showAllStatsToolStripMenuItem.Text = "Show All Stats"; this.showAllStatsToolStripMenuItem.Click += new System.EventHandler(this.OnShowAllStats); // // menuItemExportStats // this.menuItemExportStats.Image = global::DialogueEditor.Properties.Resources.Export; this.menuItemExportStats.Name = "menuItemExportStats"; this.menuItemExportStats.Size = new System.Drawing.Size(230, 22); this.menuItemExportStats.Text = "Export All &Stats"; this.menuItemExportStats.Click += new System.EventHandler(this.OnExportStats); // // toolStripSeparator9 // this.toolStripSeparator9.Name = "toolStripSeparator9"; this.toolStripSeparator9.Size = new System.Drawing.Size(227, 6); // // menuItemLocalization // this.menuItemLocalization.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.unreal4pomanifestToolStripMenuItem }); this.menuItemLocalization.Image = global::DialogueEditor.Properties.Resources.Export; this.menuItemLocalization.Name = "menuItemLocalization"; this.menuItemLocalization.Size = new System.Drawing.Size(230, 22); this.menuItemLocalization.Text = "Export Game &Localization"; // // unreal4pomanifestToolStripMenuItem // this.unreal4pomanifestToolStripMenuItem.Name = "unreal4pomanifestToolStripMenuItem"; this.unreal4pomanifestToolStripMenuItem.Size = new System.Drawing.Size(208, 22); this.unreal4pomanifestToolStripMenuItem.Text = "Unreal 4 (.po + .manifest)"; this.unreal4pomanifestToolStripMenuItem.Click += new System.EventHandler(this.OnExportLocalizationUnreal4); // // menuItemVoicing // this.menuItemVoicing.Image = global::DialogueEditor.Properties.Resources.Export; this.menuItemVoicing.Name = "menuItemVoicing"; this.menuItemVoicing.Size = new System.Drawing.Size(230, 22); this.menuItemVoicing.Text = "Export Game &Voicing"; this.menuItemVoicing.Click += new System.EventHandler(this.OnExportVoicing); // // exportGameConstantsToolStripMenuItem // this.exportGameConstantsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.unreal4ToolStripMenuItem }); this.exportGameConstantsToolStripMenuItem.Image = global::DialogueEditor.Properties.Resources.Export; this.exportGameConstantsToolStripMenuItem.Name = "exportGameConstantsToolStripMenuItem"; this.exportGameConstantsToolStripMenuItem.Size = new System.Drawing.Size(230, 22); this.exportGameConstantsToolStripMenuItem.Text = "Export Game Constants"; // // unreal4ToolStripMenuItem // this.unreal4ToolStripMenuItem.Name = "unreal4ToolStripMenuItem"; this.unreal4ToolStripMenuItem.Size = new System.Drawing.Size(147, 22); this.unreal4ToolStripMenuItem.Text = "Unreal 4 (.dlc)"; this.unreal4ToolStripMenuItem.Click += new System.EventHandler(this.OnExportConstantsUnreal4); // // menuItemAsk // this.menuItemAsk.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { menuItemHelp, this.menuItemAbout }); this.menuItemAsk.MergeIndex = 3; this.menuItemAsk.Name = "menuItemAsk"; this.menuItemAsk.Size = new System.Drawing.Size(24, 20); this.menuItemAsk.Text = "&?"; // // menuItemAbout // this.menuItemAbout.Name = "menuItemAbout"; this.menuItemAbout.Size = new System.Drawing.Size(118, 22); this.menuItemAbout.Text = "&About"; this.menuItemAbout.Click += new System.EventHandler(this.OnShowAbout); // // dockPanel // this.dockPanel.Dock = System.Windows.Forms.DockStyle.Fill; this.dockPanel.DockBackColor = System.Drawing.SystemColors.AppWorkspace; this.dockPanel.DockBottomPortion = 200D; this.dockPanel.DockLeftPortion = 200D; this.dockPanel.DockRightPortion = 360D; this.dockPanel.DockTopPortion = 200D; this.dockPanel.DocumentStyle = WeifenLuo.WinFormsUI.Docking.DocumentStyle.DockingWindow; this.dockPanel.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.World, ((byte)(0))); this.dockPanel.Location = new System.Drawing.Point(0, 24); this.dockPanel.Name = "dockPanel"; this.dockPanel.RightToLeftLayout = true; this.dockPanel.Size = new System.Drawing.Size(691, 399); dockPanelGradient1.EndColor = System.Drawing.SystemColors.ControlLight; dockPanelGradient1.StartColor = System.Drawing.SystemColors.ControlLight; autoHideStripSkin1.DockStripGradient = dockPanelGradient1; tabGradient1.EndColor = System.Drawing.SystemColors.Control; tabGradient1.StartColor = System.Drawing.SystemColors.Control; tabGradient1.TextColor = System.Drawing.SystemColors.ControlDarkDark; autoHideStripSkin1.TabGradient = tabGradient1; autoHideStripSkin1.TextFont = new System.Drawing.Font("Segoe UI", 9F); tabGradient2.EndColor = System.Drawing.SystemColors.ControlLightLight; tabGradient2.StartColor = System.Drawing.SystemColors.ControlLightLight; tabGradient2.TextColor = System.Drawing.SystemColors.ControlText; dockPaneStripGradient1.ActiveTabGradient = tabGradient2; dockPanelGradient2.EndColor = System.Drawing.SystemColors.Control; dockPanelGradient2.StartColor = System.Drawing.SystemColors.Control; dockPaneStripGradient1.DockStripGradient = dockPanelGradient2; tabGradient3.EndColor = System.Drawing.SystemColors.ControlLight; tabGradient3.StartColor = System.Drawing.SystemColors.ControlLight; tabGradient3.TextColor = System.Drawing.SystemColors.ControlText; dockPaneStripGradient1.InactiveTabGradient = tabGradient3; dockPaneStripSkin1.DocumentGradient = dockPaneStripGradient1; dockPaneStripSkin1.TextFont = new System.Drawing.Font("Segoe UI", 9F); tabGradient4.EndColor = System.Drawing.SystemColors.ActiveCaption; tabGradient4.LinearGradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical; tabGradient4.StartColor = System.Drawing.SystemColors.GradientActiveCaption; tabGradient4.TextColor = System.Drawing.SystemColors.ActiveCaptionText; dockPaneStripToolWindowGradient1.ActiveCaptionGradient = tabGradient4; tabGradient5.EndColor = System.Drawing.SystemColors.Control; tabGradient5.StartColor = System.Drawing.SystemColors.Control; tabGradient5.TextColor = System.Drawing.SystemColors.ControlText; dockPaneStripToolWindowGradient1.ActiveTabGradient = tabGradient5; dockPanelGradient3.EndColor = System.Drawing.SystemColors.ControlLight; dockPanelGradient3.StartColor = System.Drawing.SystemColors.ControlLight; dockPaneStripToolWindowGradient1.DockStripGradient = dockPanelGradient3; tabGradient6.EndColor = System.Drawing.SystemColors.GradientInactiveCaption; tabGradient6.LinearGradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical; tabGradient6.StartColor = System.Drawing.SystemColors.GradientInactiveCaption; tabGradient6.TextColor = System.Drawing.SystemColors.ControlText; dockPaneStripToolWindowGradient1.InactiveCaptionGradient = tabGradient6; tabGradient7.EndColor = System.Drawing.Color.Transparent; tabGradient7.StartColor = System.Drawing.Color.Transparent; tabGradient7.TextColor = System.Drawing.SystemColors.ControlDarkDark; dockPaneStripToolWindowGradient1.InactiveTabGradient = tabGradient7; dockPaneStripSkin1.ToolWindowGradient = dockPaneStripToolWindowGradient1; this.dockPanel.Theme.Skin.AutoHideStripSkin = autoHideStripSkin1; this.dockPanel.Theme.Skin.DockPaneStripSkin = dockPaneStripSkin1; this.dockPanel.TabIndex = 0; this.dockPanel.ActiveDocumentChanged += new System.EventHandler(this.OnActiveDocumentChanged); // // menuItemSearchAll // this.menuItemSearchAll.Name = "menuItemSearchAll"; this.menuItemSearchAll.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift) | System.Windows.Forms.Keys.F))); this.menuItemSearchAll.Size = new System.Drawing.Size(198, 22); this.menuItemSearchAll.Text = "Search All"; this.menuItemSearchAll.Click += new System.EventHandler(this.OnSearchAllFiles); // // WindowMain // this.ClientSize = new System.Drawing.Size(691, 445); this.Controls.Add(this.dockPanel); this.Controls.Add(this.menuMain); this.Controls.Add(status); this.IsMdiContainer = true; this.MainMenuStrip = this.menuMain; this.Name = "WindowMain"; this.Text = "Dialogue Editor"; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.OnClose); status.ResumeLayout(false); status.PerformLayout(); this.menuMain.ResumeLayout(false); this.menuMain.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// 设计器支持所需的方法 - 不要 /// 使用代码编辑器修改此方法的内容。 /// </summary> private void InitializeComponent() { System.Windows.Forms.Label m_labServer; System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MSProxyForm)); System.Windows.Forms.Label m_labLofinPort; System.Windows.Forms.StatusStrip m_statusStrip; System.Windows.Forms.StatusStrip m_statusStripMore; System.Windows.Forms.Panel panel1; System.Windows.Forms.Label m_labChannelPort; System.Windows.Forms.Label m_labShopPort; this.m_StatusLabel = new System.Windows.Forms.ToolStripStatusLabel(); this.m_StatusLabelMore = new System.Windows.Forms.ToolStripStatusLabel(); this.m_BtnPath = new System.Windows.Forms.Button(); this.m_BtnCheck = new System.Windows.Forms.Button(); this.m_btnStop = new System.Windows.Forms.Button(); this.m_btnStart = new System.Windows.Forms.Button(); this.m_TboxLoginPort = new System.Windows.Forms.TextBox(); this.m_TboxIP = new System.Windows.Forms.TextBox(); this.m_PanExtend = new System.Windows.Forms.Panel(); this.m_TboxShopPort = new System.Windows.Forms.TextBox(); this.m_TboxChannelPort = new System.Windows.Forms.TextBox(); this.m_BtnAbout = new System.Windows.Forms.Button(); m_labServer = new System.Windows.Forms.Label(); m_labLofinPort = new System.Windows.Forms.Label(); m_statusStrip = new System.Windows.Forms.StatusStrip(); m_statusStripMore = new System.Windows.Forms.StatusStrip(); panel1 = new System.Windows.Forms.Panel(); m_labChannelPort = new System.Windows.Forms.Label(); m_labShopPort = new System.Windows.Forms.Label(); m_statusStrip.SuspendLayout(); m_statusStripMore.SuspendLayout(); panel1.SuspendLayout(); this.m_PanExtend.SuspendLayout(); this.SuspendLayout(); // // m_labServer // resources.ApplyResources(m_labServer, "m_labServer"); m_labServer.Name = "m_labServer"; // // m_labLofinPort // resources.ApplyResources(m_labLofinPort, "m_labLofinPort"); m_labLofinPort.Name = "m_labLofinPort"; // // m_statusStrip // m_statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.m_StatusLabel }); resources.ApplyResources(m_statusStrip, "m_statusStrip"); m_statusStrip.Name = "m_statusStrip"; // // m_StatusLabel // this.m_StatusLabel.Name = "m_StatusLabel"; resources.ApplyResources(this.m_StatusLabel, "m_StatusLabel"); // // m_statusStripMore // m_statusStripMore.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.m_StatusLabelMore }); resources.ApplyResources(m_statusStripMore, "m_statusStripMore"); m_statusStripMore.Name = "m_statusStripMore"; m_statusStripMore.SizingGrip = false; m_statusStripMore.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.m_statusStripMore_ItemClicked); // // m_StatusLabelMore // this.m_StatusLabelMore.Name = "m_StatusLabelMore"; resources.ApplyResources(this.m_StatusLabelMore, "m_StatusLabelMore"); this.m_StatusLabelMore.Spring = true; // // panel1 // panel1.Controls.Add(this.m_BtnAbout); panel1.Controls.Add(this.m_BtnPath); panel1.Controls.Add(this.m_BtnCheck); panel1.Controls.Add(this.m_btnStop); panel1.Controls.Add(this.m_btnStart); panel1.Controls.Add(this.m_TboxLoginPort); panel1.Controls.Add(m_labLofinPort); panel1.Controls.Add(this.m_TboxIP); panel1.Controls.Add(m_labServer); resources.ApplyResources(panel1, "panel1"); panel1.Name = "panel1"; // // m_BtnPath // resources.ApplyResources(this.m_BtnPath, "m_BtnPath"); this.m_BtnPath.Name = "m_BtnPath"; this.m_BtnPath.UseVisualStyleBackColor = true; this.m_BtnPath.Click += new System.EventHandler(this.m_BtnPath_Click); // // m_BtnCheck // resources.ApplyResources(this.m_BtnCheck, "m_BtnCheck"); this.m_BtnCheck.Name = "m_BtnCheck"; this.m_BtnCheck.UseVisualStyleBackColor = true; this.m_BtnCheck.Click += new System.EventHandler(this.m_BtnCheck_Click); // // m_btnStop // resources.ApplyResources(this.m_btnStop, "m_btnStop"); this.m_btnStop.Name = "m_btnStop"; this.m_btnStop.UseVisualStyleBackColor = true; this.m_btnStop.Click += new System.EventHandler(this.m_btnStop_Click); // // m_btnStart // resources.ApplyResources(this.m_btnStart, "m_btnStart"); this.m_btnStart.Name = "m_btnStart"; this.m_btnStart.UseVisualStyleBackColor = true; this.m_btnStart.Click += new System.EventHandler(this.m_btnStart_Click); // // m_TboxLoginPort // resources.ApplyResources(this.m_TboxLoginPort, "m_TboxLoginPort"); this.m_TboxLoginPort.Name = "m_TboxLoginPort"; // // m_TboxIP // resources.ApplyResources(this.m_TboxIP, "m_TboxIP"); this.m_TboxIP.Name = "m_TboxIP"; // // m_labChannelPort // resources.ApplyResources(m_labChannelPort, "m_labChannelPort"); m_labChannelPort.Name = "m_labChannelPort"; // // m_labShopPort // resources.ApplyResources(m_labShopPort, "m_labShopPort"); m_labShopPort.Name = "m_labShopPort"; // // m_PanExtend // this.m_PanExtend.Controls.Add(this.m_TboxShopPort); this.m_PanExtend.Controls.Add(m_labShopPort); this.m_PanExtend.Controls.Add(this.m_TboxChannelPort); this.m_PanExtend.Controls.Add(m_labChannelPort); resources.ApplyResources(this.m_PanExtend, "m_PanExtend"); this.m_PanExtend.Name = "m_PanExtend"; // // m_TboxShopPort // resources.ApplyResources(this.m_TboxShopPort, "m_TboxShopPort"); this.m_TboxShopPort.Name = "m_TboxShopPort"; // // m_TboxChannelPort // resources.ApplyResources(this.m_TboxChannelPort, "m_TboxChannelPort"); this.m_TboxChannelPort.Name = "m_TboxChannelPort"; // // m_BtnAbout // resources.ApplyResources(this.m_BtnAbout, "m_BtnAbout"); this.m_BtnAbout.Name = "m_BtnAbout"; this.m_BtnAbout.UseVisualStyleBackColor = true; this.m_BtnAbout.Click += new System.EventHandler(this.m_BtnAbout_Click); // // MSProxyForm // resources.ApplyResources(this, "$this"); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Controls.Add(this.m_PanExtend); this.Controls.Add(panel1); this.Controls.Add(m_statusStripMore); this.Controls.Add(m_statusStrip); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; this.MaximizeBox = false; this.Name = "MSProxyForm"; this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MSProxyForm_FormClosing); this.Load += new System.EventHandler(this.MSProxyForm_Load); m_statusStrip.ResumeLayout(false); m_statusStrip.PerformLayout(); m_statusStripMore.ResumeLayout(false); m_statusStripMore.PerformLayout(); panel1.ResumeLayout(false); panel1.PerformLayout(); this.m_PanExtend.ResumeLayout(false); this.m_PanExtend.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.Windows.Forms.StatusStrip statusStrip1; System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DeleteUnusedBranchesForm)); this.lblStatus = new System.Windows.Forms.ToolStripStatusLabel(); this.pnlBranchesArea = new System.Windows.Forms.Panel(); this.imgLoading = new System.Windows.Forms.PictureBox(); this.BranchesGrid = new System.Windows.Forms.DataGridView(); this._NO_TRANSLATE_deleteDataGridViewCheckBoxColumn = new System.Windows.Forms.DataGridViewCheckBoxColumn(); this.nameDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.dateDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.checkBoxHeaderCell = new DataGridViewCheckBoxHeaderCell(); this.Author = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.Message = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.branchBindingSource = new System.Windows.Forms.BindingSource(this.components); this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel(); this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel(); this.buttonSettings = new System.Windows.Forms.Button(); this.Cancel = new System.Windows.Forms.Button(); this.Delete = new System.Windows.Forms.Button(); this.instructionLabel = new System.Windows.Forms.Label(); this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel(); this.regexFilter = new System.Windows.Forms.TextBox(); this.IncludeRemoteBranches = new System.Windows.Forms.CheckBox(); this._NO_TRANSLATE_Remote = new System.Windows.Forms.TextBox(); this.useRegexFilter = new System.Windows.Forms.CheckBox(); this.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.mergedIntoBranch = new System.Windows.Forms.TextBox(); this.olderThanDays = new System.Windows.Forms.NumericUpDown(); this.RefreshBtn = new System.Windows.Forms.Button(); this.includeUnmergedBranches = new System.Windows.Forms.CheckBox(); this.useRegexCaseInsensitive = new System.Windows.Forms.CheckBox(); this.regexDoesNotMatch = new System.Windows.Forms.CheckBox(); statusStrip1 = new System.Windows.Forms.StatusStrip(); statusStrip1.SuspendLayout(); this.pnlBranchesArea.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.imgLoading)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.BranchesGrid)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.branchBindingSource)).BeginInit(); this.tableLayoutPanel1.SuspendLayout(); this.tableLayoutPanel2.SuspendLayout(); this.tableLayoutPanel3.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.olderThanDays)).BeginInit(); this.SuspendLayout(); // // statusStrip1 // statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.lblStatus }); statusStrip1.Location = new System.Drawing.Point(0, 399); statusStrip1.Name = "statusStrip1"; statusStrip1.Size = new System.Drawing.Size(760, 22); statusStrip1.TabIndex = 2; statusStrip1.Text = "statusStrip1"; // // lblStatus // this.lblStatus.Name = "lblStatus"; this.lblStatus.Size = new System.Drawing.Size(0, 17); // // pnlBranchesArea // this.pnlBranchesArea.Controls.Add(this.imgLoading); this.pnlBranchesArea.Controls.Add(this.BranchesGrid); this.pnlBranchesArea.Dock = System.Windows.Forms.DockStyle.Fill; this.pnlBranchesArea.Location = new System.Drawing.Point(3, 275); this.pnlBranchesArea.Name = "pnlBranchesArea"; this.pnlBranchesArea.Size = new System.Drawing.Size(754, 84); this.pnlBranchesArea.TabIndex = 2; // // imgLoading // this.imgLoading.BackColor = System.Drawing.SystemColors.AppWorkspace; this.imgLoading.Dock = System.Windows.Forms.DockStyle.Fill; this.imgLoading.Location = new System.Drawing.Point(0, 0); this.imgLoading.Name = "imgLoading"; this.imgLoading.Size = new System.Drawing.Size(754, 84); this.imgLoading.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage; this.imgLoading.TabIndex = 1; this.imgLoading.TabStop = false; this.imgLoading.Visible = false; // // BranchesGrid // this.BranchesGrid.AllowUserToAddRows = false; this.BranchesGrid.AllowUserToDeleteRows = false; this.BranchesGrid.AutoGenerateColumns = false; this.BranchesGrid.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.BranchesGrid.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this._NO_TRANSLATE_deleteDataGridViewCheckBoxColumn, this.nameDataGridViewTextBoxColumn, this.dateDataGridViewTextBoxColumn, this.Author, this.Message }); this.BranchesGrid.DataSource = this.branchBindingSource; this.BranchesGrid.Dock = System.Windows.Forms.DockStyle.Fill; this.BranchesGrid.Location = new System.Drawing.Point(0, 0); this.BranchesGrid.Name = "BranchesGrid"; this.BranchesGrid.RowHeadersVisible = false; this.BranchesGrid.Size = new System.Drawing.Size(754, 84); this.BranchesGrid.TabIndex = 0; this.BranchesGrid.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.BranchesGrid_CellContentClick); // // _NO_TRANSLATE_deleteDataGridViewCheckBoxColumn // this._NO_TRANSLATE_deleteDataGridViewCheckBoxColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None; this._NO_TRANSLATE_deleteDataGridViewCheckBoxColumn.FillWeight = 20F; this._NO_TRANSLATE_deleteDataGridViewCheckBoxColumn.Name = "_NO_TRANSLATE_deleteDataGridViewCheckBoxColumn"; this._NO_TRANSLATE_deleteDataGridViewCheckBoxColumn.HeaderCell = checkBoxHeaderCell; // // nameDataGridViewTextBoxColumn // this.nameDataGridViewTextBoxColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells; dataGridViewCellStyle1.Padding = new System.Windows.Forms.Padding(5, 0, 5, 0); this.nameDataGridViewTextBoxColumn.DefaultCellStyle = dataGridViewCellStyle1; this.nameDataGridViewTextBoxColumn.FillWeight = 2F; this.nameDataGridViewTextBoxColumn.HeaderText = "Name"; this.nameDataGridViewTextBoxColumn.MinimumWidth = 100; this.nameDataGridViewTextBoxColumn.Name = "nameDataGridViewTextBoxColumn"; this.nameDataGridViewTextBoxColumn.ReadOnly = true; // // dateDataGridViewTextBoxColumn // this.dateDataGridViewTextBoxColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None; this.dateDataGridViewTextBoxColumn.FillWeight = 300F; this.dateDataGridViewTextBoxColumn.HeaderText = "Last activity"; this.dateDataGridViewTextBoxColumn.Name = "dateDataGridViewTextBoxColumn"; this.dateDataGridViewTextBoxColumn.ReadOnly = true; // // Author // this.Author.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells; dataGridViewCellStyle2.Padding = new System.Windows.Forms.Padding(5, 0, 5, 0); this.Author.DefaultCellStyle = dataGridViewCellStyle2; this.Author.FillWeight = 2F; this.Author.HeaderText = "Last author"; this.Author.Name = "Author"; this.Author.ReadOnly = true; // // Message // this.Message.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill; this.Message.HeaderText = "Last message"; this.Message.Name = "Message"; this.Message.ReadOnly = true; this.Message.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; // // branchBindingSource // this.branchBindingSource.DataSource = typeof(DeleteUnusedBranches.Branch); // // tableLayoutPanel1 // this.tableLayoutPanel1.ColumnCount = 1; this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); this.tableLayoutPanel1.Controls.Add(this.pnlBranchesArea, 0, 2); this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel2, 0, 3); this.tableLayoutPanel1.Controls.Add(this.instructionLabel, 0, 0); this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel3, 0, 1); this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill; this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0); this.tableLayoutPanel1.Name = "tableLayoutPanel1"; this.tableLayoutPanel1.RowCount = 4; this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F)); this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 247F)); this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F)); this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 37F)); this.tableLayoutPanel1.Size = new System.Drawing.Size(760, 399); this.tableLayoutPanel1.TabIndex = 1; // // tableLayoutPanel2 // this.tableLayoutPanel2.ColumnCount = 4; this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F)); this.tableLayoutPanel2.Controls.Add(this.buttonSettings, 0, 0); this.tableLayoutPanel2.Controls.Add(this.Cancel, 3, 0); this.tableLayoutPanel2.Controls.Add(this.Delete, 2, 0); this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill; this.tableLayoutPanel2.Location = new System.Drawing.Point(3, 365); this.tableLayoutPanel2.Name = "tableLayoutPanel2"; this.tableLayoutPanel2.RowCount = 1; this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F)); this.tableLayoutPanel2.Size = new System.Drawing.Size(754, 31); this.tableLayoutPanel2.TabIndex = 2; // // buttonSettings // this.buttonSettings.Location = new System.Drawing.Point(3, 3); this.buttonSettings.Name = "buttonSettings"; this.buttonSettings.Size = new System.Drawing.Size(75, 25); this.buttonSettings.TabIndex = 2; this.buttonSettings.Text = "Settings"; this.buttonSettings.UseVisualStyleBackColor = true; this.buttonSettings.Click += new System.EventHandler(this.buttonSettings_Click); // // Cancel // this.Cancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.Cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.Cancel.Location = new System.Drawing.Point(676, 3); this.Cancel.Name = "Cancel"; this.Cancel.Size = new System.Drawing.Size(75, 25); this.Cancel.TabIndex = 0; this.Cancel.Text = "Close"; this.Cancel.UseVisualStyleBackColor = true; // // Delete // this.Delete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.Delete.Location = new System.Drawing.Point(595, 3); this.Delete.Name = "Delete"; this.Delete.Size = new System.Drawing.Size(75, 25); this.Delete.TabIndex = 1; this.Delete.Text = "Delete"; this.Delete.UseVisualStyleBackColor = true; this.Delete.Click += new System.EventHandler(this.Delete_Click); // // instructionLabel // this.instructionLabel.Anchor = System.Windows.Forms.AnchorStyles.Left; this.instructionLabel.AutoSize = true; this.instructionLabel.Location = new System.Drawing.Point(3, 5); this.instructionLabel.Name = "instructionLabel"; this.instructionLabel.Size = new System.Drawing.Size(19, 15); this.instructionLabel.TabIndex = 1; this.instructionLabel.Text = "...."; // // tableLayoutPanel3 // this.tableLayoutPanel3.ColumnCount = 2; this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F)); this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F)); this.tableLayoutPanel3.Controls.Add(this.regexFilter, 1, 3); this.tableLayoutPanel3.Controls.Add(this.IncludeRemoteBranches, 0, 2); this.tableLayoutPanel3.Controls.Add(this._NO_TRANSLATE_Remote, 1, 2); this.tableLayoutPanel3.Controls.Add(this.useRegexFilter, 0, 3); this.tableLayoutPanel3.Controls.Add(this.label1, 0, 0); this.tableLayoutPanel3.Controls.Add(this.label2, 0, 1); this.tableLayoutPanel3.Controls.Add(this.mergedIntoBranch, 1, 1); this.tableLayoutPanel3.Controls.Add(this.olderThanDays, 1, 0); this.tableLayoutPanel3.Controls.Add(this.useRegexCaseInsensitive, 1, 4); this.tableLayoutPanel3.Controls.Add(this.RefreshBtn, 1, 7); this.tableLayoutPanel3.Controls.Add(this.includeUnmergedBranches, 0, 6); this.tableLayoutPanel3.Controls.Add(this.regexDoesNotMatch, 1, 5); this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill; this.tableLayoutPanel3.Location = new System.Drawing.Point(3, 28); this.tableLayoutPanel3.Name = "tableLayoutPanel3"; this.tableLayoutPanel3.RowCount = 8; this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F)); this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F)); this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F)); this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F)); this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F)); this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F)); this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F)); this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F)); this.tableLayoutPanel3.Size = new System.Drawing.Size(754, 241); this.tableLayoutPanel3.TabIndex = 3; // // regexFilter // this.regexFilter.Location = new System.Drawing.Point(380, 93); this.regexFilter.Name = "regexFilter"; this.regexFilter.Size = new System.Drawing.Size(218, 23); this.regexFilter.TabIndex = 6; this.regexFilter.Text = "/(feature|develop)/"; this.regexFilter.TextChanged += new System.EventHandler(this.ClearResults); // // IncludeRemoteBranches // this.IncludeRemoteBranches.AutoSize = true; this.IncludeRemoteBranches.Location = new System.Drawing.Point(3, 63); this.IncludeRemoteBranches.Name = "IncludeRemoteBranches"; this.IncludeRemoteBranches.Size = new System.Drawing.Size(180, 19); this.IncludeRemoteBranches.TabIndex = 3; this.IncludeRemoteBranches.Text = "Delete remote branches from"; this.IncludeRemoteBranches.UseVisualStyleBackColor = true; this.IncludeRemoteBranches.CheckedChanged += new System.EventHandler(this.ClearResults); // // _NO_TRANSLATE_Remote // this._NO_TRANSLATE_Remote.Location = new System.Drawing.Point(380, 63); this._NO_TRANSLATE_Remote.Name = "_NO_TRANSLATE_Remote"; this._NO_TRANSLATE_Remote.Size = new System.Drawing.Size(218, 23); this._NO_TRANSLATE_Remote.TabIndex = 4; this._NO_TRANSLATE_Remote.Text = "origin"; this._NO_TRANSLATE_Remote.TextChanged += new System.EventHandler(this.ClearResults); // // useRegexFilter // this.useRegexFilter.AutoSize = true; this.useRegexFilter.Location = new System.Drawing.Point(3, 93); this.useRegexFilter.Name = "useRegexFilter"; this.useRegexFilter.Size = new System.Drawing.Size(168, 19); this.useRegexFilter.TabIndex = 5; this.useRegexFilter.Text = "Use regex to filter branches"; this.useRegexFilter.UseVisualStyleBackColor = true; this.useRegexFilter.CheckedChanged += new System.EventHandler(this.ClearResults); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(3, 5); this.label1.Margin = new System.Windows.Forms.Padding(3, 5, 3, 0); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(183, 15); this.label1.TabIndex = 9; this.label1.Text = "Delete branches older than x days"; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(3, 35); this.label2.Margin = new System.Windows.Forms.Padding(3, 5, 3, 0); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(225, 15); this.label2.TabIndex = 10; this.label2.Text = "Delete branches fully merged into branch"; // // mergedIntoBranch // this.mergedIntoBranch.Location = new System.Drawing.Point(380, 33); this.mergedIntoBranch.Name = "mergedIntoBranch"; this.mergedIntoBranch.Size = new System.Drawing.Size(218, 23); this.mergedIntoBranch.TabIndex = 12; this.mergedIntoBranch.TextChanged += new System.EventHandler(this.ClearResults); // // olderThanDays // this.olderThanDays.Location = new System.Drawing.Point(380, 3); this.olderThanDays.Maximum = new decimal(new int[] { 100000, 0, 0, 0 }); this.olderThanDays.Name = "olderThanDays"; this.olderThanDays.Size = new System.Drawing.Size(120, 23); this.olderThanDays.TabIndex = 13; this.olderThanDays.ValueChanged += new System.EventHandler(this.ClearResults); // // RefreshBtn // this.RefreshBtn.Location = new System.Drawing.Point(380, 213); this.RefreshBtn.Name = "RefreshBtn"; this.RefreshBtn.Size = new System.Drawing.Size(124, 23); this.RefreshBtn.TabIndex = 7; this.RefreshBtn.Text = "Search branches"; this.RefreshBtn.UseVisualStyleBackColor = true; this.RefreshBtn.Click += new System.EventHandler(this.Refresh_Click); // // includeUnmergedBranches // this.includeUnmergedBranches.AutoSize = true; this.includeUnmergedBranches.Location = new System.Drawing.Point(3, 183); this.includeUnmergedBranches.Name = "includeUnmergedBranches"; this.includeUnmergedBranches.Size = new System.Drawing.Size(174, 19); this.includeUnmergedBranches.TabIndex = 14; this.includeUnmergedBranches.Text = "Include unmerged branches"; this.includeUnmergedBranches.UseVisualStyleBackColor = true; this.includeUnmergedBranches.CheckedChanged += new System.EventHandler(this.includeUnmergedBranches_CheckedChanged); // // useRegexCaseInsensitive // this.useRegexCaseInsensitive.AutoSize = true; this.useRegexCaseInsensitive.Location = new System.Drawing.Point(380, 123); this.useRegexCaseInsensitive.Name = "useRegexCaseInsensitive"; this.useRegexCaseInsensitive.Size = new System.Drawing.Size(109, 19); this.useRegexCaseInsensitive.TabIndex = 15; this.useRegexCaseInsensitive.Text = "Case insensitive"; this.useRegexCaseInsensitive.UseVisualStyleBackColor = true; // // regexDoesNotMatch // this.regexDoesNotMatch.AutoSize = true; this.regexDoesNotMatch.Location = new System.Drawing.Point(380, 153); this.regexDoesNotMatch.Name = "regexDoesNotMatch"; this.regexDoesNotMatch.Size = new System.Drawing.Size(110, 19); this.regexDoesNotMatch.TabIndex = 16; this.regexDoesNotMatch.Text = "Does not match"; this.regexDoesNotMatch.UseVisualStyleBackColor = true; // // DeleteUnusedBranchesForm // this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; this.CancelButton = this.Cancel; this.ClientSize = new System.Drawing.Size(760, 421); this.Controls.Add(this.tableLayoutPanel1); this.Controls.Add(statusStrip1); this.MinimumSize = new System.Drawing.Size(600, 400); this.Name = "DeleteUnusedBranchesForm"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "Delete obsolete branches"; statusStrip1.ResumeLayout(false); statusStrip1.PerformLayout(); this.pnlBranchesArea.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.imgLoading)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.BranchesGrid)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.branchBindingSource)).EndInit(); this.tableLayoutPanel1.ResumeLayout(false); this.tableLayoutPanel1.PerformLayout(); this.tableLayoutPanel2.ResumeLayout(false); this.tableLayoutPanel3.ResumeLayout(false); this.tableLayoutPanel3.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.olderThanDays)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.Windows.Forms.SplitContainer splitContainer1; System.Windows.Forms.ColumnHeader columnHeader1; System.Windows.Forms.ColumnHeader columnHeader2; System.Windows.Forms.ColumnHeader columnHeader3; System.Windows.Forms.ColumnHeader columnHeader4; System.Windows.Forms.ColumnHeader columnHeader5; System.Windows.Forms.MenuStrip mainMenuStrip; System.Windows.Forms.ToolStrip toolStrip1; System.Windows.Forms.StatusStrip statusStrip1; this.loggingRichTextBox = new System.Windows.Forms.RichTextBox(); this.mailListView = new System.Windows.Forms.ListView(); this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.fileRunToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.fileSettingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.fileExitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.jobStateToolStripStatusLabel = new System.Windows.Forms.ToolStripStatusLabel(); this.sendInfoToolStripStatusLabel = new System.Windows.Forms.ToolStripStatusLabel(); this.sendTimer = new System.Windows.Forms.Timer(this.components); this.receiveTimer = new System.Windows.Forms.Timer(this.components); this.receiveInfoToolStripStatusLabel = new System.Windows.Forms.ToolStripStatusLabel(); splitContainer1 = new System.Windows.Forms.SplitContainer(); columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); columnHeader5 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); mainMenuStrip = new System.Windows.Forms.MenuStrip(); toolStrip1 = new System.Windows.Forms.ToolStrip(); statusStrip1 = new System.Windows.Forms.StatusStrip(); ((System.ComponentModel.ISupportInitialize)(splitContainer1)).BeginInit(); splitContainer1.Panel1.SuspendLayout(); splitContainer1.Panel2.SuspendLayout(); splitContainer1.SuspendLayout(); mainMenuStrip.SuspendLayout(); statusStrip1.SuspendLayout(); this.SuspendLayout(); // // splitContainer1 // splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill; splitContainer1.Location = new System.Drawing.Point(0, 49); splitContainer1.Name = "splitContainer1"; splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal; // // splitContainer1.Panel1 // splitContainer1.Panel1.Controls.Add(this.loggingRichTextBox); // // splitContainer1.Panel2 // splitContainer1.Panel2.Controls.Add(this.mailListView); splitContainer1.Size = new System.Drawing.Size(784, 490); splitContainer1.SplitterDistance = 261; splitContainer1.TabIndex = 3; // // loggingRichTextBox // this.loggingRichTextBox.Dock = System.Windows.Forms.DockStyle.Fill; this.loggingRichTextBox.Location = new System.Drawing.Point(0, 0); this.loggingRichTextBox.Name = "loggingRichTextBox"; this.loggingRichTextBox.Size = new System.Drawing.Size(784, 261); this.loggingRichTextBox.TabIndex = 0; this.loggingRichTextBox.Text = ""; this.loggingRichTextBox.WordWrap = false; // // mailListView // this.mailListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { columnHeader1, columnHeader2, columnHeader3, columnHeader4, columnHeader5 }); this.mailListView.Dock = System.Windows.Forms.DockStyle.Fill; this.mailListView.FullRowSelect = true; this.mailListView.GridLines = true; this.mailListView.HideSelection = false; this.mailListView.Location = new System.Drawing.Point(0, 0); this.mailListView.Name = "mailListView"; this.mailListView.Size = new System.Drawing.Size(784, 225); this.mailListView.TabIndex = 0; this.mailListView.UseCompatibleStateImageBehavior = false; this.mailListView.View = System.Windows.Forms.View.Details; // // columnHeader1 // columnHeader1.Text = "Status"; columnHeader1.Width = 100; // // columnHeader2 // columnHeader2.Text = "Timestamp"; columnHeader2.Width = 160; // // columnHeader3 // columnHeader3.Text = "Ticks"; columnHeader3.Width = 160; // // columnHeader4 // columnHeader4.Text = "To-Address"; columnHeader4.Width = 160; // // columnHeader5 // columnHeader5.Text = "Timeout"; columnHeader5.Width = 160; // // mainMenuStrip // mainMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.fileToolStripMenuItem }); mainMenuStrip.Location = new System.Drawing.Point(0, 0); mainMenuStrip.Name = "mainMenuStrip"; mainMenuStrip.Size = new System.Drawing.Size(784, 24); mainMenuStrip.TabIndex = 0; mainMenuStrip.Text = "menuStrip1"; // // fileToolStripMenuItem // this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.fileRunToolStripMenuItem, this.fileSettingsToolStripMenuItem, this.fileExitToolStripMenuItem }); this.fileToolStripMenuItem.Name = "fileToolStripMenuItem"; this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20); this.fileToolStripMenuItem.Text = "&File"; // // fileRunToolStripMenuItem // this.fileRunToolStripMenuItem.Name = "fileRunToolStripMenuItem"; this.fileRunToolStripMenuItem.Size = new System.Drawing.Size(125, 22); this.fileRunToolStripMenuItem.Text = "&Run"; this.fileRunToolStripMenuItem.Click += new System.EventHandler(this.fileRunToolStripMenuItem_Click); // // fileSettingsToolStripMenuItem // this.fileSettingsToolStripMenuItem.Name = "fileSettingsToolStripMenuItem"; this.fileSettingsToolStripMenuItem.Size = new System.Drawing.Size(125, 22); this.fileSettingsToolStripMenuItem.Text = "&Settings..."; this.fileSettingsToolStripMenuItem.Click += new System.EventHandler(this.fileSettingsToolStripMenuItem_Click); // // fileExitToolStripMenuItem // this.fileExitToolStripMenuItem.Name = "fileExitToolStripMenuItem"; this.fileExitToolStripMenuItem.Size = new System.Drawing.Size(125, 22); this.fileExitToolStripMenuItem.Text = "E&xit"; this.fileExitToolStripMenuItem.Click += new System.EventHandler(this.fileExitToolStripMenuItem_Click); // // toolStrip1 // toolStrip1.Location = new System.Drawing.Point(0, 24); toolStrip1.Name = "toolStrip1"; toolStrip1.Size = new System.Drawing.Size(784, 25); toolStrip1.TabIndex = 1; toolStrip1.Text = "toolStrip1"; // // statusStrip1 // statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.jobStateToolStripStatusLabel, this.sendInfoToolStripStatusLabel, this.receiveInfoToolStripStatusLabel }); statusStrip1.Location = new System.Drawing.Point(0, 539); statusStrip1.Name = "statusStrip1"; statusStrip1.Size = new System.Drawing.Size(784, 22); statusStrip1.TabIndex = 2; statusStrip1.Text = "statusStrip1"; // // jobStateToolStripStatusLabel // this.jobStateToolStripStatusLabel.Name = "jobStateToolStripStatusLabel"; this.jobStateToolStripStatusLabel.Size = new System.Drawing.Size(51, 17); this.jobStateToolStripStatusLabel.Text = "Stopped"; // // sendInfoToolStripStatusLabel // this.sendInfoToolStripStatusLabel.Name = "sendInfoToolStripStatusLabel"; this.sendInfoToolStripStatusLabel.Size = new System.Drawing.Size(0, 17); // // sendTimer // this.sendTimer.Tick += new System.EventHandler(this.sendTimer_Tick); // // receiveTimer // this.receiveTimer.Tick += new System.EventHandler(this.receiveTimer_Tick); // // receiveInfoToolStripStatusLabel // this.receiveInfoToolStripStatusLabel.Name = "receiveInfoToolStripStatusLabel"; this.receiveInfoToolStripStatusLabel.Size = new System.Drawing.Size(0, 17); // // AppMainForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(784, 561); this.Controls.Add(splitContainer1); this.Controls.Add(statusStrip1); this.Controls.Add(toolStrip1); this.Controls.Add(mainMenuStrip); this.MainMenuStrip = mainMenuStrip; this.Name = "AppMainForm"; this.Text = "Mail Check Client"; this.Load += new System.EventHandler(this.AppMainForm_Load); splitContainer1.Panel1.ResumeLayout(false); splitContainer1.Panel2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(splitContainer1)).EndInit(); splitContainer1.ResumeLayout(false); mainMenuStrip.ResumeLayout(false); mainMenuStrip.PerformLayout(); statusStrip1.ResumeLayout(false); statusStrip1.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { System.Windows.Forms.GroupBox groupBox1; System.Windows.Forms.Label label14; System.Windows.Forms.Label label13; System.Windows.Forms.Label label12; System.Windows.Forms.Label label5; System.Windows.Forms.Label label11; System.Windows.Forms.Label label10; System.Windows.Forms.Label label9; System.Windows.Forms.Label label8; System.Windows.Forms.Label label7; System.Windows.Forms.Label label6; System.Windows.Forms.Label label4; System.Windows.Forms.Label label3; System.Windows.Forms.Label label2; System.Windows.Forms.Label label1; System.Windows.Forms.StatusStrip statusStrip; this.descriptionTextBox = new System.Windows.Forms.TextBox(); this.tagsTextBox = new System.Windows.Forms.TextBox(); this.osVersionTextBox = new System.Windows.Forms.TextBox(); this.osTextBox = new System.Windows.Forms.TextBox(); this.platformTextBox = new System.Windows.Forms.TextBox(); this.priorityComboBox = new System.Windows.Forms.ComboBox(); this.severityComboBox = new System.Windows.Forms.ComboBox(); this.reproducibilityComboBox = new System.Windows.Forms.ComboBox(); this.categoryComboBox = new System.Windows.Forms.ComboBox(); this.additionalInformationTextBox = new System.Windows.Forms.TextBox(); this.stepsToReproduceTextBox = new System.Windows.Forms.TextBox(); this.summaryTextBox = new System.Windows.Forms.TextBox(); this.projectTextBox = new System.Windows.Forms.TextBox(); this.statusToolStripStatusLabel = new System.Windows.Forms.ToolStripStatusLabel(); this.createButton = new System.Windows.Forms.Button(); this.cancelButton = new System.Windows.Forms.Button(); groupBox1 = new System.Windows.Forms.GroupBox(); label14 = new System.Windows.Forms.Label(); label13 = new System.Windows.Forms.Label(); label12 = new System.Windows.Forms.Label(); label5 = new System.Windows.Forms.Label(); label11 = new System.Windows.Forms.Label(); label10 = new System.Windows.Forms.Label(); label9 = new System.Windows.Forms.Label(); label8 = new System.Windows.Forms.Label(); label7 = new System.Windows.Forms.Label(); label6 = new System.Windows.Forms.Label(); label4 = new System.Windows.Forms.Label(); label3 = new System.Windows.Forms.Label(); label2 = new System.Windows.Forms.Label(); label1 = new System.Windows.Forms.Label(); statusStrip = new System.Windows.Forms.StatusStrip(); groupBox1.SuspendLayout(); statusStrip.SuspendLayout(); this.SuspendLayout(); // // groupBox1 // groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); groupBox1.Controls.Add(label14); groupBox1.Controls.Add(this.descriptionTextBox); groupBox1.Controls.Add(this.tagsTextBox); groupBox1.Controls.Add(label13); groupBox1.Controls.Add(this.osVersionTextBox); groupBox1.Controls.Add(label12); groupBox1.Controls.Add(label5); groupBox1.Controls.Add(this.osTextBox); groupBox1.Controls.Add(label11); groupBox1.Controls.Add(this.platformTextBox); groupBox1.Controls.Add(label10); groupBox1.Controls.Add(this.priorityComboBox); groupBox1.Controls.Add(label9); groupBox1.Controls.Add(this.severityComboBox); groupBox1.Controls.Add(label8); groupBox1.Controls.Add(this.reproducibilityComboBox); groupBox1.Controls.Add(label7); groupBox1.Controls.Add(this.categoryComboBox); groupBox1.Controls.Add(label6); groupBox1.Controls.Add(label4); groupBox1.Controls.Add(this.additionalInformationTextBox); groupBox1.Controls.Add(this.stepsToReproduceTextBox); groupBox1.Controls.Add(label3); groupBox1.Controls.Add(this.summaryTextBox); groupBox1.Controls.Add(label2); groupBox1.Controls.Add(this.projectTextBox); groupBox1.Controls.Add(label1); groupBox1.Location = new System.Drawing.Point(12, 12); groupBox1.Name = "groupBox1"; groupBox1.Size = new System.Drawing.Size(632, 475); groupBox1.TabIndex = 0; groupBox1.TabStop = false; groupBox1.Text = "Issue Details"; // // label14 // label14.AutoSize = true; label14.Location = new System.Drawing.Point(6, 256); label14.Name = "label14"; label14.Size = new System.Drawing.Size(63, 13); label14.TabIndex = 18; label14.Text = "&Description:"; // // descriptionTextBox // this.descriptionTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.descriptionTextBox.Location = new System.Drawing.Point(122, 253); this.descriptionTextBox.Multiline = true; this.descriptionTextBox.Name = "descriptionTextBox"; this.descriptionTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; this.descriptionTextBox.Size = new System.Drawing.Size(504, 42); this.descriptionTextBox.TabIndex = 19; // // tagsTextBox // this.tagsTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.tagsTextBox.Location = new System.Drawing.Point(122, 397); this.tagsTextBox.Name = "tagsTextBox"; this.tagsTextBox.Size = new System.Drawing.Size(504, 20); this.tagsTextBox.TabIndex = 25; // // label13 // label13.AutoSize = true; label13.Location = new System.Drawing.Point(6, 400); label13.Name = "label13"; label13.Size = new System.Drawing.Size(34, 13); label13.TabIndex = 24; label13.Text = "&Tags:"; // // osVersionTextBox // this.osVersionTextBox.Location = new System.Drawing.Point(414, 179); this.osVersionTextBox.Name = "osVersionTextBox"; this.osVersionTextBox.Size = new System.Drawing.Size(212, 20); this.osVersionTextBox.TabIndex = 15; // // label12 // label12.AutoSize = true; label12.Location = new System.Drawing.Point(346, 182); label12.Margin = new System.Windows.Forms.Padding(9, 0, 3, 0); label12.Name = "label12"; label12.Size = new System.Drawing.Size(62, 13); label12.TabIndex = 14; label12.Text = "OS &version:"; // // label5 // label5.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); label5.ForeColor = System.Drawing.SystemColors.GrayText; label5.Location = new System.Drawing.Point(6, 441); label5.Margin = new System.Windows.Forms.Padding(3, 9, 3, 0); label5.Name = "label5"; label5.Size = new System.Drawing.Size(620, 31); label5.TabIndex = 26; label5.Text = "Project, Summary, Description and Category are the minimum fields required to rai" + "se an issue. Reference fields can be specified by either id or name."; // // osTextBox // this.osTextBox.Location = new System.Drawing.Point(122, 179); this.osTextBox.Name = "osTextBox"; this.osTextBox.Size = new System.Drawing.Size(212, 20); this.osTextBox.TabIndex = 13; // // label11 // label11.AutoSize = true; label11.Location = new System.Drawing.Point(6, 182); label11.Name = "label11"; label11.Size = new System.Drawing.Size(93, 13); label11.TabIndex = 12; label11.Text = "&Operating System:"; // // platformTextBox // this.platformTextBox.Location = new System.Drawing.Point(122, 153); this.platformTextBox.Name = "platformTextBox"; this.platformTextBox.Size = new System.Drawing.Size(212, 20); this.platformTextBox.TabIndex = 11; // // label10 // label10.AutoSize = true; label10.Location = new System.Drawing.Point(6, 156); label10.Name = "label10"; label10.Size = new System.Drawing.Size(48, 13); label10.TabIndex = 10; label10.Text = "Plat&form:"; // // priorityComboBox // this.priorityComboBox.FormattingEnabled = true; this.priorityComboBox.Items.AddRange(new object[] { "none", "low", "normal", "high", "urgent", "immediate" }); this.priorityComboBox.Location = new System.Drawing.Point(122, 126); this.priorityComboBox.Name = "priorityComboBox"; this.priorityComboBox.Size = new System.Drawing.Size(212, 21); this.priorityComboBox.TabIndex = 9; // // label9 // label9.AutoSize = true; label9.Location = new System.Drawing.Point(6, 129); label9.Name = "label9"; label9.Size = new System.Drawing.Size(41, 13); label9.TabIndex = 8; label9.Text = "&Priority:"; // // severityComboBox // this.severityComboBox.FormattingEnabled = true; this.severityComboBox.Items.AddRange(new object[] { "feature", "trivial", "text", "tweak", "minor", "major", "crash", "block" }); this.severityComboBox.Location = new System.Drawing.Point(122, 99); this.severityComboBox.Name = "severityComboBox"; this.severityComboBox.Size = new System.Drawing.Size(212, 21); this.severityComboBox.TabIndex = 7; // // label8 // label8.AutoSize = true; label8.Location = new System.Drawing.Point(6, 102); label8.Name = "label8"; label8.Size = new System.Drawing.Size(48, 13); label8.TabIndex = 6; label8.Text = "Se&verity:"; // // reproducibilityComboBox // this.reproducibilityComboBox.FormattingEnabled = true; this.reproducibilityComboBox.Items.AddRange(new object[] { "always", "sometimes", "random", "have not tried", "unable to reproduce", "N/A" }); this.reproducibilityComboBox.Location = new System.Drawing.Point(122, 72); this.reproducibilityComboBox.Name = "reproducibilityComboBox"; this.reproducibilityComboBox.Size = new System.Drawing.Size(212, 21); this.reproducibilityComboBox.TabIndex = 5; // // label7 // label7.AutoSize = true; label7.Location = new System.Drawing.Point(6, 75); label7.Name = "label7"; label7.Size = new System.Drawing.Size(79, 13); label7.TabIndex = 4; label7.Text = "&Reproducibility:"; // // categoryComboBox // this.categoryComboBox.FormattingEnabled = true; this.categoryComboBox.Location = new System.Drawing.Point(122, 45); this.categoryComboBox.Name = "categoryComboBox"; this.categoryComboBox.Size = new System.Drawing.Size(212, 21); this.categoryComboBox.TabIndex = 3; // // label6 // label6.AutoSize = true; label6.Location = new System.Drawing.Point(6, 48); label6.Name = "label6"; label6.Size = new System.Drawing.Size(52, 13); label6.TabIndex = 2; label6.Text = "&Category:"; // // label4 // label4.AutoSize = true; label4.Location = new System.Drawing.Point(6, 352); label4.Name = "label4"; label4.Size = new System.Drawing.Size(110, 13); label4.TabIndex = 22; label4.Text = "&Additional information:"; // // additionalInformationTextBox // this.additionalInformationTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.additionalInformationTextBox.Location = new System.Drawing.Point(122, 349); this.additionalInformationTextBox.Multiline = true; this.additionalInformationTextBox.Name = "additionalInformationTextBox"; this.additionalInformationTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; this.additionalInformationTextBox.Size = new System.Drawing.Size(504, 42); this.additionalInformationTextBox.TabIndex = 23; // // stepsToReproduceTextBox // this.stepsToReproduceTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.stepsToReproduceTextBox.Location = new System.Drawing.Point(122, 301); this.stepsToReproduceTextBox.Multiline = true; this.stepsToReproduceTextBox.Name = "stepsToReproduceTextBox"; this.stepsToReproduceTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; this.stepsToReproduceTextBox.Size = new System.Drawing.Size(504, 42); this.stepsToReproduceTextBox.TabIndex = 21; // // label3 // label3.AutoSize = true; label3.Location = new System.Drawing.Point(6, 304); label3.Name = "label3"; label3.Size = new System.Drawing.Size(100, 13); label3.TabIndex = 20; label3.Text = "St&eps to reproduce:"; // // summaryTextBox // this.summaryTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.summaryTextBox.Location = new System.Drawing.Point(122, 205); this.summaryTextBox.Multiline = true; this.summaryTextBox.Name = "summaryTextBox"; this.summaryTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; this.summaryTextBox.Size = new System.Drawing.Size(504, 42); this.summaryTextBox.TabIndex = 17; // // label2 // label2.AutoSize = true; label2.Location = new System.Drawing.Point(6, 208); label2.Name = "label2"; label2.Size = new System.Drawing.Size(53, 13); label2.TabIndex = 16; label2.Text = "&Summary:"; // // projectTextBox // this.projectTextBox.Location = new System.Drawing.Point(122, 19); this.projectTextBox.Name = "projectTextBox"; this.projectTextBox.ReadOnly = true; this.projectTextBox.Size = new System.Drawing.Size(212, 20); this.projectTextBox.TabIndex = 1; // // label1 // label1.AutoSize = true; label1.Location = new System.Drawing.Point(6, 22); label1.Name = "label1"; label1.Size = new System.Drawing.Size(43, 13); label1.TabIndex = 0; label1.Text = "Pro&ject:"; // // statusStrip // statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.statusToolStripStatusLabel }); statusStrip.Location = new System.Drawing.Point(0, 519); statusStrip.Name = "statusStrip"; statusStrip.Size = new System.Drawing.Size(656, 22); statusStrip.SizingGrip = false; statusStrip.TabIndex = 3; // // statusToolStripStatusLabel // this.statusToolStripStatusLabel.Name = "statusToolStripStatusLabel"; this.statusToolStripStatusLabel.Size = new System.Drawing.Size(641, 17); this.statusToolStripStatusLabel.Spring = true; this.statusToolStripStatusLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // createButton // this.createButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.createButton.Location = new System.Drawing.Point(488, 493); this.createButton.Name = "createButton"; this.createButton.Size = new System.Drawing.Size(75, 23); this.createButton.TabIndex = 1; this.createButton.Text = "Create"; this.createButton.UseVisualStyleBackColor = true; this.createButton.Click += new System.EventHandler(this.createButton_Click); // // cancelButton // this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.cancelButton.Location = new System.Drawing.Point(569, 493); this.cancelButton.Name = "cancelButton"; this.cancelButton.Size = new System.Drawing.Size(75, 23); this.cancelButton.TabIndex = 2; this.cancelButton.Text = "Cancel"; this.cancelButton.UseVisualStyleBackColor = true; this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click); // // CreateIssueDialog // this.AcceptButton = this.createButton; this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.CancelButton = this.cancelButton; this.ClientSize = new System.Drawing.Size(656, 541); this.Controls.Add(this.cancelButton); this.Controls.Add(this.createButton); this.Controls.Add(groupBox1); this.Controls.Add(statusStrip); this.Name = "CreateIssueDialog"; this.Text = "Create Issue"; groupBox1.ResumeLayout(false); groupBox1.PerformLayout(); statusStrip.ResumeLayout(false); statusStrip.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Método necesario para admitir el Diseñador. No se puede modificar /// el contenido de este método con el editor de código. /// </summary> private void InitializeComponent() { System.Windows.Forms.StatusStrip statusStrip; System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmMain)); this.panel1 = new System.Windows.Forms.Panel(); this.dgRssItems = new System.Windows.Forms.DataGridView(); this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel(); this.lblUrl = new System.Windows.Forms.Label(); this.cmbUrl = new System.Windows.Forms.ComboBox(); this.btnUpdate = new System.Windows.Forms.Button(); this.RssTitle = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.RssDescription = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.RssPublishingDate = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.lblStatus = new System.Windows.Forms.ToolStripStatusLabel(); this.bwRssReader = new System.ComponentModel.BackgroundWorker(); statusStrip = new System.Windows.Forms.StatusStrip(); this.panel1.SuspendLayout(); statusStrip.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.dgRssItems)).BeginInit(); this.tableLayoutPanel1.SuspendLayout(); this.SuspendLayout(); // // panel1 // this.panel1.Controls.Add(this.tableLayoutPanel1); this.panel1.Dock = System.Windows.Forms.DockStyle.Top; this.panel1.Location = new System.Drawing.Point(0, 0); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(524, 43); this.panel1.TabIndex = 0; // // statusStrip // statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.lblStatus }); statusStrip.Location = new System.Drawing.Point(0, 239); statusStrip.Name = "statusStrip"; statusStrip.Size = new System.Drawing.Size(524, 22); statusStrip.TabIndex = 1; // // dgRssItems // this.dgRssItems.AllowUserToAddRows = false; this.dgRssItems.AllowUserToDeleteRows = false; this.dgRssItems.AllowUserToOrderColumns = true; this.dgRssItems.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.dgRssItems.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.RssTitle, this.RssDescription, this.RssPublishingDate }); this.dgRssItems.Dock = System.Windows.Forms.DockStyle.Fill; this.dgRssItems.Location = new System.Drawing.Point(0, 43); this.dgRssItems.MultiSelect = false; this.dgRssItems.Name = "dgRssItems"; this.dgRssItems.ReadOnly = true; this.dgRssItems.RowHeadersVisible = false; this.dgRssItems.ShowEditingIcon = false; this.dgRssItems.Size = new System.Drawing.Size(524, 196); this.dgRssItems.TabIndex = 2; // // tableLayoutPanel1 // this.tableLayoutPanel1.ColumnCount = 3; this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 10F)); this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 60F)); this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 30F)); this.tableLayoutPanel1.Controls.Add(this.lblUrl, 0, 0); this.tableLayoutPanel1.Controls.Add(this.cmbUrl, 1, 0); this.tableLayoutPanel1.Controls.Add(this.btnUpdate, 2, 0); this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill; this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0); this.tableLayoutPanel1.Name = "tableLayoutPanel1"; this.tableLayoutPanel1.RowCount = 1; this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F)); this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F)); this.tableLayoutPanel1.Size = new System.Drawing.Size(524, 43); this.tableLayoutPanel1.TabIndex = 0; // // lblUrl // this.lblUrl.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); this.lblUrl.AutoSize = true; this.lblUrl.Location = new System.Drawing.Point(3, 15); this.lblUrl.Name = "lblUrl"; this.lblUrl.Size = new System.Drawing.Size(46, 13); this.lblUrl.TabIndex = 0; this.lblUrl.Text = "URL:"; // // cmbUrl // this.cmbUrl.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); this.cmbUrl.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest; this.cmbUrl.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.RecentlyUsedList; this.cmbUrl.FormattingEnabled = true; this.cmbUrl.Location = new System.Drawing.Point(55, 11); this.cmbUrl.Name = "cmbUrl"; this.cmbUrl.Size = new System.Drawing.Size(308, 21); this.cmbUrl.TabIndex = 1; // // btnUpdate // this.btnUpdate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); this.btnUpdate.Location = new System.Drawing.Point(369, 10); this.btnUpdate.Name = "btnUpdate"; this.btnUpdate.Size = new System.Drawing.Size(152, 23); this.btnUpdate.TabIndex = 2; this.btnUpdate.Text = "Actualizar"; this.btnUpdate.UseVisualStyleBackColor = true; this.btnUpdate.Click += new System.EventHandler(this.btnUpdate_Click); // // RssTitle // this.RssTitle.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill; this.RssTitle.DataPropertyName = "Title"; this.RssTitle.HeaderText = "Título"; this.RssTitle.Name = "RssTitle"; this.RssTitle.ReadOnly = true; // // RssDescription // this.RssDescription.DataPropertyName = "Description"; this.RssDescription.HeaderText = "Descripción"; this.RssDescription.Name = "RssDescription"; this.RssDescription.ReadOnly = true; this.RssDescription.Width = 300; // // RssPublishingDate // this.RssPublishingDate.DataPropertyName = "PublishingDate"; this.RssPublishingDate.HeaderText = "Publicación"; this.RssPublishingDate.Name = "RssPublishingDate"; this.RssPublishingDate.ReadOnly = true; // // lblStatus // this.lblStatus.Name = "lblStatus"; this.lblStatus.Size = new System.Drawing.Size(0, 17); // // bwRssReader // this.bwRssReader.DoWork += new System.ComponentModel.DoWorkEventHandler(this.bwRssReader_DoWork); this.bwRssReader.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.bwRssReader_RunWorkerCompleted); // // FrmMain // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(524, 261); this.Controls.Add(this.dgRssItems); this.Controls.Add(statusStrip); this.Controls.Add(this.panel1); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Name = "FrmMain"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "RSS Example"; this.Load += new System.EventHandler(this.FrmMain_Load); this.panel1.ResumeLayout(false); statusStrip.ResumeLayout(false); statusStrip.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.dgRssItems)).EndInit(); this.tableLayoutPanel1.ResumeLayout(false); this.tableLayoutPanel1.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.Windows.Forms.SplitContainer splitContainer1; System.Windows.Forms.StatusStrip StatusStrip; this.TagTreeView = new System.Windows.Forms.TreeView(); this.PropGrigTag = new System.Windows.Forms.PropertyGrid(); this.PropGridCache = new System.Windows.Forms.PropertyGrid(); this.FileOpen = new System.Windows.Forms.ToolStripMenuItem(); this.StatusProgressBar = new System.Windows.Forms.ToolStripProgressBar(); this.StatusProgressCancel = new System.Windows.Forms.ToolStripStatusLabel(); this.StatusProgressText = new System.Windows.Forms.ToolStripStatusLabel(); this.MainMenu = new System.Windows.Forms.MenuStrip(); this.FileMenu = new System.Windows.Forms.ToolStripMenuItem(); this.FileClose = new System.Windows.Forms.ToolStripMenuItem(); this.ToolsMenu = new System.Windows.Forms.ToolStripMenuItem(); this.CacheToolsExtractAll = new System.Windows.Forms.ToolStripMenuItem(); this.CacheToolsExtractAllChecked = new System.Windows.Forms.ToolStripMenuItem(); this.CacheToolsExtractAllUnchecked = new System.Windows.Forms.ToolStripMenuItem(); this.CacheToolsDontOverwrite = new System.Windows.Forms.ToolStripMenuItem(); this.CacheToolsOutputTagDatabase = new System.Windows.Forms.ToolStripMenuItem(); this.OpenFileDlg = new System.Windows.Forms.OpenFileDialog(); this.SaveFileDlg = new System.Windows.Forms.SaveFileDialog(); this.FolderDlg = new System.Windows.Forms.FolderBrowserDialog(); this.MenuTagInstance = new System.Windows.Forms.ContextMenuStrip(this.components); this.MenuTagInstanceExtractAs = new System.Windows.Forms.ToolStripMenuItem(); this.MenuTagInstanceExtractFolder = new System.Windows.Forms.ToolStripMenuItem(); this.MenuTagInstanceExtractFolderAll = new System.Windows.Forms.ToolStripMenuItem(); this.MenuTagInstanceExtractRsrc = new System.Windows.Forms.ToolStripMenuItem(); this.toolTip1 = new System.Windows.Forms.ToolTip(this.components); this.bgwTagExtract = new System.ComponentModel.BackgroundWorker(); this.bgwCacheOpen = new System.ComponentModel.BackgroundWorker(); splitContainer1 = new System.Windows.Forms.SplitContainer(); StatusStrip = new System.Windows.Forms.StatusStrip(); splitContainer1.Panel1.SuspendLayout(); splitContainer1.Panel2.SuspendLayout(); splitContainer1.SuspendLayout(); StatusStrip.SuspendLayout(); this.MainMenu.SuspendLayout(); this.MenuTagInstance.SuspendLayout(); this.SuspendLayout(); // // splitContainer1 // splitContainer1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); splitContainer1.Location = new System.Drawing.Point(0, 27); splitContainer1.Name = "splitContainer1"; // // splitContainer1.Panel1 // splitContainer1.Panel1.Controls.Add(this.TagTreeView); // // splitContainer1.Panel2 // splitContainer1.Panel2.Controls.Add(this.PropGrigTag); splitContainer1.Panel2.Controls.Add(this.PropGridCache); splitContainer1.Size = new System.Drawing.Size(792, 531); splitContainer1.SplitterDistance = 473; splitContainer1.TabIndex = 3; // // TagTreeView // this.TagTreeView.BackColor = System.Drawing.SystemColors.ControlDarkDark; this.TagTreeView.CheckBoxes = true; this.TagTreeView.Dock = System.Windows.Forms.DockStyle.Fill; this.TagTreeView.ForeColor = System.Drawing.Color.LightGreen; this.TagTreeView.Location = new System.Drawing.Point(0, 0); this.TagTreeView.Name = "TagTreeView"; this.TagTreeView.Size = new System.Drawing.Size(473, 531); this.TagTreeView.TabIndex = 1; this.TagTreeView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.OnTagTreeAfterSelect); this.TagTreeView.BeforeCheck += new System.Windows.Forms.TreeViewCancelEventHandler(this.OnTagTreeBeforeCheck); // // PropGrigTag // this.PropGrigTag.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.PropGrigTag.BackColor = System.Drawing.SystemColors.Control; this.PropGrigTag.CommandsBackColor = System.Drawing.SystemColors.ControlDarkDark; this.PropGrigTag.HelpBackColor = System.Drawing.SystemColors.ControlDarkDark; this.PropGrigTag.HelpForeColor = System.Drawing.Color.LightGreen; this.PropGrigTag.LineColor = System.Drawing.SystemColors.ControlDarkDark; this.PropGrigTag.Location = new System.Drawing.Point(0, 310); this.PropGrigTag.Name = "PropGrigTag"; this.PropGrigTag.PropertySort = System.Windows.Forms.PropertySort.Categorized; this.PropGrigTag.Size = new System.Drawing.Size(315, 221); this.PropGrigTag.TabIndex = 3; this.PropGrigTag.ToolbarVisible = false; this.toolTip1.SetToolTip(this.PropGrigTag, "Tag Instance Properties"); this.PropGrigTag.ViewBackColor = System.Drawing.SystemColors.ControlDarkDark; this.PropGrigTag.ViewForeColor = System.Drawing.Color.LightGreen; // // PropGridCache // this.PropGridCache.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.PropGridCache.BackColor = System.Drawing.SystemColors.Control; this.PropGridCache.CommandsBackColor = System.Drawing.SystemColors.ControlDarkDark; this.PropGridCache.HelpBackColor = System.Drawing.SystemColors.ControlDarkDark; this.PropGridCache.HelpForeColor = System.Drawing.Color.LightGreen; this.PropGridCache.LineColor = System.Drawing.SystemColors.ControlDarkDark; this.PropGridCache.Location = new System.Drawing.Point(0, 0); this.PropGridCache.Name = "PropGridCache"; this.PropGridCache.PropertySort = System.Windows.Forms.PropertySort.Categorized; this.PropGridCache.Size = new System.Drawing.Size(315, 304); this.PropGridCache.TabIndex = 2; this.PropGridCache.ToolbarVisible = false; this.toolTip1.SetToolTip(this.PropGridCache, "Cache Properties"); this.PropGridCache.ViewBackColor = System.Drawing.SystemColors.ControlDarkDark; this.PropGridCache.ViewForeColor = System.Drawing.Color.LightGreen; // // FileOpen // this.FileOpen.BackColor = System.Drawing.SystemColors.ControlDarkDark; this.FileOpen.ForeColor = System.Drawing.Color.LightGreen; this.FileOpen.Name = "FileOpen"; this.FileOpen.Size = new System.Drawing.Size(152, 22); this.FileOpen.Text = "Open"; this.FileOpen.Click += new System.EventHandler(this.OnFileOpen); // // StatusStrip // StatusStrip.BackColor = System.Drawing.SystemColors.ControlDarkDark; StatusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.StatusProgressBar, this.StatusProgressCancel, this.StatusProgressText }); StatusStrip.Location = new System.Drawing.Point(0, 561); StatusStrip.Name = "StatusStrip"; StatusStrip.ShowItemToolTips = true; StatusStrip.Size = new System.Drawing.Size(792, 22); StatusStrip.TabIndex = 6; StatusStrip.Text = "StatusStrip"; // // StatusProgressBar // this.StatusProgressBar.Name = "StatusProgressBar"; this.StatusProgressBar.Size = new System.Drawing.Size(200, 16); this.StatusProgressBar.ToolTipText = "Progress of the current task"; // // StatusProgressCancel // this.StatusProgressCancel.Enabled = false; this.StatusProgressCancel.Name = "StatusProgressCancel"; this.StatusProgressCancel.Size = new System.Drawing.Size(64, 17); this.StatusProgressCancel.Text = "Cancel Task"; this.StatusProgressCancel.ToolTipText = "Cancel the current task"; // // StatusProgressText // this.StatusProgressText.Name = "StatusProgressText"; this.StatusProgressText.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0); this.StatusProgressText.Size = new System.Drawing.Size(511, 17); this.StatusProgressText.Spring = true; this.StatusProgressText.Text = "trololo"; this.StatusProgressText.ToolTipText = "Description of the current task"; this.StatusProgressText.Click += new System.EventHandler(this.OnCancelTask); // // MainMenu // this.MainMenu.AllowMerge = false; this.MainMenu.BackColor = System.Drawing.SystemColors.ControlDarkDark; this.MainMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.FileMenu, this.ToolsMenu }); this.MainMenu.Location = new System.Drawing.Point(0, 0); this.MainMenu.Name = "MainMenu"; this.MainMenu.Size = new System.Drawing.Size(792, 24); this.MainMenu.TabIndex = 0; this.MainMenu.Text = "Main Menu"; // // FileMenu // this.FileMenu.BackColor = System.Drawing.SystemColors.ControlDarkDark; this.FileMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.FileOpen, this.FileClose }); this.FileMenu.ForeColor = System.Drawing.Color.LightGreen; this.FileMenu.Name = "FileMenu"; this.FileMenu.Size = new System.Drawing.Size(49, 20); this.FileMenu.Text = "Cache"; // // FileClose // this.FileClose.BackColor = System.Drawing.SystemColors.ControlDarkDark; this.FileClose.Enabled = false; this.FileClose.ForeColor = System.Drawing.Color.LightGreen; this.FileClose.Name = "FileClose"; this.FileClose.Size = new System.Drawing.Size(152, 22); this.FileClose.Text = "Close"; this.FileClose.Click += new System.EventHandler(this.OnFileClose); // // ToolsMenu // this.ToolsMenu.BackColor = System.Drawing.SystemColors.ControlDarkDark; this.ToolsMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.CacheToolsExtractAll, this.CacheToolsDontOverwrite, this.CacheToolsOutputTagDatabase }); this.ToolsMenu.ForeColor = System.Drawing.Color.LightGreen; this.ToolsMenu.Name = "ToolsMenu"; this.ToolsMenu.Size = new System.Drawing.Size(77, 20); this.ToolsMenu.Text = "Cache Tools"; // // CacheToolsExtractAll // this.CacheToolsExtractAll.BackColor = System.Drawing.SystemColors.ControlDarkDark; this.CacheToolsExtractAll.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.CacheToolsExtractAllChecked, this.CacheToolsExtractAllUnchecked }); this.CacheToolsExtractAll.Enabled = false; this.CacheToolsExtractAll.ForeColor = System.Drawing.Color.LimeGreen; this.CacheToolsExtractAll.Name = "CacheToolsExtractAll"; this.CacheToolsExtractAll.Size = new System.Drawing.Size(178, 22); this.CacheToolsExtractAll.Text = "Extract All"; this.CacheToolsExtractAll.Click += new System.EventHandler(this.OnTagInstanceExtractAll); // // CacheToolsExtractAllChecked // this.CacheToolsExtractAllChecked.BackColor = System.Drawing.SystemColors.ControlDarkDark; this.CacheToolsExtractAllChecked.ForeColor = System.Drawing.Color.LimeGreen; this.CacheToolsExtractAllChecked.Name = "CacheToolsExtractAllChecked"; this.CacheToolsExtractAllChecked.Size = new System.Drawing.Size(126, 22); this.CacheToolsExtractAllChecked.Text = "Checked"; this.CacheToolsExtractAllChecked.Click += new System.EventHandler(this.OnTagInstanceExtractAll); // // CacheToolsExtractAllUnchecked // this.CacheToolsExtractAllUnchecked.BackColor = System.Drawing.SystemColors.ControlDarkDark; this.CacheToolsExtractAllUnchecked.ForeColor = System.Drawing.Color.LimeGreen; this.CacheToolsExtractAllUnchecked.Name = "CacheToolsExtractAllUnchecked"; this.CacheToolsExtractAllUnchecked.Size = new System.Drawing.Size(126, 22); this.CacheToolsExtractAllUnchecked.Text = "Unchecked"; this.CacheToolsExtractAllUnchecked.Click += new System.EventHandler(this.OnTagInstanceExtractAll); // // CacheToolsDontOverwrite // this.CacheToolsDontOverwrite.BackColor = System.Drawing.SystemColors.ControlDarkDark; this.CacheToolsDontOverwrite.Checked = true; this.CacheToolsDontOverwrite.CheckOnClick = true; this.CacheToolsDontOverwrite.CheckState = System.Windows.Forms.CheckState.Checked; this.CacheToolsDontOverwrite.ForeColor = System.Drawing.Color.LimeGreen; this.CacheToolsDontOverwrite.Name = "CacheToolsDontOverwrite"; this.CacheToolsDontOverwrite.Size = new System.Drawing.Size(178, 22); this.CacheToolsDontOverwrite.Text = "Don\'t overwrite files"; this.CacheToolsDontOverwrite.ToolTipText = "Toggles existing file overwriting behavior"; // // CacheToolsOutputTagDatabase // this.CacheToolsOutputTagDatabase.BackColor = System.Drawing.SystemColors.ControlDarkDark; this.CacheToolsOutputTagDatabase.Checked = true; this.CacheToolsOutputTagDatabase.CheckOnClick = true; this.CacheToolsOutputTagDatabase.CheckState = System.Windows.Forms.CheckState.Checked; this.CacheToolsOutputTagDatabase.ForeColor = System.Drawing.Color.LimeGreen; this.CacheToolsOutputTagDatabase.Name = "CacheToolsOutputTagDatabase"; this.CacheToolsOutputTagDatabase.Size = new System.Drawing.Size(178, 22); this.CacheToolsOutputTagDatabase.Text = "Output tag_database"; this.CacheToolsOutputTagDatabase.ToolTipText = "Toggles the creation of a tag_database when extracting groups of tags"; // // OpenFileDlg // this.OpenFileDlg.Filter = "Cache files (.map)|*.map|All files|*.*"; this.OpenFileDlg.Title = "Open Cache file..."; // // SaveFileDlg // this.SaveFileDlg.Title = "Save File"; // // MenuTagInstance // this.MenuTagInstance.BackColor = System.Drawing.SystemColors.ControlDarkDark; this.MenuTagInstance.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.MenuTagInstanceExtractAs, this.MenuTagInstanceExtractFolder, this.MenuTagInstanceExtractRsrc }); this.MenuTagInstance.Name = "MenuTagInstance"; this.MenuTagInstance.Size = new System.Drawing.Size(163, 70); this.MenuTagInstance.Opening += new System.ComponentModel.CancelEventHandler(this.OnMenuTagInstanceOpening); // // MenuTagInstanceExtractAs // this.MenuTagInstanceExtractAs.ForeColor = System.Drawing.Color.LimeGreen; this.MenuTagInstanceExtractAs.Name = "MenuTagInstanceExtractAs"; this.MenuTagInstanceExtractAs.Size = new System.Drawing.Size(162, 22); this.MenuTagInstanceExtractAs.Text = "Extract As..."; this.MenuTagInstanceExtractAs.ToolTipText = "Extract the tag to a user defined filename"; this.MenuTagInstanceExtractAs.Click += new System.EventHandler(this.OnTagInstanceExtract); // // MenuTagInstanceExtractFolder // this.MenuTagInstanceExtractFolder.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.MenuTagInstanceExtractFolderAll }); this.MenuTagInstanceExtractFolder.ForeColor = System.Drawing.Color.LimeGreen; this.MenuTagInstanceExtractFolder.Name = "MenuTagInstanceExtractFolder"; this.MenuTagInstanceExtractFolder.Size = new System.Drawing.Size(162, 22); this.MenuTagInstanceExtractFolder.Text = "Extract to folder"; this.MenuTagInstanceExtractFolder.ToolTipText = "Extract tag to a folder"; this.MenuTagInstanceExtractFolder.Click += new System.EventHandler(this.OnTagInstanceExtract); // // MenuTagInstanceExtractFolderAll // this.MenuTagInstanceExtractFolderAll.BackColor = System.Drawing.SystemColors.ControlDarkDark; this.MenuTagInstanceExtractFolderAll.ForeColor = System.Drawing.Color.LimeGreen; this.MenuTagInstanceExtractFolderAll.Name = "MenuTagInstanceExtractFolderAll"; this.MenuTagInstanceExtractFolderAll.Size = new System.Drawing.Size(156, 22); this.MenuTagInstanceExtractFolderAll.Text = "With dependents"; this.MenuTagInstanceExtractFolderAll.ToolTipText = "Extract the tag to a folder with all its dependents"; this.MenuTagInstanceExtractFolderAll.Click += new System.EventHandler(this.OnTagInstanceExtract); // // MenuTagInstanceExtractRsrc // this.MenuTagInstanceExtractRsrc.ForeColor = System.Drawing.Color.LimeGreen; this.MenuTagInstanceExtractRsrc.Name = "MenuTagInstanceExtractRsrc"; this.MenuTagInstanceExtractRsrc.Size = new System.Drawing.Size(162, 22); this.MenuTagInstanceExtractRsrc.Text = "Extract Resources"; this.MenuTagInstanceExtractRsrc.Click += new System.EventHandler(this.OnTagInstanceExtract); // // bgwTagExtract // this.bgwTagExtract.WorkerReportsProgress = true; this.bgwTagExtract.WorkerSupportsCancellation = true; this.bgwTagExtract.DoWork += new System.ComponentModel.DoWorkEventHandler(this.bgwTagExtractDoWork); this.bgwTagExtract.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.bgwTagExtractRunWorkerCompleted); this.bgwTagExtract.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.bgwTagExtractProgressChanged); // // bgwCacheOpen // this.bgwCacheOpen.DoWork += new System.ComponentModel.DoWorkEventHandler(this.bgwCacheOpenDoWork); this.bgwCacheOpen.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.bgwCacheOpenRunWorkerCompleted); this.bgwCacheOpen.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.bgwCacheOpenProgressChanged); // // CacheView // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.SystemColors.ControlDarkDark; this.ClientSize = new System.Drawing.Size(792, 583); this.Controls.Add(splitContainer1); this.Controls.Add(this.MainMenu); this.Controls.Add(StatusStrip); this.ForeColor = System.Drawing.Color.LightGreen; this.MainMenuStrip = this.MainMenu; this.Name = "CacheView"; this.ShowIcon = false; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "Cache Viewer"; this.Shown += new System.EventHandler(this.OnFormShown); this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.OnFormClosing); splitContainer1.Panel1.ResumeLayout(false); splitContainer1.Panel2.ResumeLayout(false); splitContainer1.ResumeLayout(false); StatusStrip.ResumeLayout(false); StatusStrip.PerformLayout(); this.MainMenu.ResumeLayout(false); this.MainMenu.PerformLayout(); this.MenuTagInstance.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { System.Windows.Forms.GroupBox groupBox1; System.Windows.Forms.Label label2; System.Windows.Forms.Label label1; System.Windows.Forms.MenuStrip menuStrip1; System.Windows.Forms.ToolStripSeparator toolStripMenuItem1; System.Windows.Forms.ToolStripSeparator toolStripMenuItem3; System.Windows.Forms.StatusStrip statusStrip1; this.txtMaxRings = new System.Windows.Forms.TextBox(); this.cmoSelectedSection = new System.Windows.Forms.ComboBox(); this.mnuFile = new System.Windows.Forms.ToolStripMenuItem(); this.mnuOpen = new System.Windows.Forms.ToolStripMenuItem(); this.mnuSave = new System.Windows.Forms.ToolStripMenuItem(); this.mnuExportData = new System.Windows.Forms.ToolStripMenuItem(); this.mnuExit = new System.Windows.Forms.ToolStripMenuItem(); this.lblStatus = new System.Windows.Forms.ToolStripStatusLabel(); this.prbStatus = new System.Windows.Forms.ToolStripProgressBar(); this.picSectionImage = new System.Windows.Forms.PictureBox(); groupBox1 = new System.Windows.Forms.GroupBox(); label2 = new System.Windows.Forms.Label(); label1 = new System.Windows.Forms.Label(); menuStrip1 = new System.Windows.Forms.MenuStrip(); toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator(); toolStripMenuItem3 = new System.Windows.Forms.ToolStripSeparator(); statusStrip1 = new System.Windows.Forms.StatusStrip(); groupBox1.SuspendLayout(); menuStrip1.SuspendLayout(); statusStrip1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.picSectionImage)).BeginInit(); this.SuspendLayout(); // // groupBox1 // groupBox1.Controls.Add(this.txtMaxRings); groupBox1.Controls.Add(label2); groupBox1.Controls.Add(this.cmoSelectedSection); groupBox1.Controls.Add(label1); groupBox1.Dock = System.Windows.Forms.DockStyle.Right; groupBox1.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); groupBox1.Location = new System.Drawing.Point(469, 24); groupBox1.Name = "groupBox1"; groupBox1.Size = new System.Drawing.Size(200, 474); groupBox1.TabIndex = 0; groupBox1.TabStop = false; groupBox1.Text = "Sections"; // // txtMaxRings // this.txtMaxRings.Location = new System.Drawing.Point(94, 62); this.txtMaxRings.Name = "txtMaxRings"; this.txtMaxRings.Size = new System.Drawing.Size(44, 20); this.txtMaxRings.TabIndex = 4; this.txtMaxRings.Leave += new System.EventHandler(this.txtMaxRings_Leave); // // label2 // label2.AutoSize = true; label2.Location = new System.Drawing.Point(6, 65); label2.Name = "label2"; label2.Size = new System.Drawing.Size(57, 14); label2.TabIndex = 3; label2.Text = "Max Rings"; // // cmoSelectedSection // this.cmoSelectedSection.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmoSelectedSection.FormattingEnabled = true; this.cmoSelectedSection.Location = new System.Drawing.Point(94, 26); this.cmoSelectedSection.Name = "cmoSelectedSection"; this.cmoSelectedSection.Size = new System.Drawing.Size(90, 22); this.cmoSelectedSection.TabIndex = 1; this.cmoSelectedSection.SelectedIndexChanged += new System.EventHandler(this.cmoSelectedSection_SelectedIndexChanged); // // label1 // label1.AutoSize = true; label1.Location = new System.Drawing.Point(6, 29); label1.Name = "label1"; label1.Size = new System.Drawing.Size(82, 14); label1.TabIndex = 0; label1.Text = "Current Section"; // // menuStrip1 // menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.mnuFile}); menuStrip1.Location = new System.Drawing.Point(0, 0); menuStrip1.Name = "menuStrip1"; menuStrip1.Size = new System.Drawing.Size(669, 24); menuStrip1.TabIndex = 2; menuStrip1.Text = "menuStrip1"; // // mnuFile // this.mnuFile.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.mnuOpen, this.mnuSave, toolStripMenuItem1, this.mnuExportData, toolStripMenuItem3, this.mnuExit}); this.mnuFile.Name = "mnuFile"; this.mnuFile.Size = new System.Drawing.Size(37, 20); this.mnuFile.Text = "&File"; // // mnuOpen // this.mnuOpen.Name = "mnuOpen"; this.mnuOpen.Size = new System.Drawing.Size(142, 22); this.mnuOpen.Text = "&Open..."; this.mnuOpen.Click += new System.EventHandler(this.mnuOpen_Click); // // mnuSave // this.mnuSave.Name = "mnuSave"; this.mnuSave.Size = new System.Drawing.Size(142, 22); this.mnuSave.Text = "&Save..."; this.mnuSave.Click += new System.EventHandler(this.mnuSave_Click); // // toolStripMenuItem1 // toolStripMenuItem1.Name = "toolStripMenuItem1"; toolStripMenuItem1.Size = new System.Drawing.Size(139, 6); // // mnuExportData // this.mnuExportData.Name = "mnuExportData"; this.mnuExportData.Size = new System.Drawing.Size(142, 22); this.mnuExportData.Text = "Export data..."; this.mnuExportData.Click += new System.EventHandler(this.mnuExportData_Click); // // toolStripMenuItem3 // toolStripMenuItem3.Name = "toolStripMenuItem3"; toolStripMenuItem3.Size = new System.Drawing.Size(139, 6); // // mnuExit // this.mnuExit.Name = "mnuExit"; this.mnuExit.Size = new System.Drawing.Size(142, 22); this.mnuExit.Text = "&Exit"; this.mnuExit.Click += new System.EventHandler(this.mnuExit_Click); // // statusStrip1 // statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.lblStatus, this.prbStatus}); statusStrip1.Location = new System.Drawing.Point(0, 476); statusStrip1.Name = "statusStrip1"; statusStrip1.Size = new System.Drawing.Size(469, 22); statusStrip1.TabIndex = 3; statusStrip1.Text = "statusStrip1"; // // lblStatus // this.lblStatus.Name = "lblStatus"; this.lblStatus.Size = new System.Drawing.Size(52, 17); this.lblStatus.Text = "lblStatus"; // // prbStatus // this.prbStatus.Name = "prbStatus"; this.prbStatus.Size = new System.Drawing.Size(100, 16); // // picSectionImage // this.picSectionImage.BackColor = System.Drawing.Color.Black; this.picSectionImage.Dock = System.Windows.Forms.DockStyle.Fill; this.picSectionImage.Location = new System.Drawing.Point(0, 24); this.picSectionImage.Name = "picSectionImage"; this.picSectionImage.Size = new System.Drawing.Size(469, 474); this.picSectionImage.TabIndex = 1; this.picSectionImage.TabStop = false; this.picSectionImage.Paint += new System.Windows.Forms.PaintEventHandler(this.picSectionImage_Paint); this.picSectionImage.MouseDown += new System.Windows.Forms.MouseEventHandler(this.picSectionImage_MouseDown); // // MainForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(669, 498); this.Controls.Add(statusStrip1); this.Controls.Add(this.picSectionImage); this.Controls.Add(groupBox1); this.Controls.Add(menuStrip1); this.Name = "MainForm"; this.Text = "Sonic 3 Special Stage - Section Decoder"; groupBox1.ResumeLayout(false); groupBox1.PerformLayout(); menuStrip1.ResumeLayout(false); menuStrip1.PerformLayout(); statusStrip1.ResumeLayout(false); statusStrip1.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.picSectionImage)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Método necesario para admitir el Diseñador. No se puede modificar /// el contenido de este método con el editor de código. /// </summary> private void InitializeComponent() { System.Windows.Forms.StatusStrip statusStrip; System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmMain)); this.panel1 = new System.Windows.Forms.Panel(); this.dgRssItems = new System.Windows.Forms.DataGridView(); this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel(); this.lblUrl = new System.Windows.Forms.Label(); this.cmbUrl = new System.Windows.Forms.ComboBox(); this.btnUpdate = new System.Windows.Forms.Button(); this.RssTitle = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.RssDescription = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.RssPublishingDate = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.lblStatus = new System.Windows.Forms.ToolStripStatusLabel(); this.bwRssReader = new System.ComponentModel.BackgroundWorker(); statusStrip = new System.Windows.Forms.StatusStrip(); this.panel1.SuspendLayout(); statusStrip.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.dgRssItems)).BeginInit(); this.tableLayoutPanel1.SuspendLayout(); this.SuspendLayout(); // // panel1 // this.panel1.Controls.Add(this.tableLayoutPanel1); this.panel1.Dock = System.Windows.Forms.DockStyle.Top; this.panel1.Location = new System.Drawing.Point(0, 0); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(524, 43); this.panel1.TabIndex = 0; // // statusStrip // statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.lblStatus}); statusStrip.Location = new System.Drawing.Point(0, 239); statusStrip.Name = "statusStrip"; statusStrip.Size = new System.Drawing.Size(524, 22); statusStrip.TabIndex = 1; // // dgRssItems // this.dgRssItems.AllowUserToAddRows = false; this.dgRssItems.AllowUserToDeleteRows = false; this.dgRssItems.AllowUserToOrderColumns = true; this.dgRssItems.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.dgRssItems.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.RssTitle, this.RssDescription, this.RssPublishingDate}); this.dgRssItems.Dock = System.Windows.Forms.DockStyle.Fill; this.dgRssItems.Location = new System.Drawing.Point(0, 43); this.dgRssItems.MultiSelect = false; this.dgRssItems.Name = "dgRssItems"; this.dgRssItems.ReadOnly = true; this.dgRssItems.RowHeadersVisible = false; this.dgRssItems.ShowEditingIcon = false; this.dgRssItems.Size = new System.Drawing.Size(524, 196); this.dgRssItems.TabIndex = 2; // // tableLayoutPanel1 // this.tableLayoutPanel1.ColumnCount = 3; this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 10F)); this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 60F)); this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 30F)); this.tableLayoutPanel1.Controls.Add(this.lblUrl, 0, 0); this.tableLayoutPanel1.Controls.Add(this.cmbUrl, 1, 0); this.tableLayoutPanel1.Controls.Add(this.btnUpdate, 2, 0); this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill; this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0); this.tableLayoutPanel1.Name = "tableLayoutPanel1"; this.tableLayoutPanel1.RowCount = 1; this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F)); this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F)); this.tableLayoutPanel1.Size = new System.Drawing.Size(524, 43); this.tableLayoutPanel1.TabIndex = 0; // // lblUrl // this.lblUrl.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); this.lblUrl.AutoSize = true; this.lblUrl.Location = new System.Drawing.Point(3, 15); this.lblUrl.Name = "lblUrl"; this.lblUrl.Size = new System.Drawing.Size(46, 13); this.lblUrl.TabIndex = 0; this.lblUrl.Text = "URL:"; // // cmbUrl // this.cmbUrl.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); this.cmbUrl.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest; this.cmbUrl.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.RecentlyUsedList; this.cmbUrl.FormattingEnabled = true; this.cmbUrl.Location = new System.Drawing.Point(55, 11); this.cmbUrl.Name = "cmbUrl"; this.cmbUrl.Size = new System.Drawing.Size(308, 21); this.cmbUrl.TabIndex = 1; // // btnUpdate // this.btnUpdate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); this.btnUpdate.Location = new System.Drawing.Point(369, 10); this.btnUpdate.Name = "btnUpdate"; this.btnUpdate.Size = new System.Drawing.Size(152, 23); this.btnUpdate.TabIndex = 2; this.btnUpdate.Text = "Actualizar"; this.btnUpdate.UseVisualStyleBackColor = true; this.btnUpdate.Click += new System.EventHandler(this.btnUpdate_Click); // // RssTitle // this.RssTitle.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill; this.RssTitle.DataPropertyName = "Title"; this.RssTitle.HeaderText = "Título"; this.RssTitle.Name = "RssTitle"; this.RssTitle.ReadOnly = true; // // RssDescription // this.RssDescription.DataPropertyName = "Description"; this.RssDescription.HeaderText = "Descripción"; this.RssDescription.Name = "RssDescription"; this.RssDescription.ReadOnly = true; this.RssDescription.Width = 300; // // RssPublishingDate // this.RssPublishingDate.DataPropertyName = "PublishingDate"; this.RssPublishingDate.HeaderText = "Publicación"; this.RssPublishingDate.Name = "RssPublishingDate"; this.RssPublishingDate.ReadOnly = true; // // lblStatus // this.lblStatus.Name = "lblStatus"; this.lblStatus.Size = new System.Drawing.Size(0, 17); // // bwRssReader // this.bwRssReader.DoWork += new System.ComponentModel.DoWorkEventHandler(this.bwRssReader_DoWork); this.bwRssReader.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.bwRssReader_RunWorkerCompleted); // // FrmMain // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(524, 261); this.Controls.Add(this.dgRssItems); this.Controls.Add(statusStrip); this.Controls.Add(this.panel1); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Name = "FrmMain"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "RSS Example"; this.Load += new System.EventHandler(this.FrmMain_Load); this.panel1.ResumeLayout(false); statusStrip.ResumeLayout(false); statusStrip.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.dgRssItems)).EndInit(); this.tableLayoutPanel1.ResumeLayout(false); this.tableLayoutPanel1.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.Windows.Forms.SplitContainer splitContainer1; System.Windows.Forms.StatusStrip StatusStrip; this.TagTreeView = new System.Windows.Forms.TreeView(); this.PropGrigTag = new System.Windows.Forms.PropertyGrid(); this.PropGridCache = new System.Windows.Forms.PropertyGrid(); this.FileOpen = new System.Windows.Forms.ToolStripMenuItem(); this.StatusProgressBar = new System.Windows.Forms.ToolStripProgressBar(); this.StatusProgressCancel = new System.Windows.Forms.ToolStripStatusLabel(); this.StatusProgressText = new System.Windows.Forms.ToolStripStatusLabel(); this.MainMenu = new System.Windows.Forms.MenuStrip(); this.FileMenu = new System.Windows.Forms.ToolStripMenuItem(); this.FileClose = new System.Windows.Forms.ToolStripMenuItem(); this.ToolsMenu = new System.Windows.Forms.ToolStripMenuItem(); this.CacheToolsExtractAll = new System.Windows.Forms.ToolStripMenuItem(); this.CacheToolsExtractAllChecked = new System.Windows.Forms.ToolStripMenuItem(); this.CacheToolsExtractAllUnchecked = new System.Windows.Forms.ToolStripMenuItem(); this.CacheToolsDontOverwrite = new System.Windows.Forms.ToolStripMenuItem(); this.CacheToolsOutputTagDatabase = new System.Windows.Forms.ToolStripMenuItem(); this.OpenFileDlg = new System.Windows.Forms.OpenFileDialog(); this.SaveFileDlg = new System.Windows.Forms.SaveFileDialog(); this.FolderDlg = new System.Windows.Forms.FolderBrowserDialog(); this.MenuTagInstance = new System.Windows.Forms.ContextMenuStrip(this.components); this.MenuTagInstanceExtractAs = new System.Windows.Forms.ToolStripMenuItem(); this.MenuTagInstanceExtractFolder = new System.Windows.Forms.ToolStripMenuItem(); this.MenuTagInstanceExtractFolderAll = new System.Windows.Forms.ToolStripMenuItem(); this.MenuTagInstanceExtractRsrc = new System.Windows.Forms.ToolStripMenuItem(); this.toolTip1 = new System.Windows.Forms.ToolTip(this.components); this.bgwTagExtract = new System.ComponentModel.BackgroundWorker(); this.bgwCacheOpen = new System.ComponentModel.BackgroundWorker(); splitContainer1 = new System.Windows.Forms.SplitContainer(); StatusStrip = new System.Windows.Forms.StatusStrip(); splitContainer1.Panel1.SuspendLayout(); splitContainer1.Panel2.SuspendLayout(); splitContainer1.SuspendLayout(); StatusStrip.SuspendLayout(); this.MainMenu.SuspendLayout(); this.MenuTagInstance.SuspendLayout(); this.SuspendLayout(); // // splitContainer1 // splitContainer1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); splitContainer1.Location = new System.Drawing.Point(0, 27); splitContainer1.Name = "splitContainer1"; // // splitContainer1.Panel1 // splitContainer1.Panel1.Controls.Add(this.TagTreeView); // // splitContainer1.Panel2 // splitContainer1.Panel2.Controls.Add(this.PropGrigTag); splitContainer1.Panel2.Controls.Add(this.PropGridCache); splitContainer1.Size = new System.Drawing.Size(792, 531); splitContainer1.SplitterDistance = 473; splitContainer1.TabIndex = 3; // // TagTreeView // this.TagTreeView.BackColor = System.Drawing.SystemColors.ControlDarkDark; this.TagTreeView.CheckBoxes = true; this.TagTreeView.Dock = System.Windows.Forms.DockStyle.Fill; this.TagTreeView.ForeColor = System.Drawing.Color.LightGreen; this.TagTreeView.Location = new System.Drawing.Point(0, 0); this.TagTreeView.Name = "TagTreeView"; this.TagTreeView.Size = new System.Drawing.Size(473, 531); this.TagTreeView.TabIndex = 1; this.TagTreeView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.OnTagTreeAfterSelect); this.TagTreeView.BeforeCheck += new System.Windows.Forms.TreeViewCancelEventHandler(this.OnTagTreeBeforeCheck); // // PropGrigTag // this.PropGrigTag.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.PropGrigTag.BackColor = System.Drawing.SystemColors.Control; this.PropGrigTag.CommandsBackColor = System.Drawing.SystemColors.ControlDarkDark; this.PropGrigTag.HelpBackColor = System.Drawing.SystemColors.ControlDarkDark; this.PropGrigTag.HelpForeColor = System.Drawing.Color.LightGreen; this.PropGrigTag.LineColor = System.Drawing.SystemColors.ControlDarkDark; this.PropGrigTag.Location = new System.Drawing.Point(0, 310); this.PropGrigTag.Name = "PropGrigTag"; this.PropGrigTag.PropertySort = System.Windows.Forms.PropertySort.Categorized; this.PropGrigTag.Size = new System.Drawing.Size(315, 221); this.PropGrigTag.TabIndex = 3; this.PropGrigTag.ToolbarVisible = false; this.toolTip1.SetToolTip(this.PropGrigTag, "Tag Instance Properties"); this.PropGrigTag.ViewBackColor = System.Drawing.SystemColors.ControlDarkDark; this.PropGrigTag.ViewForeColor = System.Drawing.Color.LightGreen; // // PropGridCache // this.PropGridCache.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.PropGridCache.BackColor = System.Drawing.SystemColors.Control; this.PropGridCache.CommandsBackColor = System.Drawing.SystemColors.ControlDarkDark; this.PropGridCache.HelpBackColor = System.Drawing.SystemColors.ControlDarkDark; this.PropGridCache.HelpForeColor = System.Drawing.Color.LightGreen; this.PropGridCache.LineColor = System.Drawing.SystemColors.ControlDarkDark; this.PropGridCache.Location = new System.Drawing.Point(0, 0); this.PropGridCache.Name = "PropGridCache"; this.PropGridCache.PropertySort = System.Windows.Forms.PropertySort.Categorized; this.PropGridCache.Size = new System.Drawing.Size(315, 304); this.PropGridCache.TabIndex = 2; this.PropGridCache.ToolbarVisible = false; this.toolTip1.SetToolTip(this.PropGridCache, "Cache Properties"); this.PropGridCache.ViewBackColor = System.Drawing.SystemColors.ControlDarkDark; this.PropGridCache.ViewForeColor = System.Drawing.Color.LightGreen; // // FileOpen // this.FileOpen.BackColor = System.Drawing.SystemColors.ControlDarkDark; this.FileOpen.ForeColor = System.Drawing.Color.LightGreen; this.FileOpen.Name = "FileOpen"; this.FileOpen.Size = new System.Drawing.Size(152, 22); this.FileOpen.Text = "Open"; this.FileOpen.Click += new System.EventHandler(this.OnFileOpen); // // StatusStrip // StatusStrip.BackColor = System.Drawing.SystemColors.ControlDarkDark; StatusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.StatusProgressBar, this.StatusProgressCancel, this.StatusProgressText}); StatusStrip.Location = new System.Drawing.Point(0, 561); StatusStrip.Name = "StatusStrip"; StatusStrip.ShowItemToolTips = true; StatusStrip.Size = new System.Drawing.Size(792, 22); StatusStrip.TabIndex = 6; StatusStrip.Text = "StatusStrip"; // // StatusProgressBar // this.StatusProgressBar.Name = "StatusProgressBar"; this.StatusProgressBar.Size = new System.Drawing.Size(200, 16); this.StatusProgressBar.ToolTipText = "Progress of the current task"; // // StatusProgressCancel // this.StatusProgressCancel.Enabled = false; this.StatusProgressCancel.Name = "StatusProgressCancel"; this.StatusProgressCancel.Size = new System.Drawing.Size(64, 17); this.StatusProgressCancel.Text = "Cancel Task"; this.StatusProgressCancel.ToolTipText = "Cancel the current task"; // // StatusProgressText // this.StatusProgressText.Name = "StatusProgressText"; this.StatusProgressText.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0); this.StatusProgressText.Size = new System.Drawing.Size(511, 17); this.StatusProgressText.Spring = true; this.StatusProgressText.Text = "trololo"; this.StatusProgressText.ToolTipText = "Description of the current task"; this.StatusProgressText.Click += new System.EventHandler(this.OnCancelTask); // // MainMenu // this.MainMenu.AllowMerge = false; this.MainMenu.BackColor = System.Drawing.SystemColors.ControlDarkDark; this.MainMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.FileMenu, this.ToolsMenu}); this.MainMenu.Location = new System.Drawing.Point(0, 0); this.MainMenu.Name = "MainMenu"; this.MainMenu.Size = new System.Drawing.Size(792, 24); this.MainMenu.TabIndex = 0; this.MainMenu.Text = "Main Menu"; // // FileMenu // this.FileMenu.BackColor = System.Drawing.SystemColors.ControlDarkDark; this.FileMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.FileOpen, this.FileClose}); this.FileMenu.ForeColor = System.Drawing.Color.LightGreen; this.FileMenu.Name = "FileMenu"; this.FileMenu.Size = new System.Drawing.Size(49, 20); this.FileMenu.Text = "Cache"; // // FileClose // this.FileClose.BackColor = System.Drawing.SystemColors.ControlDarkDark; this.FileClose.Enabled = false; this.FileClose.ForeColor = System.Drawing.Color.LightGreen; this.FileClose.Name = "FileClose"; this.FileClose.Size = new System.Drawing.Size(152, 22); this.FileClose.Text = "Close"; this.FileClose.Click += new System.EventHandler(this.OnFileClose); // // ToolsMenu // this.ToolsMenu.BackColor = System.Drawing.SystemColors.ControlDarkDark; this.ToolsMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.CacheToolsExtractAll, this.CacheToolsDontOverwrite, this.CacheToolsOutputTagDatabase}); this.ToolsMenu.ForeColor = System.Drawing.Color.LightGreen; this.ToolsMenu.Name = "ToolsMenu"; this.ToolsMenu.Size = new System.Drawing.Size(77, 20); this.ToolsMenu.Text = "Cache Tools"; // // CacheToolsExtractAll // this.CacheToolsExtractAll.BackColor = System.Drawing.SystemColors.ControlDarkDark; this.CacheToolsExtractAll.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.CacheToolsExtractAllChecked, this.CacheToolsExtractAllUnchecked}); this.CacheToolsExtractAll.Enabled = false; this.CacheToolsExtractAll.ForeColor = System.Drawing.Color.LimeGreen; this.CacheToolsExtractAll.Name = "CacheToolsExtractAll"; this.CacheToolsExtractAll.Size = new System.Drawing.Size(178, 22); this.CacheToolsExtractAll.Text = "Extract All"; this.CacheToolsExtractAll.Click += new System.EventHandler(this.OnTagInstanceExtractAll); // // CacheToolsExtractAllChecked // this.CacheToolsExtractAllChecked.BackColor = System.Drawing.SystemColors.ControlDarkDark; this.CacheToolsExtractAllChecked.ForeColor = System.Drawing.Color.LimeGreen; this.CacheToolsExtractAllChecked.Name = "CacheToolsExtractAllChecked"; this.CacheToolsExtractAllChecked.Size = new System.Drawing.Size(126, 22); this.CacheToolsExtractAllChecked.Text = "Checked"; this.CacheToolsExtractAllChecked.Click += new System.EventHandler(this.OnTagInstanceExtractAll); // // CacheToolsExtractAllUnchecked // this.CacheToolsExtractAllUnchecked.BackColor = System.Drawing.SystemColors.ControlDarkDark; this.CacheToolsExtractAllUnchecked.ForeColor = System.Drawing.Color.LimeGreen; this.CacheToolsExtractAllUnchecked.Name = "CacheToolsExtractAllUnchecked"; this.CacheToolsExtractAllUnchecked.Size = new System.Drawing.Size(126, 22); this.CacheToolsExtractAllUnchecked.Text = "Unchecked"; this.CacheToolsExtractAllUnchecked.Click += new System.EventHandler(this.OnTagInstanceExtractAll); // // CacheToolsDontOverwrite // this.CacheToolsDontOverwrite.BackColor = System.Drawing.SystemColors.ControlDarkDark; this.CacheToolsDontOverwrite.Checked = true; this.CacheToolsDontOverwrite.CheckOnClick = true; this.CacheToolsDontOverwrite.CheckState = System.Windows.Forms.CheckState.Checked; this.CacheToolsDontOverwrite.ForeColor = System.Drawing.Color.LimeGreen; this.CacheToolsDontOverwrite.Name = "CacheToolsDontOverwrite"; this.CacheToolsDontOverwrite.Size = new System.Drawing.Size(178, 22); this.CacheToolsDontOverwrite.Text = "Don\'t overwrite files"; this.CacheToolsDontOverwrite.ToolTipText = "Toggles existing file overwriting behavior"; // // CacheToolsOutputTagDatabase // this.CacheToolsOutputTagDatabase.BackColor = System.Drawing.SystemColors.ControlDarkDark; this.CacheToolsOutputTagDatabase.Checked = true; this.CacheToolsOutputTagDatabase.CheckOnClick = true; this.CacheToolsOutputTagDatabase.CheckState = System.Windows.Forms.CheckState.Checked; this.CacheToolsOutputTagDatabase.ForeColor = System.Drawing.Color.LimeGreen; this.CacheToolsOutputTagDatabase.Name = "CacheToolsOutputTagDatabase"; this.CacheToolsOutputTagDatabase.Size = new System.Drawing.Size(178, 22); this.CacheToolsOutputTagDatabase.Text = "Output tag_database"; this.CacheToolsOutputTagDatabase.ToolTipText = "Toggles the creation of a tag_database when extracting groups of tags"; // // OpenFileDlg // this.OpenFileDlg.Filter = "Cache files (.map)|*.map|All files|*.*"; this.OpenFileDlg.Title = "Open Cache file..."; // // SaveFileDlg // this.SaveFileDlg.Title = "Save File"; // // MenuTagInstance // this.MenuTagInstance.BackColor = System.Drawing.SystemColors.ControlDarkDark; this.MenuTagInstance.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.MenuTagInstanceExtractAs, this.MenuTagInstanceExtractFolder, this.MenuTagInstanceExtractRsrc}); this.MenuTagInstance.Name = "MenuTagInstance"; this.MenuTagInstance.Size = new System.Drawing.Size(163, 70); this.MenuTagInstance.Opening += new System.ComponentModel.CancelEventHandler(this.OnMenuTagInstanceOpening); // // MenuTagInstanceExtractAs // this.MenuTagInstanceExtractAs.ForeColor = System.Drawing.Color.LimeGreen; this.MenuTagInstanceExtractAs.Name = "MenuTagInstanceExtractAs"; this.MenuTagInstanceExtractAs.Size = new System.Drawing.Size(162, 22); this.MenuTagInstanceExtractAs.Text = "Extract As..."; this.MenuTagInstanceExtractAs.ToolTipText = "Extract the tag to a user defined filename"; this.MenuTagInstanceExtractAs.Click += new System.EventHandler(this.OnTagInstanceExtract); // // MenuTagInstanceExtractFolder // this.MenuTagInstanceExtractFolder.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.MenuTagInstanceExtractFolderAll}); this.MenuTagInstanceExtractFolder.ForeColor = System.Drawing.Color.LimeGreen; this.MenuTagInstanceExtractFolder.Name = "MenuTagInstanceExtractFolder"; this.MenuTagInstanceExtractFolder.Size = new System.Drawing.Size(162, 22); this.MenuTagInstanceExtractFolder.Text = "Extract to folder"; this.MenuTagInstanceExtractFolder.ToolTipText = "Extract tag to a folder"; this.MenuTagInstanceExtractFolder.Click += new System.EventHandler(this.OnTagInstanceExtract); // // MenuTagInstanceExtractFolderAll // this.MenuTagInstanceExtractFolderAll.BackColor = System.Drawing.SystemColors.ControlDarkDark; this.MenuTagInstanceExtractFolderAll.ForeColor = System.Drawing.Color.LimeGreen; this.MenuTagInstanceExtractFolderAll.Name = "MenuTagInstanceExtractFolderAll"; this.MenuTagInstanceExtractFolderAll.Size = new System.Drawing.Size(156, 22); this.MenuTagInstanceExtractFolderAll.Text = "With dependents"; this.MenuTagInstanceExtractFolderAll.ToolTipText = "Extract the tag to a folder with all its dependents"; this.MenuTagInstanceExtractFolderAll.Click += new System.EventHandler(this.OnTagInstanceExtract); // // MenuTagInstanceExtractRsrc // this.MenuTagInstanceExtractRsrc.ForeColor = System.Drawing.Color.LimeGreen; this.MenuTagInstanceExtractRsrc.Name = "MenuTagInstanceExtractRsrc"; this.MenuTagInstanceExtractRsrc.Size = new System.Drawing.Size(162, 22); this.MenuTagInstanceExtractRsrc.Text = "Extract Resources"; this.MenuTagInstanceExtractRsrc.Click += new System.EventHandler(this.OnTagInstanceExtract); // // bgwTagExtract // this.bgwTagExtract.WorkerReportsProgress = true; this.bgwTagExtract.WorkerSupportsCancellation = true; this.bgwTagExtract.DoWork += new System.ComponentModel.DoWorkEventHandler(this.bgwTagExtractDoWork); this.bgwTagExtract.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.bgwTagExtractRunWorkerCompleted); this.bgwTagExtract.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.bgwTagExtractProgressChanged); // // bgwCacheOpen // this.bgwCacheOpen.DoWork += new System.ComponentModel.DoWorkEventHandler(this.bgwCacheOpenDoWork); this.bgwCacheOpen.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.bgwCacheOpenRunWorkerCompleted); this.bgwCacheOpen.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.bgwCacheOpenProgressChanged); // // CacheView // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.SystemColors.ControlDarkDark; this.ClientSize = new System.Drawing.Size(792, 583); this.Controls.Add(splitContainer1); this.Controls.Add(this.MainMenu); this.Controls.Add(StatusStrip); this.ForeColor = System.Drawing.Color.LightGreen; this.MainMenuStrip = this.MainMenu; this.Name = "CacheView"; this.ShowIcon = false; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "Cache Viewer"; this.Shown += new System.EventHandler(this.OnFormShown); this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.OnFormClosing); splitContainer1.Panel1.ResumeLayout(false); splitContainer1.Panel2.ResumeLayout(false); splitContainer1.ResumeLayout(false); StatusStrip.ResumeLayout(false); StatusStrip.PerformLayout(); this.MainMenu.ResumeLayout(false); this.MainMenu.PerformLayout(); this.MenuTagInstance.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.Windows.Forms.Panel scrollPanel; System.Windows.Forms.StatusStrip statusStrip; this.button10 = new MetroFramework.Controls.MetroButton(); this.metroToggle1 = new MetroFramework.Controls.MetroToggle(); this.textBox6 = new System.Windows.Forms.TextBox(); this.textBox7 = new System.Windows.Forms.TextBox(); this.pictureBox = new System.Windows.Forms.PictureBox(); this.textBox5 = new System.Windows.Forms.TextBox(); this.button11 = new MetroFramework.Controls.MetroButton(); this.textBox1 = new System.Windows.Forms.TextBox(); this.toolStripStatusLabel = new System.Windows.Forms.ToolStripStatusLabel(); this.button8 = new MetroFramework.Controls.MetroButton(); this.button2 = new MetroFramework.Controls.MetroButton(); this.button3 = new MetroFramework.Controls.MetroButton(); this.button5 = new MetroFramework.Controls.MetroButton(); this.button4 = new MetroFramework.Controls.MetroButton(); this.button9 = new MetroFramework.Controls.MetroButton(); this.button7 = new MetroFramework.Controls.MetroButton(); this.button6 = new MetroFramework.Controls.MetroButton(); this.button1 = new MetroFramework.Controls.MetroButton(); this.textBox2 = new System.Windows.Forms.TextBox(); this.textBox3 = new System.Windows.Forms.TextBox(); this.textBox4 = new System.Windows.Forms.TextBox(); this.textBox8 = new System.Windows.Forms.TextBox(); this.textBox9 = new System.Windows.Forms.TextBox(); this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel(); this.comboBoxZoom = new MetroFramework.Controls.MetroComboBox(); this.metroStyleManager1 = new MetroFramework.Components.MetroStyleManager(this.components); this.metroLink1 = new MetroFramework.Controls.MetroLink(); this.metroLink2 = new MetroFramework.Controls.MetroLink(); this.metroContextMenu1 = new MetroFramework.Controls.MetroContextMenu(this.components); this.openToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); this.exitToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); this.metroContextMenu2 = new MetroFramework.Controls.MetroContextMenu(this.components); this.configureToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); this.panel1 = new System.Windows.Forms.Panel(); this.groupBox1 = new System.Windows.Forms.GroupBox(); this.groupBox2 = new System.Windows.Forms.GroupBox(); this.groupBox5 = new System.Windows.Forms.GroupBox(); this.metroLabel6 = new MetroFramework.Controls.MetroLabel(); this.metroLabel5 = new MetroFramework.Controls.MetroLabel(); this.metroLabel4 = new MetroFramework.Controls.MetroLabel(); this.groupBox7 = new System.Windows.Forms.GroupBox(); this.panel3 = new System.Windows.Forms.Panel(); this.pictureBox1 = new System.Windows.Forms.PictureBox(); this.pictureBox4 = new System.Windows.Forms.PictureBox(); this.pictureBox5 = new System.Windows.Forms.PictureBox(); this.pictureBox2 = new System.Windows.Forms.PictureBox(); this.metroLabel3 = new MetroFramework.Controls.MetroLabel(); this.groupBox6 = new System.Windows.Forms.GroupBox(); this.metroLabel1 = new MetroFramework.Controls.MetroLabel(); this.panel2 = new System.Windows.Forms.Panel(); this.metroLabel2 = new MetroFramework.Controls.MetroLabel(); this.label3 = new MetroFramework.Controls.MetroLabel(); this.label1 = new MetroFramework.Controls.MetroLabel(); this.label4 = new MetroFramework.Controls.MetroLabel(); this.label2 = new MetroFramework.Controls.MetroLabel(); scrollPanel = new System.Windows.Forms.Panel(); statusStrip = new System.Windows.Forms.StatusStrip(); scrollPanel.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit(); statusStrip.SuspendLayout(); this.tableLayoutPanel1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.metroStyleManager1)).BeginInit(); this.metroContextMenu1.SuspendLayout(); this.metroContextMenu2.SuspendLayout(); this.panel1.SuspendLayout(); this.groupBox1.SuspendLayout(); this.groupBox2.SuspendLayout(); this.groupBox5.SuspendLayout(); this.groupBox7.SuspendLayout(); this.panel3.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit(); this.groupBox6.SuspendLayout(); this.SuspendLayout(); // // scrollPanel // scrollPanel.AutoScroll = true; scrollPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.tableLayoutPanel1.SetColumnSpan(scrollPanel, 3); scrollPanel.Controls.Add(this.button10); scrollPanel.Controls.Add(this.metroToggle1); scrollPanel.Controls.Add(this.textBox6); scrollPanel.Controls.Add(this.textBox7); scrollPanel.Controls.Add(this.pictureBox); scrollPanel.Controls.Add(this.textBox5); scrollPanel.Controls.Add(this.button11); scrollPanel.Controls.Add(this.textBox1); scrollPanel.Location = new System.Drawing.Point(3, 3); scrollPanel.Name = "scrollPanel"; scrollPanel.Size = new System.Drawing.Size(986, 601); scrollPanel.TabIndex = 2; // // button10 // this.button10.Location = new System.Drawing.Point(812, 326); this.button10.Name = "button10"; this.button10.Size = new System.Drawing.Size(100, 31); this.button10.TabIndex = 22; this.button10.Text = "Add Obstacles"; this.button10.UseSelectable = true; this.button10.Visible = false; this.button10.Click += new System.EventHandler(this.button10_Click); // // metroToggle1 // this.metroToggle1.AutoSize = true; this.metroToggle1.BackColor = System.Drawing.Color.Transparent; this.metroToggle1.Checked = true; this.metroToggle1.CheckState = System.Windows.Forms.CheckState.Checked; this.metroToggle1.Location = new System.Drawing.Point(812, 517); this.metroToggle1.Name = "metroToggle1"; this.metroToggle1.Size = new System.Drawing.Size(80, 17); this.metroToggle1.TabIndex = 30; this.metroToggle1.Text = "On"; this.metroToggle1.UseCustomBackColor = true; this.metroToggle1.UseSelectable = true; this.metroToggle1.Visible = false; this.metroToggle1.CheckedChanged += new System.EventHandler(this.metroToggle1_CheckedChanged); // // textBox6 // this.textBox6.BackColor = System.Drawing.Color.LimeGreen; this.textBox6.Location = new System.Drawing.Point(864, 450); this.textBox6.Name = "textBox6"; this.textBox6.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; this.textBox6.Size = new System.Drawing.Size(86, 20); this.textBox6.TabIndex = 20; this.textBox6.Text = "Clear"; this.textBox6.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.textBox6.Visible = false; // // textBox7 // this.textBox7.BackColor = System.Drawing.Color.LimeGreen; this.textBox7.Location = new System.Drawing.Point(732, 432); this.textBox7.Name = "textBox7"; this.textBox7.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; this.textBox7.Size = new System.Drawing.Size(86, 20); this.textBox7.TabIndex = 21; this.textBox7.Text = "Clear"; this.textBox7.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.textBox7.Visible = false; // // pictureBox // this.pictureBox.ImageLocation = "mapnew.bmp"; this.pictureBox.Location = new System.Drawing.Point(111, -1); this.pictureBox.Name = "pictureBox"; this.pictureBox.Size = new System.Drawing.Size(730, 730); this.pictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize; this.pictureBox.TabIndex = 0; this.pictureBox.TabStop = false; this.pictureBox.Click += new System.EventHandler(this.pictureBox_Click); this.pictureBox.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pictureBox_MouseClick); this.pictureBox.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pictureBox_OnHover); // // textBox5 // this.textBox5.BackColor = System.Drawing.Color.LimeGreen; this.textBox5.Location = new System.Drawing.Point(826, 382); this.textBox5.Name = "textBox5"; this.textBox5.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; this.textBox5.Size = new System.Drawing.Size(86, 20); this.textBox5.TabIndex = 17; this.textBox5.Text = "Clear"; this.textBox5.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.textBox5.Visible = false; // // button11 // this.button11.Location = new System.Drawing.Point(874, 254); this.button11.Name = "button11"; this.button11.Size = new System.Drawing.Size(57, 31); this.button11.TabIndex = 36; this.button11.Text = "Reset"; this.button11.UseSelectable = true; this.button11.Visible = false; this.button11.Click += new System.EventHandler(this.button11_Click); // // textBox1 // this.textBox1.Location = new System.Drawing.Point(618, 117); this.textBox1.Multiline = true; this.textBox1.Name = "textBox1"; this.textBox1.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; this.textBox1.Size = new System.Drawing.Size(137, 214); this.textBox1.TabIndex = 5; this.textBox1.Visible = false; // // statusStrip // statusStrip.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); statusStrip.Dock = System.Windows.Forms.DockStyle.None; statusStrip.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold); statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripStatusLabel}); statusStrip.Location = new System.Drawing.Point(40, 693); statusStrip.Name = "statusStrip"; statusStrip.Size = new System.Drawing.Size(58, 22); statusStrip.TabIndex = 3; statusStrip.Text = "statusStrip1"; // // toolStripStatusLabel // this.toolStripStatusLabel.ForeColor = System.Drawing.SystemColors.Control; this.toolStripStatusLabel.Name = "toolStripStatusLabel"; this.toolStripStatusLabel.Size = new System.Drawing.Size(41, 17); this.toolStripStatusLabel.Text = "Ready"; // // button8 // this.button8.Location = new System.Drawing.Point(187, 22); this.button8.Name = "button8"; this.button8.Size = new System.Drawing.Size(86, 23); this.button8.TabIndex = 16; this.button8.Text = "Sonar Off"; this.button8.UseSelectable = true; this.button8.Click += new System.EventHandler(this.button8_Click); // // button2 // this.button2.Location = new System.Drawing.Point(17, 21); this.button2.Name = "button2"; this.button2.Size = new System.Drawing.Size(75, 23); this.button2.TabIndex = 7; this.button2.Text = "turn ack"; this.button2.UseSelectable = true; this.button2.Click += new System.EventHandler(this.button2_Click); // // button3 // this.button3.Location = new System.Drawing.Point(18, 50); this.button3.Name = "button3"; this.button3.Size = new System.Drawing.Size(74, 23); this.button3.TabIndex = 8; this.button3.Text = "turn reach"; this.button3.UseSelectable = true; this.button3.Click += new System.EventHandler(this.button3_Click); // // button5 // this.button5.Location = new System.Drawing.Point(17, 77); this.button5.Name = "button5"; this.button5.Size = new System.Drawing.Size(75, 23); this.button5.TabIndex = 10; this.button5.Text = "destination"; this.button5.UseSelectable = true; this.button5.Click += new System.EventHandler(this.button5_Click); // // button4 // this.button4.Location = new System.Drawing.Point(17, 106); this.button4.Name = "button4"; this.button4.Size = new System.Drawing.Size(75, 23); this.button4.TabIndex = 9; this.button4.Text = "forward ack"; this.button4.UseSelectable = true; this.button4.Click += new System.EventHandler(this.button4_Click); // // button9 // this.button9.Location = new System.Drawing.Point(6, 23); this.button9.Name = "button9"; this.button9.Size = new System.Drawing.Size(75, 23); this.button9.TabIndex = 18; this.button9.Text = "direction"; this.button9.UseSelectable = true; this.button9.Click += new System.EventHandler(this.button9_Click); // // button7 // this.button7.Location = new System.Drawing.Point(87, 24); this.button7.Name = "button7"; this.button7.Size = new System.Drawing.Size(75, 52); this.button7.TabIndex = 15; this.button7.Text = "draw"; this.button7.UseSelectable = true; this.button7.Click += new System.EventHandler(this.button7_Click); // // button6 // this.button6.Location = new System.Drawing.Point(6, 53); this.button6.Name = "button6"; this.button6.Size = new System.Drawing.Size(75, 23); this.button6.TabIndex = 14; this.button6.Text = "break"; this.button6.UseSelectable = true; this.button6.Click += new System.EventHandler(this.button6_Click); // // button1 // this.button1.Location = new System.Drawing.Point(60, 116); this.button1.Name = "button1"; this.button1.Size = new System.Drawing.Size(77, 26); this.button1.TabIndex = 6; this.button1.Text = "Simulate"; this.button1.UseSelectable = true; this.button1.Click += new System.EventHandler(this.button1_Click); // // textBox2 // this.textBox2.Location = new System.Drawing.Point(142, 19); this.textBox2.Name = "textBox2"; this.textBox2.Size = new System.Drawing.Size(34, 22); this.textBox2.TabIndex = 11; this.textBox2.Text = "180"; // // textBox3 // this.textBox3.Location = new System.Drawing.Point(141, 48); this.textBox3.Name = "textBox3"; this.textBox3.Size = new System.Drawing.Size(34, 22); this.textBox3.TabIndex = 12; this.textBox3.Text = "390"; // // textBox4 // this.textBox4.Location = new System.Drawing.Point(142, 76); this.textBox4.Name = "textBox4"; this.textBox4.Size = new System.Drawing.Size(34, 22); this.textBox4.TabIndex = 13; this.textBox4.Text = "120"; // // textBox8 // this.textBox8.Location = new System.Drawing.Point(6, 24); this.textBox8.Multiline = true; this.textBox8.Name = "textBox8"; this.textBox8.Size = new System.Drawing.Size(54, 41); this.textBox8.TabIndex = 26; this.textBox8.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; // // textBox9 // this.textBox9.Location = new System.Drawing.Point(65, 24); this.textBox9.Multiline = true; this.textBox9.Name = "textBox9"; this.textBox9.Size = new System.Drawing.Size(54, 41); this.textBox9.TabIndex = 27; this.textBox9.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; // // tableLayoutPanel1 // this.tableLayoutPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Right))); this.tableLayoutPanel1.ColumnCount = 3; this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); this.tableLayoutPanel1.Controls.Add(scrollPanel, 0, 1); this.tableLayoutPanel1.Location = new System.Drawing.Point(24, 90); this.tableLayoutPanel1.Name = "tableLayoutPanel1"; this.tableLayoutPanel1.RowCount = 2; this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle()); this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F)); this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F)); this.tableLayoutPanel1.Size = new System.Drawing.Size(992, 607); this.tableLayoutPanel1.TabIndex = 4; // // comboBoxZoom // this.comboBoxZoom.FormattingEnabled = true; this.comboBoxZoom.ItemHeight = 23; this.comboBoxZoom.Location = new System.Drawing.Point(902, 58); this.comboBoxZoom.Name = "comboBoxZoom"; this.comboBoxZoom.Size = new System.Drawing.Size(93, 29); this.comboBoxZoom.TabIndex = 4; this.comboBoxZoom.UseSelectable = true; this.comboBoxZoom.SelectedIndexChanged += new System.EventHandler(this.comboBoxZoom_SelectedIndexChanged); // // metroStyleManager1 // this.metroStyleManager1.Owner = this; this.metroStyleManager1.Theme = MetroFramework.MetroThemeStyle.Dark; // // metroLink1 // this.metroLink1.Location = new System.Drawing.Point(24, 59); this.metroLink1.Name = "metroLink1"; this.metroLink1.Size = new System.Drawing.Size(30, 23); this.metroLink1.TabIndex = 1; this.metroLink1.Text = "FILE"; this.metroLink1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; this.metroLink1.UseSelectable = true; this.metroLink1.Click += new System.EventHandler(this.metroLink1_Click); // // metroLink2 // this.metroLink2.Location = new System.Drawing.Point(60, 59); this.metroLink2.Name = "metroLink2"; this.metroLink2.Size = new System.Drawing.Size(63, 23); this.metroLink2.TabIndex = 2; this.metroLink2.Text = "SETTINGS"; this.metroLink2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; this.metroLink2.UseSelectable = true; this.metroLink2.Click += new System.EventHandler(this.metroLink2_Click); // // metroContextMenu1 // this.metroContextMenu1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.openToolStripMenuItem1, this.exitToolStripMenuItem1}); this.metroContextMenu1.Name = "metroContextMenu1"; this.metroContextMenu1.Size = new System.Drawing.Size(104, 48); // // openToolStripMenuItem1 // this.openToolStripMenuItem1.Name = "openToolStripMenuItem1"; this.openToolStripMenuItem1.Size = new System.Drawing.Size(103, 22); this.openToolStripMenuItem1.Text = "Open"; this.openToolStripMenuItem1.Click += new System.EventHandler(this.openToolStripMenuItem1_Click); // // exitToolStripMenuItem1 // this.exitToolStripMenuItem1.Name = "exitToolStripMenuItem1"; this.exitToolStripMenuItem1.Size = new System.Drawing.Size(103, 22); this.exitToolStripMenuItem1.Text = "Exit"; this.exitToolStripMenuItem1.Click += new System.EventHandler(this.exitToolStripMenuItem1_Click); // // metroContextMenu2 // this.metroContextMenu2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.configureToolStripMenuItem1}); this.metroContextMenu2.Name = "metroContextMenu2"; this.metroContextMenu2.Size = new System.Drawing.Size(128, 26); // // configureToolStripMenuItem1 // this.configureToolStripMenuItem1.Name = "configureToolStripMenuItem1"; this.configureToolStripMenuItem1.Size = new System.Drawing.Size(127, 22); this.configureToolStripMenuItem1.Text = "Configure"; this.configureToolStripMenuItem1.Click += new System.EventHandler(this.configureToolStripMenuItem1_Click); // // panel1 // this.panel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(35)))), ((int)(((byte)(35)))), ((int)(((byte)(35))))); this.panel1.Controls.Add(this.groupBox1); this.panel1.Controls.Add(this.groupBox2); this.panel1.Controls.Add(this.groupBox5); this.panel1.Controls.Add(this.groupBox7); this.panel1.Controls.Add(this.groupBox6); this.panel1.Location = new System.Drawing.Point(1007, 77); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(330, 614); this.panel1.TabIndex = 26; // // groupBox1 // this.groupBox1.Controls.Add(this.button9); this.groupBox1.Controls.Add(this.button7); this.groupBox1.Controls.Add(this.button6); this.groupBox1.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.groupBox1.ForeColor = System.Drawing.SystemColors.ControlDark; this.groupBox1.Location = new System.Drawing.Point(142, 12); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(174, 87); this.groupBox1.TabIndex = 37; this.groupBox1.TabStop = false; this.groupBox1.Text = "Custom Commands"; // // groupBox2 // this.groupBox2.Controls.Add(this.button5); this.groupBox2.Controls.Add(this.button3); this.groupBox2.Controls.Add(this.button4); this.groupBox2.Controls.Add(this.button2); this.groupBox2.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.groupBox2.ForeColor = System.Drawing.SystemColors.ControlDark; this.groupBox2.Location = new System.Drawing.Point(208, 115); this.groupBox2.Name = "groupBox2"; this.groupBox2.Size = new System.Drawing.Size(108, 150); this.groupBox2.TabIndex = 39; this.groupBox2.TabStop = false; this.groupBox2.Text = "Com Commands"; // // groupBox5 // this.groupBox5.Controls.Add(this.metroLabel6); this.groupBox5.Controls.Add(this.metroLabel5); this.groupBox5.Controls.Add(this.metroLabel4); this.groupBox5.Controls.Add(this.textBox2); this.groupBox5.Controls.Add(this.textBox3); this.groupBox5.Controls.Add(this.textBox4); this.groupBox5.Controls.Add(this.button1); this.groupBox5.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.groupBox5.ForeColor = System.Drawing.SystemColors.ControlDark; this.groupBox5.Location = new System.Drawing.Point(11, 115); this.groupBox5.Name = "groupBox5"; this.groupBox5.Size = new System.Drawing.Size(182, 150); this.groupBox5.TabIndex = 38; this.groupBox5.TabStop = false; this.groupBox5.Text = "Robot Core"; // // metroLabel6 // this.metroLabel6.AutoSize = true; this.metroLabel6.FontSize = MetroFramework.MetroLabelSize.Small; this.metroLabel6.FontWeight = MetroFramework.MetroLabelWeight.Bold; this.metroLabel6.ForeColor = System.Drawing.SystemColors.ControlDark; this.metroLabel6.Location = new System.Drawing.Point(9, 78); this.metroLabel6.Name = "metroLabel6"; this.metroLabel6.Size = new System.Drawing.Size(112, 15); this.metroLabel6.TabIndex = 30; this.metroLabel6.Text = "Start Y Cordination"; this.metroLabel6.UseCustomBackColor = true; this.metroLabel6.UseCustomForeColor = true; // // metroLabel5 // this.metroLabel5.AutoSize = true; this.metroLabel5.FontSize = MetroFramework.MetroLabelSize.Small; this.metroLabel5.FontWeight = MetroFramework.MetroLabelWeight.Bold; this.metroLabel5.ForeColor = System.Drawing.SystemColors.ControlDark; this.metroLabel5.Location = new System.Drawing.Point(9, 50); this.metroLabel5.Name = "metroLabel5"; this.metroLabel5.Size = new System.Drawing.Size(113, 15); this.metroLabel5.TabIndex = 29; this.metroLabel5.Text = "Start X Cordination"; this.metroLabel5.UseCustomBackColor = true; this.metroLabel5.UseCustomForeColor = true; // // metroLabel4 // this.metroLabel4.AutoSize = true; this.metroLabel4.BackColor = System.Drawing.Color.Transparent; this.metroLabel4.FontSize = MetroFramework.MetroLabelSize.Small; this.metroLabel4.FontWeight = MetroFramework.MetroLabelWeight.Bold; this.metroLabel4.ForeColor = System.Drawing.SystemColors.ControlDark; this.metroLabel4.Location = new System.Drawing.Point(10, 21); this.metroLabel4.Name = "metroLabel4"; this.metroLabel4.Size = new System.Drawing.Size(105, 15); this.metroLabel4.TabIndex = 28; this.metroLabel4.Text = "Current Direction"; this.metroLabel4.UseCustomBackColor = true; this.metroLabel4.UseCustomForeColor = true; // // groupBox7 // this.groupBox7.Controls.Add(this.panel3); this.groupBox7.Controls.Add(this.metroLabel3); this.groupBox7.Controls.Add(this.button8); this.groupBox7.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.groupBox7.ForeColor = System.Drawing.SystemColors.ControlDark; this.groupBox7.Location = new System.Drawing.Point(11, 271); this.groupBox7.Name = "groupBox7"; this.groupBox7.Size = new System.Drawing.Size(305, 330); this.groupBox7.TabIndex = 33; this.groupBox7.TabStop = false; this.groupBox7.Text = "Com Port Status"; // // panel3 // this.panel3.Controls.Add(this.pictureBox1); this.panel3.Controls.Add(this.pictureBox4); this.panel3.Controls.Add(this.pictureBox5); this.panel3.Controls.Add(this.pictureBox2); this.panel3.Location = new System.Drawing.Point(6, 64); this.panel3.Name = "panel3"; this.panel3.Size = new System.Drawing.Size(292, 260); this.panel3.TabIndex = 31; // // pictureBox1 // this.pictureBox1.BackColor = System.Drawing.Color.Transparent; this.pictureBox1.ImageLocation = "sonar_left.png"; this.pictureBox1.Location = new System.Drawing.Point(25, 91); this.pictureBox1.Name = "pictureBox1"; this.pictureBox1.Size = new System.Drawing.Size(69, 126); this.pictureBox1.TabIndex = 33; this.pictureBox1.TabStop = false; this.pictureBox1.Visible = false; // // pictureBox4 // this.pictureBox4.BackColor = System.Drawing.Color.Transparent; this.pictureBox4.ImageLocation = "sonar_top.jpg"; this.pictureBox4.Location = new System.Drawing.Point(84, 27); this.pictureBox4.Name = "pictureBox4"; this.pictureBox4.Size = new System.Drawing.Size(129, 64); this.pictureBox4.TabIndex = 32; this.pictureBox4.TabStop = false; this.pictureBox4.Visible = false; // // pictureBox5 // this.pictureBox5.BackColor = System.Drawing.Color.Transparent; this.pictureBox5.ImageLocation = "sonar_right.jpg"; this.pictureBox5.Location = new System.Drawing.Point(198, 90); this.pictureBox5.Name = "pictureBox5"; this.pictureBox5.Size = new System.Drawing.Size(69, 126); this.pictureBox5.TabIndex = 30; this.pictureBox5.TabStop = false; this.pictureBox5.Visible = false; // // pictureBox2 // this.pictureBox2.Dock = System.Windows.Forms.DockStyle.Fill; this.pictureBox2.ImageLocation = "sonar.png"; this.pictureBox2.Location = new System.Drawing.Point(0, 0); this.pictureBox2.Name = "pictureBox2"; this.pictureBox2.Size = new System.Drawing.Size(292, 260); this.pictureBox2.TabIndex = 29; this.pictureBox2.TabStop = false; // // metroLabel3 // this.metroLabel3.AutoSize = true; this.metroLabel3.FontSize = MetroFramework.MetroLabelSize.Small; this.metroLabel3.FontWeight = MetroFramework.MetroLabelWeight.Bold; this.metroLabel3.ForeColor = System.Drawing.SystemColors.ControlDark; this.metroLabel3.Location = new System.Drawing.Point(23, 26); this.metroLabel3.Name = "metroLabel3"; this.metroLabel3.Size = new System.Drawing.Size(77, 15); this.metroLabel3.TabIndex = 28; this.metroLabel3.Text = "Sonar Status"; this.metroLabel3.UseCustomBackColor = true; this.metroLabel3.UseCustomForeColor = true; // // groupBox6 // this.groupBox6.Controls.Add(this.textBox8); this.groupBox6.Controls.Add(this.textBox9); this.groupBox6.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.groupBox6.ForeColor = System.Drawing.SystemColors.ControlDark; this.groupBox6.Location = new System.Drawing.Point(11, 12); this.groupBox6.Name = "groupBox6"; this.groupBox6.Size = new System.Drawing.Size(125, 87); this.groupBox6.TabIndex = 0; this.groupBox6.TabStop = false; this.groupBox6.Text = "Com Port Status"; // // metroLabel1 // this.metroLabel1.AutoSize = true; this.metroLabel1.FontSize = MetroFramework.MetroLabelSize.Small; this.metroLabel1.FontWeight = MetroFramework.MetroLabelWeight.Bold; this.metroLabel1.ForeColor = System.Drawing.SystemColors.ControlDark; this.metroLabel1.Location = new System.Drawing.Point(1006, 58); this.metroLabel1.Name = "metroLabel1"; this.metroLabel1.Size = new System.Drawing.Size(67, 15); this.metroLabel1.TabIndex = 27; this.metroLabel1.Text = "DashBoard"; // // panel2 // this.panel2.BackColor = System.Drawing.Color.LightSkyBlue; this.panel2.Location = new System.Drawing.Point(1079, 63); this.panel2.Name = "panel2"; this.panel2.Size = new System.Drawing.Size(258, 7); this.panel2.TabIndex = 28; // // metroLabel2 // this.metroLabel2.AutoSize = true; this.metroLabel2.BackColor = System.Drawing.Color.Transparent; this.metroLabel2.FontSize = MetroFramework.MetroLabelSize.Small; this.metroLabel2.FontWeight = MetroFramework.MetroLabelWeight.Bold; this.metroLabel2.ForeColor = System.Drawing.SystemColors.ControlDark; this.metroLabel2.Location = new System.Drawing.Point(840, 67); this.metroLabel2.Name = "metroLabel2"; this.metroLabel2.Size = new System.Drawing.Size(43, 15); this.metroLabel2.TabIndex = 29; this.metroLabel2.Text = "ZOOM"; this.metroLabel2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.metroLabel2.UseCustomBackColor = true; this.metroLabel2.UseCustomForeColor = true; // // label3 // this.label3.AutoSize = true; this.label3.FontSize = MetroFramework.MetroLabelSize.Small; this.label3.FontWeight = MetroFramework.MetroLabelWeight.Bold; this.label3.ForeColor = System.Drawing.SystemColors.ControlDark; this.label3.Location = new System.Drawing.Point(799, 698); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(111, 15); this.label3.TabIndex = 41; this.label3.Text = "Destination Cords :"; this.label3.UseCustomBackColor = true; this.label3.UseCustomForeColor = true; // // label1 // this.label1.AutoSize = true; this.label1.FontSize = MetroFramework.MetroLabelSize.Small; this.label1.FontWeight = MetroFramework.MetroLabelWeight.Bold; this.label1.ForeColor = System.Drawing.SystemColors.ControlDark; this.label1.Location = new System.Drawing.Point(543, 698); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(111, 15); this.label1.TabIndex = 42; this.label1.Text = "Current Direction :"; this.label1.UseCustomBackColor = true; this.label1.UseCustomForeColor = true; // // label4 // this.label4.AutoSize = true; this.label4.FontSize = MetroFramework.MetroLabelSize.Small; this.label4.FontWeight = MetroFramework.MetroLabelWeight.Bold; this.label4.ForeColor = System.Drawing.SystemColors.ControlDark; this.label4.Location = new System.Drawing.Point(318, 698); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(90, 15); this.label4.TabIndex = 40; this.label4.Text = "Current Cords :"; this.label4.UseCustomBackColor = true; this.label4.UseCustomForeColor = true; // // label2 // this.label2.AutoSize = true; this.label2.FontSize = MetroFramework.MetroLabelSize.Small; this.label2.FontWeight = MetroFramework.MetroLabelWeight.Bold; this.label2.ForeColor = System.Drawing.SystemColors.ControlDark; this.label2.Location = new System.Drawing.Point(111, 698); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(75, 15); this.label2.TabIndex = 39; this.label2.Text = "Start Cords :"; this.label2.UseCustomBackColor = true; this.label2.UseCustomForeColor = true; // // Simulator // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(1360, 720); this.Controls.Add(this.label3); this.Controls.Add(this.label4); this.Controls.Add(this.label1); this.Controls.Add(this.metroLabel2); this.Controls.Add(this.label2); this.Controls.Add(this.comboBoxZoom); this.Controls.Add(this.panel2); this.Controls.Add(this.metroLabel1); this.Controls.Add(this.panel1); this.Controls.Add(this.metroLink2); this.Controls.Add(this.metroLink1); this.Controls.Add(this.tableLayoutPanel1); this.Controls.Add(statusStrip); this.Name = "Simulator"; this.Text = "Navisys - Simulator"; this.Theme = MetroFramework.MetroThemeStyle.Dark; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.Load += new System.EventHandler(this.SimulaterE_Load); scrollPanel.ResumeLayout(false); scrollPanel.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit(); statusStrip.ResumeLayout(false); statusStrip.PerformLayout(); this.tableLayoutPanel1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.metroStyleManager1)).EndInit(); this.metroContextMenu1.ResumeLayout(false); this.metroContextMenu2.ResumeLayout(false); this.panel1.ResumeLayout(false); this.groupBox1.ResumeLayout(false); this.groupBox2.ResumeLayout(false); this.groupBox5.ResumeLayout(false); this.groupBox5.PerformLayout(); this.groupBox7.ResumeLayout(false); this.groupBox7.PerformLayout(); this.panel3.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit(); this.groupBox6.ResumeLayout(false); this.groupBox6.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { lstBoxOperaciones = new System.Windows.Forms.ListBox(); label1 = new System.Windows.Forms.Label(); picGUI = new System.Windows.Forms.PictureBox(); picRESTA = new System.Windows.Forms.PictureBox(); picMULT = new System.Windows.Forms.PictureBox(); picDIV = new System.Windows.Forms.PictureBox(); picSUMA = new System.Windows.Forms.PictureBox(); statusStrip1 = new System.Windows.Forms.StatusStrip(); toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel(); lblNODO = new System.Windows.Forms.ToolStripStatusLabel(); statuslabel2 = new System.Windows.Forms.ToolStripStatusLabel(); lblPUERTO = new System.Windows.Forms.ToolStripStatusLabel(); toolStripStatusLabel2 = new System.Windows.Forms.ToolStripStatusLabel(); lblCELLID = new System.Windows.Forms.ToolStripStatusLabel(); lblTextoAcuses = new System.Windows.Forms.Label(); lblAcuses = new System.Windows.Forms.Label(); ((System.ComponentModel.ISupportInitialize)(picGUI)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(picRESTA)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(picMULT)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(picDIV)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(picSUMA)).BeginInit(); statusStrip1.SuspendLayout(); SuspendLayout(); // // lstBoxOperaciones // lstBoxOperaciones.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F); lstBoxOperaciones.FormattingEnabled = true; lstBoxOperaciones.ItemHeight = 16; lstBoxOperaciones.Location = new System.Drawing.Point(1, 164); lstBoxOperaciones.Name = "lstBoxOperaciones"; lstBoxOperaciones.Size = new System.Drawing.Size(545, 180); lstBoxOperaciones.TabIndex = 0; // // label1 // label1.AutoSize = true; label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F); label1.Location = new System.Drawing.Point(12, 9); label1.Name = "label1"; label1.Size = new System.Drawing.Size(161, 25); label1.TabIndex = 1; label1.Text = "Servicios Activos"; // // picGUI // picGUI.BackColor = System.Drawing.Color.Transparent; picGUI.Image = global::CELULA.Properties.Resources.calc; picGUI.Location = new System.Drawing.Point(128, 31); picGUI.Name = "picGUI"; picGUI.Size = new System.Drawing.Size(97, 124); picGUI.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; picGUI.TabIndex = 11; picGUI.TabStop = false; picGUI.Visible = false; // // picRESTA // picRESTA.Image = global::CELULA.Properties.Resources.minus; picRESTA.Location = new System.Drawing.Point(73, 37); picRESTA.Name = "picRESTA"; picRESTA.Size = new System.Drawing.Size(50, 50); picRESTA.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; picRESTA.TabIndex = 10; picRESTA.TabStop = false; picRESTA.Visible = false; // // picMULT // picMULT.Image = global::CELULA.Properties.Resources.mult; picMULT.Location = new System.Drawing.Point(17, 93); picMULT.Name = "picMULT"; picMULT.Size = new System.Drawing.Size(50, 50); picMULT.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; picMULT.TabIndex = 9; picMULT.TabStop = false; picMULT.Visible = false; // // picDIV // picDIV.Image = global::CELULA.Properties.Resources.div3; picDIV.Location = new System.Drawing.Point(73, 93); picDIV.Name = "picDIV"; picDIV.Size = new System.Drawing.Size(50, 50); picDIV.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; picDIV.TabIndex = 8; picDIV.TabStop = false; picDIV.Visible = false; // // picSUMA // picSUMA.Image = global::CELULA.Properties.Resources.plus2; picSUMA.Location = new System.Drawing.Point(17, 38); picSUMA.Name = "picSUMA"; picSUMA.Size = new System.Drawing.Size(50, 50); picSUMA.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; picSUMA.TabIndex = 7; picSUMA.TabStop = false; picSUMA.Visible = false; // // statusStrip1 // statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { toolStripStatusLabel1, lblNODO, statuslabel2, lblPUERTO, toolStripStatusLabel2, lblCELLID}); statusStrip1.Location = new System.Drawing.Point(0, 344); statusStrip1.Name = "statusStrip1"; statusStrip1.Size = new System.Drawing.Size(557, 22); statusStrip1.TabIndex = 14; statusStrip1.Text = "statusStrip1"; // // toolStripStatusLabel1 // toolStripStatusLabel1.Name = "toolStripStatusLabel1"; toolStripStatusLabel1.Size = new System.Drawing.Size(76, 17); toolStripStatusLabel1.Text = "Nodo Padre: "; // // lblNODO // lblNODO.Name = "lblNODO"; lblNODO.Size = new System.Drawing.Size(0, 17); // // statuslabel2 // statuslabel2.Name = "statuslabel2"; statuslabel2.Size = new System.Drawing.Size(48, 17); statuslabel2.Text = "Puerto: "; // // lblPUERTO // lblPUERTO.Name = "lblPUERTO"; lblPUERTO.Size = new System.Drawing.Size(0, 17); // // toolStripStatusLabel2 // toolStripStatusLabel2.Name = "toolStripStatusLabel2"; toolStripStatusLabel2.Size = new System.Drawing.Size(57, 17); toolStripStatusLabel2.Text = "ID Célula:"; // // lblCELLID // lblCELLID.Name = "lblCELLID"; lblCELLID.Size = new System.Drawing.Size(0, 17); // // lblTextoAcuses // lblTextoAcuses.AutoSize = true; lblTextoAcuses.Font = new System.Drawing.Font("Microsoft Sans Serif", 25F); lblTextoAcuses.Location = new System.Drawing.Point(401, 27); lblTextoAcuses.Name = "lblTextoAcuses"; lblTextoAcuses.Size = new System.Drawing.Size(129, 39); lblTextoAcuses.TabIndex = 15; lblTextoAcuses.Text = "Acuses"; // // lblAcuses // lblAcuses.AutoSize = true; lblAcuses.Font = new System.Drawing.Font("Microsoft Sans Serif", 50F); lblAcuses.Location = new System.Drawing.Point(433, 66); lblAcuses.Name = "lblAcuses"; lblAcuses.Size = new System.Drawing.Size(70, 76); lblAcuses.TabIndex = 16; lblAcuses.Text = "0"; lblAcuses.Visible = false; // // FrmCelula // AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; ClientSize = new System.Drawing.Size(557, 366); ControlBox = false; Controls.Add(lblAcuses); Controls.Add(lblTextoAcuses); Controls.Add(statusStrip1); Controls.Add(picGUI); Controls.Add(picRESTA); Controls.Add(picMULT); Controls.Add(picDIV); Controls.Add(picSUMA); Controls.Add(label1); Controls.Add(lstBoxOperaciones); MaximizeBox = false; MinimizeBox = false; Name = "FrmCelula"; Text = "Celula"; Shown += new System.EventHandler(FrmCelula_Shown); ((System.ComponentModel.ISupportInitialize)(picGUI)).EndInit(); ((System.ComponentModel.ISupportInitialize)(picRESTA)).EndInit(); ((System.ComponentModel.ISupportInitialize)(picMULT)).EndInit(); ((System.ComponentModel.ISupportInitialize)(picDIV)).EndInit(); ((System.ComponentModel.ISupportInitialize)(picSUMA)).EndInit(); statusStrip1.ResumeLayout(false); statusStrip1.PerformLayout(); ResumeLayout(false); PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm)); System.Windows.Forms.StatusStrip statusStrip1; this.nicTrayIcon = new System.Windows.Forms.NotifyIcon(this.components); this.cmsTrayMenu = new System.Windows.Forms.ContextMenuStrip(this.components); this.tsmPlay = new System.Windows.Forms.ToolStripMenuItem(); this.tsmSettings = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator(); this.tsmQuit = new System.Windows.Forms.ToolStripMenuItem(); this.tmrUpdate = new System.Windows.Forms.Timer(this.components); this.lblRefreshStatus = new System.Windows.Forms.ToolStripStatusLabel(); this.scPanels = new System.Windows.Forms.SplitContainer(); this.lvwGames = new System.Windows.Forms.ListView(); this.colGame = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.colPlayers = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.gvwGame = new sbfl_lfg.GameView(); statusStrip1 = new System.Windows.Forms.StatusStrip(); this.cmsTrayMenu.SuspendLayout(); statusStrip1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.scPanels)).BeginInit(); this.scPanels.Panel1.SuspendLayout(); this.scPanels.Panel2.SuspendLayout(); this.scPanels.SuspendLayout(); this.SuspendLayout(); // // nicTrayIcon // this.nicTrayIcon.BalloonTipTitle = "SBFL LFG"; this.nicTrayIcon.ContextMenuStrip = this.cmsTrayMenu; this.nicTrayIcon.Icon = ((System.Drawing.Icon)(resources.GetObject("nicTrayIcon.Icon"))); this.nicTrayIcon.Text = "SBFL LFG"; this.nicTrayIcon.Visible = true; this.nicTrayIcon.DoubleClick += new System.EventHandler(this.tsmPlay_Click); // // cmsTrayMenu // this.cmsTrayMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.tsmPlay, this.tsmSettings, this.toolStripMenuItem1, this.tsmQuit}); this.cmsTrayMenu.Name = "cmsTrayMenu"; this.cmsTrayMenu.Size = new System.Drawing.Size(139, 76); // // tsmPlay // this.tsmPlay.Name = "tsmPlay"; this.tsmPlay.Size = new System.Drawing.Size(138, 22); this.tsmPlay.Text = "&Play game..."; this.tsmPlay.Click += new System.EventHandler(this.tsmPlay_Click); // // tsmSettings // this.tsmSettings.Name = "tsmSettings"; this.tsmSettings.Size = new System.Drawing.Size(138, 22); this.tsmSettings.Text = "&Settings..."; this.tsmSettings.Click += new System.EventHandler(this.tsmSettings_Click); // // toolStripMenuItem1 // this.toolStripMenuItem1.Name = "toolStripMenuItem1"; this.toolStripMenuItem1.Size = new System.Drawing.Size(135, 6); // // tsmQuit // this.tsmQuit.Name = "tsmQuit"; this.tsmQuit.Size = new System.Drawing.Size(138, 22); this.tsmQuit.Text = "&Quit"; this.tsmQuit.Click += new System.EventHandler(this.tsmQuit_Click); // // tmrUpdate // this.tmrUpdate.Enabled = true; this.tmrUpdate.Interval = 5000; this.tmrUpdate.Tick += new System.EventHandler(this.tmrUpdate_Tick); // // statusStrip1 // statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.lblRefreshStatus}); statusStrip1.Location = new System.Drawing.Point(0, 354); statusStrip1.Name = "statusStrip1"; statusStrip1.Size = new System.Drawing.Size(424, 22); statusStrip1.TabIndex = 5; statusStrip1.Text = "ssStatus"; // // lblRefreshStatus // this.lblRefreshStatus.Name = "lblRefreshStatus"; this.lblRefreshStatus.Size = new System.Drawing.Size(145, 17); this.lblRefreshStatus.Text = "Next update in 60 seconds"; this.lblRefreshStatus.Click += new System.EventHandler(this.lblRefreshStatus_Click); // // scPanels // this.scPanels.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.scPanels.Location = new System.Drawing.Point(12, 12); this.scPanels.Name = "scPanels"; this.scPanels.Orientation = System.Windows.Forms.Orientation.Horizontal; // // scPanels.Panel1 // this.scPanels.Panel1.Controls.Add(this.lvwGames); // // scPanels.Panel2 // this.scPanels.Panel2.Controls.Add(this.gvwGame); this.scPanels.Size = new System.Drawing.Size(400, 339); this.scPanels.SplitterDistance = 170; this.scPanels.TabIndex = 8; // // lvwGames // this.lvwGames.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.lvwGames.CheckBoxes = true; this.lvwGames.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.colGame, this.colPlayers}); this.lvwGames.Location = new System.Drawing.Point(0, 0); this.lvwGames.MultiSelect = false; this.lvwGames.Name = "lvwGames"; this.lvwGames.Size = new System.Drawing.Size(400, 168); this.lvwGames.TabIndex = 7; this.lvwGames.UseCompatibleStateImageBehavior = false; this.lvwGames.View = System.Windows.Forms.View.Details; this.lvwGames.SelectedIndexChanged += new System.EventHandler(this.lvwGames_SelectedIndexChanged); // // colGame // this.colGame.Text = "Game"; this.colGame.Width = 220; // // colPlayers // this.colPlayers.Text = "Players"; // // gvwGame // this.gvwGame.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.gvwGame.Location = new System.Drawing.Point(0, 0); this.gvwGame.Name = "gvwGame"; this.gvwGame.Size = new System.Drawing.Size(400, 165); this.gvwGame.TabIndex = 8; this.gvwGame.Text = "Lobby"; // // MainForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(424, 376); this.Controls.Add(this.scPanels); this.Controls.Add(statusStrip1); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.MinimumSize = new System.Drawing.Size(357, 400); this.Name = "MainForm"; this.Text = "SBFL LFG"; this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing); this.Load += new System.EventHandler(this.MainForm_Load); this.Shown += new System.EventHandler(this.MainForm_Shown); this.cmsTrayMenu.ResumeLayout(false); statusStrip1.ResumeLayout(false); statusStrip1.PerformLayout(); this.scPanels.Panel1.ResumeLayout(false); this.scPanels.Panel2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.scPanels)).EndInit(); this.scPanels.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.Windows.Forms.Button cancelButton; System.Windows.Forms.StatusStrip statusStrip; System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(IssueBrowserDialog)); System.Windows.Forms.ToolTip toolTip; System.Windows.Forms.Label label1; System.Windows.Forms.Label label2; this.statusLabel = new System.Windows.Forms.ToolStripStatusLabel(); this.workStatus = new System.Windows.Forms.ToolStripStatusLabel(); this.detailButton = new System.Windows.Forms.Button(); this.refreshButton = new System.Windows.Forms.Button(); this.okButton = new System.Windows.Forms.Button(); this.issueListView = new System.Windows.Forms.ListView(); this.idColumn = new System.Windows.Forms.ColumnHeader(); this.foundLabel = new System.Windows.Forms.Label(); this.searchFieldBox = new System.Windows.Forms.ComboBox(); this.updateNotifyIcon = new System.Windows.Forms.NotifyIcon(this.components); this.includeClosedCheckBox = new System.Windows.Forms.CheckBox(); this.searchBox = new System.Windows.Forms.ComboBox(); cancelButton = new System.Windows.Forms.Button(); statusStrip = new System.Windows.Forms.StatusStrip(); toolTip = new System.Windows.Forms.ToolTip(this.components); label1 = new System.Windows.Forms.Label(); label2 = new System.Windows.Forms.Label(); statusStrip.SuspendLayout(); this.SuspendLayout(); // // cancelButton // cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel; cancelButton.Location = new System.Drawing.Point(761, 427); cancelButton.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); cancelButton.Name = "cancelButton"; cancelButton.Size = new System.Drawing.Size(75, 30); cancelButton.TabIndex = 10; cancelButton.Text = "Cancel"; cancelButton.UseVisualStyleBackColor = true; // // statusStrip // statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.statusLabel, this.workStatus}); statusStrip.Location = new System.Drawing.Point(0, 462); statusStrip.Name = "statusStrip"; statusStrip.Padding = new System.Windows.Forms.Padding(1, 0, 13, 0); statusStrip.Size = new System.Drawing.Size(849, 25); statusStrip.TabIndex = 11; // // statusLabel // this.statusLabel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.statusLabel.Name = "statusLabel"; this.statusLabel.Size = new System.Drawing.Size(835, 20); this.statusLabel.Spring = true; this.statusLabel.Text = "Ready"; this.statusLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // workStatus // this.workStatus.AutoSize = false; this.workStatus.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.workStatus.Image = ((System.Drawing.Image)(resources.GetObject("workStatus.Image"))); this.workStatus.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.workStatus.Name = "workStatus"; this.workStatus.Size = new System.Drawing.Size(45, 20); this.workStatus.Visible = false; // // detailButton // this.detailButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.detailButton.Location = new System.Drawing.Point(12, 427); this.detailButton.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); this.detailButton.Name = "detailButton"; this.detailButton.Size = new System.Drawing.Size(75, 30); this.detailButton.TabIndex = 6; this.detailButton.Text = "&Details"; toolTip.SetToolTip(this.detailButton, "Open details of selected issue in the browser"); this.detailButton.UseVisualStyleBackColor = true; this.detailButton.Click += new System.EventHandler(this.DetailButton_Click); // // refreshButton // this.refreshButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.refreshButton.Enabled = false; this.refreshButton.Location = new System.Drawing.Point(93, 427); this.refreshButton.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); this.refreshButton.Name = "refreshButton"; this.refreshButton.Size = new System.Drawing.Size(75, 30); this.refreshButton.TabIndex = 7; this.refreshButton.Text = "&Refresh"; toolTip.SetToolTip(this.refreshButton, "Reload the issue list"); this.refreshButton.UseVisualStyleBackColor = true; this.refreshButton.Click += new System.EventHandler(this.RefreshButton_Click); // // label1 // label1.AutoSize = true; label1.Location = new System.Drawing.Point(12, 7); label1.Name = "label1"; label1.Size = new System.Drawing.Size(55, 17); label1.TabIndex = 0; label1.Text = "&Search:"; // // label2 // label2.AutoSize = true; label2.Location = new System.Drawing.Point(316, 11); label2.Name = "label2"; label2.Size = new System.Drawing.Size(18, 17); label2.TabIndex = 2; label2.Text = "in"; // // okButton // this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK; this.okButton.Location = new System.Drawing.Point(681, 427); this.okButton.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); this.okButton.Name = "okButton"; this.okButton.Size = new System.Drawing.Size(75, 30); this.okButton.TabIndex = 9; this.okButton.Text = "OK"; this.okButton.UseVisualStyleBackColor = true; // // issueListView // this.issueListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.issueListView.CheckBoxes = true; this.issueListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {this.idColumn}); this.issueListView.FullRowSelect = true; this.issueListView.GridLines = true; this.issueListView.HideSelection = false; this.issueListView.Location = new System.Drawing.Point(0, 38); this.issueListView.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); this.issueListView.MultiSelect = false; this.issueListView.Name = "issueListView"; this.issueListView.Size = new System.Drawing.Size(848, 382); this.issueListView.TabIndex = 5; this.issueListView.UseCompatibleStateImageBehavior = false; this.issueListView.View = System.Windows.Forms.View.Details; this.issueListView.ItemChecked += new System.Windows.Forms.ItemCheckedEventHandler(this.IssueListView_ItemChecked); this.issueListView.SelectedIndexChanged += new System.EventHandler(this.IssueListView_SelectedIndexChanged); this.issueListView.DoubleClick += new System.EventHandler(this.IssueListView_DoubleClick); // // idColumn // this.idColumn.Text = "ID"; // // foundLabel // this.foundLabel.AutoSize = true; this.foundLabel.Location = new System.Drawing.Point(490, 11); this.foundLabel.Name = "foundLabel"; this.foundLabel.Size = new System.Drawing.Size(70, 17); this.foundLabel.TabIndex = 4; this.foundLabel.Text = "{0} found"; this.foundLabel.Visible = false; // // searchFieldBox // this.searchFieldBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.searchFieldBox.FormattingEnabled = true; this.searchFieldBox.Location = new System.Drawing.Point(341, 7); this.searchFieldBox.Name = "searchFieldBox"; this.searchFieldBox.Size = new System.Drawing.Size(121, 25); this.searchFieldBox.TabIndex = 3; this.searchFieldBox.SelectedIndexChanged += new System.EventHandler(this.SearchFieldBox_SelectedIndexChanged); // // updateNotifyIcon // this.updateNotifyIcon.BalloonTipIcon = System.Windows.Forms.ToolTipIcon.Info; this.updateNotifyIcon.BalloonTipText = "There is a new version of Gurtle available. Click here to find out more."; this.updateNotifyIcon.BalloonTipTitle = "Gurtle Update Available"; this.updateNotifyIcon.Icon = ((System.Drawing.Icon)(resources.GetObject("updateNotifyIcon.Icon"))); this.updateNotifyIcon.Text = "Gurtle Update Available"; this.updateNotifyIcon.BalloonTipClicked += new System.EventHandler(this.UpdateNotifyIcon_Click); this.updateNotifyIcon.Click += new System.EventHandler(this.UpdateNotifyIcon_Click); // // includeClosedCheckBox // this.includeClosedCheckBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.includeClosedCheckBox.AutoSize = true; this.includeClosedCheckBox.Location = new System.Drawing.Point(175, 432); this.includeClosedCheckBox.Name = "includeClosedCheckBox"; this.includeClosedCheckBox.Size = new System.Drawing.Size(155, 21); this.includeClosedCheckBox.TabIndex = 8; this.includeClosedCheckBox.Text = "I&nclude closed issues"; this.includeClosedCheckBox.UseVisualStyleBackColor = true; this.includeClosedCheckBox.CheckedChanged += new System.EventHandler(this.RefreshButton_Click); // // searchBox // this.searchBox.FormattingEnabled = true; this.searchBox.Location = new System.Drawing.Point(76, 7); this.searchBox.Name = "searchBox"; this.searchBox.Size = new System.Drawing.Size(233, 25); this.searchBox.TabIndex = 1; this.searchBox.TextChanged += new System.EventHandler(this.SearchBox_TextChanged); // // IssueBrowserDialog // this.AcceptButton = this.okButton; this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 17F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.CancelButton = cancelButton; this.ClientSize = new System.Drawing.Size(849, 487); this.Controls.Add(this.searchBox); this.Controls.Add(this.includeClosedCheckBox); this.Controls.Add(this.searchFieldBox); this.Controls.Add(this.foundLabel); this.Controls.Add(label2); this.Controls.Add(label1); this.Controls.Add(this.refreshButton); this.Controls.Add(statusStrip); this.Controls.Add(this.okButton); this.Controls.Add(cancelButton); this.Controls.Add(this.detailButton); this.Controls.Add(this.issueListView); this.Font = new System.Drawing.Font("Tahoma", 8.25F); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); this.MinimizeBox = false; this.MinimumSize = new System.Drawing.Size(570, 190); this.Name = "IssueBrowserDialog"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "Issues for {0} ({1})"; statusStrip.ResumeLayout(false); statusStrip.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.Windows.Forms.Label lblInputFolder; System.Windows.Forms.Label lblOutputFolder; System.Windows.Forms.Label lblInputFiles; System.Windows.Forms.Label lblSelect; System.Windows.Forms.StatusStrip statusStrip; this.prbProgress = new System.Windows.Forms.ToolStripProgressBar(); this.lblCurrentFile = new System.Windows.Forms.ToolStripStatusLabel(); this.txtInputFolder = new System.Windows.Forms.TextBox(); this.btnInputFolder = new System.Windows.Forms.Button(); this.txtOutputFolder = new System.Windows.Forms.TextBox(); this.btnOutputFolder = new System.Windows.Forms.Button(); this.clbInputFiles = new System.Windows.Forms.CheckedListBox(); this.lnkSelectAll = new System.Windows.Forms.LinkLabel(); this.lnkSelectNone = new System.Windows.Forms.LinkLabel(); this.lnkSelectInvert = new System.Windows.Forms.LinkLabel(); this.btnConvert = new System.Windows.Forms.Button(); this.backgroundWorker = new System.ComponentModel.BackgroundWorker(); this.toolTip = new System.Windows.Forms.ToolTip(this.components); lblInputFolder = new System.Windows.Forms.Label(); lblOutputFolder = new System.Windows.Forms.Label(); lblInputFiles = new System.Windows.Forms.Label(); lblSelect = new System.Windows.Forms.Label(); statusStrip = new System.Windows.Forms.StatusStrip(); statusStrip.SuspendLayout(); this.SuspendLayout(); // // lblInputFolder // lblInputFolder.AutoSize = true; lblInputFolder.Location = new System.Drawing.Point(12, 9); lblInputFolder.Name = "lblInputFolder"; lblInputFolder.Size = new System.Drawing.Size(94, 13); lblInputFolder.TabIndex = 0; lblInputFolder.Text = "Gecko IDL Folder:"; // // lblOutputFolder // lblOutputFolder.AutoSize = true; lblOutputFolder.Location = new System.Drawing.Point(12, 48); lblOutputFolder.Name = "lblOutputFolder"; lblOutputFolder.Size = new System.Drawing.Size(74, 13); lblOutputFolder.TabIndex = 3; lblOutputFolder.Text = "Output Folder:"; // // lblInputFiles // lblInputFiles.AutoSize = true; lblInputFiles.Location = new System.Drawing.Point(12, 87); lblInputFiles.Name = "lblInputFiles"; lblInputFiles.Size = new System.Drawing.Size(58, 13); lblInputFiles.TabIndex = 6; lblInputFiles.Text = "Input Files:"; // // lblSelect // lblSelect.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); lblSelect.AutoSize = true; lblSelect.Location = new System.Drawing.Point(12, 330); lblSelect.Name = "lblSelect"; lblSelect.Size = new System.Drawing.Size(40, 13); lblSelect.TabIndex = 8; lblSelect.Text = "Select:"; // // statusStrip // statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.prbProgress, this.lblCurrentFile}); statusStrip.Location = new System.Drawing.Point(0, 359); statusStrip.Name = "statusStrip"; statusStrip.Size = new System.Drawing.Size(562, 22); statusStrip.TabIndex = 13; // // prbProgress // this.prbProgress.Name = "prbProgress"; this.prbProgress.Size = new System.Drawing.Size(100, 16); // // lblCurrentFile // this.lblCurrentFile.Name = "lblCurrentFile"; this.lblCurrentFile.Size = new System.Drawing.Size(445, 17); this.lblCurrentFile.Spring = true; this.lblCurrentFile.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // txtInputFolder // this.txtInputFolder.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.txtInputFolder.Location = new System.Drawing.Point(12, 25); this.txtInputFolder.Name = "txtInputFolder"; this.txtInputFolder.ReadOnly = true; this.txtInputFolder.Size = new System.Drawing.Size(497, 20); this.txtInputFolder.TabIndex = 1; // // btnInputFolder // this.btnInputFolder.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.btnInputFolder.Location = new System.Drawing.Point(515, 23); this.btnInputFolder.Name = "btnInputFolder"; this.btnInputFolder.Size = new System.Drawing.Size(35, 23); this.btnInputFolder.TabIndex = 2; this.btnInputFolder.Text = "..."; this.btnInputFolder.UseVisualStyleBackColor = true; this.btnInputFolder.Click += new System.EventHandler(this.btnInputFolder_Click); // // txtOutputFolder // this.txtOutputFolder.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.txtOutputFolder.Location = new System.Drawing.Point(12, 64); this.txtOutputFolder.Name = "txtOutputFolder"; this.txtOutputFolder.ReadOnly = true; this.txtOutputFolder.Size = new System.Drawing.Size(497, 20); this.txtOutputFolder.TabIndex = 4; // // btnOutputFolder // this.btnOutputFolder.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.btnOutputFolder.Location = new System.Drawing.Point(515, 62); this.btnOutputFolder.Name = "btnOutputFolder"; this.btnOutputFolder.Size = new System.Drawing.Size(35, 23); this.btnOutputFolder.TabIndex = 5; this.btnOutputFolder.Text = "..."; this.btnOutputFolder.UseVisualStyleBackColor = true; this.btnOutputFolder.Click += new System.EventHandler(this.btnOutputFolder_Click); // // clbInputFiles // this.clbInputFiles.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.clbInputFiles.CheckOnClick = true; this.clbInputFiles.FormattingEnabled = true; this.clbInputFiles.HorizontalScrollbar = true; this.clbInputFiles.IntegralHeight = false; this.clbInputFiles.Location = new System.Drawing.Point(12, 103); this.clbInputFiles.Name = "clbInputFiles"; this.clbInputFiles.Size = new System.Drawing.Size(538, 221); this.clbInputFiles.TabIndex = 7; // // lnkSelectAll // this.lnkSelectAll.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.lnkSelectAll.AutoSize = true; this.lnkSelectAll.Location = new System.Drawing.Point(58, 330); this.lnkSelectAll.Name = "lnkSelectAll"; this.lnkSelectAll.Size = new System.Drawing.Size(17, 13); this.lnkSelectAll.TabIndex = 9; this.lnkSelectAll.TabStop = true; this.lnkSelectAll.Text = "all"; this.lnkSelectAll.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkSelectAll_LinkClicked); // // lnkSelectNone // this.lnkSelectNone.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.lnkSelectNone.AutoSize = true; this.lnkSelectNone.Location = new System.Drawing.Point(81, 330); this.lnkSelectNone.Name = "lnkSelectNone"; this.lnkSelectNone.Size = new System.Drawing.Size(31, 13); this.lnkSelectNone.TabIndex = 10; this.lnkSelectNone.TabStop = true; this.lnkSelectNone.Text = "none"; this.lnkSelectNone.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkSelectNone_LinkClicked); // // lnkSelectInvert // this.lnkSelectInvert.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.lnkSelectInvert.AutoSize = true; this.lnkSelectInvert.Location = new System.Drawing.Point(118, 330); this.lnkSelectInvert.Name = "lnkSelectInvert"; this.lnkSelectInvert.Size = new System.Drawing.Size(33, 13); this.lnkSelectInvert.TabIndex = 11; this.lnkSelectInvert.TabStop = true; this.lnkSelectInvert.Text = "invert"; this.lnkSelectInvert.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkSelectInvert_LinkClicked); // // btnConvert // this.btnConvert.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnConvert.Location = new System.Drawing.Point(475, 330); this.btnConvert.Name = "btnConvert"; this.btnConvert.Size = new System.Drawing.Size(75, 23); this.btnConvert.TabIndex = 12; this.btnConvert.Text = "Convert"; this.btnConvert.UseVisualStyleBackColor = true; this.btnConvert.Click += new System.EventHandler(this.btnConvert_Click); // // backgroundWorker // this.backgroundWorker.WorkerReportsProgress = true; this.backgroundWorker.WorkerSupportsCancellation = true; this.backgroundWorker.DoWork += new System.ComponentModel.DoWorkEventHandler(this.backgroundWorker_DoWork); this.backgroundWorker.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.backgroundWorker_RunWorkerCompleted); this.backgroundWorker.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.backgroundWorker_ProgressChanged); // // toolTip // this.toolTip.IsBalloon = true; // // MainForm // this.AcceptButton = this.btnConvert; this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(562, 381); this.Controls.Add(this.btnConvert); this.Controls.Add(statusStrip); this.Controls.Add(this.lnkSelectInvert); this.Controls.Add(this.lnkSelectNone); this.Controls.Add(this.lnkSelectAll); this.Controls.Add(lblSelect); this.Controls.Add(this.clbInputFiles); this.Controls.Add(lblInputFiles); this.Controls.Add(this.btnOutputFolder); this.Controls.Add(this.txtOutputFolder); this.Controls.Add(lblOutputFolder); this.Controls.Add(this.btnInputFolder); this.Controls.Add(this.txtInputFolder); this.Controls.Add(lblInputFolder); this.Name = "MainForm"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "XPIDL Converter"; statusStrip.ResumeLayout(false); statusStrip.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { System.Windows.Forms.GroupBox groupBox1; System.Windows.Forms.Button btnSend; System.Windows.Forms.MenuStrip menu; System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem; System.Windows.Forms.ToolStripMenuItem menuItemClearScreen; System.Windows.Forms.ToolStripSeparator toolStripSeparator5; System.Windows.Forms.ToolStripMenuItem reloadSpecialControlFileToolStripMenuItem; System.Windows.Forms.ToolStripMenuItem menuItemReloadGemXml; System.Windows.Forms.ToolStripSeparator toolStripSeparator1; System.Windows.Forms.ToolStripMenuItem publishZServiceToolStripMenuItem; System.Windows.Forms.ToolStripMenuItem menuItemExit; System.Windows.Forms.ToolStripMenuItem sECSToolStripMenuItem; System.Windows.Forms.ToolStripMenuItem menuItemSECSMessageList; System.Windows.Forms.ToolStripMenuItem defineLinkToolStripMenuItem; System.Windows.Forms.ToolStripSeparator toolStripSeparator2; System.Windows.Forms.ToolStripSeparator toolStripSeparator3; System.Windows.Forms.ToolStripMenuItem menuItemEnableLinkTest; System.Windows.Forms.ToolStripSeparator toolStripSeparator4; System.Windows.Forms.ToolStripMenuItem configToolStripMenuItem; System.Windows.Forms.ToolStripMenuItem menuItemEapConfig; System.Windows.Forms.ToolStripMenuItem menuItemGemConfig; System.Windows.Forms.StatusStrip statusbar; System.Windows.Forms.SplitContainer splitContainer2; this.txtMsg = new System.Windows.Forms.TextBox(); this.menuItemGemEnable = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemGemDisable = new System.Windows.Forms.ToolStripMenuItem(); this.menuItemSecsTrace = new System.Windows.Forms.ToolStripMenuItem(); this.eqpAddressStatusLabel = new System.Windows.Forms.ToolStripStatusLabel(); this.eapDriverLabel = new System.Windows.Forms.ToolStripStatusLabel(); this.gemStatusLabel = new System.Windows.Forms.ToolStripStatusLabel(); this.listBoxSecsMessages = new System.Windows.Forms.ListBox(); this.splitContainer1 = new System.Windows.Forms.SplitContainer(); this.rtxtScreen = new System.Windows.Forms.RichTextBox(); groupBox1 = new System.Windows.Forms.GroupBox(); btnSend = new System.Windows.Forms.Button(); menu = new System.Windows.Forms.MenuStrip(); fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); menuItemClearScreen = new System.Windows.Forms.ToolStripMenuItem(); toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator(); reloadSpecialControlFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); menuItemReloadGemXml = new System.Windows.Forms.ToolStripMenuItem(); toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); publishZServiceToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); menuItemExit = new System.Windows.Forms.ToolStripMenuItem(); sECSToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); menuItemSECSMessageList = new System.Windows.Forms.ToolStripMenuItem(); defineLinkToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator(); toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator(); menuItemEnableLinkTest = new System.Windows.Forms.ToolStripMenuItem(); toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator(); configToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); menuItemEapConfig = new System.Windows.Forms.ToolStripMenuItem(); menuItemGemConfig = new System.Windows.Forms.ToolStripMenuItem(); statusbar = new System.Windows.Forms.StatusStrip(); splitContainer2 = new System.Windows.Forms.SplitContainer(); groupBox1.SuspendLayout(); menu.SuspendLayout(); statusbar.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(splitContainer2)).BeginInit(); splitContainer2.Panel1.SuspendLayout(); splitContainer2.Panel2.SuspendLayout(); splitContainer2.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit(); this.splitContainer1.Panel1.SuspendLayout(); this.splitContainer1.Panel2.SuspendLayout(); this.splitContainer1.SuspendLayout(); this.SuspendLayout(); // // groupBox1 // groupBox1.Controls.Add(this.txtMsg); groupBox1.Controls.Add(btnSend); groupBox1.Dock = System.Windows.Forms.DockStyle.Fill; groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.Flat; groupBox1.Location = new System.Drawing.Point(0, 0); groupBox1.Name = "groupBox1"; groupBox1.Size = new System.Drawing.Size(96, 207); groupBox1.TabIndex = 5; groupBox1.TabStop = false; groupBox1.Text = "Message"; // // txtMsg // this.txtMsg.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtMsg.Dock = System.Windows.Forms.DockStyle.Fill; this.txtMsg.Location = new System.Drawing.Point(3, 18); this.txtMsg.Multiline = true; this.txtMsg.Name = "txtMsg"; this.txtMsg.ScrollBars = System.Windows.Forms.ScrollBars.Both; this.txtMsg.Size = new System.Drawing.Size(90, 162); this.txtMsg.TabIndex = 2; this.txtMsg.WordWrap = false; // // btnSend // btnSend.Dock = System.Windows.Forms.DockStyle.Bottom; btnSend.Location = new System.Drawing.Point(3, 180); btnSend.Name = "btnSend"; btnSend.Size = new System.Drawing.Size(90, 24); btnSend.TabIndex = 1; btnSend.Text = "Send"; btnSend.Click += new System.EventHandler(this.btnSend_Click); // // menu // menu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { fileToolStripMenuItem, sECSToolStripMenuItem, configToolStripMenuItem}); menu.Location = new System.Drawing.Point(0, 0); menu.Name = "menu"; menu.Size = new System.Drawing.Size(642, 24); menu.TabIndex = 0; menu.Text = "menuStrip1"; // // fileToolStripMenuItem // fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { menuItemClearScreen, toolStripSeparator5, reloadSpecialControlFileToolStripMenuItem, menuItemReloadGemXml, toolStripSeparator1, publishZServiceToolStripMenuItem, menuItemExit}); fileToolStripMenuItem.Name = "fileToolStripMenuItem"; fileToolStripMenuItem.Size = new System.Drawing.Size(38, 20); fileToolStripMenuItem.Text = "File"; // // menuItemClearScreen // menuItemClearScreen.Name = "menuItemClearScreen"; menuItemClearScreen.Size = new System.Drawing.Size(226, 22); menuItemClearScreen.Text = "Clear Screen"; menuItemClearScreen.Click += new System.EventHandler(this.menuItemClearScreen_Click); // // toolStripSeparator5 // toolStripSeparator5.Name = "toolStripSeparator5"; toolStripSeparator5.Size = new System.Drawing.Size(223, 6); // // reloadSpecialControlFileToolStripMenuItem // reloadSpecialControlFileToolStripMenuItem.Name = "reloadSpecialControlFileToolStripMenuItem"; reloadSpecialControlFileToolStripMenuItem.Size = new System.Drawing.Size(226, 22); reloadSpecialControlFileToolStripMenuItem.Text = "Reload Special Control File"; reloadSpecialControlFileToolStripMenuItem.Click += new System.EventHandler(this.reloadSpecialControlFileToolStripMenuItem_Click); // // menuItemReloadGemXml // menuItemReloadGemXml.Name = "menuItemReloadGemXml"; menuItemReloadGemXml.Size = new System.Drawing.Size(226, 22); menuItemReloadGemXml.Text = "Reload Gem.xml"; menuItemReloadGemXml.Click += new System.EventHandler(this.menuItemReloadGemXml_Click); // // toolStripSeparator1 // toolStripSeparator1.Name = "toolStripSeparator1"; toolStripSeparator1.Size = new System.Drawing.Size(223, 6); // // publishZServiceToolStripMenuItem // publishZServiceToolStripMenuItem.Name = "publishZServiceToolStripMenuItem"; publishZServiceToolStripMenuItem.Size = new System.Drawing.Size(226, 22); publishZServiceToolStripMenuItem.Text = "Publish Z Service"; publishZServiceToolStripMenuItem.Click += new System.EventHandler(this.publishZServiceToolStripMenuItem_Click); // // menuItemExit // menuItemExit.Name = "menuItemExit"; menuItemExit.Size = new System.Drawing.Size(226, 22); menuItemExit.Text = "Exit"; menuItemExit.Click += new System.EventHandler(this.menuItemExit_Click); // // sECSToolStripMenuItem // sECSToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { menuItemSECSMessageList, defineLinkToolStripMenuItem, toolStripSeparator2, this.menuItemGemEnable, this.menuItemGemDisable, toolStripSeparator3, menuItemEnableLinkTest, toolStripSeparator4, this.menuItemSecsTrace}); sECSToolStripMenuItem.Name = "sECSToolStripMenuItem"; sECSToolStripMenuItem.Size = new System.Drawing.Size(48, 20); sECSToolStripMenuItem.Text = "SECS"; // // menuItemSECSMessageList // menuItemSECSMessageList.CheckOnClick = true; menuItemSECSMessageList.Name = "menuItemSECSMessageList"; menuItemSECSMessageList.Size = new System.Drawing.Size(178, 22); menuItemSECSMessageList.Text = "SECS Message List"; menuItemSECSMessageList.Click += new System.EventHandler(this.menuItemSecsMessagestList_Click); // // defineLinkToolStripMenuItem // defineLinkToolStripMenuItem.Name = "defineLinkToolStripMenuItem"; defineLinkToolStripMenuItem.Size = new System.Drawing.Size(178, 22); defineLinkToolStripMenuItem.Text = "Define Link"; defineLinkToolStripMenuItem.Click += new System.EventHandler(this.defineLinkToolStripMenuItem_Click); // // toolStripSeparator2 // toolStripSeparator2.Name = "toolStripSeparator2"; toolStripSeparator2.Size = new System.Drawing.Size(175, 6); // // menuItemGemEnable // this.menuItemGemEnable.Name = "menuItemGemEnable"; this.menuItemGemEnable.Size = new System.Drawing.Size(178, 22); this.menuItemGemEnable.Text = "Enable"; this.menuItemGemEnable.Click += new System.EventHandler(this.menuItemGemEnable_Click); // // menuItemGemDisable // this.menuItemGemDisable.Name = "menuItemGemDisable"; this.menuItemGemDisable.Size = new System.Drawing.Size(178, 22); this.menuItemGemDisable.Text = "Disable"; this.menuItemGemDisable.Click += new System.EventHandler(this.menuItemGemDisable_Click); // // toolStripSeparator3 // toolStripSeparator3.Name = "toolStripSeparator3"; toolStripSeparator3.Size = new System.Drawing.Size(175, 6); // // menuItemEnableLinkTest // menuItemEnableLinkTest.CheckOnClick = true; menuItemEnableLinkTest.Name = "menuItemEnableLinkTest"; menuItemEnableLinkTest.Size = new System.Drawing.Size(178, 22); menuItemEnableLinkTest.Text = "Link Test"; menuItemEnableLinkTest.Click += new System.EventHandler(this.enableTraceLogToolStripMenuItem_Click); // // toolStripSeparator4 // toolStripSeparator4.Name = "toolStripSeparator4"; toolStripSeparator4.Size = new System.Drawing.Size(175, 6); // // menuItemSecsTrace // this.menuItemSecsTrace.CheckOnClick = true; this.menuItemSecsTrace.Name = "menuItemSecsTrace"; this.menuItemSecsTrace.Size = new System.Drawing.Size(178, 22); this.menuItemSecsTrace.Text = "Trace On Screen"; this.menuItemSecsTrace.Click += new System.EventHandler(this.menuItemSecsTrace_Click); // // configToolStripMenuItem // configToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { menuItemEapConfig, menuItemGemConfig}); configToolStripMenuItem.Name = "configToolStripMenuItem"; configToolStripMenuItem.Size = new System.Drawing.Size(57, 20); configToolStripMenuItem.Text = "Config"; // // menuItemEapConfig // menuItemEapConfig.Name = "menuItemEapConfig"; menuItemEapConfig.Size = new System.Drawing.Size(102, 22); menuItemEapConfig.Text = "EAP"; menuItemEapConfig.Click += new System.EventHandler(this.menuItemEapConfig_Click); // // menuItemGemConfig // menuItemGemConfig.Name = "menuItemGemConfig"; menuItemGemConfig.Size = new System.Drawing.Size(102, 22); menuItemGemConfig.Text = "GEM"; menuItemGemConfig.Click += new System.EventHandler(this.menuItemGemConfig_Click); // // statusbar // statusbar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.eqpAddressStatusLabel, this.eapDriverLabel, this.gemStatusLabel}); statusbar.Location = new System.Drawing.Point(0, 441); statusbar.Name = "statusbar"; statusbar.Size = new System.Drawing.Size(642, 22); statusbar.TabIndex = 1; // // eqpAddressStatusLabel // this.eqpAddressStatusLabel.BorderStyle = System.Windows.Forms.Border3DStyle.Bump; this.eqpAddressStatusLabel.Name = "eqpAddressStatusLabel"; this.eqpAddressStatusLabel.Size = new System.Drawing.Size(47, 17); this.eqpAddressStatusLabel.Text = "EQP IP:"; // // eapDriverLabel // this.eapDriverLabel.BorderSides = ((System.Windows.Forms.ToolStripStatusLabelBorderSides)(((System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top) | System.Windows.Forms.ToolStripStatusLabelBorderSides.Right))); this.eapDriverLabel.BorderStyle = System.Windows.Forms.Border3DStyle.SunkenOuter; this.eapDriverLabel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.eapDriverLabel.Name = "eapDriverLabel"; this.eapDriverLabel.Size = new System.Drawing.Size(476, 17); this.eapDriverLabel.Spring = true; this.eapDriverLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // gemStatusLabel // this.gemStatusLabel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.gemStatusLabel.Name = "gemStatusLabel"; this.gemStatusLabel.Size = new System.Drawing.Size(104, 17); this.gemStatusLabel.Text = "SECS GEM Status"; // // splitContainer2 // splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill; splitContainer2.Location = new System.Drawing.Point(0, 0); splitContainer2.Name = "splitContainer2"; // // splitContainer2.Panel1 // splitContainer2.Panel1.Controls.Add(this.listBoxSecsMessages); // // splitContainer2.Panel2 // splitContainer2.Panel2.Controls.Add(groupBox1); splitContainer2.Size = new System.Drawing.Size(150, 207); splitContainer2.TabIndex = 0; splitContainer2.TabStop = false; // // listBoxSecsMessages // this.listBoxSecsMessages.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.listBoxSecsMessages.Dock = System.Windows.Forms.DockStyle.Fill; this.listBoxSecsMessages.ItemHeight = 12; this.listBoxSecsMessages.Location = new System.Drawing.Point(0, 0); this.listBoxSecsMessages.Name = "listBoxSecsMessages"; this.listBoxSecsMessages.Size = new System.Drawing.Size(50, 207); this.listBoxSecsMessages.TabIndex = 1; this.listBoxSecsMessages.SelectedIndexChanged += new System.EventHandler(this.listBoxSecsMessageList_SelectedIndexChanged); // // splitContainer1 // this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill; this.splitContainer1.IsSplitterFixed = true; this.splitContainer1.Location = new System.Drawing.Point(0, 24); this.splitContainer1.Name = "splitContainer1"; this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal; // // splitContainer1.Panel1 // this.splitContainer1.Panel1.Controls.Add(splitContainer2); this.splitContainer1.Panel1Collapsed = true; // // splitContainer1.Panel2 // this.splitContainer1.Panel2.Controls.Add(this.rtxtScreen); this.splitContainer1.Size = new System.Drawing.Size(642, 417); this.splitContainer1.SplitterDistance = 207; this.splitContainer1.TabIndex = 10; // // rtxtScreen // this.rtxtScreen.BackColor = System.Drawing.Color.White; this.rtxtScreen.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.rtxtScreen.DetectUrls = false; this.rtxtScreen.Dock = System.Windows.Forms.DockStyle.Fill; this.rtxtScreen.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.rtxtScreen.Location = new System.Drawing.Point(0, 0); this.rtxtScreen.MaxLength = 8192; this.rtxtScreen.Name = "rtxtScreen"; this.rtxtScreen.ReadOnly = true; this.rtxtScreen.ShortcutsEnabled = false; this.rtxtScreen.Size = new System.Drawing.Size(642, 417); this.rtxtScreen.TabIndex = 8; this.rtxtScreen.TabStop = false; this.rtxtScreen.Text = ""; this.rtxtScreen.WordWrap = false; // // HostMainForm // this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None; this.ClientSize = new System.Drawing.Size(642, 463); this.Controls.Add(this.splitContainer1); this.Controls.Add(statusbar); this.Controls.Add(menu); this.MainMenuStrip = menu; this.Name = "HostMainForm"; this.Text = "MainForm"; this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing); groupBox1.ResumeLayout(false); groupBox1.PerformLayout(); menu.ResumeLayout(false); menu.PerformLayout(); statusbar.ResumeLayout(false); statusbar.PerformLayout(); splitContainer2.Panel1.ResumeLayout(false); splitContainer2.Panel2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(splitContainer2)).EndInit(); splitContainer2.ResumeLayout(false); this.splitContainer1.Panel1.ResumeLayout(false); this.splitContainer1.Panel2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit(); this.splitContainer1.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.Windows.Forms.MenuStrip menuStrip; System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(BrowseForm)); System.Windows.Forms.ToolStripContainer toolStripContainer1; System.Windows.Forms.StatusStrip statusStrip1; System.Windows.Forms.SplitContainer splitContainer1; System.Windows.Forms.ToolStrip toolStrip1; System.Windows.Forms.Timer timer; this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.openToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.searchStatusLabel = new System.Windows.Forms.ToolStripStatusLabel(); this.hitsBox = new System.Windows.Forms.ListBox(); this.webBrowser = new System.Windows.Forms.WebBrowser(); this.searchBox = new System.Windows.Forms.ToolStripTextBox(); this.goButton = new System.Windows.Forms.ToolStripButton(); this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator(); this.backButton = new System.Windows.Forms.ToolStripButton(); this.nextButton = new System.Windows.Forms.ToolStripButton(); this.closeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); this.exportStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator(); this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.optionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.setHspellPathToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); menuStrip = new System.Windows.Forms.MenuStrip(); toolStripContainer1 = new System.Windows.Forms.ToolStripContainer(); statusStrip1 = new System.Windows.Forms.StatusStrip(); splitContainer1 = new System.Windows.Forms.SplitContainer(); toolStrip1 = new System.Windows.Forms.ToolStrip(); timer = new System.Windows.Forms.Timer(this.components); menuStrip.SuspendLayout(); toolStripContainer1.BottomToolStripPanel.SuspendLayout(); toolStripContainer1.ContentPanel.SuspendLayout(); toolStripContainer1.TopToolStripPanel.SuspendLayout(); toolStripContainer1.SuspendLayout(); statusStrip1.SuspendLayout(); splitContainer1.Panel1.SuspendLayout(); splitContainer1.Panel2.SuspendLayout(); splitContainer1.SuspendLayout(); toolStrip1.SuspendLayout(); this.SuspendLayout(); // // menuStrip // menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.fileToolStripMenuItem, this.optionsToolStripMenuItem, this.helpToolStripMenuItem}); resources.ApplyResources(menuStrip, "menuStrip"); menuStrip.Name = "menuStrip"; // // fileToolStripMenuItem // this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.openToolStripMenuItem, this.closeToolStripMenuItem, this.toolStripSeparator1, this.exportStripMenuItem, this.toolStripSeparator4, this.exitToolStripMenuItem}); this.fileToolStripMenuItem.Name = "fileToolStripMenuItem"; resources.ApplyResources(this.fileToolStripMenuItem, "fileToolStripMenuItem"); // // openToolStripMenuItem // this.openToolStripMenuItem.Name = "openToolStripMenuItem"; resources.ApplyResources(this.openToolStripMenuItem, "openToolStripMenuItem"); this.openToolStripMenuItem.Click += new System.EventHandler(this.openToolStripMenuItem_Click); // // toolStripContainer1 // // // toolStripContainer1.BottomToolStripPanel // toolStripContainer1.BottomToolStripPanel.Controls.Add(statusStrip1); // // toolStripContainer1.ContentPanel // toolStripContainer1.ContentPanel.Controls.Add(splitContainer1); resources.ApplyResources(toolStripContainer1.ContentPanel, "toolStripContainer1.ContentPanel"); resources.ApplyResources(toolStripContainer1, "toolStripContainer1"); toolStripContainer1.LeftToolStripPanelVisible = false; toolStripContainer1.Name = "toolStripContainer1"; toolStripContainer1.RightToolStripPanelVisible = false; // // toolStripContainer1.TopToolStripPanel // toolStripContainer1.TopToolStripPanel.Controls.Add(toolStrip1); // // statusStrip1 // resources.ApplyResources(statusStrip1, "statusStrip1"); statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.searchStatusLabel}); statusStrip1.Name = "statusStrip1"; // // searchStatusLabel // this.searchStatusLabel.Name = "searchStatusLabel"; resources.ApplyResources(this.searchStatusLabel, "searchStatusLabel"); // // splitContainer1 // splitContainer1.DataBindings.Add(new System.Windows.Forms.Binding("SplitterDistance", global::BzReader.Properties.Settings.Default, "SplitterDistance", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged)); resources.ApplyResources(splitContainer1, "splitContainer1"); splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1; splitContainer1.Name = "splitContainer1"; // // splitContainer1.Panel1 // splitContainer1.Panel1.Controls.Add(this.hitsBox); // // splitContainer1.Panel2 // splitContainer1.Panel2.Controls.Add(this.webBrowser); splitContainer1.SplitterDistance = global::BzReader.Properties.Settings.Default.SplitterDistance; // // hitsBox // resources.ApplyResources(this.hitsBox, "hitsBox"); this.hitsBox.FormattingEnabled = true; this.hitsBox.Name = "hitsBox"; this.hitsBox.SizeChanged += new System.EventHandler(this.hitsBox_SizeChanged); this.hitsBox.SelectedValueChanged += new System.EventHandler(this.hitsBox_SelectedValueChanged); // // webBrowser // this.webBrowser.AllowWebBrowserDrop = false; resources.ApplyResources(this.webBrowser, "webBrowser"); this.webBrowser.MinimumSize = new System.Drawing.Size(20, 20); this.webBrowser.Name = "webBrowser"; this.webBrowser.ScriptErrorsSuppressed = true; // // toolStrip1 // resources.ApplyResources(toolStrip1, "toolStrip1"); toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden; toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.searchBox, this.goButton, this.toolStripSeparator2, this.backButton, this.nextButton}); toolStrip1.Name = "toolStrip1"; toolStrip1.Stretch = true; // // searchBox // resources.ApplyResources(this.searchBox, "searchBox"); this.searchBox.AutoToolTip = true; this.searchBox.Name = "searchBox"; this.searchBox.TextChanged += new System.EventHandler(this.searchBox_TextChanged); // // goButton // this.goButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; resources.ApplyResources(this.goButton, "goButton"); this.goButton.Name = "goButton"; this.goButton.Click += new System.EventHandler(this.goButton_Click); // // toolStripSeparator2 // this.toolStripSeparator2.Name = "toolStripSeparator2"; resources.ApplyResources(this.toolStripSeparator2, "toolStripSeparator2"); // // backButton // this.backButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; resources.ApplyResources(this.backButton, "backButton"); this.backButton.Name = "backButton"; this.backButton.Click += new System.EventHandler(this.backButton_Click); // // nextButton // this.nextButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; resources.ApplyResources(this.nextButton, "nextButton"); this.nextButton.Name = "nextButton"; this.nextButton.Click += new System.EventHandler(this.nextButton_Click); // // closeToolStripMenuItem // this.closeToolStripMenuItem.Name = "closeToolStripMenuItem"; resources.ApplyResources(this.closeToolStripMenuItem, "closeToolStripMenuItem"); // // toolStripSeparator1 // this.toolStripSeparator1.Name = "toolStripSeparator1"; resources.ApplyResources(this.toolStripSeparator1, "toolStripSeparator1"); // // exportStripMenuItem // this.exportStripMenuItem.Name = "exportStripMenuItem"; resources.ApplyResources(this.exportStripMenuItem, "exportStripMenuItem"); this.exportStripMenuItem.Click += new System.EventHandler(this.exportStripMenuItem_Click); // // toolStripSeparator4 // this.toolStripSeparator4.Name = "toolStripSeparator4"; resources.ApplyResources(this.toolStripSeparator4, "toolStripSeparator4"); // // exitToolStripMenuItem // this.exitToolStripMenuItem.Name = "exitToolStripMenuItem"; resources.ApplyResources(this.exitToolStripMenuItem, "exitToolStripMenuItem"); this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click); // // optionsToolStripMenuItem // this.optionsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.setHspellPathToolStripMenuItem}); this.optionsToolStripMenuItem.Name = "optionsToolStripMenuItem"; resources.ApplyResources(this.optionsToolStripMenuItem, "optionsToolStripMenuItem"); // // setHspellPathToolStripMenuItem // this.setHspellPathToolStripMenuItem.Name = "setHspellPathToolStripMenuItem"; resources.ApplyResources(this.setHspellPathToolStripMenuItem, "setHspellPathToolStripMenuItem"); this.setHspellPathToolStripMenuItem.Click += new System.EventHandler(this.setHspellPathToolStripMenuItem_Click); // // helpToolStripMenuItem // this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.aboutToolStripMenuItem}); this.helpToolStripMenuItem.Name = "helpToolStripMenuItem"; resources.ApplyResources(this.helpToolStripMenuItem, "helpToolStripMenuItem"); // // aboutToolStripMenuItem // this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem"; resources.ApplyResources(this.aboutToolStripMenuItem, "aboutToolStripMenuItem"); this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click); // // timer // timer.Enabled = true; timer.Tick += new System.EventHandler(this.timer_Tick); // // BrowseForm // resources.ApplyResources(this, "$this"); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Controls.Add(toolStripContainer1); this.Controls.Add(menuStrip); this.MainMenuStrip = menuStrip; this.Name = "BrowseForm"; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.BrowseForm_FormClosing); menuStrip.ResumeLayout(false); menuStrip.PerformLayout(); toolStripContainer1.BottomToolStripPanel.ResumeLayout(false); toolStripContainer1.BottomToolStripPanel.PerformLayout(); toolStripContainer1.ContentPanel.ResumeLayout(false); toolStripContainer1.TopToolStripPanel.ResumeLayout(false); toolStripContainer1.TopToolStripPanel.PerformLayout(); toolStripContainer1.ResumeLayout(false); toolStripContainer1.PerformLayout(); statusStrip1.ResumeLayout(false); statusStrip1.PerformLayout(); splitContainer1.Panel1.ResumeLayout(false); splitContainer1.Panel2.ResumeLayout(false); splitContainer1.ResumeLayout(false); toolStrip1.ResumeLayout(false); toolStrip1.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// デザイナー サポートに必要なメソッドです。このメソッドの内容を /// コード エディターで変更しないでください。 /// </summary> void InitializeComponent() { System.Windows.Forms.ToolStripMenuItem itmFile; System.Windows.Forms.ToolStripMenuItem itmNew; System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(EditorForm)); System.Windows.Forms.ToolStripMenuItem itmOpen; System.Windows.Forms.ToolStripSeparator sepFile1; System.Windows.Forms.ToolStripMenuItem itmSave; System.Windows.Forms.ToolStripMenuItem itmSaveAs; System.Windows.Forms.ToolStripSeparator sepFile2; System.Windows.Forms.ToolStripMenuItem itmDocumentSettings; System.Windows.Forms.ToolStripSeparator sepFile3; System.Windows.Forms.ToolStripMenuItem itmExit; System.Windows.Forms.ToolStripMenuItem itmEdit; System.Windows.Forms.ToolStripMenuItem itmSelectAll; System.Windows.Forms.ToolStripMenuItem itmInvertSelections; System.Windows.Forms.ToolStripMenuItem itmImage; System.Windows.Forms.ToolStripMenuItem itmAdd; System.Windows.Forms.ToolStripMenuItem itmFromFiles; System.Windows.Forms.ToolStripMenuItem itmFromFolder; System.Windows.Forms.ToolStripSeparator sepImage1; System.Windows.Forms.ToolStripSeparator sepImage2; System.Windows.Forms.ToolStripSeparator sepImage3; System.Windows.Forms.ToolStripMenuItem itmSetViewMode; System.Windows.Forms.ToolStripMenuItem itmInvertViewMode; System.Windows.Forms.ToolStripMenuItem itmBookmark; System.Windows.Forms.ToolStripMenuItem itmTool; System.Windows.Forms.ToolStripMenuItem itmOption; System.Windows.Forms.ToolStripMenuItem itmHelp; System.Windows.Forms.ToolStripMenuItem itmAbout; System.Windows.Forms.StatusStrip stsMain; System.Windows.Forms.ToolStripMenuItem itmView; System.Windows.Forms.ToolStripMenuItem itmContentsWindow; System.Windows.Forms.ToolStripMenuItem itmBookmarksWindow; System.Windows.Forms.ToolStripButton btnNew; System.Windows.Forms.ToolStripButton btnOpen; System.Windows.Forms.ToolStripButton btnSave; WeifenLuo.WinFormsUI.Docking.DockPanelSkin dockPanelSkin1 = new WeifenLuo.WinFormsUI.Docking.DockPanelSkin(); WeifenLuo.WinFormsUI.Docking.AutoHideStripSkin autoHideStripSkin1 = new WeifenLuo.WinFormsUI.Docking.AutoHideStripSkin(); WeifenLuo.WinFormsUI.Docking.DockPanelGradient dockPanelGradient1 = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient(); WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient1 = new WeifenLuo.WinFormsUI.Docking.TabGradient(); WeifenLuo.WinFormsUI.Docking.DockPaneStripSkin dockPaneStripSkin1 = new WeifenLuo.WinFormsUI.Docking.DockPaneStripSkin(); WeifenLuo.WinFormsUI.Docking.DockPaneStripGradient dockPaneStripGradient1 = new WeifenLuo.WinFormsUI.Docking.DockPaneStripGradient(); WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient2 = new WeifenLuo.WinFormsUI.Docking.TabGradient(); WeifenLuo.WinFormsUI.Docking.DockPanelGradient dockPanelGradient2 = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient(); WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient3 = new WeifenLuo.WinFormsUI.Docking.TabGradient(); WeifenLuo.WinFormsUI.Docking.DockPaneStripToolWindowGradient dockPaneStripToolWindowGradient1 = new WeifenLuo.WinFormsUI.Docking.DockPaneStripToolWindowGradient(); WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient4 = new WeifenLuo.WinFormsUI.Docking.TabGradient(); WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient5 = new WeifenLuo.WinFormsUI.Docking.TabGradient(); WeifenLuo.WinFormsUI.Docking.DockPanelGradient dockPanelGradient3 = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient(); WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient6 = new WeifenLuo.WinFormsUI.Docking.TabGradient(); WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient7 = new WeifenLuo.WinFormsUI.Docking.TabGradient(); this.itmOpenImage = new System.Windows.Forms.ToolStripMenuItem(); this.itmExclude = new System.Windows.Forms.ToolStripMenuItem(); this.itmExport = new System.Windows.Forms.ToolStripMenuItem(); this.itmExtract = new System.Windows.Forms.ToolStripMenuItem(); this.itmAddBookmark = new System.Windows.Forms.ToolStripMenuItem(); this.itmDeleteBookmark = new System.Windows.Forms.ToolStripMenuItem(); this.lblStatus = new System.Windows.Forms.ToolStripStatusLabel(); this.prgStatus = new System.Windows.Forms.ToolStripProgressBar(); this.lblImageCount = new System.Windows.Forms.ToolStripStatusLabel(); this.menMain = new System.Windows.Forms.MenuStrip(); this.tsMain = new System.Windows.Forms.ToolStrip(); this.dpMain = new WeifenLuo.WinFormsUI.Docking.DockPanel(); itmFile = new System.Windows.Forms.ToolStripMenuItem(); itmNew = new System.Windows.Forms.ToolStripMenuItem(); itmOpen = new System.Windows.Forms.ToolStripMenuItem(); sepFile1 = new System.Windows.Forms.ToolStripSeparator(); itmSave = new System.Windows.Forms.ToolStripMenuItem(); itmSaveAs = new System.Windows.Forms.ToolStripMenuItem(); sepFile2 = new System.Windows.Forms.ToolStripSeparator(); itmDocumentSettings = new System.Windows.Forms.ToolStripMenuItem(); sepFile3 = new System.Windows.Forms.ToolStripSeparator(); itmExit = new System.Windows.Forms.ToolStripMenuItem(); itmEdit = new System.Windows.Forms.ToolStripMenuItem(); itmSelectAll = new System.Windows.Forms.ToolStripMenuItem(); itmInvertSelections = new System.Windows.Forms.ToolStripMenuItem(); itmImage = new System.Windows.Forms.ToolStripMenuItem(); itmAdd = new System.Windows.Forms.ToolStripMenuItem(); itmFromFiles = new System.Windows.Forms.ToolStripMenuItem(); itmFromFolder = new System.Windows.Forms.ToolStripMenuItem(); sepImage1 = new System.Windows.Forms.ToolStripSeparator(); sepImage2 = new System.Windows.Forms.ToolStripSeparator(); sepImage3 = new System.Windows.Forms.ToolStripSeparator(); itmSetViewMode = new System.Windows.Forms.ToolStripMenuItem(); itmInvertViewMode = new System.Windows.Forms.ToolStripMenuItem(); itmBookmark = new System.Windows.Forms.ToolStripMenuItem(); itmTool = new System.Windows.Forms.ToolStripMenuItem(); itmOption = new System.Windows.Forms.ToolStripMenuItem(); itmHelp = new System.Windows.Forms.ToolStripMenuItem(); itmAbout = new System.Windows.Forms.ToolStripMenuItem(); stsMain = new System.Windows.Forms.StatusStrip(); itmView = new System.Windows.Forms.ToolStripMenuItem(); itmContentsWindow = new System.Windows.Forms.ToolStripMenuItem(); itmBookmarksWindow = new System.Windows.Forms.ToolStripMenuItem(); btnNew = new System.Windows.Forms.ToolStripButton(); btnOpen = new System.Windows.Forms.ToolStripButton(); btnSave = new System.Windows.Forms.ToolStripButton(); stsMain.SuspendLayout(); this.menMain.SuspendLayout(); this.tsMain.SuspendLayout(); this.SuspendLayout(); // // itmFile // itmFile.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { itmNew, itmOpen, sepFile1, itmSave, itmSaveAs, sepFile2, itmDocumentSettings, sepFile3, itmExit}); itmFile.Name = "itmFile"; resources.ApplyResources(itmFile, "itmFile"); // // itmNew // resources.ApplyResources(itmNew, "itmNew"); itmNew.Name = "itmNew"; itmNew.Click += new System.EventHandler(this.itmNew_Click); // // itmOpen // resources.ApplyResources(itmOpen, "itmOpen"); itmOpen.Name = "itmOpen"; itmOpen.Click += new System.EventHandler(this.itmOpen_Click); // // sepFile1 // sepFile1.Name = "sepFile1"; resources.ApplyResources(sepFile1, "sepFile1"); // // itmSave // resources.ApplyResources(itmSave, "itmSave"); itmSave.Name = "itmSave"; itmSave.Click += new System.EventHandler(this.itmSave_Click); // // itmSaveAs // itmSaveAs.Name = "itmSaveAs"; resources.ApplyResources(itmSaveAs, "itmSaveAs"); itmSaveAs.Click += new System.EventHandler(this.itmSaveAs_Click); // // sepFile2 // sepFile2.Name = "sepFile2"; resources.ApplyResources(sepFile2, "sepFile2"); // // itmDocumentSettings // resources.ApplyResources(itmDocumentSettings, "itmDocumentSettings"); itmDocumentSettings.Name = "itmDocumentSettings"; itmDocumentSettings.Click += new System.EventHandler(this.itmDocumentSettings_Click); // // sepFile3 // sepFile3.Name = "sepFile3"; resources.ApplyResources(sepFile3, "sepFile3"); // // itmExit // itmExit.Name = "itmExit"; resources.ApplyResources(itmExit, "itmExit"); itmExit.Click += new System.EventHandler(this.itmExit_Click); // // itmEdit // itmEdit.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { itmSelectAll, itmInvertSelections}); itmEdit.Name = "itmEdit"; resources.ApplyResources(itmEdit, "itmEdit"); // // itmSelectAll // itmSelectAll.Name = "itmSelectAll"; resources.ApplyResources(itmSelectAll, "itmSelectAll"); itmSelectAll.Click += new System.EventHandler(this.itmSelectAll_Click); // // itmInvertSelections // itmInvertSelections.Name = "itmInvertSelections"; resources.ApplyResources(itmInvertSelections, "itmInvertSelections"); itmInvertSelections.Click += new System.EventHandler(this.itmInvertSelections_Click); // // itmImage // itmImage.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { itmAdd, sepImage1, this.itmOpenImage, this.itmExclude, sepImage2, this.itmExport, this.itmExtract, sepImage3, itmSetViewMode, itmInvertViewMode}); itmImage.Name = "itmImage"; resources.ApplyResources(itmImage, "itmImage"); // // itmAdd // itmAdd.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { itmFromFiles, itmFromFolder}); itmAdd.Name = "itmAdd"; resources.ApplyResources(itmAdd, "itmAdd"); // // itmFromFiles // resources.ApplyResources(itmFromFiles, "itmFromFiles"); itmFromFiles.Name = "itmFromFiles"; itmFromFiles.Click += new System.EventHandler(this.itmFromFile_Click); // // itmFromFolder // resources.ApplyResources(itmFromFolder, "itmFromFolder"); itmFromFolder.Name = "itmFromFolder"; itmFromFolder.Click += new System.EventHandler(this.itmFromFolder_Click); // // sepImage1 // sepImage1.Name = "sepImage1"; resources.ApplyResources(sepImage1, "sepImage1"); // // itmOpenImage // this.itmOpenImage.Name = "itmOpenImage"; resources.ApplyResources(this.itmOpenImage, "itmOpenImage"); this.itmOpenImage.Click += new System.EventHandler(this.itmOpenImage_Click); // // itmExclude // resources.ApplyResources(this.itmExclude, "itmExclude"); this.itmExclude.Name = "itmExclude"; this.itmExclude.Click += new System.EventHandler(this.itmDelete_Click); // // sepImage2 // sepImage2.Name = "sepImage2"; resources.ApplyResources(sepImage2, "sepImage2"); // // itmExport // resources.ApplyResources(this.itmExport, "itmExport"); this.itmExport.Name = "itmExport"; this.itmExport.Click += new System.EventHandler(this.itmExport_Click); // // itmExtract // resources.ApplyResources(this.itmExtract, "itmExtract"); this.itmExtract.Name = "itmExtract"; this.itmExtract.Click += new System.EventHandler(this.itmExtract_Click); // // sepImage3 // sepImage3.Name = "sepImage3"; resources.ApplyResources(sepImage3, "sepImage3"); // // itmSetViewMode // resources.ApplyResources(itmSetViewMode, "itmSetViewMode"); itmSetViewMode.Name = "itmSetViewMode"; itmSetViewMode.Click += new System.EventHandler(this.itmSetViewMode_Click); // // itmInvertViewMode // itmInvertViewMode.Name = "itmInvertViewMode"; resources.ApplyResources(itmInvertViewMode, "itmInvertViewMode"); itmInvertViewMode.Click += new System.EventHandler(this.itmInvertViewMode_Click); // // itmBookmark // itmBookmark.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.itmAddBookmark, this.itmDeleteBookmark}); itmBookmark.Name = "itmBookmark"; resources.ApplyResources(itmBookmark, "itmBookmark"); // // itmAddBookmark // resources.ApplyResources(this.itmAddBookmark, "itmAddBookmark"); this.itmAddBookmark.Name = "itmAddBookmark"; this.itmAddBookmark.Click += new System.EventHandler(this.itmAddBookmark_Click); // // itmDeleteBookmark // resources.ApplyResources(this.itmDeleteBookmark, "itmDeleteBookmark"); this.itmDeleteBookmark.Name = "itmDeleteBookmark"; this.itmDeleteBookmark.Click += new System.EventHandler(this.itmDeleteBookmark_Click); // // itmTool // itmTool.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { itmOption}); itmTool.Name = "itmTool"; resources.ApplyResources(itmTool, "itmTool"); // // itmOption // itmOption.Name = "itmOption"; resources.ApplyResources(itmOption, "itmOption"); itmOption.Click += new System.EventHandler(this.itmOption_Click); // // itmHelp // itmHelp.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { itmAbout}); itmHelp.Name = "itmHelp"; resources.ApplyResources(itmHelp, "itmHelp"); // // itmAbout // itmAbout.Name = "itmAbout"; resources.ApplyResources(itmAbout, "itmAbout"); itmAbout.Click += new System.EventHandler(this.itmAbout_Click); // // stsMain // stsMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.lblStatus, this.prgStatus, this.lblImageCount}); resources.ApplyResources(stsMain, "stsMain"); stsMain.Name = "stsMain"; stsMain.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional; // // lblStatus // this.lblStatus.Name = "lblStatus"; resources.ApplyResources(this.lblStatus, "lblStatus"); this.lblStatus.Spring = true; // // prgStatus // this.prgStatus.Name = "prgStatus"; resources.ApplyResources(this.prgStatus, "prgStatus"); // // lblImageCount // resources.ApplyResources(this.lblImageCount, "lblImageCount"); this.lblImageCount.Name = "lblImageCount"; // // itmView // itmView.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { itmContentsWindow, itmBookmarksWindow}); itmView.Name = "itmView"; resources.ApplyResources(itmView, "itmView"); // // itmContentsWindow // resources.ApplyResources(itmContentsWindow, "itmContentsWindow"); itmContentsWindow.Name = "itmContentsWindow"; itmContentsWindow.Click += new System.EventHandler(this.itmContentsWindow_Click); // // itmBookmarksWindow // resources.ApplyResources(itmBookmarksWindow, "itmBookmarksWindow"); itmBookmarksWindow.Name = "itmBookmarksWindow"; itmBookmarksWindow.Click += new System.EventHandler(this.itmBookmarksWindow_Click); // // btnNew // btnNew.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; resources.ApplyResources(btnNew, "btnNew"); btnNew.Name = "btnNew"; btnNew.Click += new System.EventHandler(this.itmNew_Click); // // btnOpen // btnOpen.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; resources.ApplyResources(btnOpen, "btnOpen"); btnOpen.Name = "btnOpen"; btnOpen.Click += new System.EventHandler(this.itmOpen_Click); // // btnSave // btnSave.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; resources.ApplyResources(btnSave, "btnSave"); btnSave.Name = "btnSave"; btnSave.Click += new System.EventHandler(this.itmSave_Click); // // menMain // this.menMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { itmFile, itmEdit, itmView, itmImage, itmBookmark, itmTool, itmHelp}); resources.ApplyResources(this.menMain, "menMain"); this.menMain.Name = "menMain"; this.menMain.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional; // // tsMain // this.tsMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { btnNew, btnOpen, btnSave}); resources.ApplyResources(this.tsMain, "tsMain"); this.tsMain.Name = "tsMain"; this.tsMain.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional; // // dpMain // resources.ApplyResources(this.dpMain, "dpMain"); this.dpMain.DockBackColor = System.Drawing.SystemColors.Control; this.dpMain.DocumentStyle = WeifenLuo.WinFormsUI.Docking.DocumentStyle.DockingWindow; this.dpMain.Name = "dpMain"; dockPanelGradient1.EndColor = System.Drawing.SystemColors.ControlLight; dockPanelGradient1.StartColor = System.Drawing.SystemColors.ControlLight; autoHideStripSkin1.DockStripGradient = dockPanelGradient1; tabGradient1.EndColor = System.Drawing.SystemColors.Control; tabGradient1.StartColor = System.Drawing.SystemColors.Control; tabGradient1.TextColor = System.Drawing.SystemColors.ControlDarkDark; autoHideStripSkin1.TabGradient = tabGradient1; autoHideStripSkin1.TextFont = new System.Drawing.Font("メイリオ", 9F); dockPanelSkin1.AutoHideStripSkin = autoHideStripSkin1; tabGradient2.EndColor = System.Drawing.SystemColors.ControlLightLight; tabGradient2.StartColor = System.Drawing.SystemColors.ControlLightLight; tabGradient2.TextColor = System.Drawing.SystemColors.ControlText; dockPaneStripGradient1.ActiveTabGradient = tabGradient2; dockPanelGradient2.EndColor = System.Drawing.SystemColors.Control; dockPanelGradient2.StartColor = System.Drawing.SystemColors.Control; dockPaneStripGradient1.DockStripGradient = dockPanelGradient2; tabGradient3.EndColor = System.Drawing.SystemColors.ControlLight; tabGradient3.StartColor = System.Drawing.SystemColors.ControlLight; tabGradient3.TextColor = System.Drawing.SystemColors.ControlText; dockPaneStripGradient1.InactiveTabGradient = tabGradient3; dockPaneStripSkin1.DocumentGradient = dockPaneStripGradient1; dockPaneStripSkin1.TextFont = new System.Drawing.Font("メイリオ", 9F); tabGradient4.EndColor = System.Drawing.SystemColors.ActiveCaption; tabGradient4.LinearGradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical; tabGradient4.StartColor = System.Drawing.SystemColors.GradientActiveCaption; tabGradient4.TextColor = System.Drawing.SystemColors.ActiveCaptionText; dockPaneStripToolWindowGradient1.ActiveCaptionGradient = tabGradient4; tabGradient5.EndColor = System.Drawing.SystemColors.Control; tabGradient5.StartColor = System.Drawing.SystemColors.Control; tabGradient5.TextColor = System.Drawing.SystemColors.ControlText; dockPaneStripToolWindowGradient1.ActiveTabGradient = tabGradient5; dockPanelGradient3.EndColor = System.Drawing.SystemColors.ControlLight; dockPanelGradient3.StartColor = System.Drawing.SystemColors.ControlLight; dockPaneStripToolWindowGradient1.DockStripGradient = dockPanelGradient3; tabGradient6.EndColor = System.Drawing.SystemColors.InactiveCaption; tabGradient6.LinearGradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical; tabGradient6.StartColor = System.Drawing.SystemColors.GradientInactiveCaption; tabGradient6.TextColor = System.Drawing.SystemColors.InactiveCaptionText; dockPaneStripToolWindowGradient1.InactiveCaptionGradient = tabGradient6; tabGradient7.EndColor = System.Drawing.Color.Transparent; tabGradient7.StartColor = System.Drawing.Color.Transparent; tabGradient7.TextColor = System.Drawing.SystemColors.ControlDarkDark; dockPaneStripToolWindowGradient1.InactiveTabGradient = tabGradient7; dockPaneStripSkin1.ToolWindowGradient = dockPaneStripToolWindowGradient1; dockPanelSkin1.DockPaneStripSkin = dockPaneStripSkin1; this.dpMain.Skin = dockPanelSkin1; // // EditorForm // this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None; resources.ApplyResources(this, "$this"); this.Controls.Add(this.dpMain); this.Controls.Add(stsMain); this.Controls.Add(this.tsMain); this.Controls.Add(this.menMain); this.MainMenuStrip = this.menMain; this.Name = "EditorForm"; stsMain.ResumeLayout(false); stsMain.PerformLayout(); this.menMain.ResumeLayout(false); this.menMain.PerformLayout(); this.tsMain.ResumeLayout(false); this.tsMain.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.Windows.Forms.ToolStripSeparator toolStripSeparator; System.Windows.Forms.ToolStripSeparator toolStripSeparator1; System.Windows.Forms.ToolStripSeparator toolStripSeparator4; System.Windows.Forms.ToolStripSeparator toolStripMenuItem1; System.Windows.Forms.ToolStripMenuItem toolStripMenuItem3; System.Windows.Forms.ToolStripMenuItem toolStripMenuItem4; System.Windows.Forms.ToolStripMenuItem toolStripMenuItem5; System.Windows.Forms.ToolStripMenuItem toolStripMenuItem6; System.Windows.Forms.ToolStripMenuItem toolStripMenuItem7; System.Windows.Forms.ToolStripMenuItem toolStripMenuItem8; System.Windows.Forms.ToolStripMenuItem toolStripMenuItem9; System.Windows.Forms.ToolStripMenuItem toolStripMenuItem10; System.Windows.Forms.ToolStripMenuItem toolStripMenuItem11; System.Windows.Forms.ToolStripMenuItem toolStripMenuItem12; System.Windows.Forms.ToolStripMenuItem toolStripMenuItem13; System.Windows.Forms.ToolStripMenuItem toolStripMenuItem14; System.Windows.Forms.ToolStripMenuItem toolStripMenuItem15; System.Windows.Forms.ToolStripMenuItem toolStripMenuItem16; System.Windows.Forms.ToolStripSeparator toolStripSeparator3; System.Windows.Forms.ToolStripMenuItem resetToolStripMenuItem; System.Windows.Forms.ToolStripMenuItem optionsMenuItem; System.Windows.Forms.ToolStripMenuItem aboutMenuItem; System.Windows.Forms.StatusStrip statusStrip; System.Windows.Forms.ToolStripButton openToolStripButton; System.Windows.Forms.ToolStripButton saveToolStripButton; System.Windows.Forms.ToolStripSeparator toolStripSeparator6; System.Windows.Forms.ToolStripSeparator toolStripSeparator7; System.Windows.Forms.ToolStripButton helpToolStripButton; System.Windows.Forms.ToolStripComboBox toolStripComboBox1; System.Windows.Forms.ToolStripTextBox toolStripTextBox1; System.Windows.Forms.ToolStripSeparator toolStripSeparator2; System.Windows.Forms.ToolStripMenuItem toolStripMenuItem2; System.Windows.Forms.ToolStripMenuItem clearMenuItem; System.Windows.Forms.ToolStripMenuItem resetMenuItem; System.Windows.Forms.ToolStripLabel searchLabel; System.Windows.Forms.ToolStripMenuItem findMenuItem; System.Windows.Forms.ToolStripSeparator toolStripSeparator8; System.Windows.Forms.ToolStripSeparator toolStripSeparator9; System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm)); this.statusLabel = new System.Windows.Forms.ToolStripStatusLabel(); this.clearMainMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.previewToolStrip = new System.Windows.Forms.ToolStrip(); this.toolStripSplitButton = new System.Windows.Forms.ToolStripSplitButton(); this.toolStripCheckPreviewButton = new System.Windows.Forms.ToolStripButton(); this.searchToolStrip = new System.Windows.Forms.ToolStrip(); this.searchTextBox = new ToolStripCustomizer.ToolStripSpringTextBox(); this.cancelButton = new System.Windows.Forms.ToolStripButton(); this.mainToolStrip = new System.Windows.Forms.ToolStrip(); this.newToolStripButton = new System.Windows.Forms.ToolStripSplitButton(); this.copyToolStripButton = new System.Windows.Forms.ToolStripButton(); this.pasteToolStripButton = new System.Windows.Forms.ToolStripButton(); this.colorToolStripButton = new System.Windows.Forms.ToolStripButton(); this.menuStrip = new System.Windows.Forms.MenuStrip(); this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.newMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.newFromPresetMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.openMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.saveMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.exitMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.copyMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.pasteMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator(); this.selectAllMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.roundedEdgesMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.toolsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.colorAdjustmentToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripSeparator10 = new System.Windows.Forms.ToolStripSeparator(); this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripContainer = new System.Windows.Forms.ToolStripContainer(); this.gridView = new System.Windows.Forms.DataGridView(); this.ColorTableItemColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.ColorValueColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.ColorPreviewColumn = new System.Windows.Forms.DataGridViewImageColumn(); this.EditColorColumn = new System.Windows.Forms.DataGridViewButtonColumn(); this.rowContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components); this.copyPopupItem = new System.Windows.Forms.ToolStripMenuItem(); this.pastePopupItem = new System.Windows.Forms.ToolStripMenuItem(); this.selectAllPopupItem = new System.Windows.Forms.ToolStripMenuItem(); this.fromKnownColorMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.alphaMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.screenColorMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.colorDialog = new System.Windows.Forms.ColorDialog(); this.openFileDialog = new System.Windows.Forms.OpenFileDialog(); this.saveFileDialog = new System.Windows.Forms.SaveFileDialog(); this.searchWorker = new System.ComponentModel.BackgroundWorker(); this.miExportColors = new System.Windows.Forms.ToolStripMenuItem(); toolStripSeparator = new System.Windows.Forms.ToolStripSeparator(); toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator(); toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator(); toolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem(); toolStripMenuItem4 = new System.Windows.Forms.ToolStripMenuItem(); toolStripMenuItem5 = new System.Windows.Forms.ToolStripMenuItem(); toolStripMenuItem6 = new System.Windows.Forms.ToolStripMenuItem(); toolStripMenuItem7 = new System.Windows.Forms.ToolStripMenuItem(); toolStripMenuItem8 = new System.Windows.Forms.ToolStripMenuItem(); toolStripMenuItem9 = new System.Windows.Forms.ToolStripMenuItem(); toolStripMenuItem10 = new System.Windows.Forms.ToolStripMenuItem(); toolStripMenuItem11 = new System.Windows.Forms.ToolStripMenuItem(); toolStripMenuItem12 = new System.Windows.Forms.ToolStripMenuItem(); toolStripMenuItem13 = new System.Windows.Forms.ToolStripMenuItem(); toolStripMenuItem14 = new System.Windows.Forms.ToolStripMenuItem(); toolStripMenuItem15 = new System.Windows.Forms.ToolStripMenuItem(); toolStripMenuItem16 = new System.Windows.Forms.ToolStripMenuItem(); toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator(); resetToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); optionsMenuItem = new System.Windows.Forms.ToolStripMenuItem(); aboutMenuItem = new System.Windows.Forms.ToolStripMenuItem(); statusStrip = new System.Windows.Forms.StatusStrip(); openToolStripButton = new System.Windows.Forms.ToolStripButton(); saveToolStripButton = new System.Windows.Forms.ToolStripButton(); toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator(); toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator(); helpToolStripButton = new System.Windows.Forms.ToolStripButton(); toolStripComboBox1 = new System.Windows.Forms.ToolStripComboBox(); toolStripTextBox1 = new System.Windows.Forms.ToolStripTextBox(); toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator(); toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem(); clearMenuItem = new System.Windows.Forms.ToolStripMenuItem(); resetMenuItem = new System.Windows.Forms.ToolStripMenuItem(); searchLabel = new System.Windows.Forms.ToolStripLabel(); findMenuItem = new System.Windows.Forms.ToolStripMenuItem(); toolStripSeparator8 = new System.Windows.Forms.ToolStripSeparator(); toolStripSeparator9 = new System.Windows.Forms.ToolStripSeparator(); statusStrip.SuspendLayout(); this.previewToolStrip.SuspendLayout(); this.searchToolStrip.SuspendLayout(); this.mainToolStrip.SuspendLayout(); this.menuStrip.SuspendLayout(); this.toolStripContainer.BottomToolStripPanel.SuspendLayout(); this.toolStripContainer.ContentPanel.SuspendLayout(); this.toolStripContainer.TopToolStripPanel.SuspendLayout(); this.toolStripContainer.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.gridView)).BeginInit(); this.rowContextMenu.SuspendLayout(); this.SuspendLayout(); // // toolStripSeparator // toolStripSeparator.Name = "toolStripSeparator"; toolStripSeparator.Size = new System.Drawing.Size(161, 6); // // toolStripSeparator1 // toolStripSeparator1.Name = "toolStripSeparator1"; toolStripSeparator1.Size = new System.Drawing.Size(161, 6); // // toolStripSeparator4 // toolStripSeparator4.Name = "toolStripSeparator4"; toolStripSeparator4.Size = new System.Drawing.Size(161, 6); // // toolStripMenuItem1 // toolStripMenuItem1.Name = "toolStripMenuItem1"; toolStripMenuItem1.Size = new System.Drawing.Size(161, 6); // // toolStripMenuItem3 // toolStripMenuItem3.Name = "toolStripMenuItem3"; toolStripMenuItem3.Size = new System.Drawing.Size(92, 22); toolStripMenuItem3.Text = "0"; toolStripMenuItem3.Click += new System.EventHandler(this.SetAlphaMenuItemClick); // // toolStripMenuItem4 // toolStripMenuItem4.Name = "toolStripMenuItem4"; toolStripMenuItem4.Size = new System.Drawing.Size(92, 22); toolStripMenuItem4.Text = "20"; toolStripMenuItem4.Click += new System.EventHandler(this.SetAlphaMenuItemClick); // // toolStripMenuItem5 // toolStripMenuItem5.Name = "toolStripMenuItem5"; toolStripMenuItem5.Size = new System.Drawing.Size(92, 22); toolStripMenuItem5.Text = "40"; toolStripMenuItem5.Click += new System.EventHandler(this.SetAlphaMenuItemClick); // // toolStripMenuItem6 // toolStripMenuItem6.Name = "toolStripMenuItem6"; toolStripMenuItem6.Size = new System.Drawing.Size(92, 22); toolStripMenuItem6.Text = "60"; toolStripMenuItem6.Click += new System.EventHandler(this.SetAlphaMenuItemClick); // // toolStripMenuItem7 // toolStripMenuItem7.Name = "toolStripMenuItem7"; toolStripMenuItem7.Size = new System.Drawing.Size(92, 22); toolStripMenuItem7.Text = "80"; toolStripMenuItem7.Click += new System.EventHandler(this.SetAlphaMenuItemClick); // // toolStripMenuItem8 // toolStripMenuItem8.Name = "toolStripMenuItem8"; toolStripMenuItem8.Size = new System.Drawing.Size(92, 22); toolStripMenuItem8.Text = "100"; toolStripMenuItem8.Click += new System.EventHandler(this.SetAlphaMenuItemClick); // // toolStripMenuItem9 // toolStripMenuItem9.Name = "toolStripMenuItem9"; toolStripMenuItem9.Size = new System.Drawing.Size(92, 22); toolStripMenuItem9.Text = "120"; toolStripMenuItem9.Click += new System.EventHandler(this.SetAlphaMenuItemClick); // // toolStripMenuItem10 // toolStripMenuItem10.Name = "toolStripMenuItem10"; toolStripMenuItem10.Size = new System.Drawing.Size(92, 22); toolStripMenuItem10.Text = "140"; toolStripMenuItem10.Click += new System.EventHandler(this.SetAlphaMenuItemClick); // // toolStripMenuItem11 // toolStripMenuItem11.Name = "toolStripMenuItem11"; toolStripMenuItem11.Size = new System.Drawing.Size(92, 22); toolStripMenuItem11.Text = "160"; toolStripMenuItem11.Click += new System.EventHandler(this.SetAlphaMenuItemClick); // // toolStripMenuItem12 // toolStripMenuItem12.Name = "toolStripMenuItem12"; toolStripMenuItem12.Size = new System.Drawing.Size(92, 22); toolStripMenuItem12.Text = "180"; toolStripMenuItem12.Click += new System.EventHandler(this.SetAlphaMenuItemClick); // // toolStripMenuItem13 // toolStripMenuItem13.Name = "toolStripMenuItem13"; toolStripMenuItem13.Size = new System.Drawing.Size(92, 22); toolStripMenuItem13.Text = "200"; toolStripMenuItem13.Click += new System.EventHandler(this.SetAlphaMenuItemClick); // // toolStripMenuItem14 // toolStripMenuItem14.Name = "toolStripMenuItem14"; toolStripMenuItem14.Size = new System.Drawing.Size(92, 22); toolStripMenuItem14.Text = "220"; toolStripMenuItem14.Click += new System.EventHandler(this.SetAlphaMenuItemClick); // // toolStripMenuItem15 // toolStripMenuItem15.Name = "toolStripMenuItem15"; toolStripMenuItem15.Size = new System.Drawing.Size(92, 22); toolStripMenuItem15.Text = "240"; toolStripMenuItem15.Click += new System.EventHandler(this.SetAlphaMenuItemClick); // // toolStripMenuItem16 // toolStripMenuItem16.Name = "toolStripMenuItem16"; toolStripMenuItem16.Size = new System.Drawing.Size(92, 22); toolStripMenuItem16.Text = "255"; toolStripMenuItem16.Click += new System.EventHandler(this.SetAlphaMenuItemClick); // // toolStripSeparator3 // toolStripSeparator3.Name = "toolStripSeparator3"; toolStripSeparator3.Size = new System.Drawing.Size(161, 6); // // resetToolStripMenuItem // resetToolStripMenuItem.Name = "resetToolStripMenuItem"; resetToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.R))); resetToolStripMenuItem.Size = new System.Drawing.Size(164, 22); resetToolStripMenuItem.Text = "&Reset"; resetToolStripMenuItem.Click += new System.EventHandler(this.ResetMenuItemClick); // // optionsMenuItem // optionsMenuItem.Name = "optionsMenuItem"; optionsMenuItem.Size = new System.Drawing.Size(177, 22); optionsMenuItem.Text = "&Options..."; optionsMenuItem.Click += new System.EventHandler(this.OptionsMenuItemClick); // // aboutMenuItem // aboutMenuItem.Name = "aboutMenuItem"; aboutMenuItem.Size = new System.Drawing.Size(116, 22); aboutMenuItem.Text = "&About..."; aboutMenuItem.Click += new System.EventHandler(this.AboutMenuItemClick); // // statusStrip // statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.statusLabel}); statusStrip.Location = new System.Drawing.Point(0, 490); statusStrip.Name = "statusStrip"; statusStrip.RenderMode = System.Windows.Forms.ToolStripRenderMode.ManagerRenderMode; statusStrip.Size = new System.Drawing.Size(597, 22); statusStrip.TabIndex = 1; // // statusLabel // this.statusLabel.Name = "statusLabel"; this.statusLabel.Size = new System.Drawing.Size(0, 17); // // openToolStripButton // openToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; openToolStripButton.Image = global::ToolStripCustomizer.Properties.Resources._58; openToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta; openToolStripButton.Name = "openToolStripButton"; openToolStripButton.Size = new System.Drawing.Size(23, 22); openToolStripButton.Text = "Open"; openToolStripButton.Click += new System.EventHandler(this.OpenMenuItemClick); // // saveToolStripButton // saveToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; saveToolStripButton.Image = global::ToolStripCustomizer.Properties.Resources._71; saveToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta; saveToolStripButton.Name = "saveToolStripButton"; saveToolStripButton.Size = new System.Drawing.Size(23, 22); saveToolStripButton.Text = "Save As"; saveToolStripButton.Click += new System.EventHandler(this.SaveMenuItemClick); // // toolStripSeparator6 // toolStripSeparator6.Name = "toolStripSeparator6"; toolStripSeparator6.Size = new System.Drawing.Size(6, 25); // // toolStripSeparator7 // toolStripSeparator7.Name = "toolStripSeparator7"; toolStripSeparator7.Size = new System.Drawing.Size(6, 25); // // helpToolStripButton // helpToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; helpToolStripButton.Image = global::ToolStripCustomizer.Properties.Resources._151; helpToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta; helpToolStripButton.Name = "helpToolStripButton"; helpToolStripButton.Size = new System.Drawing.Size(23, 22); helpToolStripButton.Text = "About"; helpToolStripButton.Click += new System.EventHandler(this.AboutMenuItemClick); // // toolStripComboBox1 // toolStripComboBox1.Name = "toolStripComboBox1"; toolStripComboBox1.Size = new System.Drawing.Size(121, 23); toolStripComboBox1.Text = "Combo Box"; // // toolStripTextBox1 // toolStripTextBox1.Name = "toolStripTextBox1"; toolStripTextBox1.Size = new System.Drawing.Size(100, 23); toolStripTextBox1.Text = "Text Box"; // // toolStripSeparator2 // toolStripSeparator2.Name = "toolStripSeparator2"; toolStripSeparator2.Size = new System.Drawing.Size(178, 6); // // toolStripMenuItem2 // toolStripMenuItem2.Checked = true; toolStripMenuItem2.CheckState = System.Windows.Forms.CheckState.Checked; toolStripMenuItem2.Name = "toolStripMenuItem2"; toolStripMenuItem2.Size = new System.Drawing.Size(181, 22); toolStripMenuItem2.Text = "Checked Item"; // // clearMenuItem // clearMenuItem.Name = "clearMenuItem"; clearMenuItem.ShortcutKeys = System.Windows.Forms.Keys.Delete; clearMenuItem.Size = new System.Drawing.Size(164, 22); clearMenuItem.Text = "C&lear"; clearMenuItem.Click += new System.EventHandler(this.ClearMenuItemClick); // // resetMenuItem // resetMenuItem.Name = "resetMenuItem"; resetMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.R))); resetMenuItem.Size = new System.Drawing.Size(164, 22); resetMenuItem.Text = "&Reset"; resetMenuItem.Click += new System.EventHandler(this.ResetMenuItemClick); // // searchLabel // searchLabel.Name = "searchLabel"; searchLabel.Size = new System.Drawing.Size(45, 24); searchLabel.Text = "Search:"; // // findMenuItem // findMenuItem.Name = "findMenuItem"; findMenuItem.ShortcutKeys = System.Windows.Forms.Keys.F3; findMenuItem.Size = new System.Drawing.Size(164, 22); findMenuItem.Text = "&Find"; findMenuItem.Click += new System.EventHandler(this.FindMenuItemClick); // // toolStripSeparator8 // toolStripSeparator8.Name = "toolStripSeparator8"; toolStripSeparator8.Size = new System.Drawing.Size(161, 6); // // toolStripSeparator9 // toolStripSeparator9.Name = "toolStripSeparator9"; toolStripSeparator9.Size = new System.Drawing.Size(6, 25); // // clearMainMenuItem // this.clearMainMenuItem.Enabled = false; this.clearMainMenuItem.Name = "clearMainMenuItem"; this.clearMainMenuItem.ShortcutKeys = System.Windows.Forms.Keys.Delete; this.clearMainMenuItem.Size = new System.Drawing.Size(164, 22); this.clearMainMenuItem.Text = "&Clear"; this.clearMainMenuItem.Click += new System.EventHandler(this.ClearMenuItemClick); // // previewToolStrip // this.previewToolStrip.Dock = System.Windows.Forms.DockStyle.None; this.previewToolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripSplitButton, this.toolStripCheckPreviewButton}); this.previewToolStrip.Location = new System.Drawing.Point(3, 0); this.previewToolStrip.Name = "previewToolStrip"; this.previewToolStrip.Size = new System.Drawing.Size(183, 25); this.previewToolStrip.TabIndex = 1; this.previewToolStrip.Text = "Preview"; // // toolStripSplitButton // this.toolStripSplitButton.AutoToolTip = false; this.toolStripSplitButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { toolStripComboBox1, toolStripTextBox1, toolStripSeparator2, toolStripMenuItem2}); this.toolStripSplitButton.ImageTransparentColor = System.Drawing.Color.Magenta; this.toolStripSplitButton.Name = "toolStripSplitButton"; this.toolStripSplitButton.Size = new System.Drawing.Size(64, 22); this.toolStripSplitButton.Text = "Preview"; this.toolStripSplitButton.ButtonClick += new System.EventHandler(this.ToolStripSplitButtonButtonClick); // // toolStripCheckPreviewButton // this.toolStripCheckPreviewButton.AutoToolTip = false; this.toolStripCheckPreviewButton.Checked = true; this.toolStripCheckPreviewButton.CheckOnClick = true; this.toolStripCheckPreviewButton.CheckState = System.Windows.Forms.CheckState.Checked; this.toolStripCheckPreviewButton.ImageTransparentColor = System.Drawing.Color.Magenta; this.toolStripCheckPreviewButton.Name = "toolStripCheckPreviewButton"; this.toolStripCheckPreviewButton.Size = new System.Drawing.Size(107, 22); this.toolStripCheckPreviewButton.Text = "Preview (checked)"; this.toolStripCheckPreviewButton.CheckedChanged += new System.EventHandler(this.ToolStripCheckPreviewButtonCheckedChanged); // // searchToolStrip // this.searchToolStrip.Dock = System.Windows.Forms.DockStyle.None; this.searchToolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { searchLabel, this.searchTextBox, this.cancelButton}); this.searchToolStrip.Location = new System.Drawing.Point(0, 0); this.searchToolStrip.Name = "searchToolStrip"; this.searchToolStrip.Size = new System.Drawing.Size(597, 27); this.searchToolStrip.Stretch = true; this.searchToolStrip.TabIndex = 3; this.searchToolStrip.Text = "Search"; // // searchTextBox // this.searchTextBox.Margin = new System.Windows.Forms.Padding(1, 2, 1, 2); this.searchTextBox.Name = "searchTextBox"; this.searchTextBox.Size = new System.Drawing.Size(486, 23); this.searchTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.SearchTextBoxKeyDown); this.searchTextBox.TextChanged += new System.EventHandler(this.SearchTextBoxTextChanged); // // cancelButton // this.cancelButton.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; this.cancelButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.cancelButton.Enabled = false; this.cancelButton.ImageTransparentColor = System.Drawing.Color.Magenta; this.cancelButton.Name = "cancelButton"; this.cancelButton.Size = new System.Drawing.Size(23, 24); this.cancelButton.Text = "Clear Search"; this.cancelButton.Click += new System.EventHandler(this.CancelButtonClick); // // mainToolStrip // this.mainToolStrip.Dock = System.Windows.Forms.DockStyle.None; this.mainToolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.newToolStripButton, openToolStripButton, saveToolStripButton, toolStripSeparator6, this.copyToolStripButton, this.pasteToolStripButton, toolStripSeparator7, this.colorToolStripButton, toolStripSeparator9, helpToolStripButton}); this.mainToolStrip.Location = new System.Drawing.Point(3, 25); this.mainToolStrip.Name = "mainToolStrip"; this.mainToolStrip.Size = new System.Drawing.Size(215, 25); this.mainToolStrip.TabIndex = 0; this.mainToolStrip.Text = "Standard"; // // newToolStripButton // this.newToolStripButton.AutoToolTip = false; this.newToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta; this.newToolStripButton.Name = "newToolStripButton"; this.newToolStripButton.Size = new System.Drawing.Size(47, 22); this.newToolStripButton.Text = "New"; this.newToolStripButton.ButtonClick += new System.EventHandler(this.NewMenuItemClick); // // copyToolStripButton // this.copyToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.copyToolStripButton.Image = global::ToolStripCustomizer.Properties.Resources._2; this.copyToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta; this.copyToolStripButton.Name = "copyToolStripButton"; this.copyToolStripButton.Size = new System.Drawing.Size(23, 22); this.copyToolStripButton.Text = "Copy"; this.copyToolStripButton.Click += new System.EventHandler(this.CopyMenuItemClick); // // pasteToolStripButton // this.pasteToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.pasteToolStripButton.Image = global::ToolStripCustomizer.Properties.Resources._4; this.pasteToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta; this.pasteToolStripButton.Name = "pasteToolStripButton"; this.pasteToolStripButton.Size = new System.Drawing.Size(23, 22); this.pasteToolStripButton.Text = "Paste"; this.pasteToolStripButton.Click += new System.EventHandler(this.PasteMenuItemClick); // // colorToolStripButton // this.colorToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.colorToolStripButton.Image = global::ToolStripCustomizer.Properties.Resources._149; this.colorToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta; this.colorToolStripButton.Name = "colorToolStripButton"; this.colorToolStripButton.Size = new System.Drawing.Size(23, 22); this.colorToolStripButton.Text = "Color Adjustment"; this.colorToolStripButton.Click += new System.EventHandler(this.ColorAdjustmentMenuItemClick); // // menuStrip // this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.fileToolStripMenuItem, this.editToolStripMenuItem, this.viewToolStripMenuItem, this.toolsToolStripMenuItem, this.helpToolStripMenuItem}); this.menuStrip.Location = new System.Drawing.Point(0, 0); this.menuStrip.Name = "menuStrip"; this.menuStrip.Size = new System.Drawing.Size(597, 24); this.menuStrip.TabIndex = 0; this.menuStrip.Text = "Main Menu"; // // fileToolStripMenuItem // this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.newMenuItem, this.newFromPresetMenuItem, this.openMenuItem, toolStripSeparator, this.saveMenuItem, this.miExportColors, toolStripSeparator1, this.exitMenuItem}); this.fileToolStripMenuItem.Name = "fileToolStripMenuItem"; this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20); this.fileToolStripMenuItem.Text = "&File"; // // newMenuItem // this.newMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta; this.newMenuItem.Name = "newMenuItem"; this.newMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N))); this.newMenuItem.Size = new System.Drawing.Size(164, 22); this.newMenuItem.Text = "&New"; this.newMenuItem.Click += new System.EventHandler(this.NewMenuItemClick); // // newFromPresetMenuItem // this.newFromPresetMenuItem.Name = "newFromPresetMenuItem"; this.newFromPresetMenuItem.Size = new System.Drawing.Size(164, 22); this.newFromPresetMenuItem.Text = "New From Preset"; // // openMenuItem // this.openMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta; this.openMenuItem.Name = "openMenuItem"; this.openMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O))); this.openMenuItem.Size = new System.Drawing.Size(164, 22); this.openMenuItem.Text = "&Open"; this.openMenuItem.Click += new System.EventHandler(this.OpenMenuItemClick); // // saveMenuItem // this.saveMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta; this.saveMenuItem.Name = "saveMenuItem"; this.saveMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S))); this.saveMenuItem.Size = new System.Drawing.Size(164, 22); this.saveMenuItem.Text = "&Save As"; this.saveMenuItem.Click += new System.EventHandler(this.SaveMenuItemClick); // // exitMenuItem // this.exitMenuItem.Name = "exitMenuItem"; this.exitMenuItem.Size = new System.Drawing.Size(164, 22); this.exitMenuItem.Text = "E&xit"; this.exitMenuItem.Click += new System.EventHandler(this.ExitMenuItemClick); // // editToolStripMenuItem // this.editToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.copyMenuItem, this.pasteMenuItem, this.toolStripSeparator5, resetToolStripMenuItem, this.clearMainMenuItem, toolStripSeparator4, this.selectAllMenuItem, toolStripSeparator8, findMenuItem}); this.editToolStripMenuItem.Name = "editToolStripMenuItem"; this.editToolStripMenuItem.Size = new System.Drawing.Size(39, 20); this.editToolStripMenuItem.Text = "&Edit"; // // copyMenuItem // this.copyMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta; this.copyMenuItem.Name = "copyMenuItem"; this.copyMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C))); this.copyMenuItem.Size = new System.Drawing.Size(164, 22); this.copyMenuItem.Text = "&Copy"; this.copyMenuItem.Click += new System.EventHandler(this.CopyMenuItemClick); // // pasteMenuItem // this.pasteMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta; this.pasteMenuItem.Name = "pasteMenuItem"; this.pasteMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.V))); this.pasteMenuItem.Size = new System.Drawing.Size(164, 22); this.pasteMenuItem.Text = "&Paste"; this.pasteMenuItem.Click += new System.EventHandler(this.PasteMenuItemClick); // // toolStripSeparator5 // this.toolStripSeparator5.Name = "toolStripSeparator5"; this.toolStripSeparator5.Size = new System.Drawing.Size(161, 6); // // selectAllMenuItem // this.selectAllMenuItem.Name = "selectAllMenuItem"; this.selectAllMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.A))); this.selectAllMenuItem.Size = new System.Drawing.Size(164, 22); this.selectAllMenuItem.Text = "Select &All"; this.selectAllMenuItem.Click += new System.EventHandler(this.SelectAllMenuItemClick); // // viewToolStripMenuItem // this.viewToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.roundedEdgesMenuItem}); this.viewToolStripMenuItem.Name = "viewToolStripMenuItem"; this.viewToolStripMenuItem.Size = new System.Drawing.Size(44, 20); this.viewToolStripMenuItem.Text = "&View"; // // roundedEdgesMenuItem // this.roundedEdgesMenuItem.Checked = true; this.roundedEdgesMenuItem.CheckOnClick = true; this.roundedEdgesMenuItem.CheckState = System.Windows.Forms.CheckState.Checked; this.roundedEdgesMenuItem.Name = "roundedEdgesMenuItem"; this.roundedEdgesMenuItem.Size = new System.Drawing.Size(156, 22); this.roundedEdgesMenuItem.Text = "&Rounded Edges"; this.roundedEdgesMenuItem.CheckedChanged += new System.EventHandler(this.RoundedEdgesMenuItemCheckedChanged); // // toolsToolStripMenuItem // this.toolsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.colorAdjustmentToolStripMenuItem, this.toolStripSeparator10, optionsMenuItem}); this.toolsToolStripMenuItem.Name = "toolsToolStripMenuItem"; this.toolsToolStripMenuItem.Size = new System.Drawing.Size(47, 20); this.toolsToolStripMenuItem.Text = "&Tools"; // // colorAdjustmentToolStripMenuItem // this.colorAdjustmentToolStripMenuItem.Name = "colorAdjustmentToolStripMenuItem"; this.colorAdjustmentToolStripMenuItem.Size = new System.Drawing.Size(177, 22); this.colorAdjustmentToolStripMenuItem.Text = "&Color Adjustment..."; this.colorAdjustmentToolStripMenuItem.Click += new System.EventHandler(this.ColorAdjustmentMenuItemClick); // // toolStripSeparator10 // this.toolStripSeparator10.Name = "toolStripSeparator10"; this.toolStripSeparator10.Size = new System.Drawing.Size(174, 6); // // helpToolStripMenuItem // this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { aboutMenuItem}); this.helpToolStripMenuItem.Name = "helpToolStripMenuItem"; this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20); this.helpToolStripMenuItem.Text = "&Help"; // // toolStripContainer // // // toolStripContainer.BottomToolStripPanel // this.toolStripContainer.BottomToolStripPanel.Controls.Add(this.searchToolStrip); // // toolStripContainer.ContentPanel // this.toolStripContainer.ContentPanel.Controls.Add(this.gridView); this.toolStripContainer.ContentPanel.Size = new System.Drawing.Size(597, 389); this.toolStripContainer.Dock = System.Windows.Forms.DockStyle.Fill; this.toolStripContainer.Location = new System.Drawing.Point(0, 24); this.toolStripContainer.Name = "toolStripContainer"; this.toolStripContainer.Size = new System.Drawing.Size(597, 466); this.toolStripContainer.TabIndex = 2; this.toolStripContainer.Text = "toolStripContainer1"; // // toolStripContainer.TopToolStripPanel // this.toolStripContainer.TopToolStripPanel.Controls.Add(this.previewToolStrip); this.toolStripContainer.TopToolStripPanel.Controls.Add(this.mainToolStrip); // // gridView // this.gridView.AllowUserToAddRows = false; this.gridView.AllowUserToDeleteRows = false; this.gridView.AllowUserToResizeColumns = false; this.gridView.AllowUserToResizeRows = false; this.gridView.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells; this.gridView.BorderStyle = System.Windows.Forms.BorderStyle.None; this.gridView.ClipboardCopyMode = System.Windows.Forms.DataGridViewClipboardCopyMode.Disable; this.gridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing; this.gridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.ColorTableItemColumn, this.ColorValueColumn, this.ColorPreviewColumn, this.EditColorColumn}); this.gridView.ContextMenuStrip = this.rowContextMenu; this.gridView.Dock = System.Windows.Forms.DockStyle.Fill; this.gridView.GridColor = System.Drawing.SystemColors.ActiveCaption; this.gridView.Location = new System.Drawing.Point(0, 0); this.gridView.Name = "gridView"; this.gridView.RowHeadersVisible = false; this.gridView.RowTemplate.DefaultCellStyle.Padding = new System.Windows.Forms.Padding(3); this.gridView.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; this.gridView.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; this.gridView.Size = new System.Drawing.Size(597, 389); this.gridView.TabIndex = 2; this.gridView.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.GridViewCellContentClick); this.gridView.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.GridViewCellDoubleClick); this.gridView.SelectionChanged += new System.EventHandler(this.GridViewSelectionChanged); this.gridView.Enter += new System.EventHandler(this.GridViewEnter); this.gridView.Leave += new System.EventHandler(this.GridViewLeave); this.gridView.MouseDown += new System.Windows.Forms.MouseEventHandler(this.GridViewMouseDown); // // ColorTableItemColumn // this.ColorTableItemColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill; this.ColorTableItemColumn.HeaderText = "Color Table Item"; this.ColorTableItemColumn.Name = "ColorTableItemColumn"; this.ColorTableItemColumn.ReadOnly = true; // // ColorValueColumn // this.ColorValueColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells; this.ColorValueColumn.HeaderText = "Color"; this.ColorValueColumn.Name = "ColorValueColumn"; this.ColorValueColumn.ReadOnly = true; this.ColorValueColumn.Width = 61; // // ColorPreviewColumn // this.ColorPreviewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells; this.ColorPreviewColumn.HeaderText = "Preview"; this.ColorPreviewColumn.Name = "ColorPreviewColumn"; this.ColorPreviewColumn.ReadOnly = true; this.ColorPreviewColumn.Width = 54; // // EditColorColumn // this.EditColorColumn.HeaderText = "Edit"; this.EditColorColumn.Name = "EditColorColumn"; this.EditColorColumn.Width = 50; // // rowContextMenu // this.rowContextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.copyPopupItem, this.pastePopupItem, this.selectAllPopupItem, toolStripSeparator3, this.fromKnownColorMenuItem, this.alphaMenuItem, this.screenColorMenuItem, toolStripMenuItem1, resetMenuItem, clearMenuItem}); this.rowContextMenu.Name = "rowContextMenu"; this.rowContextMenu.Size = new System.Drawing.Size(165, 192); this.rowContextMenu.Opening += new System.ComponentModel.CancelEventHandler(this.RowContextMenuOpening); // // copyPopupItem // this.copyPopupItem.Image = ((System.Drawing.Image)(resources.GetObject("copyPopupItem.Image"))); this.copyPopupItem.ImageTransparentColor = System.Drawing.Color.Magenta; this.copyPopupItem.Name = "copyPopupItem"; this.copyPopupItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C))); this.copyPopupItem.Size = new System.Drawing.Size(164, 22); this.copyPopupItem.Text = "&Copy"; this.copyPopupItem.Click += new System.EventHandler(this.CopyMenuItemClick); // // pastePopupItem // this.pastePopupItem.Image = ((System.Drawing.Image)(resources.GetObject("pastePopupItem.Image"))); this.pastePopupItem.ImageTransparentColor = System.Drawing.Color.Magenta; this.pastePopupItem.Name = "pastePopupItem"; this.pastePopupItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.V))); this.pastePopupItem.Size = new System.Drawing.Size(164, 22); this.pastePopupItem.Text = "&Paste"; this.pastePopupItem.Click += new System.EventHandler(this.PasteMenuItemClick); // // selectAllPopupItem // this.selectAllPopupItem.Name = "selectAllPopupItem"; this.selectAllPopupItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.A))); this.selectAllPopupItem.Size = new System.Drawing.Size(164, 22); this.selectAllPopupItem.Text = "Select &All"; this.selectAllPopupItem.Click += new System.EventHandler(this.SelectAllMenuItemClick); // // fromKnownColorMenuItem // this.fromKnownColorMenuItem.Name = "fromKnownColorMenuItem"; this.fromKnownColorMenuItem.Size = new System.Drawing.Size(164, 22); this.fromKnownColorMenuItem.Text = "&System Color"; // // alphaMenuItem // this.alphaMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { toolStripMenuItem3, toolStripMenuItem4, toolStripMenuItem5, toolStripMenuItem6, toolStripMenuItem7, toolStripMenuItem8, toolStripMenuItem9, toolStripMenuItem10, toolStripMenuItem11, toolStripMenuItem12, toolStripMenuItem13, toolStripMenuItem14, toolStripMenuItem15, toolStripMenuItem16}); this.alphaMenuItem.Name = "alphaMenuItem"; this.alphaMenuItem.Size = new System.Drawing.Size(164, 22); this.alphaMenuItem.Text = "Alp&ha"; // // screenColorMenuItem // this.screenColorMenuItem.Name = "screenColorMenuItem"; this.screenColorMenuItem.Size = new System.Drawing.Size(164, 22); this.screenColorMenuItem.Text = "Scree&n Color"; this.screenColorMenuItem.Click += new System.EventHandler(this.screenColorMenuItem_Click); // // colorDialog // this.colorDialog.FullOpen = true; this.colorDialog.SolidColorOnly = true; // // openFileDialog // this.openFileDialog.Filter = "C# or VB.NET files|*.cs;*.vb|All files|*.*"; // // saveFileDialog // this.saveFileDialog.DefaultExt = "cs"; this.saveFileDialog.Filter = "C# class|*.cs|VB.NET class|*.vb|All files|*.*"; // // searchWorker // this.searchWorker.WorkerReportsProgress = true; this.searchWorker.WorkerSupportsCancellation = true; this.searchWorker.DoWork += new System.ComponentModel.DoWorkEventHandler(this.SearchWorkerDoWork); this.searchWorker.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.OnSearchWorkerProgressChanged); // // miExportColors // this.miExportColors.Name = "miExportColors"; this.miExportColors.Size = new System.Drawing.Size(164, 22); this.miExportColors.Text = "Ex&port Colors"; this.miExportColors.Click += new System.EventHandler(this.miExportColors_Click); // // MainForm // this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; this.ClientSize = new System.Drawing.Size(597, 512); this.Controls.Add(this.toolStripContainer); this.Controls.Add(this.menuStrip); this.Controls.Add(statusStrip); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.MainMenuStrip = this.menuStrip; this.MinimumSize = new System.Drawing.Size(350, 350); this.Name = "MainForm"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "ToolStrip Customizer for .NET WinForms"; this.Activated += new System.EventHandler(this.MainFormActivated); this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.MainFormFormClosed); this.Load += new System.EventHandler(this.MainFormLoad); statusStrip.ResumeLayout(false); statusStrip.PerformLayout(); this.previewToolStrip.ResumeLayout(false); this.previewToolStrip.PerformLayout(); this.searchToolStrip.ResumeLayout(false); this.searchToolStrip.PerformLayout(); this.mainToolStrip.ResumeLayout(false); this.mainToolStrip.PerformLayout(); this.menuStrip.ResumeLayout(false); this.menuStrip.PerformLayout(); this.toolStripContainer.BottomToolStripPanel.ResumeLayout(false); this.toolStripContainer.BottomToolStripPanel.PerformLayout(); this.toolStripContainer.ContentPanel.ResumeLayout(false); this.toolStripContainer.TopToolStripPanel.ResumeLayout(false); this.toolStripContainer.TopToolStripPanel.PerformLayout(); this.toolStripContainer.ResumeLayout(false); this.toolStripContainer.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.gridView)).EndInit(); this.rowContextMenu.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.Windows.Forms.StatusStrip statusStrip1; this.tssTime = new System.Windows.Forms.ToolStripStatusLabel(); this.tssMessage = new System.Windows.Forms.ToolStripStatusLabel(); this.timer = new System.Windows.Forms.Timer(this.components); this.tbLog = new System.Windows.Forms.TextBox(); statusStrip1 = new System.Windows.Forms.StatusStrip(); statusStrip1.SuspendLayout(); this.SuspendLayout(); // // statusStrip1 // statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.tssTime, this.tssMessage}); statusStrip1.Location = new System.Drawing.Point(0, 137); statusStrip1.Name = "statusStrip1"; statusStrip1.Size = new System.Drawing.Size(600, 22); statusStrip1.TabIndex = 0; statusStrip1.Text = "statusStrip1"; // // tssTime // this.tssTime.AutoSize = false; this.tssTime.Name = "tssTime"; this.tssTime.Size = new System.Drawing.Size(100, 17); this.tssTime.Text = "TIME"; // // tssMessage // this.tssMessage.Name = "tssMessage"; this.tssMessage.Size = new System.Drawing.Size(485, 17); this.tssMessage.Spring = true; this.tssMessage.Text = "TRACK MESSAGE"; this.tssMessage.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // timer // this.timer.Interval = 150; this.timer.Tick += new System.EventHandler(this.timer_Tick); // // tbLog // this.tbLog.BackColor = System.Drawing.Color.Black; this.tbLog.Dock = System.Windows.Forms.DockStyle.Fill; this.tbLog.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204))); this.tbLog.ForeColor = System.Drawing.Color.Lime; this.tbLog.Location = new System.Drawing.Point(0, 0); this.tbLog.MaxLength = 1024000000; this.tbLog.Multiline = true; this.tbLog.Name = "tbLog"; this.tbLog.ReadOnly = true; this.tbLog.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; this.tbLog.Size = new System.Drawing.Size(600, 137); this.tbLog.TabIndex = 1; this.tbLog.WordWrap = false; // // RunTargetTracker // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(600, 159); this.ControlBox = false; this.Controls.Add(this.tbLog); this.Controls.Add(statusStrip1); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "RunTargetTracker"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "RunTargetTracker"; statusStrip1.ResumeLayout(false); statusStrip1.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.Windows.Forms.StatusStrip StatusStrip; System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(D3DForm)); this.CurrentModeButton = new System.Windows.Forms.ToolStripSplitButton(); this.toolStripStatusLabel3 = new System.Windows.Forms.ToolStripStatusLabel(); this.PositionXTool = new Utils.Extensions.NumericUpDownToolStrip(); this.PositionYTool = new Utils.Extensions.NumericUpDownToolStrip(); this.PositionZTool = new Utils.Extensions.NumericUpDownToolStrip(); this.RotationXTool = new Utils.Extensions.NumericUpDownToolStrip(); this.CameraSpeedTool = new Utils.Extensions.NumericUpDownToolStrip(); this.ToolbarStrip = new System.Windows.Forms.ToolStrip(); this.FileButton = new System.Windows.Forms.ToolStripDropDownButton(); this.SaveButton = new System.Windows.Forms.ToolStripMenuItem(); this.ExitButton = new System.Windows.Forms.ToolStripMenuItem(); this.EditButton = new System.Windows.Forms.ToolStripDropDownButton(); this.AddButton = new System.Windows.Forms.ToolStripMenuItem(); this.AddSceneFolderButton = new System.Windows.Forms.ToolStripMenuItem(); this.AddCollisionButton = new System.Windows.Forms.ToolStripMenuItem(); this.roadDebuggingToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.AddBackward = new System.Windows.Forms.ToolStripMenuItem(); this.AddToward = new System.Windows.Forms.ToolStripMenuItem(); this.AddRoadSplineButton = new System.Windows.Forms.ToolStripMenuItem(); this.AddSplineTxT = new System.Windows.Forms.ToolStripMenuItem(); this.AddJunctionButton = new System.Windows.Forms.ToolStripMenuItem(); this.EditUnkSet3 = new System.Windows.Forms.ToolStripMenuItem(); this.ViewButton = new System.Windows.Forms.ToolStripDropDownButton(); this.ViewTopButton = new System.Windows.Forms.ToolStripMenuItem(); this.ViewFrontButton = new System.Windows.Forms.ToolStripMenuItem(); this.ViewSideButton = new System.Windows.Forms.ToolStripMenuItem(); this.ViewBottomButton = new System.Windows.Forms.ToolStripMenuItem(); this.ViewSide2Button = new System.Windows.Forms.ToolStripMenuItem(); this.OptionsButton = new System.Windows.Forms.ToolStripDropDownButton(); this.ToggleWireframeButton = new System.Windows.Forms.ToolStripMenuItem(); this.ToggleCullingButton = new System.Windows.Forms.ToolStripMenuItem(); this.EditLighting = new System.Windows.Forms.ToolStripMenuItem(); this.WindowButton = new System.Windows.Forms.ToolStripDropDownButton(); this.SceneTreeButton = new System.Windows.Forms.ToolStripMenuItem(); this.ObjectPropertiesButton = new System.Windows.Forms.ToolStripMenuItem(); this.ViewOptionProperties = new System.Windows.Forms.ToolStripMenuItem(); this.imageList1 = new System.Windows.Forms.ImageList(this.components); this.RenderPanel = new System.Windows.Forms.Panel(); this.MeshBrowser = new System.Windows.Forms.OpenFileDialog(); this.TxtBrowser = new System.Windows.Forms.OpenFileDialog(); this.dockPanel1 = new WeifenLuo.WinFormsUI.Docking.DockPanel(); StatusStrip = new System.Windows.Forms.StatusStrip(); StatusStrip.SuspendLayout(); this.ToolbarStrip.SuspendLayout(); this.SuspendLayout(); // // StatusStrip // StatusStrip.AutoSize = false; StatusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.CurrentModeButton, this.toolStripStatusLabel3, this.PositionXTool, this.PositionYTool, this.PositionZTool, this.RotationXTool, this.CameraSpeedTool }); StatusStrip.Location = new System.Drawing.Point(0, 600); StatusStrip.Name = "StatusStrip"; StatusStrip.Size = new System.Drawing.Size(1217, 24); StatusStrip.TabIndex = 6; StatusStrip.Text = "statusStrip1"; // // CurrentModeButton // this.CurrentModeButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.CurrentModeButton.Image = ((System.Drawing.Image)(resources.GetObject("CurrentModeButton.Image"))); this.CurrentModeButton.ImageTransparentColor = System.Drawing.Color.Magenta; this.CurrentModeButton.Name = "CurrentModeButton"; this.CurrentModeButton.Size = new System.Drawing.Size(128, 22); this.CurrentModeButton.Text = "$CurrentModeLabel"; this.CurrentModeButton.ButtonClick += new System.EventHandler(this.CurrentModeButton_ButtonClick); // // toolStripStatusLabel3 // this.toolStripStatusLabel3.Name = "toolStripStatusLabel3"; this.toolStripStatusLabel3.Size = new System.Drawing.Size(118, 19); this.toolStripStatusLabel3.Text = "toolStripStatusLabel3"; // // PositionXTool // this.PositionXTool.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; this.PositionXTool.AutoSize = false; this.PositionXTool.DecimalPlaces = 5; this.PositionXTool.Increment = new decimal(new int[] { 1, 0, 0, 0 }); this.PositionXTool.Margin = new System.Windows.Forms.Padding(3, 0, 1, 0); this.PositionXTool.Maximum = new decimal(new int[] { 9999999, 0, 0, 0 }); this.PositionXTool.Minimum = new decimal(new int[] { 9999999, 0, 0, -2147483648 }); this.PositionXTool.Name = "PositionXTool"; this.PositionXTool.Overflow = System.Windows.Forms.ToolStripItemOverflow.Always; this.PositionXTool.Padding = new System.Windows.Forms.Padding(2, 0, 2, 0); this.PositionXTool.Size = new System.Drawing.Size(75, 24); this.PositionXTool.Text = "0.00000"; this.PositionXTool.Value = new decimal(new int[] { 0, 0, 0, 0 }); this.PositionXTool.ValueChanged += new System.EventHandler(this.CameraToolsOnValueChanged); // // PositionYTool // this.PositionYTool.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; this.PositionYTool.AutoSize = false; this.PositionYTool.DecimalPlaces = 5; this.PositionYTool.Increment = new decimal(new int[] { 1, 0, 0, 0 }); this.PositionYTool.Margin = new System.Windows.Forms.Padding(1, 0, 1, 0); this.PositionYTool.Maximum = new decimal(new int[] { 9999999, 0, 0, 0 }); this.PositionYTool.Minimum = new decimal(new int[] { 9999999, 0, 0, -2147483648 }); this.PositionYTool.Name = "PositionYTool"; this.PositionYTool.Overflow = System.Windows.Forms.ToolStripItemOverflow.Always; this.PositionYTool.Padding = new System.Windows.Forms.Padding(2, 0, 2, 0); this.PositionYTool.Size = new System.Drawing.Size(75, 24); this.PositionYTool.Text = "0.00000"; this.PositionYTool.Value = new decimal(new int[] { 0, 0, 0, 0 }); this.PositionYTool.ValueChanged += new System.EventHandler(this.CameraToolsOnValueChanged); // // PositionZTool // this.PositionZTool.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; this.PositionZTool.AutoSize = false; this.PositionZTool.DecimalPlaces = 5; this.PositionZTool.Increment = new decimal(new int[] { 1, 0, 0, 0 }); this.PositionZTool.Margin = new System.Windows.Forms.Padding(1, 0, 3, 0); this.PositionZTool.Maximum = new decimal(new int[] { 9999999, 0, 0, 0 }); this.PositionZTool.Minimum = new decimal(new int[] { 9999999, 0, 0, -2147483648 }); this.PositionZTool.Name = "PositionZTool"; this.PositionZTool.Overflow = System.Windows.Forms.ToolStripItemOverflow.Always; this.PositionZTool.Padding = new System.Windows.Forms.Padding(2, 0, 2, 0); this.PositionZTool.Size = new System.Drawing.Size(75, 24); this.PositionZTool.Text = "0.00000"; this.PositionZTool.Value = new decimal(new int[] { 0, 0, 0, 0 }); this.PositionZTool.ValueChanged += new System.EventHandler(this.CameraToolsOnValueChanged); // // RotationXTool // this.RotationXTool.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; this.RotationXTool.AutoSize = false; this.RotationXTool.DecimalPlaces = 5; this.RotationXTool.Increment = new decimal(new int[] { 1, 0, 0, 0 }); this.RotationXTool.Margin = new System.Windows.Forms.Padding(3, 0, 1, 0); this.RotationXTool.Maximum = new decimal(new int[] { 9999999, 0, 0, 0 }); this.RotationXTool.Minimum = new decimal(new int[] { 9999999, 0, 0, -2147483648 }); this.RotationXTool.Name = "RotationXTool"; this.RotationXTool.Overflow = System.Windows.Forms.ToolStripItemOverflow.Always; this.RotationXTool.Padding = new System.Windows.Forms.Padding(5, 0, 2, 0); this.RotationXTool.Size = new System.Drawing.Size(0, 24); this.RotationXTool.Text = "0.00000"; this.RotationXTool.Value = new decimal(new int[] { 0, 0, 0, 0 }); this.RotationXTool.Visible = false; this.RotationXTool.ValueChanged += new System.EventHandler(this.CameraToolsOnValueChanged); // // CameraSpeedTool // this.CameraSpeedTool.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; this.CameraSpeedTool.AutoSize = false; this.CameraSpeedTool.DecimalPlaces = 5; this.CameraSpeedTool.Increment = new decimal(new int[] { 1, 0, 0, 131072 }); this.CameraSpeedTool.Margin = new System.Windows.Forms.Padding(1, 0, 3, 0); this.CameraSpeedTool.Maximum = new decimal(new int[] { 10, 0, 0, 0 }); this.CameraSpeedTool.Minimum = new decimal(new int[] { 0, 0, 0, 0 }); this.CameraSpeedTool.Name = "CameraSpeedTool"; this.CameraSpeedTool.Overflow = System.Windows.Forms.ToolStripItemOverflow.Always; this.CameraSpeedTool.Padding = new System.Windows.Forms.Padding(2, 0, 2, 0); this.CameraSpeedTool.Size = new System.Drawing.Size(75, 24); this.CameraSpeedTool.Text = "0.00000"; this.CameraSpeedTool.Value = new decimal(new int[] { 0, 0, 0, 0 }); this.CameraSpeedTool.ValueChanged += new System.EventHandler(this.CameraSpeedUpdate); // // ToolbarStrip // this.ToolbarStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.FileButton, this.EditButton, this.ViewButton, this.OptionsButton, this.WindowButton }); this.ToolbarStrip.Location = new System.Drawing.Point(0, 0); this.ToolbarStrip.Name = "ToolbarStrip"; this.ToolbarStrip.Size = new System.Drawing.Size(1217, 25); this.ToolbarStrip.TabIndex = 1; this.ToolbarStrip.Text = "toolStrip1"; // // FileButton // this.FileButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.FileButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.SaveButton, this.ExitButton }); this.FileButton.Image = ((System.Drawing.Image)(resources.GetObject("FileButton.Image"))); this.FileButton.ImageTransparentColor = System.Drawing.Color.Magenta; this.FileButton.Name = "FileButton"; this.FileButton.Size = new System.Drawing.Size(47, 22); this.FileButton.Text = "$FILE"; // // SaveButton // this.SaveButton.Name = "SaveButton"; this.SaveButton.Size = new System.Drawing.Size(106, 22); this.SaveButton.Text = "$SAVE"; this.SaveButton.Click += new System.EventHandler(this.SaveButton_Click); // // ExitButton // this.ExitButton.Name = "ExitButton"; this.ExitButton.Size = new System.Drawing.Size(106, 22); this.ExitButton.Text = "$EXIT"; this.ExitButton.Click += new System.EventHandler(this.ExitButton_Click); // // EditButton // this.EditButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.EditButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.AddButton, this.AddSceneFolderButton, this.AddCollisionButton, this.roadDebuggingToolStripMenuItem }); this.EditButton.Image = ((System.Drawing.Image)(resources.GetObject("EditButton.Image"))); this.EditButton.ImageTransparentColor = System.Drawing.Color.Magenta; this.EditButton.Name = "EditButton"; this.EditButton.Size = new System.Drawing.Size(66, 22); this.EditButton.Text = "$CREATE"; // // AddButton // this.AddButton.Name = "AddButton"; this.AddButton.Size = new System.Drawing.Size(191, 22); this.AddButton.Text = "$ADD"; this.AddButton.Click += new System.EventHandler(this.AddButtonOnClick); // // AddSceneFolderButton // this.AddSceneFolderButton.Name = "AddSceneFolderButton"; this.AddSceneFolderButton.Size = new System.Drawing.Size(191, 22); this.AddSceneFolderButton.Text = "$ADD_SCENE_FOLDER"; this.AddSceneFolderButton.Click += new System.EventHandler(this.AddSceneFolderButton_Click); // // AddCollisionButton // this.AddCollisionButton.Name = "AddCollisionButton"; this.AddCollisionButton.Size = new System.Drawing.Size(191, 22); this.AddCollisionButton.Text = "$ADD_COLLISION"; this.AddCollisionButton.Click += new System.EventHandler(this.AddCollisionButton_Click); // // roadDebuggingToolStripMenuItem // this.roadDebuggingToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.AddBackward, this.AddToward, this.AddRoadSplineButton, this.AddSplineTxT, this.AddJunctionButton, this.EditUnkSet3 }); this.roadDebuggingToolStripMenuItem.Name = "roadDebuggingToolStripMenuItem"; this.roadDebuggingToolStripMenuItem.Size = new System.Drawing.Size(191, 22); this.roadDebuggingToolStripMenuItem.Text = "Road Debugging"; // // AddBackward // this.AddBackward.Name = "AddBackward"; this.AddBackward.Size = new System.Drawing.Size(183, 22); this.AddBackward.Text = "$ADD_BACKWARD"; this.AddBackward.Click += new System.EventHandler(this.AddBackwardClick); // // AddToward // this.AddToward.Name = "AddToward"; this.AddToward.Size = new System.Drawing.Size(183, 22); this.AddToward.Text = "$ADD_TOWARD"; this.AddToward.Click += new System.EventHandler(this.AddTowardClick); // // AddRoadSplineButton // this.AddRoadSplineButton.Name = "AddRoadSplineButton"; this.AddRoadSplineButton.Size = new System.Drawing.Size(183, 22); this.AddRoadSplineButton.Text = "$ADD_ROAD_SPLINE"; this.AddRoadSplineButton.Click += new System.EventHandler(this.AddRoadSplineButton_Click); // // AddSplineTxT // this.AddSplineTxT.Name = "AddSplineTxT"; this.AddSplineTxT.Size = new System.Drawing.Size(183, 22); this.AddSplineTxT.Text = "$ADD_SPLINE_TXT"; this.AddSplineTxT.Click += new System.EventHandler(this.AddSplineTxT_Click); // // AddJunctionButton // this.AddJunctionButton.Name = "AddJunctionButton"; this.AddJunctionButton.Size = new System.Drawing.Size(183, 22); this.AddJunctionButton.Text = "$ADD_JUNCTION"; this.AddJunctionButton.Click += new System.EventHandler(this.AddJunctionOnClick); // // EditUnkSet3 // this.EditUnkSet3.Name = "EditUnkSet3"; this.EditUnkSet3.Size = new System.Drawing.Size(183, 22); this.EditUnkSet3.Text = "$EDIT_UNKSET3"; this.EditUnkSet3.Click += new System.EventHandler(this.EditUnkSet3Click); // // ViewButton // this.ViewButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.ViewButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.ViewTopButton, this.ViewFrontButton, this.ViewSideButton, this.ViewBottomButton, this.ViewSide2Button }); this.ViewButton.Image = ((System.Drawing.Image)(resources.GetObject("ViewButton.Image"))); this.ViewButton.ImageTransparentColor = System.Drawing.Color.Magenta; this.ViewButton.Name = "ViewButton"; this.ViewButton.Size = new System.Drawing.Size(53, 22); this.ViewButton.Text = "$VIEW"; // // ViewTopButton // this.ViewTopButton.Name = "ViewTopButton"; this.ViewTopButton.Size = new System.Drawing.Size(126, 22); this.ViewTopButton.Text = "$TOP"; this.ViewTopButton.Click += new System.EventHandler(this.OnViewTopButtonClicked); // // ViewFrontButton // this.ViewFrontButton.Name = "ViewFrontButton"; this.ViewFrontButton.Size = new System.Drawing.Size(126, 22); this.ViewFrontButton.Text = "$FRONT"; this.ViewFrontButton.Click += new System.EventHandler(this.OnViewFrontButtonClicked); // // ViewSideButton // this.ViewSideButton.Enabled = false; this.ViewSideButton.Name = "ViewSideButton"; this.ViewSideButton.Size = new System.Drawing.Size(126, 22); this.ViewSideButton.Text = "$SIDE"; this.ViewSideButton.Visible = false; this.ViewSideButton.Click += new System.EventHandler(this.OnViewSideButtonClicked); // // ViewBottomButton // this.ViewBottomButton.Enabled = false; this.ViewBottomButton.Name = "ViewBottomButton"; this.ViewBottomButton.Size = new System.Drawing.Size(126, 22); this.ViewBottomButton.Text = "$BOTTOM"; this.ViewBottomButton.Visible = false; this.ViewBottomButton.Click += new System.EventHandler(this.OnViewBottomButtonClicked); // // ViewSide2Button // this.ViewSide2Button.Enabled = false; this.ViewSide2Button.Name = "ViewSide2Button"; this.ViewSide2Button.Size = new System.Drawing.Size(126, 22); this.ViewSide2Button.Text = "$SIDE 2"; this.ViewSide2Button.Visible = false; this.ViewSide2Button.Click += new System.EventHandler(this.OnViewSide2ButtonClicked); // // OptionsButton // this.OptionsButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.OptionsButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.ToggleWireframeButton, this.ToggleCullingButton, this.EditLighting }); this.OptionsButton.Image = ((System.Drawing.Image)(resources.GetObject("OptionsButton.Image"))); this.OptionsButton.ImageTransparentColor = System.Drawing.Color.Magenta; this.OptionsButton.Name = "OptionsButton"; this.OptionsButton.Size = new System.Drawing.Size(75, 22); this.OptionsButton.Text = "$OPTIONS"; // // ToggleWireframeButton // this.ToggleWireframeButton.Name = "ToggleWireframeButton"; this.ToggleWireframeButton.Size = new System.Drawing.Size(192, 22); this.ToggleWireframeButton.Text = "$TOGGLE_WIREFRAME"; this.ToggleWireframeButton.Click += new System.EventHandler(this.FillModeButton_Click); // // ToggleCullingButton // this.ToggleCullingButton.Name = "ToggleCullingButton"; this.ToggleCullingButton.Size = new System.Drawing.Size(192, 22); this.ToggleCullingButton.Text = "$TOGGLE_CULLING"; this.ToggleCullingButton.Click += new System.EventHandler(this.CullModeButton_Click); // // EditLighting // this.EditLighting.Name = "EditLighting"; this.EditLighting.Size = new System.Drawing.Size(192, 22); this.EditLighting.Text = "$EDIT_LIGHTING"; this.EditLighting.Click += new System.EventHandler(this.EditLighting_Click); // // WindowButton // this.WindowButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.WindowButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.SceneTreeButton, this.ObjectPropertiesButton, this.ViewOptionProperties }); this.WindowButton.Image = ((System.Drawing.Image)(resources.GetObject("WindowButton.Image"))); this.WindowButton.ImageTransparentColor = System.Drawing.Color.Magenta; this.WindowButton.Name = "WindowButton"; this.WindowButton.Size = new System.Drawing.Size(83, 22); this.WindowButton.Text = "$WINDOWS"; // // SceneTreeButton // this.SceneTreeButton.Name = "SceneTreeButton"; this.SceneTreeButton.Size = new System.Drawing.Size(198, 22); this.SceneTreeButton.Text = "$VIEW_SCENE_TREE"; this.SceneTreeButton.Click += new System.EventHandler(this.SceneTreeOnClicked); // // ObjectPropertiesButton // this.ObjectPropertiesButton.Name = "ObjectPropertiesButton"; this.ObjectPropertiesButton.Size = new System.Drawing.Size(198, 22); this.ObjectPropertiesButton.Text = "$VIEW_PROPERTY_GRID"; this.ObjectPropertiesButton.Click += new System.EventHandler(this.PropertyGridOnClicked); // // ViewOptionProperties // this.ViewOptionProperties.Name = "ViewOptionProperties"; this.ViewOptionProperties.Size = new System.Drawing.Size(198, 22); this.ViewOptionProperties.Text = "$VIEW_OPTIONS"; this.ViewOptionProperties.Click += new System.EventHandler(this.ViewOptionProperties_Click); // // imageList1 // this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream"))); this.imageList1.TransparentColor = System.Drawing.Color.Transparent; this.imageList1.Images.SetKeyName(0, "StaticIcon"); this.imageList1.Images.SetKeyName(1, "LightIcon"); // // RenderPanel // this.RenderPanel.Dock = System.Windows.Forms.DockStyle.Fill; this.RenderPanel.Location = new System.Drawing.Point(0, 25); this.RenderPanel.Name = "RenderPanel"; this.RenderPanel.Size = new System.Drawing.Size(1217, 575); this.RenderPanel.TabIndex = 0; // // MeshBrowser // this.MeshBrowser.Filter = "Meshes|*.m2t|FBX|*.fbx"; // // TxtBrowser // this.TxtBrowser.Filter = "Text Document|*txt"; // // dockPanel1 // this.dockPanel1.Dock = System.Windows.Forms.DockStyle.Fill; this.dockPanel1.DocumentStyle = WeifenLuo.WinFormsUI.Docking.DocumentStyle.DockingWindow; this.dockPanel1.Location = new System.Drawing.Point(0, 25); this.dockPanel1.Name = "dockPanel1"; this.dockPanel1.Size = new System.Drawing.Size(1217, 575); this.dockPanel1.TabIndex = 0; // // D3DForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(1217, 624); this.Controls.Add(this.dockPanel1); this.Controls.Add(this.RenderPanel); this.Controls.Add(StatusStrip); this.Controls.Add(this.ToolbarStrip); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Name = "D3DForm"; this.Text = "Map Editor"; this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.OnFormClosing); StatusStrip.ResumeLayout(false); StatusStrip.PerformLayout(); this.ToolbarStrip.ResumeLayout(false); this.ToolbarStrip.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); }