Free cookie consent management tool by TermsFeed Policy Generator

source: tags/3.3.0/HeuristicLab.Problems.ArtificialAnt.Views/3.3/AntTrailSymbolicExpressionTreeView.cs @ 14488

Last change on this file since 14488 was 3681, checked in by gkronber, 14 years ago

Adapted analyzers to use ScopeTreeLookupParameter and wire the depth setting correctly for

  • SymbolicExpressionTreeEncoding
  • ArtificialAntProblem
  • SymbolicRegression

#999

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