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