Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Constraints/ItemTypeConstraintView.cs @ 2

Last change on this file since 2 was 2, checked in by swagner, 16 years ago

Added HeuristicLab 3.0 sources from former SVN repository at revision 52

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.Text;
28using System.Windows.Forms;
29using HeuristicLab.Core;
30using HeuristicLab.Data;
31
32namespace HeuristicLab.Constraints {
33  public partial class ItemTypeConstraintView : ViewBase {
34    private ItemTypeConstraint ItemTypeConstraint {
35      get { return (ItemTypeConstraint)base.Item; }
36      set { base.Item = value; }
37    }
38
39    public ItemTypeConstraintView() {
40      InitializeComponent();
41      typeTextBox.Enabled = false;
42    }
43
44    public ItemTypeConstraintView(ItemTypeConstraint itemTypeConstraint)
45      : this() {
46      ItemTypeConstraint = itemTypeConstraint;
47    }
48
49    protected override void RemoveItemEvents() {
50      ItemTypeConstraint.Changed -= new EventHandler(ItemTypeConstraint_Changed);
51      base.RemoveItemEvents();
52    }
53
54    protected override void AddItemEvents() {
55      base.AddItemEvents();
56      ItemTypeConstraint.Changed += new EventHandler(ItemTypeConstraint_Changed);
57    }
58
59    void ItemTypeConstraint_Changed(object sender, EventArgs e) {
60      Refresh();
61    }
62
63    protected override void UpdateControls() {
64      base.UpdateControls();
65      if (ItemTypeConstraint == null) {
66        setButton.Enabled = false;
67      } else {
68        typeTextBox.Text = ItemTypeConstraint.Type.ToString();
69        setButton.Enabled = true;
70      }
71    }
72
73    private void setButton_Click(object sender, EventArgs e) {
74      using (ChooseTypeDialog dialog = new ChooseTypeDialog()) {
75        dialog.Caption = "Set Item Type";
76        if (dialog.ShowDialog(this) == DialogResult.OK) {
77          ItemTypeConstraint.Type = dialog.Type;
78        }
79      }
80    }
81  }
82}
Note: See TracBrowser for help on using the repository browser.