Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3138_Shape_Constraints_Transformations/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views/3.4/SymbolView.cs @ 18180

Last change on this file since 18180 was 18180, checked in by dpiringe, 2 years ago

#3138

  • merged trunk into branch
File size: 4.3 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 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.ComponentModel;
24using System.Windows.Forms;
25using HeuristicLab.Core.Views;
26using HeuristicLab.MainForm;
27using HeuristicLab.MainForm.WindowsForms;
28
29namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views {
30  [View("Symbol View")]
31  [Content(typeof(ISymbol), true)]
32  public partial class SymbolView : NamedItemView {
33    public new ISymbol Content {
34      get { return (ISymbol)base.Content; }
35      set { base.Content = value; }
36    }
37
38    public SymbolView() {
39      InitializeComponent();
40    }
41
42    protected override void RegisterContentEvents() {
43      base.RegisterContentEvents();
44      Content.Changed += new EventHandler(Content_Changed);
45    }
46
47    protected override void DeregisterContentEvents() {
48      base.DeregisterContentEvents();
49      Content.Changed -= new EventHandler(Content_Changed);
50    }
51
52    protected override void OnContentChanged() {
53      base.OnContentChanged();
54      UpdateControl();
55    }
56
57    protected override void SetEnabledStateOfControls() {
58      base.SetEnabledStateOfControls();
59      initialFrequencyTextBox.Enabled = Content != null && !Locked;
60      initialFrequencyTextBox.ReadOnly = ReadOnly;
61      enabledCheckBox.Enabled = Content != null && !Locked && !ReadOnly;
62    }
63
64    #region content event handlers
65    private void Content_Changed(object sender, EventArgs e) {
66      UpdateControl();
67    }
68    #endregion
69
70    #region control event handlers
71    private void initialFrequencyTextBox_KeyDown(object sender, KeyEventArgs e) {
72      if ((e.KeyCode == Keys.Enter) || (e.KeyCode == Keys.Return)) {
73        initialFrequencyLabel.Select();  // select label to validate data
74        e.SuppressKeyPress = true;
75      } else  if (e.KeyCode == Keys.Escape) {
76        initialFrequencyTextBox.Text = Content.InitialFrequency.ToString();
77        initialFrequencyLabel.Select();  // select label to validate data
78        e.SuppressKeyPress = true;
79      }
80    }
81    private void initialFrequencyTextBox_Validating(object sender, CancelEventArgs e) {
82      double freq;
83      if (double.TryParse(initialFrequencyTextBox.Text, out freq) && freq >= 0.0) {
84        errorProvider.SetError(initialFrequencyTextBox, string.Empty);
85        e.Cancel = false;
86      } else {
87        errorProvider.SetError(initialFrequencyTextBox, "Invalid value");
88        e.Cancel = true;
89      }
90    }
91    private void initialFrequencyTextBox_Validated(object sender, EventArgs e) {
92      double freq;
93      if (double.TryParse(initialFrequencyTextBox.Text, out freq) && freq >= 0.0) {
94        Content.InitialFrequency = freq;
95      }
96    }
97
98    private void checkBoxEnabled_CheckedChanged(object sender, EventArgs e) {
99      if (Content != null)
100        Content.Enabled = enabledCheckBox.Checked;
101    }
102    #endregion
103
104    #region helpers
105    private void UpdateControl() {
106      if (Content == null) {
107        initialFrequencyTextBox.Text = string.Empty;
108        minimumArityTextBox.Text = string.Empty;
109        maximumArityTextBox.Text = string.Empty;
110        enabledCheckBox.Checked = false;
111      } else {
112        initialFrequencyTextBox.Text = Content.InitialFrequency.ToString();
113        minimumArityTextBox.Text = Content.MinimumArity.ToString();
114        maximumArityTextBox.Text = Content.MaximumArity.ToString();
115        enabledCheckBox.Checked = Content.Enabled;
116      }
117      SetEnabledStateOfControls();
118    }
119    #endregion
120
121  }
122}
Note: See TracBrowser for help on using the repository browser.