1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
4 | *
|
---|
5 | * This file is part of HeuristicLab.
|
---|
6 | *
|
---|
7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
8 | * it under the terms of the GNU General Public License as published by
|
---|
9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
10 | * (at your option) any later version.
|
---|
11 | *
|
---|
12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
15 | * GNU General Public License for more details.
|
---|
16 | *
|
---|
17 | * You should have received a copy of the GNU General Public License
|
---|
18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
19 | */
|
---|
20 | #endregion
|
---|
21 |
|
---|
22 | using System;
|
---|
23 | using System.Linq;
|
---|
24 | using System.Reflection;
|
---|
25 | using System.Windows.Forms;
|
---|
26 | using HeuristicLab.Core;
|
---|
27 | using HeuristicLab.Core.Views;
|
---|
28 | using HeuristicLab.MainForm;
|
---|
29 | using HeuristicLab.MainForm.WindowsForms;
|
---|
30 |
|
---|
31 | namespace HeuristicLab.Optimizer {
|
---|
32 | internal partial class OptimizerMainForm : DockingMainForm {
|
---|
33 | private Clipboard<IItem> clipboard;
|
---|
34 | public Clipboard<IItem> Clipboard {
|
---|
35 | get { return clipboard; }
|
---|
36 | }
|
---|
37 |
|
---|
38 | public OptimizerMainForm()
|
---|
39 | : base() {
|
---|
40 | InitializeComponent();
|
---|
41 | }
|
---|
42 |
|
---|
43 | public OptimizerMainForm(Type userInterfaceItemType)
|
---|
44 | : base(userInterfaceItemType) {
|
---|
45 | InitializeComponent();
|
---|
46 | }
|
---|
47 |
|
---|
48 | protected override void OnInitialized(EventArgs e) {
|
---|
49 | base.OnInitialized(e);
|
---|
50 | AssemblyFileVersionAttribute version = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyFileVersionAttribute), true).
|
---|
51 | Cast<AssemblyFileVersionAttribute>().FirstOrDefault();
|
---|
52 | Title = "HeuristicLab Optimizer";
|
---|
53 | if (version != null) Title += " " + version.Version;
|
---|
54 | ViewClosed += new EventHandler<ViewEventArgs>(FileManager.ViewClosed);
|
---|
55 |
|
---|
56 | clipboard = new Clipboard<IItem>();
|
---|
57 | clipboard.Dock = DockStyle.Left;
|
---|
58 | if (Properties.Settings.Default.ShowClipboard) {
|
---|
59 | clipboard.Show();
|
---|
60 | }
|
---|
61 | if (Properties.Settings.Default.ShowOperatorsSidebar) {
|
---|
62 | OperatorsSidebar operatorsSidebar = new OperatorsSidebar();
|
---|
63 | operatorsSidebar.Dock = DockStyle.Left;
|
---|
64 | operatorsSidebar.Show();
|
---|
65 | }
|
---|
66 | if (Properties.Settings.Default.ShowStartPage) {
|
---|
67 | StartPage startPage = new StartPage();
|
---|
68 | startPage.Show();
|
---|
69 | }
|
---|
70 | }
|
---|
71 | }
|
---|
72 | }
|
---|