[3437] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[16140] | 3 | * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[3437] | 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.Windows.Forms;
|
---|
| 24 |
|
---|
| 25 | namespace HeuristicLab.MainForm.WindowsForms {
|
---|
| 26 | public partial class DockingMainForm : MainForm {
|
---|
[13628] | 27 |
|
---|
| 28 | public bool AllowContexMenu { get; set; }
|
---|
| 29 |
|
---|
[3437] | 30 | public DockingMainForm()
|
---|
| 31 | : base() {
|
---|
| 32 | InitializeComponent();
|
---|
[13628] | 33 | AllowContexMenu = true;
|
---|
[3437] | 34 | }
|
---|
| 35 | public DockingMainForm(Type userInterfaceItemType)
|
---|
| 36 | : base(userInterfaceItemType) {
|
---|
| 37 | InitializeComponent();
|
---|
[13628] | 38 | AllowContexMenu = true;
|
---|
[3437] | 39 | }
|
---|
[3557] | 40 | public DockingMainForm(Type userInterfaceItemType, bool showContentInViewHost)
|
---|
[3437] | 41 | : this(userInterfaceItemType) {
|
---|
[3557] | 42 | this.ShowContentInViewHost = showContentInViewHost;
|
---|
[3437] | 43 | }
|
---|
| 44 |
|
---|
| 45 | protected override void ShowView(IView view, bool firstTimeShown) {
|
---|
| 46 | if (InvokeRequired) Invoke((Action<IView, bool>)ShowView, view, firstTimeShown);
|
---|
| 47 | else {
|
---|
| 48 | base.ShowView(view, firstTimeShown);
|
---|
| 49 | if (firstTimeShown)
|
---|
| 50 | ((DockForm)GetForm(view)).Show(dockPanel);
|
---|
| 51 | else
|
---|
| 52 | ((DockForm)GetForm(view)).Activate();
|
---|
| 53 | }
|
---|
| 54 | }
|
---|
| 55 |
|
---|
| 56 | protected override void Hide(IView view) {
|
---|
| 57 | if (InvokeRequired) Invoke((Action<IView>)HideView, view);
|
---|
| 58 | else {
|
---|
| 59 | Form form = this.GetForm(view);
|
---|
| 60 | if (form != null) {
|
---|
| 61 | ((DockForm)form).Hide();
|
---|
| 62 | }
|
---|
| 63 | }
|
---|
| 64 | }
|
---|
| 65 |
|
---|
| 66 | protected override Form CreateForm(IView view) {
|
---|
[13628] | 67 | return new DockForm(view, AllowContexMenu);
|
---|
[3437] | 68 | }
|
---|
| 69 |
|
---|
| 70 | private void dockPanel_ActiveContentChanged(object sender, EventArgs e) {
|
---|
| 71 | DockForm content = this.dockPanel.ActiveContent as DockForm;
|
---|
| 72 | if (content != null)
|
---|
| 73 | this.ActiveView = content.View;
|
---|
| 74 | }
|
---|
| 75 | }
|
---|
| 76 | }
|
---|