Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.CEDMA.Core/3.3/DataSetView.cs @ 2230

Last change on this file since 2230 was 2230, checked in by mkommend, 15 years ago

added last changes in CEDMA.Core (ticket #712)

File size: 2.6 KB
Line 
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
22using System;
23using System.Collections.Generic;
24using System.ComponentModel;
25using System.Drawing;
26using System.Data;
27using System.Linq;
28using System.Text;
29using System.Windows.Forms;
30using HeuristicLab.Core;
31using HeuristicLab.CEDMA.DB.Interfaces;
32using HeuristicLab.PluginInfrastructure;
33
34namespace HeuristicLab.CEDMA.Core {
35  public partial class DataSetView : ViewBase {
36    private DataSet dataSet;
37    public DataSet DataSet {
38      get { return dataSet; }
39      set { dataSet = value; }
40    }
41    private Results results;
42    public DataSetView() {
43      InitializeComponent();
44      Caption = "Data Set";
45    }
46    public DataSetView(DataSet dataSet)
47      : this() {
48      DataSet = dataSet;
49      UpdateControls();
50    }
51
52    protected override void UpdateControls() {
53      base.UpdateControls();
54      editorGroupBox.Controls.Clear();
55      Control problemControl = (Control)DataSet.Problem.CreateView();
56      problemControl.Dock = DockStyle.Fill;
57      editorGroupBox.Controls.Add(problemControl);
58      PopulateViewComboBox();
59      resultsButton.Enabled = viewComboBox.SelectedItem != null;
60      if (dataSet.Activated) {
61        activateButton.Enabled = false;
62        editorGroupBox.Enabled = true;
63        viewComboBox.Enabled = true;
64        resultsButton.Enabled = true;
65        progressBar.Enabled = true;
66      } else {
67        activateButton.Enabled = true;
68        editorGroupBox.Enabled = true;
69        viewComboBox.Enabled = false;
70        resultsButton.Enabled = false;
71        progressBar.Enabled = false;
72      }
73    }
74
75
76    private void activateButton_Click(object sender, EventArgs e) {
77      DataSet.Activate();
78      activateButton.Enabled = false;
79    }
80
81
82    private void ReloadResults() {
83      results = dataSet.GetResults();
84    }
85  }
86}
87
Note: See TracBrowser for help on using the repository browser.