From: <che...@us...> - 2009-09-18 12:35:32
|
Revision: 3095 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=3095&view=rev Author: chef_koch Date: 2009-09-18 12:34:04 +0000 (Fri, 18 Sep 2009) Log Message: ----------- added OpenHelp when pressing F1 to skin editor added useful connection icons Modified Paths: -------------- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote Skin Editor/MainForm.Designer.cs trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote Skin Editor/MainForm.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Graphics/ChangeServer.png trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Graphics/Connect.png trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Graphics/Disconnect.png Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote Skin Editor/MainForm.Designer.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote Skin Editor/MainForm.Designer.cs 2009-09-18 11:33:05 UTC (rev 3094) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote Skin Editor/MainForm.Designer.cs 2009-09-18 12:34:04 UTC (rev 3095) @@ -47,9 +47,10 @@ this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.newToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.openToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.closeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator(); 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.serverToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); @@ -66,7 +67,6 @@ this.buttonSetCode = new System.Windows.Forms.Button(); this.buttonSetShortcut = new System.Windows.Forms.Button(); this.comboBoxShortcut = new System.Windows.Forms.ComboBox(); - this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator(); this.panelRemote.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBoxRemote)).BeginInit(); this.menuStrip.SuspendLayout(); @@ -235,6 +235,19 @@ this.openToolStripMenuItem.Text = "&Open..."; this.openToolStripMenuItem.Click += new System.EventHandler(this.openToolStripMenuItem_Click); // + // closeToolStripMenuItem + // + this.closeToolStripMenuItem.Name = "closeToolStripMenuItem"; + this.closeToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.W))); + this.closeToolStripMenuItem.Size = new System.Drawing.Size(248, 22); + this.closeToolStripMenuItem.Text = "&Close"; + this.closeToolStripMenuItem.Click += new System.EventHandler(this.closeToolStripMenuItem_Click); + // + // toolStripSeparator2 + // + this.toolStripSeparator2.Name = "toolStripSeparator2"; + this.toolStripSeparator2.Size = new System.Drawing.Size(245, 6); + // // saveToolStripMenuItem // this.saveToolStripMenuItem.Name = "saveToolStripMenuItem"; @@ -252,14 +265,6 @@ this.saveAsToolStripMenuItem.Text = "Save &As..."; this.saveAsToolStripMenuItem.Click += new System.EventHandler(this.saveAsToolStripMenuItem_Click); // - // closeToolStripMenuItem - // - this.closeToolStripMenuItem.Name = "closeToolStripMenuItem"; - this.closeToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.W))); - this.closeToolStripMenuItem.Size = new System.Drawing.Size(248, 22); - this.closeToolStripMenuItem.Text = "&Close"; - this.closeToolStripMenuItem.Click += new System.EventHandler(this.closeToolStripMenuItem_Click); - // // toolStripSeparator1 // this.toolStripSeparator1.Name = "toolStripSeparator1"; @@ -387,11 +392,6 @@ this.comboBoxShortcut.Size = new System.Drawing.Size(112, 21); this.comboBoxShortcut.TabIndex = 9; // - // toolStripSeparator2 - // - this.toolStripSeparator2.Name = "toolStripSeparator2"; - this.toolStripSeparator2.Size = new System.Drawing.Size(245, 6); - // // MainForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); @@ -414,6 +414,7 @@ this.Text = "Virtual Remote Skin Editor"; this.Load += new System.EventHandler(this.MainForm_Load); this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing); + this.HelpRequested += new System.Windows.Forms.HelpEventHandler(this.MainForm_HelpRequested); this.panelRemote.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.pictureBoxRemote)).EndInit(); this.menuStrip.ResumeLayout(false); Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote Skin Editor/MainForm.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote Skin Editor/MainForm.cs 2009-09-18 11:33:05 UTC (rev 3094) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote Skin Editor/MainForm.cs 2009-09-18 12:34:04 UTC (rev 3095) @@ -404,6 +404,11 @@ #endregion + private void MainForm_HelpRequested(object sender, HelpEventArgs hlpevent) + { + IrssHelp.Open(sender); + } + #region Implementation private void UpdateWindowTitle() Modified: trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Graphics/ChangeServer.png =================================================================== (Binary files differ) Modified: trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Graphics/Connect.png =================================================================== (Binary files differ) Modified: trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Graphics/Disconnect.png =================================================================== (Binary files differ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |