From: <lk...@us...> - 2008-02-05 09:42:40
|
Revision: 1340 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=1340&view=rev Author: lkuech Date: 2008-02-05 01:42:35 -0800 (Tue, 05 Feb 2008) Log Message: ----------- ViewModeSwitcher: - Added a configuration icon. - Added a option to the config screen to enable/disable the "RescanRulesAfterChannelChange" function. Modified Paths: -------------- trunk/plugins/ViewModeSwitcher/PlugInBase.cs trunk/plugins/ViewModeSwitcher/Settings.cs trunk/plugins/ViewModeSwitcher/ViewModeSwitcher.cs trunk/plugins/ViewModeSwitcher/ViewModeSwitcher.csproj trunk/plugins/ViewModeSwitcher/ViewModeSwitcherConfig.Designer.cs trunk/plugins/ViewModeSwitcher/ViewModeSwitcherConfig.cs trunk/plugins/ViewModeSwitcher/ViewModeSwitcherConfig.resx Removed Paths: ------------- trunk/plugins/ViewModeSwitcher/IconDisabled.GIF trunk/plugins/ViewModeSwitcher/IconEnabled.GIF Deleted: trunk/plugins/ViewModeSwitcher/IconDisabled.GIF =================================================================== (Binary files differ) Deleted: trunk/plugins/ViewModeSwitcher/IconEnabled.GIF =================================================================== (Binary files differ) Modified: trunk/plugins/ViewModeSwitcher/PlugInBase.cs =================================================================== --- trunk/plugins/ViewModeSwitcher/PlugInBase.cs 2008-02-04 21:45:54 UTC (rev 1339) +++ trunk/plugins/ViewModeSwitcher/PlugInBase.cs 2008-02-05 09:42:35 UTC (rev 1340) @@ -26,7 +26,6 @@ namespace ProcessPlugins.ViewModeSwitcher { - [PluginIcons("IconEnabled.GIF", "IconDisabled.GIF")] public abstract class PlugInBase : IPlugin, ISetupForm { public abstract void Stop(); Modified: trunk/plugins/ViewModeSwitcher/Settings.cs =================================================================== --- trunk/plugins/ViewModeSwitcher/Settings.cs 2008-02-04 21:45:54 UTC (rev 1339) +++ trunk/plugins/ViewModeSwitcher/Settings.cs 2008-02-05 09:42:35 UTC (rev 1340) @@ -53,6 +53,7 @@ public int VerticalOffSetZoom = 0; public int VerticalOffSet14_9 = 0; public int VerticalOffSetWide14_9 = 0; + public bool RescanRulesAfterChannelChange = true; // parameter names public static string ViewModeSwitcherSectionName = "ViewModeSwitcher"; @@ -82,6 +83,7 @@ string ParmVOffsetZoom = "parmvoffsetzoom"; string ParmVOffset14_9 = "parmvoffset149"; string ParmVOffsetWide14_9 = "parmvoffsetwide149"; + string ParmRescanRulesAfterChannelChange = "parmrescanrulesafterchannelchange"; public static string ParmTVChannelPrefix = "parmtvchannelprefix"; public static Geometry.Type StringToViewMode(string strViewmode) @@ -146,6 +148,7 @@ } verboseLog = reader.GetValueAsBool(ViewModeSwitcherSectionName, ParmVerboselog, false); ShowSwitchMsg = reader.GetValueAsBool(ViewModeSwitcherSectionName, ParmShowSwitchMsg, false); + RescanRulesAfterChannelChange = reader.GetValueAsBool(ViewModeSwitcherSectionName, ParmRescanRulesAfterChannelChange, true); SuppressInitialMsg = reader.GetValueAsBool(ViewModeSwitcherSectionName, ParmSuppressInitalMsg, false); UseFallbackRule = reader.GetValueAsBool(ViewModeSwitcherSectionName, ParmUseFallbackRule, false); String tmpFallbackViewMode = reader.GetValueAsString(ViewModeSwitcherSectionName, ParmFallbackViewMode, "Normal"); @@ -186,6 +189,7 @@ { xmlwriter.SetValueAsBool(ViewModeSwitcherSectionName, ParmVerboselog, verboseLog); xmlwriter.SetValueAsBool(ViewModeSwitcherSectionName, ParmShowSwitchMsg, ShowSwitchMsg); + xmlwriter.SetValueAsBool(ViewModeSwitcherSectionName, ParmRescanRulesAfterChannelChange, RescanRulesAfterChannelChange); xmlwriter.SetValueAsBool(ViewModeSwitcherSectionName, ParmSuppressInitalMsg, SuppressInitialMsg); xmlwriter.SetValueAsBool(ViewModeSwitcherSectionName, ParmUseFallbackRule, UseFallbackRule); xmlwriter.SetValue(ViewModeSwitcherSectionName, ParmFallbackViewMode, FallBackViewMode.ToString()); Modified: trunk/plugins/ViewModeSwitcher/ViewModeSwitcher.cs =================================================================== --- trunk/plugins/ViewModeSwitcher/ViewModeSwitcher.cs 2008-02-04 21:45:54 UTC (rev 1339) +++ trunk/plugins/ViewModeSwitcher/ViewModeSwitcher.cs 2008-02-05 09:42:35 UTC (rev 1340) @@ -42,6 +42,7 @@ public delegate void ProcessRules(float AspectRatio, int width, int height); public delegate bool IsLetterbox(); + [PluginIcons("ViewModeSwitcher.IconEnabled.png", "ViewModeSwitcher.IconDisabled.png")] public class ViewModeSwitcher : ProcessPlugins.ViewModeSwitcher.PlugInBase { ViewModeswitcherSettings currentSettings = new ViewModeswitcherSettings(); @@ -509,7 +510,7 @@ //SetZoomModeOffset(curZoomMode); } - if (TVstatusWrapper.IsViewingTV()) + if (currentSettings.RescanRulesAfterChannelChange && TVstatusWrapper.IsViewingTV()) { string tmpChannelName = TVstatusWrapper.CurrentChannelName; if (curTVChannelName != tmpChannelName) Modified: trunk/plugins/ViewModeSwitcher/ViewModeSwitcher.csproj =================================================================== --- trunk/plugins/ViewModeSwitcher/ViewModeSwitcher.csproj 2008-02-04 21:45:54 UTC (rev 1339) +++ trunk/plugins/ViewModeSwitcher/ViewModeSwitcher.csproj 2008-02-05 09:42:35 UTC (rev 1340) @@ -83,10 +83,8 @@ </EmbeddedResource> </ItemGroup> <ItemGroup> - <Content Include="IconDisabled.GIF" /> - <Content Include="IconDisabled.png" /> - <Content Include="IconEnabled.GIF" /> - <Content Include="IconEnabled.png" /> + <EmbeddedResource Include="IconDisabled.png" /> + <EmbeddedResource Include="IconEnabled.png" /> </ItemGroup> <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> <!-- To modify your build process, add your task inside one of the targets below and uncomment it. Modified: trunk/plugins/ViewModeSwitcher/ViewModeSwitcherConfig.Designer.cs =================================================================== --- trunk/plugins/ViewModeSwitcher/ViewModeSwitcherConfig.Designer.cs 2008-02-04 21:45:54 UTC (rev 1339) +++ trunk/plugins/ViewModeSwitcher/ViewModeSwitcherConfig.Designer.cs 2008-02-05 09:42:35 UTC (rev 1340) @@ -50,6 +50,8 @@ { this.bOK = new System.Windows.Forms.Button(); this.groupBox1 = new System.Windows.Forms.GroupBox(); + this.cmbViewMode = new System.Windows.Forms.ComboBox(); + this.cbUseFallbackRule = new System.Windows.Forms.CheckBox(); this.label1 = new System.Windows.Forms.Label(); this.cbSuppressInitialMsg = new System.Windows.Forms.CheckBox(); this.cbShowSwitchMsg = new System.Windows.Forms.CheckBox(); @@ -110,8 +112,7 @@ this.label16 = new System.Windows.Forms.Label(); this.label17 = new System.Windows.Forms.Label(); this.label19 = new System.Windows.Forms.Label(); - this.cbUseFallbackRule = new System.Windows.Forms.CheckBox(); - this.cmbViewMode = new System.Windows.Forms.ComboBox(); + this.cbRescanRulesAfterChannelChange = new System.Windows.Forms.CheckBox(); this.groupBox1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.dg_RuleSets)).BeginInit(); this.groupBox2.SuspendLayout(); @@ -121,7 +122,7 @@ // bOK // this.bOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.bOK.Location = new System.Drawing.Point(738, 452); + this.bOK.Location = new System.Drawing.Point(738, 461); this.bOK.Name = "bOK"; this.bOK.Size = new System.Drawing.Size(44, 23); this.bOK.TabIndex = 1; @@ -133,6 +134,7 @@ // this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); + this.groupBox1.Controls.Add(this.cbRescanRulesAfterChannelChange); this.groupBox1.Controls.Add(this.cmbViewMode); this.groupBox1.Controls.Add(this.cbUseFallbackRule); this.groupBox1.Controls.Add(this.label1); @@ -144,16 +146,37 @@ this.groupBox1.Controls.Add(this.dg_RuleSets); this.groupBox1.Location = new System.Drawing.Point(12, 35); this.groupBox1.Name = "groupBox1"; - this.groupBox1.Size = new System.Drawing.Size(770, 273); + this.groupBox1.Size = new System.Drawing.Size(770, 288); this.groupBox1.TabIndex = 1; this.groupBox1.TabStop = false; // + // cmbViewMode + // + this.cmbViewMode.Enabled = false; + this.cmbViewMode.FormattingEnabled = true; + this.cmbViewMode.Location = new System.Drawing.Point(450, 218); + this.cmbViewMode.Name = "cmbViewMode"; + this.cmbViewMode.Size = new System.Drawing.Size(121, 21); + this.cmbViewMode.TabIndex = 9; + // + // cbUseFallbackRule + // + this.cbUseFallbackRule.AutoSize = true; + this.cbUseFallbackRule.Location = new System.Drawing.Point(6, 220); + this.cbUseFallbackRule.Name = "cbUseFallbackRule"; + this.cbUseFallbackRule.Size = new System.Drawing.Size(430, 17); + this.cbUseFallbackRule.TabIndex = 8; + this.cbUseFallbackRule.Text = "Automatically use the following viewmode if non of the above mentioned rules does" + + " fit:"; + this.cbUseFallbackRule.UseVisualStyleBackColor = true; + this.cbUseFallbackRule.CheckedChanged += new System.EventHandler(this.cbUseFallbackRule_CheckedChanged); + // // label1 // this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.label1.AutoSize = true; this.label1.ForeColor = System.Drawing.Color.Red; - this.label1.Location = new System.Drawing.Point(3, 249); + this.label1.Location = new System.Drawing.Point(3, 263); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(568, 13); this.label1.TabIndex = 7; @@ -348,7 +371,7 @@ // bCancel // this.bCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.bCancel.Location = new System.Drawing.Point(682, 452); + this.bCancel.Location = new System.Drawing.Point(682, 461); this.bCancel.Name = "bCancel"; this.bCancel.Size = new System.Drawing.Size(50, 23); this.bCancel.TabIndex = 0; @@ -378,6 +401,8 @@ // // groupBox2 // + this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); this.groupBox2.Controls.Add(this.txtLBOverScan); this.groupBox2.Controls.Add(this.label21); this.groupBox2.Controls.Add(this.txbLBDetectionCount); @@ -411,9 +436,9 @@ this.groupBox2.Controls.Add(this.label9); this.groupBox2.Controls.Add(this.label8); this.groupBox2.Controls.Add(this.cbLBOverScan); - this.groupBox2.Location = new System.Drawing.Point(12, 314); + this.groupBox2.Location = new System.Drawing.Point(12, 326); this.groupBox2.Name = "groupBox2"; - this.groupBox2.Size = new System.Drawing.Size(770, 133); + this.groupBox2.Size = new System.Drawing.Size(770, 126); this.groupBox2.TabIndex = 8; this.groupBox2.TabStop = false; this.groupBox2.Text = "Letterbox Options"; @@ -719,9 +744,10 @@ // // label16 // + this.label16.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.label16.AutoSize = true; this.label16.ForeColor = System.Drawing.Color.Red; - this.label16.Location = new System.Drawing.Point(27, 452); + this.label16.Location = new System.Drawing.Point(27, 455); this.label16.Name = "label16"; this.label16.Size = new System.Drawing.Size(177, 13); this.label16.TabIndex = 32; @@ -729,9 +755,10 @@ // // label17 // + this.label17.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.label17.AutoSize = true; this.label17.ForeColor = System.Drawing.Color.Red; - this.label17.Location = new System.Drawing.Point(27, 468); + this.label17.Location = new System.Drawing.Point(27, 471); this.label17.Name = "label17"; this.label17.Size = new System.Drawing.Size(73, 13); this.label17.TabIndex = 33; @@ -739,41 +766,31 @@ // // label19 // + this.label19.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.label19.AutoSize = true; this.label19.Font = new System.Drawing.Font("Microsoft Sans Serif", 28F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label19.ForeColor = System.Drawing.Color.Red; - this.label19.Location = new System.Drawing.Point(10, 444); + this.label19.Location = new System.Drawing.Point(10, 447); this.label19.Name = "label19"; this.label19.Size = new System.Drawing.Size(32, 44); this.label19.TabIndex = 34; this.label19.Text = "!"; // - // cbUseFallbackRule + // cbRescanRulesAfterChannelChange // - this.cbUseFallbackRule.AutoSize = true; - this.cbUseFallbackRule.Location = new System.Drawing.Point(6, 220); - this.cbUseFallbackRule.Name = "cbUseFallbackRule"; - this.cbUseFallbackRule.Size = new System.Drawing.Size(430, 17); - this.cbUseFallbackRule.TabIndex = 8; - this.cbUseFallbackRule.Text = "Automatically use the following viewmode if non of the above mentioned rules does" + - " fit:"; - this.cbUseFallbackRule.UseVisualStyleBackColor = true; - this.cbUseFallbackRule.CheckedChanged += new System.EventHandler(this.cbUseFallbackRule_CheckedChanged); + this.cbRescanRulesAfterChannelChange.AutoSize = true; + this.cbRescanRulesAfterChannelChange.Location = new System.Drawing.Point(6, 243); + this.cbRescanRulesAfterChannelChange.Name = "cbRescanRulesAfterChannelChange"; + this.cbRescanRulesAfterChannelChange.Size = new System.Drawing.Size(192, 17); + this.cbRescanRulesAfterChannelChange.TabIndex = 10; + this.cbRescanRulesAfterChannelChange.Text = "Rescan rules after channel change"; + this.cbRescanRulesAfterChannelChange.UseVisualStyleBackColor = true; // - // cmbViewMode - // - this.cmbViewMode.Enabled = false; - this.cmbViewMode.FormattingEnabled = true; - this.cmbViewMode.Location = new System.Drawing.Point(450, 218); - this.cmbViewMode.Name = "cmbViewMode"; - this.cmbViewMode.Size = new System.Drawing.Size(121, 21); - this.cmbViewMode.TabIndex = 9; - // // ViewModeSwitcherConfig // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(794, 487); + this.ClientSize = new System.Drawing.Size(794, 496); this.Controls.Add(this.groupBox2); this.Controls.Add(this.label17); this.Controls.Add(this.label16); @@ -865,5 +882,6 @@ private System.Windows.Forms.DataGridViewTextBoxColumn ColEnableLBDetect; private System.Windows.Forms.CheckBox cbUseFallbackRule; private System.Windows.Forms.ComboBox cmbViewMode; + private System.Windows.Forms.CheckBox cbRescanRulesAfterChannelChange; } } \ No newline at end of file Modified: trunk/plugins/ViewModeSwitcher/ViewModeSwitcherConfig.cs =================================================================== --- trunk/plugins/ViewModeSwitcher/ViewModeSwitcherConfig.cs 2008-02-04 21:45:54 UTC (rev 1339) +++ trunk/plugins/ViewModeSwitcher/ViewModeSwitcherConfig.cs 2008-02-05 09:42:35 UTC (rev 1340) @@ -47,6 +47,7 @@ this.cbVerboseLog.Checked = currentSettings.verboseLog; this.cbShowSwitchMsg.Checked = currentSettings.ShowSwitchMsg; + this.cbRescanRulesAfterChannelChange.Checked = currentSettings.RescanRulesAfterChannelChange; this.cbSuppressInitialMsg.Checked = currentSettings.SuppressInitialMsg; cbUseFallbackRule.Checked = currentSettings.UseFallbackRule; cmbViewMode.Text = currentSettings.FallBackViewMode.ToString(); @@ -82,6 +83,7 @@ { currentSettings.verboseLog = cbVerboseLog.Checked; currentSettings.ShowSwitchMsg = cbShowSwitchMsg.Checked; + currentSettings.RescanRulesAfterChannelChange = cbRescanRulesAfterChannelChange.Checked; currentSettings.SuppressInitialMsg = cbSuppressInitialMsg.Checked; currentSettings.UseFallbackRule = cbUseFallbackRule.Checked; currentSettings.FallBackViewMode = ViewModeswitcherSettings.StringToViewMode(cmbViewMode.Text); @@ -205,38 +207,38 @@ private void ViewModeSwitcherConfig_Load(object sender, EventArgs e) { - cmbViewMode.Items.Clear(); - using (MediaPortal.Profile.Settings xmlreader = new MediaPortal.Profile.Settings(Config.GetFile(Config.Dir.Config, "MediaPortal.xml"))) - { - if (xmlreader.GetValueAsBool("mytv", "allowarzoom", true)) - { - cmbViewMode.Items.Add(MediaPortal.GUI.Library.Geometry.Type.Zoom.ToString()); - } - if (xmlreader.GetValueAsBool("mytv", "allowarstretch", true)) - { - cmbViewMode.Items.Add(MediaPortal.GUI.Library.Geometry.Type.Stretch.ToString()); - } - if (xmlreader.GetValueAsBool("mytv", "allowarnormal", true)) - { - cmbViewMode.Items.Add(MediaPortal.GUI.Library.Geometry.Type.Normal.ToString()); - } - if (xmlreader.GetValueAsBool("mytv", "allowaroriginal", true)) - { - cmbViewMode.Items.Add(MediaPortal.GUI.Library.Geometry.Type.Original.ToString()); - } - if (xmlreader.GetValueAsBool("mytv", "allowarletterbox", true)) - { - cmbViewMode.Items.Add(MediaPortal.GUI.Library.Geometry.Type.LetterBox43.ToString()); - } - if (xmlreader.GetValueAsBool("mytv", "allowarpanscan", true)) - { - cmbViewMode.Items.Add(MediaPortal.GUI.Library.Geometry.Type.PanScan43.ToString()); - } - if (xmlreader.GetValueAsBool("mytv", "allowarzoom149", true)) - { - cmbViewMode.Items.Add(MediaPortal.GUI.Library.Geometry.Type.Zoom14to9.ToString()); - } - } + cmbViewMode.Items.Clear(); + using (MediaPortal.Profile.Settings xmlreader = new MediaPortal.Profile.Settings(Config.GetFile(Config.Dir.Config, "MediaPortal.xml"))) + { + if (xmlreader.GetValueAsBool("mytv", "allowarzoom", true)) + { + cmbViewMode.Items.Add(MediaPortal.GUI.Library.Geometry.Type.Zoom.ToString()); + } + if (xmlreader.GetValueAsBool("mytv", "allowarstretch", true)) + { + cmbViewMode.Items.Add(MediaPortal.GUI.Library.Geometry.Type.Stretch.ToString()); + } + if (xmlreader.GetValueAsBool("mytv", "allowarnormal", true)) + { + cmbViewMode.Items.Add(MediaPortal.GUI.Library.Geometry.Type.Normal.ToString()); + } + if (xmlreader.GetValueAsBool("mytv", "allowaroriginal", true)) + { + cmbViewMode.Items.Add(MediaPortal.GUI.Library.Geometry.Type.Original.ToString()); + } + if (xmlreader.GetValueAsBool("mytv", "allowarletterbox", true)) + { + cmbViewMode.Items.Add(MediaPortal.GUI.Library.Geometry.Type.LetterBox43.ToString()); + } + if (xmlreader.GetValueAsBool("mytv", "allowarpanscan", true)) + { + cmbViewMode.Items.Add(MediaPortal.GUI.Library.Geometry.Type.PanScan43.ToString()); + } + if (xmlreader.GetValueAsBool("mytv", "allowarzoom149", true)) + { + cmbViewMode.Items.Add(MediaPortal.GUI.Library.Geometry.Type.Zoom14to9.ToString()); + } + } } private void cbUseFallbackRule_CheckedChanged(object sender, EventArgs e) Modified: trunk/plugins/ViewModeSwitcher/ViewModeSwitcherConfig.resx =================================================================== --- trunk/plugins/ViewModeSwitcher/ViewModeSwitcherConfig.resx 2008-02-04 21:45:54 UTC (rev 1339) +++ trunk/plugins/ViewModeSwitcher/ViewModeSwitcherConfig.resx 2008-02-05 09:42:35 UTC (rev 1340) @@ -156,43 +156,4 @@ <metadata name="ColEnableLBDetect.UserAddedColumn" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <value>True</value> </metadata> - <metadata name="ColEnabled.UserAddedColumn" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> - <value>True</value> - </metadata> - <metadata name="ColRuleName.UserAddedColumn" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> - <value>True</value> - </metadata> - <metadata name="ColARFrom.UserAddedColumn" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> - <value>True</value> - </metadata> - <metadata name="ColARTo.UserAddedColumn" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> - <value>True</value> - </metadata> - <metadata name="ColMinWidth.UserAddedColumn" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> - <value>True</value> - </metadata> - <metadata name="ColMaxWidth.UserAddedColumn" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> - <value>True</value> - </metadata> - <metadata name="ColMinHeight.UserAddedColumn" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> - <value>True</value> - </metadata> - <metadata name="ColMaxHeight.UserAddedColumn" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> - <value>True</value> - </metadata> - <metadata name="ColChangeAR.UserAddedColumn" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> - <value>True</value> - </metadata> - <metadata name="ColViewMode.UserAddedColumn" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> - <value>True</value> - </metadata> - <metadata name="ColChangeOS.UserAddedColumn" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> - <value>True</value> - </metadata> - <metadata name="ColOverscan.UserAddedColumn" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> - <value>True</value> - </metadata> - <metadata name="ColEnableLBDetect.UserAddedColumn" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> - <value>True</value> - </metadata> </root> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |