1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2013 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.Windows.Forms;
|
---|
24 | using HeuristicLab.DataImporter.Data.CommandBase;
|
---|
25 |
|
---|
26 | namespace HeuristicLab.DataImporter.Command.View {
|
---|
27 | public partial class DeleteWithThresholdView : CommandViewBase {
|
---|
28 | public DeleteWithThresholdView() {
|
---|
29 | InitializeComponent();
|
---|
30 | }
|
---|
31 |
|
---|
32 | public DeleteWithThresholdView(IThresholdCommand command)
|
---|
33 | : this() {
|
---|
34 | if (command != null) {
|
---|
35 | threshold = command.Threshold;
|
---|
36 | txtThreshold.Text = command.Threshold.ToString();
|
---|
37 | }
|
---|
38 | this.Command = command;
|
---|
39 | }
|
---|
40 |
|
---|
41 | public new IThresholdCommand Command {
|
---|
42 | get { return (IThresholdCommand)base.Command; }
|
---|
43 | set { base.Command = value; this.UpdateCommand(); }
|
---|
44 | }
|
---|
45 |
|
---|
46 | private double threshold;
|
---|
47 |
|
---|
48 | private void txtThreshold_Validating(object sender, System.ComponentModel.CancelEventArgs e) {
|
---|
49 | TextBox textBox = (TextBox)sender;
|
---|
50 | e.Cancel = !Double.TryParse(textBox.Text, out threshold);
|
---|
51 | e.Cancel = e.Cancel || threshold < 0.0 || threshold > 1.0;
|
---|
52 | if (e.Cancel) {
|
---|
53 | MessageBox.Show("Threshold has to be between 0.0 and 1.0");
|
---|
54 | } else {
|
---|
55 | UpdateCommand();
|
---|
56 | }
|
---|
57 | }
|
---|
58 |
|
---|
59 | private void UpdateCommand() {
|
---|
60 | if (this.Command != null) {
|
---|
61 | Command.Threshold = this.threshold;
|
---|
62 | }
|
---|
63 | }
|
---|
64 | }
|
---|
65 | }
|
---|