Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.AdvancedOptimizationFrontend/3.3/EditorForm.cs @ 2526

Last change on this file since 2526 was 2520, checked in by swagner, 15 years ago

Implemented first draft of MainForm support in HeuristicLab.Core/HeuristicLab.Core.Views and all other depending plugins (#770)

File size: 3.2 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;
31using HeuristicLab.Core.Views;
32
33namespace HeuristicLab.AdvancedOptimizationFrontend {
34  /// <summary>
35  /// Displays the used editor.
36  /// </summary>
37  public partial class EditorForm : DockContent {
38    private IEditor myEditor;
39    /// <summary>
40    /// Gets the editor that is displayed.
41    /// </summary>
42    public IEditor Editor {
43      get { return myEditor; }
44    }
45
46    /// <summary>
47    /// Initializes a new instance of <see cref="EditorForm"/>.
48    /// </summary>
49    public EditorForm() {
50      InitializeComponent();
51    }
52    /// <summary>
53    /// Initializes a new instance of <see cref="EditorForm"/> with the given <paramref name="editor"/>
54    /// that should be displayed.
55    /// </summary>
56    /// <param name="editor">The editor that should be displayed.</param>
57    public EditorForm(IEditor editor)
58      : this() {
59      myEditor = editor;
60      if (Editor != null) {
61        Control control = (Control)Editor;
62        control.Dock = DockStyle.Fill;
63        editorPanel.Controls.Add(control);
64        Editor.CaptionChanged += new EventHandler(Editor_CaptionChanged);
65        Editor.FilenameChanged += new EventHandler(Editor_FilenameChanged);
66        UpdateText();
67      } else {
68        Label errorLabel = new Label();
69        errorLabel.Name = "errorLabel";
70        errorLabel.Text = "No editor available";
71        errorLabel.AutoSize = false;
72        errorLabel.Dock = DockStyle.Fill;
73        editorPanel.Controls.Add(errorLabel);
74      }
75    }
76
77    private void UpdateText() {
78      if (InvokeRequired)
79        Invoke(new MethodInvoker(UpdateText));
80      else {
81        if (Editor.Filename == null)
82          Text = "Untitled - " + Editor.Caption;
83        else
84          Text = Editor.Filename + " - " + Editor.Caption;
85      }
86    }
87
88    private void EditorForm_TextChanged(object sender, EventArgs e) {
89      TabText = Text;
90    }
91
92    #region Editor Events
93    private void Editor_FilenameChanged(object sender, EventArgs e) {
94      UpdateText();
95    }
96    private void Editor_CaptionChanged(object sender, EventArgs e) {
97      UpdateText();
98    }
99    #endregion
100  }
101}
Note: See TracBrowser for help on using the repository browser.