Changeset 3292
- Timestamp:
- 04/09/10 03:34:39 (15 years ago)
- Location:
- trunk/sources
- Files:
-
- 3 added
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Core.Views/3.3/HeuristicLab.Core.Views-3.3.csproj
r3289 r3292 87 87 <ItemGroup> 88 88 <None Include="HeuristicLabCoreViewsPlugin.cs.frame" /> 89 <Compile Include="Clipboard.cs"> 90 <SubType>UserControl</SubType> 91 </Compile> 92 <Compile Include="Clipboard.Designer.cs"> 93 <DependentUpon>Clipboard.cs</DependentUpon> 94 </Compile> 89 95 <Compile Include="LogView.cs"> 90 96 <SubType>UserControl</SubType> -
trunk/sources/HeuristicLab.Optimizer/3.3/HeuristicLab.Optimizer-3.3.csproj
r3226 r3292 87 87 <None Include="HeuristicLabOptimizerPlugin.cs.frame" /> 88 88 <Compile Include="FileManager.cs" /> 89 <Compile Include="MenuItems\ClipboardMenuItem.cs" /> 89 90 <Compile Include="MenuItems\StartPageMenuItem.cs" /> 90 91 <Compile Include="Properties\Settings.Designer.cs"> -
trunk/sources/HeuristicLab.Optimizer/3.3/MenuItems/OperatorsMenuItem.cs
r3290 r3292 38 38 } 39 39 public override int Position { 40 get { return 2 200; }40 get { return 2300; } 41 41 } 42 42 -
trunk/sources/HeuristicLab.Optimizer/3.3/OptimizerMainForm.cs
r3290 r3292 30 30 namespace HeuristicLab.Optimizer { 31 31 internal partial class OptimizerMainForm : DockingMainForm { 32 private HeuristicLab.Core.Views.Clipboard clipboard; 33 public HeuristicLab.Core.Views.Clipboard Clipboard { 34 get { return clipboard; } 35 } 36 32 37 public OptimizerMainForm() 33 38 : base() { … … 47 52 if (version != null) Title += " " + version.Version; 48 53 ViewClosed += new EventHandler<ViewEventArgs>(FileManager.ViewClosed); 54 55 clipboard = new HeuristicLab.Core.Views.Clipboard(); 56 clipboard.Dock = DockStyle.Left; 57 if (Properties.Settings.Default.ShowClipboard) { 58 clipboard.Show(); 59 } 49 60 if (Properties.Settings.Default.ShowOperatorsSidebar) { 50 61 OperatorsSidebar operatorsSidebar = new OperatorsSidebar(); -
trunk/sources/HeuristicLab.Optimizer/3.3/Properties/Settings.Designer.cs
r3290 r3292 47 47 } 48 48 } 49 50 [global::System.Configuration.UserScopedSettingAttribute()] 51 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 52 [global::System.Configuration.DefaultSettingValueAttribute("True")] 53 public bool ShowClipboard { 54 get { 55 return ((bool)(this["ShowClipboard"])); 56 } 57 set { 58 this["ShowClipboard"] = value; 59 } 60 } 49 61 } 50 62 } -
trunk/sources/HeuristicLab.Optimizer/3.3/Properties/Settings.settings
r3290 r3292 9 9 <Value Profile="(Default)">False</Value> 10 10 </Setting> 11 <Setting Name="ShowClipboard" Type="System.Boolean" Scope="User"> 12 <Value Profile="(Default)">True</Value> 13 </Setting> 11 14 </Settings> 12 15 </SettingsFile> -
trunk/sources/HeuristicLab.Optimizer/3.3/StartPage.cs
r3291 r3292 57 57 samplesListView.Enabled = false; 58 58 showStartPageCheckBox.Checked = Properties.Settings.Default.ShowStartPage; 59 Cursor = Cursors.AppStarting;60 59 61 60 ThreadPool.QueueUserWorkItem(new WaitCallback(LoadSamples)); … … 113 112 } 114 113 loadingPanel.Visible = false; 115 Cursor = Cursors.Default;116 114 } 117 115 } -
trunk/sources/HeuristicLab.Optimizer/3.3/app.config
r3290 r3292 14 14 <value>False</value> 15 15 </setting> 16 <setting name="ShowClipboard" serializeAs="String"> 17 <value>True</value> 18 </setting> 16 19 </HeuristicLab.Optimizer.Properties.Settings> 17 20 </userSettings>
Note: See TracChangeset
for help on using the changeset viewer.