[3824] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[5445] | 3 | * Copyright (C) 2002-2011 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[3824] | 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;
|
---|
| 23 | using System.Windows.Forms;
|
---|
[4068] | 24 | using HeuristicLab.Core.Views;
|
---|
| 25 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Symbols;
|
---|
[3824] | 26 | using HeuristicLab.MainForm;
|
---|
| 27 | using HeuristicLab.MainForm.WindowsForms;
|
---|
| 28 |
|
---|
| 29 | namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views {
|
---|
| 30 | [View("Symbol View")]
|
---|
| 31 | [Content(typeof(Symbol), false)]
|
---|
| 32 | public partial class SymbolView : NamedItemView {
|
---|
| 33 | public new Symbol Content {
|
---|
| 34 | get { return (Symbol)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 |
|
---|
[3904] | 57 | protected override void SetEnabledStateOfControls() {
|
---|
| 58 | base.SetEnabledStateOfControls();
|
---|
[3824] | 59 | initialFrequencyTextBox.Enabled = Content != null;
|
---|
| 60 | initialFrequencyTextBox.ReadOnly = ReadOnly;
|
---|
| 61 | }
|
---|
| 62 |
|
---|
| 63 | #region content event handlers
|
---|
| 64 | private void Content_Changed(object sender, EventArgs e) {
|
---|
| 65 | UpdateControl();
|
---|
| 66 | }
|
---|
| 67 | #endregion
|
---|
| 68 |
|
---|
| 69 | #region control event handlers
|
---|
| 70 | private void initialFrequencyTextBox_TextChanged(object sender, EventArgs e) {
|
---|
| 71 | double freq;
|
---|
| 72 | if (double.TryParse(initialFrequencyTextBox.Text, out freq) && freq >= 0.0) {
|
---|
| 73 | Content.InitialFrequency = freq;
|
---|
| 74 | errorProvider.SetError(initialFrequencyTextBox, string.Empty);
|
---|
| 75 | } else {
|
---|
| 76 | errorProvider.SetError(initialFrequencyTextBox, "Invalid value");
|
---|
| 77 | }
|
---|
| 78 | }
|
---|
| 79 | #endregion
|
---|
| 80 |
|
---|
| 81 | #region helpers
|
---|
| 82 | private void UpdateControl() {
|
---|
| 83 | if (Content == null) {
|
---|
| 84 | initialFrequencyTextBox.Text = string.Empty;
|
---|
| 85 | } else {
|
---|
| 86 | initialFrequencyTextBox.Text = Content.InitialFrequency.ToString();
|
---|
| 87 | }
|
---|
| 88 | SetEnabledStateOfControls();
|
---|
| 89 | }
|
---|
| 90 | #endregion
|
---|
| 91 | }
|
---|
| 92 | }
|
---|