Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PersistenceSpeedUp/HeuristicLab.Encodings.PermutationEncoding.Views/3.3/PermutationView.cs @ 6760

Last change on this file since 6760 was 6760, checked in by epitzer, 13 years ago

#1530 integrate changes from trunk

File size: 3.1 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2011 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.Windows.Forms;
23using HeuristicLab.Data.Views;
24using HeuristicLab.MainForm;
25using HeuristicLab.MainForm.WindowsForms;
26
27namespace HeuristicLab.Encodings.PermutationEncoding.Views {
28  [View("Permutation View")]
29  [Content(typeof(Permutation), IsDefaultView = true)]
30  public partial class PermutationView : StringConvertibleArrayView {
31    public new Permutation Content {
32      get { return (Permutation)base.Content; }
33      set { base.Content = value; }
34    }
35
36    public PermutationView() {
37      InitializeComponent();
38      dataGridView.Top = permutationTypeView.Bottom + permutationTypeView.Margin.Bottom + dataGridView.Margin.Top;
39    }
40
41    #region Register Content Events
42    protected override void DeregisterContentEvents() {
43      Content.PermutationTypeChanged -= new System.EventHandler(Content_PermutationTypeChanged);
44      base.DeregisterContentEvents();
45    }
46    protected override void RegisterContentEvents() {
47      base.RegisterContentEvents();
48      Content.PermutationTypeChanged += new System.EventHandler(Content_PermutationTypeChanged);
49    }
50    #endregion
51
52    protected override void OnContentChanged() {
53      base.OnContentChanged();
54      if (Content == null) {
55        if (permutationTypeView.Content != null)
56          permutationTypeView.Content.ValueChanged -= new System.EventHandler(PermutationTypeView_ValueChanged);
57        permutationTypeView.Content = null;
58      } else {
59        permutationTypeView.Content = new PermutationType(Content.PermutationType);
60        permutationTypeView.Content.ValueChanged += new System.EventHandler(PermutationTypeView_ValueChanged);
61      }
62    }
63
64    protected override void SetEnabledStateOfControls() {
65      base.SetEnabledStateOfControls();
66    }
67
68    #region Event Handlers
69
70    private void Content_PermutationTypeChanged(object sender, System.EventArgs e) {
71      if (permutationTypeView.Content.Value != Content.PermutationType)
72        permutationTypeView.Content.Value = Content.PermutationType;
73    }
74
75    private void PermutationTypeView_ValueChanged(object sender, System.EventArgs e) {
76      if (permutationTypeView.Content.Value != Content.PermutationType)
77        Content.PermutationType = permutationTypeView.Content.Value;
78    }
79    #endregion
80  }
81}
Note: See TracBrowser for help on using the repository browser.