1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2008 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.Collections.Generic;
|
---|
24 | using System.ComponentModel;
|
---|
25 | using System.Data;
|
---|
26 | using System.Drawing;
|
---|
27 | using System.Text;
|
---|
28 | using System.Windows.Forms;
|
---|
29 | using WeifenLuo.WinFormsUI.Docking;
|
---|
30 | using HeuristicLab.Core;
|
---|
31 |
|
---|
32 | namespace HeuristicLab.AdvancedOptimizationFrontend {
|
---|
33 | /// <summary>
|
---|
34 | /// Displays the used view.
|
---|
35 | /// </summary>
|
---|
36 | public partial class ViewForm : DockContent {
|
---|
37 | private IView myView;
|
---|
38 | /// <summary>
|
---|
39 | /// Gets the view that is displayed.
|
---|
40 | /// </summary>
|
---|
41 | public IView View {
|
---|
42 | get { return myView; }
|
---|
43 | }
|
---|
44 |
|
---|
45 | /// <summary>
|
---|
46 | /// Initializes a new instance of <see cref="ViewForm"/>.
|
---|
47 | /// </summary>
|
---|
48 | public ViewForm() {
|
---|
49 | InitializeComponent();
|
---|
50 | }
|
---|
51 | /// <summary>
|
---|
52 | /// Initializes a new instance of <see cref="ViewForm"/> with the given <paramref name="view"/>
|
---|
53 | /// to display.
|
---|
54 | /// </summary>
|
---|
55 | /// <param name="view">The view that should be displayed.</param>
|
---|
56 | public ViewForm(IView view)
|
---|
57 | : this() {
|
---|
58 | myView = view;
|
---|
59 | if (View != null) {
|
---|
60 | Control control = (Control)View;
|
---|
61 | control.Dock = DockStyle.Fill;
|
---|
62 | viewPanel.Controls.Add(control);
|
---|
63 | View.CaptionChanged += new EventHandler(View_CaptionChanged);
|
---|
64 | UpdateText();
|
---|
65 | } else {
|
---|
66 | Label errorLabel = new Label();
|
---|
67 | errorLabel.Name = "errorLabel";
|
---|
68 | errorLabel.Text = "No view available";
|
---|
69 | errorLabel.AutoSize = false;
|
---|
70 | errorLabel.Dock = DockStyle.Fill;
|
---|
71 | viewPanel.Controls.Add(errorLabel);
|
---|
72 | }
|
---|
73 | }
|
---|
74 |
|
---|
75 | private void UpdateText() {
|
---|
76 | if (InvokeRequired)
|
---|
77 | Invoke(new MethodInvoker(UpdateText));
|
---|
78 | else
|
---|
79 | Text = View.Caption;
|
---|
80 | }
|
---|
81 |
|
---|
82 | private void ViewForm_TextChanged(object sender, EventArgs e) {
|
---|
83 | TabText = Text;
|
---|
84 | }
|
---|
85 |
|
---|
86 | #region View Events
|
---|
87 | private void View_CaptionChanged(object sender, EventArgs e) {
|
---|
88 | UpdateText();
|
---|
89 | }
|
---|
90 | #endregion
|
---|
91 | }
|
---|
92 | }
|
---|