From: <an...@us...> - 2007-03-14 13:51:49
|
Revision: 187 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=187&view=rev Author: and-81 Date: 2007-03-14 06:51:47 -0700 (Wed, 14 Mar 2007) Log Message: ----------- Modified Paths: -------------- trunk/plugins/ComSkipLauncher TVE2/Configuration.Designer.cs trunk/plugins/ComSkipLauncher TVE3/PluginSetup.Designer.cs Modified: trunk/plugins/ComSkipLauncher TVE2/Configuration.Designer.cs =================================================================== --- trunk/plugins/ComSkipLauncher TVE2/Configuration.Designer.cs 2007-03-14 13:30:54 UTC (rev 186) +++ trunk/plugins/ComSkipLauncher TVE2/Configuration.Designer.cs 2007-03-14 13:51:47 UTC (rev 187) @@ -47,6 +47,8 @@ this.labelProgram = new System.Windows.Forms.Label(); this.groupBoxTest = new System.Windows.Forms.GroupBox(); this.groupBoxWhen = new System.Windows.Forms.GroupBox(); + this.labelComSkip = new System.Windows.Forms.Label(); + this.linkLabel = new System.Windows.Forms.LinkLabel(); this.groupBoxWhat.SuspendLayout(); this.groupBoxTest.SuspendLayout(); this.groupBoxWhen.SuspendLayout(); @@ -55,10 +57,10 @@ // buttonOK // this.buttonOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.buttonOK.Location = new System.Drawing.Point(216, 248); + this.buttonOK.Location = new System.Drawing.Point(216, 304); this.buttonOK.Name = "buttonOK"; this.buttonOK.Size = new System.Drawing.Size(56, 24); - this.buttonOK.TabIndex = 2; + this.buttonOK.TabIndex = 5; this.buttonOK.Text = "OK"; this.buttonOK.UseVisualStyleBackColor = true; this.buttonOK.Click += new System.EventHandler(this.buttonOK_Click); @@ -67,10 +69,10 @@ // this.buttonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; - this.buttonCancel.Location = new System.Drawing.Point(280, 248); + this.buttonCancel.Location = new System.Drawing.Point(280, 304); this.buttonCancel.Name = "buttonCancel"; this.buttonCancel.Size = new System.Drawing.Size(56, 24); - this.buttonCancel.TabIndex = 3; + this.buttonCancel.TabIndex = 6; this.buttonCancel.Text = "Cancel"; this.buttonCancel.UseVisualStyleBackColor = true; this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click); @@ -195,7 +197,7 @@ this.groupBoxWhat.Location = new System.Drawing.Point(8, 64); this.groupBoxWhat.Name = "groupBoxWhat"; this.groupBoxWhat.Size = new System.Drawing.Size(328, 112); - this.groupBoxWhat.TabIndex = 2; + this.groupBoxWhat.TabIndex = 1; this.groupBoxWhat.TabStop = false; this.groupBoxWhat.Text = "What to launch"; // @@ -231,7 +233,7 @@ this.groupBoxTest.Location = new System.Drawing.Point(8, 184); this.groupBoxTest.Name = "groupBoxTest"; this.groupBoxTest.Size = new System.Drawing.Size(328, 56); - this.groupBoxTest.TabIndex = 1; + this.groupBoxTest.TabIndex = 2; this.groupBoxTest.TabStop = false; this.groupBoxTest.Text = "Test launch"; // @@ -244,17 +246,42 @@ this.groupBoxWhen.Location = new System.Drawing.Point(8, 8); this.groupBoxWhen.Name = "groupBoxWhen"; this.groupBoxWhen.Size = new System.Drawing.Size(328, 48); - this.groupBoxWhen.TabIndex = 4; + this.groupBoxWhen.TabIndex = 0; this.groupBoxWhen.TabStop = false; this.groupBoxWhen.Text = "When to launch"; // + // labelComSkip + // + this.labelComSkip.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.labelComSkip.Location = new System.Drawing.Point(8, 248); + this.labelComSkip.Name = "labelComSkip"; + this.labelComSkip.Size = new System.Drawing.Size(328, 16); + this.labelComSkip.TabIndex = 3; + this.labelComSkip.Text = "Get ComSkip here:"; + this.labelComSkip.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + // + // linkLabel + // + this.linkLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.linkLabel.Location = new System.Drawing.Point(8, 272); + this.linkLabel.Name = "linkLabel"; + this.linkLabel.Size = new System.Drawing.Size(328, 16); + this.linkLabel.TabIndex = 4; + this.linkLabel.TabStop = true; + this.linkLabel.Text = "http://www.kaashoek.com/comskip/"; + this.linkLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + // // Configuration // this.AcceptButton = this.buttonOK; this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.CancelButton = this.buttonCancel; - this.ClientSize = new System.Drawing.Size(352, 289); + this.ClientSize = new System.Drawing.Size(352, 345); + this.Controls.Add(this.labelComSkip); + this.Controls.Add(this.linkLabel); this.Controls.Add(this.groupBoxWhen); this.Controls.Add(this.groupBoxWhat); this.Controls.Add(this.groupBoxTest); @@ -262,7 +289,7 @@ this.Controls.Add(this.buttonOK); this.MaximizeBox = false; this.MinimizeBox = false; - this.MinimumSize = new System.Drawing.Size(360, 316); + this.MinimumSize = new System.Drawing.Size(360, 372); this.Name = "Configuration"; this.ShowIcon = false; this.ShowInTaskbar = false; @@ -297,5 +324,7 @@ private System.Windows.Forms.Button buttonProgram; private System.Windows.Forms.TextBox textBoxProgram; private System.Windows.Forms.GroupBox groupBoxWhen; + private System.Windows.Forms.Label labelComSkip; + private System.Windows.Forms.LinkLabel linkLabel; } } \ No newline at end of file Modified: trunk/plugins/ComSkipLauncher TVE3/PluginSetup.Designer.cs =================================================================== --- trunk/plugins/ComSkipLauncher TVE3/PluginSetup.Designer.cs 2007-03-14 13:30:54 UTC (rev 186) +++ trunk/plugins/ComSkipLauncher TVE3/PluginSetup.Designer.cs 2007-03-14 13:51:47 UTC (rev 187) @@ -44,6 +44,8 @@ this.labelProgram = new System.Windows.Forms.Label(); this.buttonProgram = new System.Windows.Forms.Button(); this.textBoxProgram = new System.Windows.Forms.TextBox(); + this.linkLabel = new System.Windows.Forms.LinkLabel(); + this.labelComSkip = new System.Windows.Forms.Label(); this.groupBoxTest.SuspendLayout(); this.groupBoxWhen.SuspendLayout(); this.groupBoxWhat.SuspendLayout(); @@ -57,7 +59,7 @@ this.groupBoxTest.Location = new System.Drawing.Point(8, 184); this.groupBoxTest.Name = "groupBoxTest"; this.groupBoxTest.Size = new System.Drawing.Size(328, 56); - this.groupBoxTest.TabIndex = 1; + this.groupBoxTest.TabIndex = 2; this.groupBoxTest.TabStop = false; this.groupBoxTest.Text = "Test"; // @@ -103,7 +105,7 @@ this.groupBoxWhen.Location = new System.Drawing.Point(8, 8); this.groupBoxWhen.Name = "groupBoxWhen"; this.groupBoxWhen.Size = new System.Drawing.Size(328, 48); - this.groupBoxWhen.TabIndex = 6; + this.groupBoxWhen.TabIndex = 0; this.groupBoxWhen.TabStop = false; this.groupBoxWhen.Text = "When to launch"; // @@ -138,7 +140,7 @@ this.groupBoxWhat.Location = new System.Drawing.Point(8, 64); this.groupBoxWhat.Name = "groupBoxWhat"; this.groupBoxWhat.Size = new System.Drawing.Size(328, 112); - this.groupBoxWhat.TabIndex = 5; + this.groupBoxWhat.TabIndex = 1; this.groupBoxWhat.TabStop = false; this.groupBoxWhat.Text = "What to launch"; // @@ -204,14 +206,35 @@ this.textBoxProgram.Size = new System.Drawing.Size(280, 20); this.textBoxProgram.TabIndex = 1; // + // linkLabel + // + this.linkLabel.Location = new System.Drawing.Point(8, 272); + this.linkLabel.Name = "linkLabel"; + this.linkLabel.Size = new System.Drawing.Size(328, 16); + this.linkLabel.TabIndex = 4; + this.linkLabel.TabStop = true; + this.linkLabel.Text = "http://www.kaashoek.com/comskip/"; + this.linkLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + // + // labelComSkip + // + this.labelComSkip.Location = new System.Drawing.Point(8, 248); + this.labelComSkip.Name = "labelComSkip"; + this.labelComSkip.Size = new System.Drawing.Size(328, 16); + this.labelComSkip.TabIndex = 3; + this.labelComSkip.Text = "Get ComSkip here:"; + this.labelComSkip.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + // // PluginSetup // + this.Controls.Add(this.labelComSkip); + this.Controls.Add(this.linkLabel); this.Controls.Add(this.groupBoxWhen); this.Controls.Add(this.groupBoxWhat); this.Controls.Add(this.groupBoxTest); - this.MinimumSize = new System.Drawing.Size(346, 250); + this.MinimumSize = new System.Drawing.Size(346, 298); this.Name = "PluginSetup"; - this.Size = new System.Drawing.Size(346, 250); + this.Size = new System.Drawing.Size(346, 298); this.groupBoxTest.ResumeLayout(false); this.groupBoxTest.PerformLayout(); this.groupBoxWhen.ResumeLayout(false); @@ -238,6 +261,8 @@ private System.Windows.Forms.Label labelProgram; private System.Windows.Forms.Button buttonProgram; private System.Windows.Forms.TextBox textBoxProgram; + private System.Windows.Forms.LinkLabel linkLabel; + private System.Windows.Forms.Label labelComSkip; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |