[2267] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[2790] | 3 | * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[2267] | 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;
|
---|
[2253] | 23 | using System.Collections.Generic;
|
---|
| 24 | using System.ComponentModel;
|
---|
| 25 | using System.Data;
|
---|
| 26 | using System.Drawing;
|
---|
| 27 | using System.Linq;
|
---|
| 28 | using System.Text;
|
---|
| 29 | using System.Windows.Forms;
|
---|
| 30 |
|
---|
[2426] | 31 | namespace HeuristicLab.MainForm.WindowsForms {
|
---|
[2696] | 32 | public partial class MultipleDocumentMainForm : MainForm {
|
---|
[2268] | 33 | public MultipleDocumentMainForm()
|
---|
| 34 | : base() {
|
---|
| 35 | InitializeComponent();
|
---|
| 36 | }
|
---|
| 37 |
|
---|
[2253] | 38 | public MultipleDocumentMainForm(Type userInterfaceType)
|
---|
| 39 | : base(userInterfaceType) {
|
---|
| 40 | InitializeComponent();
|
---|
| 41 | }
|
---|
| 42 |
|
---|
[2761] | 43 | protected override void AdditionalCreationOfGuiElements() {
|
---|
| 44 | base.AdditionalCreationOfGuiElements();
|
---|
[2268] | 45 | ToolStripMenuItem window = new ToolStripMenuItem("Windows");
|
---|
[2696] | 46 | this.menuStrip.MdiWindowListItem = window;
|
---|
| 47 | this.menuStrip.Items.Add(window);
|
---|
[2268] | 48 | }
|
---|
| 49 |
|
---|
[2548] | 50 | protected override void Show(IView view, bool firstTimeShown) {
|
---|
| 51 | if (InvokeRequired) Invoke((Action<IView, bool>)Show, view, firstTimeShown);
|
---|
[2253] | 52 | else {
|
---|
[2548] | 53 | base.Show(view, firstTimeShown);
|
---|
| 54 | if (firstTimeShown)
|
---|
[2696] | 55 | this.GetForm(view).Show();
|
---|
[2443] | 56 | else {
|
---|
[2696] | 57 | this.GetForm(view).Visible = true;
|
---|
| 58 | this.GetForm(view).Activate();
|
---|
[2306] | 59 | }
|
---|
[2253] | 60 | }
|
---|
| 61 | }
|
---|
| 62 |
|
---|
[2548] | 63 | protected override void Hide(IView view) {
|
---|
| 64 | if (InvokeRequired) Invoke((Action<IView>)Hide, view);
|
---|
| 65 | else {
|
---|
| 66 | base.Hide(view);
|
---|
| 67 | this.GetForm(view).Hide();
|
---|
| 68 | }
|
---|
| 69 | }
|
---|
| 70 |
|
---|
[2443] | 71 | protected override Form CreateForm(IView view) {
|
---|
| 72 | Form form = new DocumentForm(view);
|
---|
| 73 | form.MdiParent = this;
|
---|
| 74 | return form;
|
---|
[2305] | 75 | }
|
---|
[2253] | 76 | }
|
---|
| 77 | }
|
---|