Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OaaS/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/Symbols/VariableConditionView.cs @ 8228

Last change on this file since 8228 was 8103, checked in by sforsten, 12 years ago

#1821: made changes according to mkommend's comments

File size: 10.9 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2012 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.Linq;
24using System.Windows.Forms;
25using HeuristicLab.Collections;
26using HeuristicLab.Core;
27using HeuristicLab.Core.Views;
28using HeuristicLab.Data;
29using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views;
30using HeuristicLab.MainForm;
31using HeuristicLab.MainForm.WindowsForms;
32
33namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Views {
34  [View("Variable View")]
35  [Content(typeof(VariableCondition), true)]
36  public partial class VariableConditionView : SymbolView {
37    private readonly CheckedItemCollectionView<StringValue> variableNamesView;
38
39    public new VariableCondition Content {
40      get { return (VariableCondition)base.Content; }
41      set { base.Content = value; }
42    }
43
44    public VariableConditionView() {
45      InitializeComponent();
46      variableNamesView = new CheckedItemCollectionView<StringValue>();
47      variableNamesView.Dock = DockStyle.Fill;
48      variableNamesTabPage.Controls.Add(variableNamesView);
49      variableNamesView.Content = new CheckedItemCollection<StringValue>();
50
51      RegisterVariableNamesViewContentEvents();
52    }
53
54    private void RegisterVariableNamesViewContentEvents() {
55      variableNamesView.Content.ItemsAdded += new CollectionItemsChangedEventHandler<StringValue>(VariableNames_Changed);
56      variableNamesView.Content.ItemsRemoved += new CollectionItemsChangedEventHandler<StringValue>(VariableNames_Changed);
57      variableNamesView.Content.CheckedItemsChanged += new CollectionItemsChangedEventHandler<StringValue>(VariableNames_Changed);
58      variableNamesView.Content.CollectionReset += new CollectionItemsChangedEventHandler<StringValue>(VariableNames_Changed);
59      foreach (var variable in variableNamesView.Content) {
60        variable.ValueChanged += new EventHandler(Variable_ValueChanged);
61      }
62    }
63
64    private void DeregisterVariableNamesViewContentEvents() {
65      variableNamesView.Content.ItemsAdded -= new CollectionItemsChangedEventHandler<StringValue>(VariableNames_Changed);
66      variableNamesView.Content.ItemsRemoved -= new CollectionItemsChangedEventHandler<StringValue>(VariableNames_Changed);
67      variableNamesView.Content.CheckedItemsChanged -= new CollectionItemsChangedEventHandler<StringValue>(VariableNames_Changed);
68      variableNamesView.Content.CollectionReset -= new CollectionItemsChangedEventHandler<StringValue>(VariableNames_Changed);
69      foreach (var variable in variableNamesView.Content) {
70        variable.ValueChanged -= new EventHandler(Variable_ValueChanged);
71      }
72    }
73
74    protected override void RegisterContentEvents() {
75      base.RegisterContentEvents();
76      Content.Changed += new EventHandler(Content_Changed);
77    }
78    protected override void DeregisterContentEvents() {
79      base.DeregisterContentEvents();
80      Content.Changed -= new EventHandler(Content_Changed);
81    }
82    protected override void OnContentChanged() {
83      base.OnContentChanged();
84      UpdateControl();
85    }
86    private void Content_Changed(object sender, EventArgs e) {
87      UpdateControl();
88    }
89
90    protected override void SetEnabledStateOfControls() {
91      base.SetEnabledStateOfControls();
92      thresholdInitializationMuTextBox.Enabled = Content != null;
93      thresholdInitializationMuTextBox.ReadOnly = ReadOnly;
94      thresholdInitializationSigmaTextBox.Enabled = Content != null;
95      thresholdInitializationSigmaTextBox.ReadOnly = ReadOnly;
96      slopeInitializationMuTextBox.Enabled = Content != null;
97      slopeInitializationMuTextBox.ReadOnly = ReadOnly;
98      slopeInitializationSigmaTextBox.Enabled = Content != null;
99      slopeInitializationSigmaTextBox.ReadOnly = ReadOnly;
100
101      thresholdChangeMuTextBox.Enabled = Content != null;
102      thresholdChangeMuTextBox.ReadOnly = ReadOnly;
103      thresholdChangeSigmaTextBox.Enabled = Content != null;
104      thresholdChangeSigmaTextBox.ReadOnly = ReadOnly;
105      slopeChangeMuTextBox.Enabled = Content != null;
106      slopeChangeMuTextBox.ReadOnly = ReadOnly;
107      slopeChangeSigmaTextBox.Enabled = Content != null;
108      slopeChangeSigmaTextBox.ReadOnly = ReadOnly;
109    }
110
111    private void UpdateControl() {
112      if (Content == null) {
113        thresholdInitializationMuTextBox.Text = string.Empty;
114        thresholdInitializationSigmaTextBox.Text = string.Empty;
115        slopeInitializationMuTextBox.Text = string.Empty;
116        slopeInitializationSigmaTextBox.Text = string.Empty;
117        thresholdChangeMuTextBox.Text = string.Empty;
118        thresholdChangeSigmaTextBox.Text = string.Empty;
119        slopeChangeMuTextBox.Text = string.Empty;
120        slopeChangeSigmaTextBox.Text = string.Empty;
121        // temporarily deregister to prevent circular calling of events
122        DeregisterVariableNamesViewContentEvents();
123        variableNamesView.Content.Clear();
124        RegisterVariableNamesViewContentEvents();
125      } else {
126        var existingEntries = variableNamesView.Content.ToList();
127
128        // temporarily deregister to prevent circular calling of events
129        DeregisterVariableNamesViewContentEvents();
130        // add additional entries
131        foreach (var variableName in Content.VariableNames.Except(existingEntries.Select(x => x.Value)))
132          variableNamesView.Content.Add(new StringValue(variableName), true);
133        foreach (var oldEntry in existingEntries.Where(x => !Content.VariableNames.Contains(x.Value)))
134          variableNamesView.Content.Remove(oldEntry);
135        RegisterVariableNamesViewContentEvents();
136
137        thresholdInitializationMuTextBox.Text = Content.ThresholdInitializerMu.ToString();
138        thresholdInitializationSigmaTextBox.Text = Content.ThresholdInitializerSigma.ToString();
139        slopeInitializationMuTextBox.Text = Content.SlopeInitializerMu.ToString();
140        slopeInitializationSigmaTextBox.Text = Content.SlopeInitializerSigma.ToString();
141        thresholdChangeMuTextBox.Text = Content.ThresholdManipulatorMu.ToString();
142        thresholdChangeSigmaTextBox.Text = Content.ThresholdManipulatorSigma.ToString();
143        slopeChangeMuTextBox.Text = Content.SlopeManipulatorMu.ToString();
144        slopeChangeSigmaTextBox.Text = Content.SlopeManipulatorSigma.ToString();
145      }
146      SetEnabledStateOfControls();
147    }
148
149    #region control events
150    private void VariableNames_Changed(object sender, CollectionItemsChangedEventArgs<StringValue> e) {
151      foreach (var newVar in e.Items)
152        newVar.ValueChanged += new EventHandler(Variable_ValueChanged);
153      foreach (var oldVar in e.OldItems)
154        oldVar.ValueChanged -= new EventHandler(Variable_ValueChanged);
155      UpdateContent();
156    }
157
158    private void Variable_ValueChanged(object sender, EventArgs e) {
159      UpdateContent();
160    }
161
162    private void UpdateContent() {
163      if (Content != null) {
164        DeregisterContentEvents();
165        Content.VariableNames = variableNamesView.Content.CheckedItems.Select(x => x.Value).ToList();
166        RegisterContentEvents();
167      }
168    }
169
170    private void ThresholdInitializationMuTextBox_TextChanged(object sender, EventArgs e) {
171      double value;
172      if (double.TryParse(thresholdInitializationMuTextBox.Text, out value)) {
173        Content.ThresholdInitializerMu = value;
174        errorProvider.SetError(thresholdInitializationMuTextBox, string.Empty);
175      } else errorProvider.SetError(thresholdInitializationMuTextBox, "Invalid value");
176    }
177    private void ThresholdInitializationSigmaTextBox_TextChanged(object sender, EventArgs e) {
178      double value;
179      if (double.TryParse(thresholdInitializationSigmaTextBox.Text, out value)) {
180        Content.ThresholdInitializerSigma = value;
181        errorProvider.SetError(thresholdInitializationSigmaTextBox, string.Empty);
182      } else errorProvider.SetError(thresholdInitializationSigmaTextBox, "Invalid value");
183    }
184    private void SlopeInitializationMuTextBox_TextChanged(object sender, EventArgs e) {
185      double value;
186      if (double.TryParse(slopeInitializationMuTextBox.Text, out value)) {
187        Content.SlopeInitializerMu = value;
188        errorProvider.SetError(slopeInitializationMuTextBox, string.Empty);
189      } else errorProvider.SetError(slopeInitializationMuTextBox, "Invalid value");
190    }
191    private void SlopeInitializationSigmaTextBox_TextChanged(object sender, EventArgs e) {
192      double value;
193      if (double.TryParse(slopeInitializationSigmaTextBox.Text, out value)) {
194        Content.SlopeInitializerSigma = value;
195        errorProvider.SetError(slopeInitializationSigmaTextBox, string.Empty);
196      } else errorProvider.SetError(slopeInitializationSigmaTextBox, "Invalid value");
197    }
198
199    private void ThresholdChangeMuTextBox_TextChanged(object sender, EventArgs e) {
200      double value;
201      if (double.TryParse(thresholdChangeMuTextBox.Text, out value)) {
202        Content.ThresholdManipulatorMu = value;
203        errorProvider.SetError(thresholdChangeMuTextBox, string.Empty);
204      } else errorProvider.SetError(thresholdChangeMuTextBox, "Invalid value");
205    }
206
207    private void ThresholdChangeSigmaTextBox_TextChanged(object sender, EventArgs e) {
208      double value;
209      if (double.TryParse(thresholdChangeSigmaTextBox.Text, out value)) {
210        Content.ThresholdManipulatorSigma = value;
211        errorProvider.SetError(thresholdChangeSigmaTextBox, string.Empty);
212      } else errorProvider.SetError(thresholdChangeSigmaTextBox, "Invalid value");
213    }
214    private void SlopeChangeMuTextBox_TextChanged(object sender, EventArgs e) {
215      double value;
216      if (double.TryParse(slopeChangeMuTextBox.Text, out value)) {
217        Content.SlopeManipulatorMu = value;
218        errorProvider.SetError(slopeChangeMuTextBox, string.Empty);
219      } else errorProvider.SetError(slopeChangeMuTextBox, "Invalid value");
220    }
221
222    private void SlopeChangeSigmaTextBox_TextChanged(object sender, EventArgs e) {
223      double value;
224      if (double.TryParse(slopeChangeSigmaTextBox.Text, out value)) {
225        Content.SlopeManipulatorSigma = value;
226        errorProvider.SetError(slopeChangeSigmaTextBox, string.Empty);
227      } else errorProvider.SetError(slopeChangeSigmaTextBox, "Invalid value");
228    }
229    #endregion
230  }
231}
Note: See TracBrowser for help on using the repository browser.