1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2011 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.Data;
|
---|
26 | using System.Drawing;
|
---|
27 | using System.Text;
|
---|
28 | using System.Windows.Forms;
|
---|
29 | using HeuristicLab.DataImporter.Data;
|
---|
30 |
|
---|
31 | namespace HeuristicLab.DataImporter.Command.View {
|
---|
32 | public partial class ChangeDateTimeCommandView : HeuristicLab.DataImporter.Data.CommandBase.CommandViewBase {
|
---|
33 | private ChangeDateTimeCommandView() {
|
---|
34 | InitializeComponent();
|
---|
35 | cmbUnit.SelectedIndex = 0;
|
---|
36 | startTime = new DateTime(1900, 1, 1);
|
---|
37 | txtStartTime.Text = startTime.ToString();
|
---|
38 | UpdateCommand();
|
---|
39 | }
|
---|
40 |
|
---|
41 | public ChangeDateTimeCommandView(ChangeDateTimeColumnToDoubleColumn command)
|
---|
42 | : this() {
|
---|
43 | this.Command = command;
|
---|
44 | }
|
---|
45 |
|
---|
46 | public new ChangeDateTimeColumnToDoubleColumn Command {
|
---|
47 | get { return (ChangeDateTimeColumnToDoubleColumn)base.Command; }
|
---|
48 | set { base.Command = value; this.UpdateCommand(); }
|
---|
49 | }
|
---|
50 |
|
---|
51 | private DateTimeSpan frequency;
|
---|
52 | public DateTimeSpan Frequency {
|
---|
53 | get { return this.frequency; }
|
---|
54 | }
|
---|
55 |
|
---|
56 | private DateTime startTime;
|
---|
57 | public DateTime StartTime {
|
---|
58 | get { return this.startTime; }
|
---|
59 | }
|
---|
60 |
|
---|
61 | private void UpdateCommand() {
|
---|
62 | if(this.Command != null) {
|
---|
63 | this.Command.StartTime = this.startTime;
|
---|
64 | this.Command.Frequency = this.Frequency;
|
---|
65 | }
|
---|
66 | }
|
---|
67 |
|
---|
68 | private void txtStartTime_Validating(object sender, CancelEventArgs e) {
|
---|
69 | if (!DateTime.TryParse(txtStartTime.Text, out startTime)) {
|
---|
70 | e.Cancel = true;
|
---|
71 | MessageBox.Show("A date value must be entered (e.g. " + DateTime.Now.ToString() + ").");
|
---|
72 | } else
|
---|
73 | this.UpdateCommand();
|
---|
74 | }
|
---|
75 |
|
---|
76 | private void cmbUnit_SelectedIndexChanged(object sender, EventArgs e) {
|
---|
77 | CalculateNewFrequency();
|
---|
78 | }
|
---|
79 |
|
---|
80 | private void CalculateNewFrequency() {
|
---|
81 | frequency = new DateTimeSpan();
|
---|
82 | switch (cmbUnit.SelectedIndex) {
|
---|
83 | case 0:
|
---|
84 | frequency.Seconds = 1;
|
---|
85 | break;
|
---|
86 | case 1:
|
---|
87 | frequency.Minutes = 1;
|
---|
88 | break;
|
---|
89 | case 2:
|
---|
90 | frequency.Hours = 1;
|
---|
91 | break;
|
---|
92 | case 3:
|
---|
93 | frequency.Days = 1;
|
---|
94 | break;
|
---|
95 | }
|
---|
96 | this.UpdateCommand();
|
---|
97 | }
|
---|
98 |
|
---|
99 | }
|
---|
100 | }
|
---|