1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2008 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;
|
---|
23 | using System.Collections.Generic;
|
---|
24 | using System.ComponentModel;
|
---|
25 | using System.Drawing;
|
---|
26 | using System.Data;
|
---|
27 | using System.Text;
|
---|
28 | using System.Windows.Forms;
|
---|
29 |
|
---|
30 | using HeuristicLab.Core;
|
---|
31 | using HeuristicLab.Data;
|
---|
32 |
|
---|
33 | namespace HeuristicLab.TestFunctions {
|
---|
34 | public partial class TestFunctionInjectorView : ViewBase {
|
---|
35 | public TestFunctionInjector TestFunctionInjector {
|
---|
36 | get { return (TestFunctionInjector)base.Item; }
|
---|
37 | set { base.Item = value; }
|
---|
38 | }
|
---|
39 |
|
---|
40 | public TestFunctionInjectorView() {
|
---|
41 | InitializeComponent();
|
---|
42 | }
|
---|
43 |
|
---|
44 | public TestFunctionInjectorView(TestFunctionInjector testFunctionInjector)
|
---|
45 | : this() {
|
---|
46 | TestFunctionInjector = testFunctionInjector;
|
---|
47 | }
|
---|
48 |
|
---|
49 | protected override void RemoveItemEvents() {
|
---|
50 | maximizationCheckBox.DataBindings.Clear();
|
---|
51 | dimensionTextBox.DataBindings.Clear();
|
---|
52 | lowerBoundTextBox.DataBindings.Clear();
|
---|
53 | upperBoundTextBox.DataBindings.Clear();
|
---|
54 | base.RemoveItemEvents();
|
---|
55 | }
|
---|
56 |
|
---|
57 | protected override void AddItemEvents() {
|
---|
58 | base.AddItemEvents();
|
---|
59 | maximizationCheckBox.DataBindings.Add("Checked", TestFunctionInjector, "Maximization");
|
---|
60 | dimensionTextBox.DataBindings.Add("Text", TestFunctionInjector, "Dimension");
|
---|
61 | lowerBoundTextBox.DataBindings.Add("Text", TestFunctionInjector, "LowerBound");
|
---|
62 | upperBoundTextBox.DataBindings.Add("Text", TestFunctionInjector, "UpperBound");
|
---|
63 | }
|
---|
64 |
|
---|
65 | protected override void UpdateControls() {
|
---|
66 | base.UpdateControls();
|
---|
67 | if (TestFunctionInjector == null) {
|
---|
68 | maximizationCheckBox.Enabled = false;
|
---|
69 | maximizationCheckBox.Checked = false;
|
---|
70 | dimensionTextBox.Enabled = false;
|
---|
71 | dimensionTextBox.Text = "-";
|
---|
72 | lowerBoundTextBox.Enabled = false;
|
---|
73 | lowerBoundTextBox.Text = "-";
|
---|
74 | upperBoundTextBox.Enabled = false;
|
---|
75 | upperBoundTextBox.Text = "-";
|
---|
76 | } else {
|
---|
77 | maximizationCheckBox.Enabled = true;
|
---|
78 | dimensionTextBox.Enabled = true;
|
---|
79 | lowerBoundTextBox.Enabled = true;
|
---|
80 | upperBoundTextBox.Enabled = true;
|
---|
81 | }
|
---|
82 | }
|
---|
83 | }
|
---|
84 | }
|
---|