1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2014 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.Windows.Forms;
|
---|
23 | using HeuristicLab.Data.Views;
|
---|
24 | using HeuristicLab.MainForm;
|
---|
25 | using HeuristicLab.MainForm.WindowsForms;
|
---|
26 |
|
---|
27 | namespace 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 | dataGridView.Height = Bottom - dataGridView.Top;
|
---|
40 | }
|
---|
41 |
|
---|
42 | #region Register Content Events
|
---|
43 | protected override void DeregisterContentEvents() {
|
---|
44 | Content.PermutationTypeChanged -= new System.EventHandler(Content_PermutationTypeChanged);
|
---|
45 | base.DeregisterContentEvents();
|
---|
46 | }
|
---|
47 | protected override void RegisterContentEvents() {
|
---|
48 | base.RegisterContentEvents();
|
---|
49 | Content.PermutationTypeChanged += new System.EventHandler(Content_PermutationTypeChanged);
|
---|
50 | }
|
---|
51 | #endregion
|
---|
52 |
|
---|
53 | protected override void OnContentChanged() {
|
---|
54 | base.OnContentChanged();
|
---|
55 | if (Content == null) {
|
---|
56 | if (permutationTypeView.Content != null)
|
---|
57 | permutationTypeView.Content.ValueChanged -= new System.EventHandler(PermutationTypeView_ValueChanged);
|
---|
58 | permutationTypeView.Content = null;
|
---|
59 | } else {
|
---|
60 | permutationTypeView.Content = new PermutationType(Content.PermutationType);
|
---|
61 | permutationTypeView.Content.ValueChanged += new System.EventHandler(PermutationTypeView_ValueChanged);
|
---|
62 | }
|
---|
63 | }
|
---|
64 |
|
---|
65 | protected override void SetEnabledStateOfControls() {
|
---|
66 | base.SetEnabledStateOfControls();
|
---|
67 | }
|
---|
68 |
|
---|
69 | #region Event Handlers
|
---|
70 |
|
---|
71 | private void Content_PermutationTypeChanged(object sender, System.EventArgs e) {
|
---|
72 | if (permutationTypeView.Content.Value != Content.PermutationType)
|
---|
73 | permutationTypeView.Content.Value = Content.PermutationType;
|
---|
74 | }
|
---|
75 |
|
---|
76 | private void PermutationTypeView_ValueChanged(object sender, System.EventArgs e) {
|
---|
77 | if (permutationTypeView.Content.Value != Content.PermutationType)
|
---|
78 | Content.PermutationType = permutationTypeView.Content.Value;
|
---|
79 | }
|
---|
80 | #endregion
|
---|
81 | }
|
---|
82 | }
|
---|