1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2010 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.Drawing;
|
---|
24 | using System.Windows.Forms;
|
---|
25 | using HeuristicLab.Core.Views;
|
---|
26 | using HeuristicLab.Data;
|
---|
27 | using HeuristicLab.MainForm;
|
---|
28 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
|
---|
29 | using System.Collections.Generic;
|
---|
30 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views;
|
---|
31 |
|
---|
32 | namespace HeuristicLab.Problems.ArtificialAnt.Views {
|
---|
33 | [View("Artificial Ant Symbolic Expression Tree View")]
|
---|
34 | [Content(typeof(AntTrail), false)]
|
---|
35 | public sealed partial class AntTrailSymbolicExpressionTreeView : ItemView {
|
---|
36 | private GraphicalSymbolicExpressionTreeView treeView;
|
---|
37 |
|
---|
38 | public new AntTrail Content {
|
---|
39 | get { return (AntTrail)base.Content; }
|
---|
40 | set { base.Content = value; }
|
---|
41 | }
|
---|
42 |
|
---|
43 | public AntTrailSymbolicExpressionTreeView() {
|
---|
44 | InitializeComponent();
|
---|
45 | treeView = new GraphicalSymbolicExpressionTreeView();
|
---|
46 | treeView.Dock = DockStyle.Fill;
|
---|
47 | symExpressionGroupBox.Controls.Add(treeView);
|
---|
48 | }
|
---|
49 |
|
---|
50 | protected override void DeregisterContentEvents() {
|
---|
51 | Content.SymbolicExpressionTreeChanged -= new EventHandler(Content_SymbolicExpressionTreeChanged);
|
---|
52 | base.DeregisterContentEvents();
|
---|
53 | }
|
---|
54 | protected override void RegisterContentEvents() {
|
---|
55 | base.RegisterContentEvents();
|
---|
56 | Content.SymbolicExpressionTreeChanged += new EventHandler(Content_SymbolicExpressionTreeChanged);
|
---|
57 | }
|
---|
58 |
|
---|
59 | protected override void OnContentChanged() {
|
---|
60 | base.OnContentChanged();
|
---|
61 | if (Content == null) {
|
---|
62 | treeView.Content = null;
|
---|
63 | } else {
|
---|
64 | treeView.Content = Content.SymbolicExpressionTree;
|
---|
65 | }
|
---|
66 | }
|
---|
67 |
|
---|
68 | void Content_SymbolicExpressionTreeChanged(object sender, EventArgs e) {
|
---|
69 | if (InvokeRequired)
|
---|
70 | Invoke(new EventHandler(Content_SymbolicExpressionTreeChanged), sender, e);
|
---|
71 | else
|
---|
72 | OnContentChanged();
|
---|
73 | }
|
---|
74 | }
|
---|
75 | }
|
---|