From: <che...@us...> - 2009-09-17 22:50:28
|
Revision: 3091 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=3091&view=rev Author: chef_koch Date: 2009-09-17 22:50:19 +0000 (Thu, 17 Sep 2009) Log Message: ----------- added icons to ir file tool added save and save as icons Modified Paths: -------------- trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR File Tool/FormMain.Designer.cs trunk/plugins/IR Server Suite/IR Server Suite/Applications/Translator/Forms/MainForm.Designer.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/IrssUtils.csproj trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Properties/Resources.Designer.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Properties/Resources.resx Added Paths: ----------- trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Graphics/Save.png trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Graphics/SaveAll.png trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Graphics/SaveAs.png Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR File Tool/FormMain.Designer.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR File Tool/FormMain.Designer.cs 2009-09-17 22:14:12 UTC (rev 3090) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR File Tool/FormMain.Designer.cs 2009-09-17 22:50:19 UTC (rev 3091) @@ -84,46 +84,55 @@ this.toolStripSeparator1, this.quitToolStripMenuItem}); this.fileToolStripMenuItem.Name = "fileToolStripMenuItem"; - this.fileToolStripMenuItem.Size = new System.Drawing.Size(35, 20); + this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20); this.fileToolStripMenuItem.Text = "&File"; // // newToolStripMenuItem // + this.newToolStripMenuItem.Image = IrssUtils.Properties.Resources.NewDocument; this.newToolStripMenuItem.Name = "newToolStripMenuItem"; - this.newToolStripMenuItem.Size = new System.Drawing.Size(138, 22); + this.newToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N))); + this.newToolStripMenuItem.Size = new System.Drawing.Size(246, 22); this.newToolStripMenuItem.Text = "&New"; this.newToolStripMenuItem.Click += new System.EventHandler(this.newToolStripMenuItem_Click); // // openToolStripMenuItem // + this.openToolStripMenuItem.Image = IrssUtils.Properties.Resources.OpenDocument; this.openToolStripMenuItem.Name = "openToolStripMenuItem"; - this.openToolStripMenuItem.Size = new System.Drawing.Size(138, 22); - this.openToolStripMenuItem.Text = "&Open ..."; + this.openToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O))); + this.openToolStripMenuItem.Size = new System.Drawing.Size(246, 22); + this.openToolStripMenuItem.Text = "&Open..."; this.openToolStripMenuItem.Click += new System.EventHandler(this.openToolStripMenuItem_Click); // // saveToolStripMenuItem // + this.saveToolStripMenuItem.Image = IrssUtils.Properties.Resources.Save; this.saveToolStripMenuItem.Name = "saveToolStripMenuItem"; - this.saveToolStripMenuItem.Size = new System.Drawing.Size(138, 22); + this.saveToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S))); + this.saveToolStripMenuItem.Size = new System.Drawing.Size(246, 22); this.saveToolStripMenuItem.Text = "&Save"; this.saveToolStripMenuItem.Click += new System.EventHandler(this.saveToolStripMenuItem_Click); // // saveasToolStripMenuItem // + this.saveasToolStripMenuItem.Image = IrssUtils.Properties.Resources.SaveAs; this.saveasToolStripMenuItem.Name = "saveasToolStripMenuItem"; - this.saveasToolStripMenuItem.Size = new System.Drawing.Size(138, 22); - this.saveasToolStripMenuItem.Text = "Save &as ..."; + this.saveasToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift) + | System.Windows.Forms.Keys.S))); + this.saveasToolStripMenuItem.Size = new System.Drawing.Size(246, 22); + this.saveasToolStripMenuItem.Text = "Save &as..."; this.saveasToolStripMenuItem.Click += new System.EventHandler(this.saveasToolStripMenuItem_Click); // // toolStripSeparator1 // this.toolStripSeparator1.Name = "toolStripSeparator1"; - this.toolStripSeparator1.Size = new System.Drawing.Size(135, 6); + this.toolStripSeparator1.Size = new System.Drawing.Size(243, 6); // // quitToolStripMenuItem // this.quitToolStripMenuItem.Name = "quitToolStripMenuItem"; - this.quitToolStripMenuItem.Size = new System.Drawing.Size(138, 22); + this.quitToolStripMenuItem.Size = new System.Drawing.Size(246, 22); this.quitToolStripMenuItem.Text = "&Quit"; this.quitToolStripMenuItem.Click += new System.EventHandler(this.quitToolStripMenuItem_Click); // @@ -140,21 +149,21 @@ // connectToolStripMenuItem // this.connectToolStripMenuItem.Name = "connectToolStripMenuItem"; - this.connectToolStripMenuItem.Size = new System.Drawing.Size(156, 22); + this.connectToolStripMenuItem.Size = new System.Drawing.Size(152, 22); this.connectToolStripMenuItem.Text = "&Connect"; this.connectToolStripMenuItem.Click += new System.EventHandler(this.connectToolStripMenuItem_Click); // // disconnectToolStripMenuItem // this.disconnectToolStripMenuItem.Name = "disconnectToolStripMenuItem"; - this.disconnectToolStripMenuItem.Size = new System.Drawing.Size(156, 22); + this.disconnectToolStripMenuItem.Size = new System.Drawing.Size(152, 22); this.disconnectToolStripMenuItem.Text = "&Disconnect"; this.disconnectToolStripMenuItem.Click += new System.EventHandler(this.disconnectToolStripMenuItem_Click); // // changeServerToolStripMenuItem // this.changeServerToolStripMenuItem.Name = "changeServerToolStripMenuItem"; - this.changeServerToolStripMenuItem.Size = new System.Drawing.Size(156, 22); + this.changeServerToolStripMenuItem.Size = new System.Drawing.Size(152, 22); this.changeServerToolStripMenuItem.Text = "Change &server"; this.changeServerToolStripMenuItem.Click += new System.EventHandler(this.changeServerToolStripMenuItem_Click); // Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Translator/Forms/MainForm.Designer.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Translator/Forms/MainForm.Designer.cs 2009-09-17 22:14:12 UTC (rev 3090) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Translator/Forms/MainForm.Designer.cs 2009-09-17 22:50:19 UTC (rev 3091) @@ -783,6 +783,7 @@ // this.newToolStripMenuItem.Image = IrssUtils.Properties.Resources.NewDocument; this.newToolStripMenuItem.Name = "newToolStripMenuItem"; + this.newToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N))); this.newToolStripMenuItem.Size = new System.Drawing.Size(139, 22); this.newToolStripMenuItem.Text = "&New"; this.newToolStripMenuItem.Click += new System.EventHandler(this.newToolStripMenuItem_Click); @@ -791,8 +792,9 @@ // this.openToolStripMenuItem.Image = IrssUtils.Properties.Resources.OpenDocument; this.openToolStripMenuItem.Name = "openToolStripMenuItem"; + this.openToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O))); this.openToolStripMenuItem.Size = new System.Drawing.Size(139, 22); - this.openToolStripMenuItem.Text = "&Open ..."; + this.openToolStripMenuItem.Text = "&Open..."; this.openToolStripMenuItem.Click += new System.EventHandler(this.openToolStripMenuItem_Click); // // importToolStripMenuItem @@ -800,7 +802,7 @@ this.importToolStripMenuItem.Image = IrssUtils.Properties.Resources.ImportDocument; this.importToolStripMenuItem.Name = "importToolStripMenuItem"; this.importToolStripMenuItem.Size = new System.Drawing.Size(139, 22); - this.importToolStripMenuItem.Text = "&Import ..."; + this.importToolStripMenuItem.Text = "&Import..."; this.importToolStripMenuItem.Click += new System.EventHandler(this.importToolStripMenuItem_Click); // // exportToolStripMenuItem @@ -808,7 +810,7 @@ this.exportToolStripMenuItem.Image = IrssUtils.Properties.Resources.ExportDocument; this.exportToolStripMenuItem.Name = "exportToolStripMenuItem"; this.exportToolStripMenuItem.Size = new System.Drawing.Size(139, 22); - this.exportToolStripMenuItem.Text = "&Export ..."; + this.exportToolStripMenuItem.Text = "&Export..."; this.exportToolStripMenuItem.Click += new System.EventHandler(this.exportToolStripMenuItem_Click); // // toolStripSeparator1 @@ -820,14 +822,14 @@ // this.serverToolStripMenuItem.Name = "serverToolStripMenuItem"; this.serverToolStripMenuItem.Size = new System.Drawing.Size(139, 22); - this.serverToolStripMenuItem.Text = "&Server ..."; + this.serverToolStripMenuItem.Text = "&Server..."; this.serverToolStripMenuItem.Click += new System.EventHandler(this.serverToolStripMenuItem_Click); // // advancedToolStripMenuItem // this.advancedToolStripMenuItem.Name = "advancedToolStripMenuItem"; this.advancedToolStripMenuItem.Size = new System.Drawing.Size(139, 22); - this.advancedToolStripMenuItem.Text = "&Advanced ..."; + this.advancedToolStripMenuItem.Text = "&Advanced..."; this.advancedToolStripMenuItem.Click += new System.EventHandler(this.advancedToolStripMenuItem_Click); // // toolStripSeparator2 Added: trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Graphics/Save.png =================================================================== (Binary files differ) Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Graphics/Save.png ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Graphics/SaveAll.png =================================================================== (Binary files differ) Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Graphics/SaveAll.png ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Graphics/SaveAs.png =================================================================== (Binary files differ) Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Graphics/SaveAs.png ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Modified: trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/IrssUtils.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/IrssUtils.csproj 2009-09-17 22:14:12 UTC (rev 3090) +++ trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/IrssUtils.csproj 2009-09-17 22:50:19 UTC (rev 3091) @@ -389,6 +389,8 @@ <Content Include="Graphics\Import.png" /> <Content Include="Graphics\ImportDocument.png" /> <Content Include="Graphics\Info.png" /> + <Content Include="Graphics\SaveAs.png" /> + <Content Include="Graphics\SaveAll.png" /> <Content Include="Graphics\Left.png" /> <Content Include="Graphics\MoveDown.png" /> <Content Include="Graphics\MoveLeft.png" /> @@ -400,6 +402,7 @@ <Content Include="Graphics\Plus.png" /> <Content Include="Graphics\Remap.png" /> <Content Include="Graphics\Right.png" /> + <Content Include="Graphics\Save.png" /> <Content Include="Graphics\ScrollDown.png" /> <Content Include="Graphics\ScrollUp.png" /> <Content Include="Graphics\Shortcut.png" /> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Properties/Resources.Designer.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Properties/Resources.Designer.cs 2009-09-17 22:14:12 UTC (rev 3090) +++ trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Properties/Resources.Designer.cs 2009-09-17 22:50:19 UTC (rev 3091) @@ -284,6 +284,27 @@ } } + public static System.Drawing.Bitmap Save { + get { + object obj = ResourceManager.GetObject("Save", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + public static System.Drawing.Bitmap SaveAll { + get { + object obj = ResourceManager.GetObject("SaveAll", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + public static System.Drawing.Bitmap SaveAs { + get { + object obj = ResourceManager.GetObject("SaveAs", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + public static System.Drawing.Bitmap ScrollDown { get { object obj = ResourceManager.GetObject("ScrollDown", resourceCulture); Modified: trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Properties/Resources.resx =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Properties/Resources.resx 2009-09-17 22:14:12 UTC (rev 3090) +++ trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Properties/Resources.resx 2009-09-17 22:50:19 UTC (rev 3091) @@ -214,6 +214,15 @@ <data name="Right" type="System.Resources.ResXFileRef, System.Windows.Forms"> <value>..\Graphics\Right.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> </data> + <data name="Save" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\graphics\save.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="SaveAll" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\graphics\saveall.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="SaveAs" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\graphics\saveas.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> <data name="ScrollDown" type="System.Resources.ResXFileRef, System.Windows.Forms"> <value>..\graphics\scrolldown.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> </data> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |