Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.MainForm.WindowsForms/3.3/MainForms/DockingMainForm.cs @ 7259

Last change on this file since 7259 was 7259, checked in by swagner, 12 years ago

Updated year of copyrights to 2012 (#1716)

File size: 2.3 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2012 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
22using System;
23using System.Windows.Forms;
24
25namespace HeuristicLab.MainForm.WindowsForms {
26  public partial class DockingMainForm : MainForm {
27    public DockingMainForm()
28      : base() {
29      InitializeComponent();
30    }
31    public DockingMainForm(Type userInterfaceItemType)
32      : base(userInterfaceItemType) {
33      InitializeComponent();
34    }
35    public DockingMainForm(Type userInterfaceItemType, bool showContentInViewHost)
36      : this(userInterfaceItemType) {
37      this.ShowContentInViewHost = showContentInViewHost;
38    }
39
40    protected override void ShowView(IView view, bool firstTimeShown) {
41      if (InvokeRequired) Invoke((Action<IView, bool>)ShowView, view, firstTimeShown);
42      else {
43        base.ShowView(view, firstTimeShown);
44        if (firstTimeShown)
45          ((DockForm)GetForm(view)).Show(dockPanel);
46        else
47          ((DockForm)GetForm(view)).Activate();
48      }
49    }
50
51    protected override void Hide(IView view) {
52      if (InvokeRequired) Invoke((Action<IView>)HideView, view);
53      else {
54        Form form = this.GetForm(view);
55        if (form != null) {
56          ((DockForm)form).Hide();
57        }
58      }
59    }
60
61    protected override Form CreateForm(IView view) {
62      return new DockForm(view);
63    }
64
65    private void dockPanel_ActiveContentChanged(object sender, EventArgs e) {
66      DockForm content = this.dockPanel.ActiveContent as DockForm;
67      if (content != null)
68        this.ActiveView = content.View;
69    }
70  }
71}
Note: See TracBrowser for help on using the repository browser.