[2790] | 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;
|
---|
[2931] | 23 | using System.Linq;
|
---|
[2547] | 24 | using System.Reflection;
|
---|
| 25 | using System.Windows.Forms;
|
---|
[3376] | 26 | using HeuristicLab.Common;
|
---|
[3298] | 27 | using HeuristicLab.Core;
|
---|
[2790] | 28 | using HeuristicLab.Core.Views;
|
---|
[2547] | 29 | using HeuristicLab.MainForm;
|
---|
| 30 | using HeuristicLab.MainForm.WindowsForms;
|
---|
| 31 |
|
---|
| 32 | namespace HeuristicLab.Optimizer {
|
---|
| 33 | internal partial class OptimizerMainForm : DockingMainForm {
|
---|
[3298] | 34 | private Clipboard<IItem> clipboard;
|
---|
| 35 | public Clipboard<IItem> Clipboard {
|
---|
[3292] | 36 | get { return clipboard; }
|
---|
| 37 | }
|
---|
| 38 |
|
---|
[2547] | 39 | public OptimizerMainForm()
|
---|
| 40 | : base() {
|
---|
| 41 | InitializeComponent();
|
---|
| 42 | }
|
---|
| 43 | public OptimizerMainForm(Type userInterfaceItemType)
|
---|
| 44 | : base(userInterfaceItemType) {
|
---|
| 45 | InitializeComponent();
|
---|
| 46 | }
|
---|
[3395] | 47 | public OptimizerMainForm(Type userInterfaceItemType, bool showViewsInViewHost)
|
---|
[3394] | 48 | : this(userInterfaceItemType) {
|
---|
[3395] | 49 | this.ShowViewsInViewHost = showViewsInViewHost;
|
---|
[3394] | 50 | }
|
---|
[2547] | 51 |
|
---|
[2791] | 52 | protected override void OnInitialized(EventArgs e) {
|
---|
| 53 | base.OnInitialized(e);
|
---|
[2931] | 54 | AssemblyFileVersionAttribute version = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyFileVersionAttribute), true).
|
---|
| 55 | Cast<AssemblyFileVersionAttribute>().FirstOrDefault();
|
---|
| 56 | Title = "HeuristicLab Optimizer";
|
---|
| 57 | if (version != null) Title += " " + version.Version;
|
---|
[2790] | 58 | ViewClosed += new EventHandler<ViewEventArgs>(FileManager.ViewClosed);
|
---|
[3292] | 59 |
|
---|
[3298] | 60 | clipboard = new Clipboard<IItem>();
|
---|
[3292] | 61 | clipboard.Dock = DockStyle.Left;
|
---|
| 62 | if (Properties.Settings.Default.ShowClipboard) {
|
---|
| 63 | clipboard.Show();
|
---|
| 64 | }
|
---|
[3290] | 65 | if (Properties.Settings.Default.ShowOperatorsSidebar) {
|
---|
| 66 | OperatorsSidebar operatorsSidebar = new OperatorsSidebar();
|
---|
| 67 | operatorsSidebar.Dock = DockStyle.Left;
|
---|
| 68 | operatorsSidebar.Show();
|
---|
| 69 | }
|
---|
[3163] | 70 | if (Properties.Settings.Default.ShowStartPage) {
|
---|
| 71 | StartPage startPage = new StartPage();
|
---|
| 72 | startPage.Show();
|
---|
| 73 | }
|
---|
[2547] | 74 | }
|
---|
| 75 | }
|
---|
| 76 | }
|
---|