Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.AdvancedOptimizationFrontend/ViewForm.cs @ 1185

Last change on this file since 1185 was 1185, checked in by vdorfer, 15 years ago

Created API documentation for HeuristicLab.AdvancedOptimizationFrontend namespace (#331)

File size: 2.8 KB
Line 
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
22using System;
23using System.Collections.Generic;
24using System.ComponentModel;
25using System.Data;
26using System.Drawing;
27using System.Text;
28using System.Windows.Forms;
29using WeifenLuo.WinFormsUI.Docking;
30using HeuristicLab.Core;
31
32namespace 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}
Note: See TracBrowser for help on using the repository browser.