Changeset 13884 for stable/HeuristicLab.PluginInfrastructure
- Timestamp:
- 06/08/16 15:29:05 (8 years ago)
- Location:
- stable
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 13567,13586
- Property svn:mergeinfo changed
-
stable/HeuristicLab.PluginInfrastructure/3.3/Properties/Settings.Designer.cs
r11920 r13884 2 2 // <auto-generated> 3 3 // This code was generated by a tool. 4 // Runtime Version:4.0.30319. 340144 // Runtime Version:4.0.30319.42000 5 5 // 6 6 // Changes to this file may cause incorrect behavior and will be lost if … … 13 13 14 14 [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "1 2.0.0.0")]15 [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "14.0.0.0")] 16 16 public sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 17 … … 83 83 } 84 84 } 85 86 [global::System.Configuration.UserScopedSettingAttribute()] 87 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 88 [global::System.Configuration.DefaultSettingValueAttribute("0, 0")] 89 public global::System.Drawing.Point StarterFormLocation { 90 get { 91 return ((global::System.Drawing.Point)(this["StarterFormLocation"])); 92 } 93 set { 94 this["StarterFormLocation"] = value; 95 } 96 } 97 98 [global::System.Configuration.UserScopedSettingAttribute()] 99 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 100 [global::System.Configuration.DefaultSettingValueAttribute("0, 0")] 101 public global::System.Drawing.Size StarterFormSize { 102 get { 103 return ((global::System.Drawing.Size)(this["StarterFormSize"])); 104 } 105 set { 106 this["StarterFormSize"] = value; 107 } 108 } 109 110 [global::System.Configuration.UserScopedSettingAttribute()] 111 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 112 [global::System.Configuration.DefaultSettingValueAttribute("Normal")] 113 public global::System.Windows.Forms.FormWindowState StarterFormWindowState { 114 get { 115 return ((global::System.Windows.Forms.FormWindowState)(this["StarterFormWindowState"])); 116 } 117 set { 118 this["StarterFormWindowState"] = value; 119 } 120 } 85 121 } 86 122 } -
stable/HeuristicLab.PluginInfrastructure/3.3/Properties/Settings.settings
r4495 r13884 18 18 <Value Profile="(Default)">http://services.heuristiclab.com/Deployment-3.3/AdminService.svc</Value> 19 19 </Setting> 20 <Setting Name="StarterFormLocation" Type="System.Drawing.Point" Scope="User"> 21 <Value Profile="(Default)">0, 0</Value> 22 </Setting> 23 <Setting Name="StarterFormSize" Type="System.Drawing.Size" Scope="User"> 24 <Value Profile="(Default)">0, 0</Value> 25 </Setting> 26 <Setting Name="StarterFormWindowState" Type="System.Windows.Forms.FormWindowState" Scope="User"> 27 <Value Profile="(Default)">Normal</Value> 28 </Setting> 20 29 </Settings> 21 30 </SettingsFile> -
stable/HeuristicLab.PluginInfrastructure/3.3/Starter/StarterForm.cs
r12009 r13884 22 22 using System; 23 23 using System.Collections.Generic; 24 using System.Drawing; 24 25 using System.IO; 25 26 using System.Linq; … … 29 30 using HeuristicLab.PluginInfrastructure.Advanced; 30 31 using HeuristicLab.PluginInfrastructure.Manager; 32 using HeuristicLab.PluginInfrastructure.Properties; 31 33 32 34 namespace HeuristicLab.PluginInfrastructure.Starter { … … 67 69 splashScreen.Show(this, "Loading HeuristicLab..."); 68 70 71 if (CheckSavedStarterFormSettings()) { 72 Location = Settings.Default.StarterFormLocation; 73 Size = Settings.Default.StarterFormSize; 74 WindowState = Settings.Default.StarterFormWindowState; 75 } 76 69 77 pluginManager.DiscoverAndCheckPlugins(); 70 78 UpdateApplicationsList(); … … 96 104 splashScreen.Close(); 97 105 abortRequested = true; 106 107 if (WindowState != FormWindowState.Minimized) 108 Settings.Default.StarterFormWindowState = WindowState; 109 if (WindowState != FormWindowState.Normal) { 110 Settings.Default.StarterFormLocation = RestoreBounds.Location; 111 Settings.Default.StarterFormSize = RestoreBounds.Size; 112 } else if (WindowState == FormWindowState.Normal) { 113 Settings.Default.StarterFormLocation = Location; 114 Settings.Default.StarterFormSize = Size; 115 } 116 117 Settings.Default.Save(); 98 118 } 99 119 … … 177 197 178 198 #region Helpers 199 private bool CheckSavedStarterFormSettings() { 200 var formArea = new Rectangle(Settings.Default.StarterFormLocation, Settings.Default.StarterFormSize); 201 var screenArea = Screen.FromRectangle(formArea).WorkingArea; 202 var overlappingArea = Rectangle.Intersect(formArea, screenArea); 203 bool offLimits = overlappingArea.IsEmpty || overlappingArea.Width * overlappingArea.Height < formArea.Width * formArea.Height * 0.25; 204 return !formArea.IsEmpty && !offLimits; 205 } 206 179 207 private void UpdateApplicationsList() { 180 208 if (InvokeRequired) Invoke((Action)UpdateApplicationsList); -
stable/HeuristicLab.PluginInfrastructure/3.3/app.config
r11920 r13884 23 23 <setting name="UpdateLocationAdministrationAddress" serializeAs="String"> 24 24 <value>http://services.heuristiclab.com/Deployment-3.3/AdminService.svc</value> 25 </setting> 26 <setting name="StarterFormLocation" serializeAs="String"> 27 <value>0, 0</value> 28 </setting> 29 <setting name="StarterFormSize" serializeAs="String"> 30 <value>0, 0</value> 31 </setting> 32 <setting name="StarterFormWindowState" serializeAs="String"> 33 <value>Normal</value> 25 34 </setting> 26 35 </HeuristicLab.PluginInfrastructure.Properties.Settings>
Note: See TracChangeset
for help on using the changeset viewer.