1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2010 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.Collections;
|
---|
25 | using HeuristicLab.MainForm;
|
---|
26 | using HeuristicLab.Optimization;
|
---|
27 | using System.Drawing;
|
---|
28 |
|
---|
29 | namespace HeuristicLab.Core.Views {
|
---|
30 | [View("ConstraintCollection View")]
|
---|
31 | [Content(typeof(RunCollectionConstraintCollection), true)]
|
---|
32 | [Content(typeof(IItemCollection<IRunCollectionConstraint>), false)]
|
---|
33 | public partial class RunCollectionConstraintCollectionView : ItemCollectionView<IRunCollectionConstraint> {
|
---|
34 | /// <summary>
|
---|
35 | /// Initializes a new instance of <see cref="VariablesScopeView"/> with caption "Variables Scope View".
|
---|
36 | /// </summary>
|
---|
37 | public RunCollectionConstraintCollectionView() {
|
---|
38 | InitializeComponent();
|
---|
39 | Caption = "RunCollectionConstraintCollection";
|
---|
40 | itemsGroupBox.Text = "RunCollection Constraints";
|
---|
41 | }
|
---|
42 |
|
---|
43 | protected override IRunCollectionConstraint CreateItem() {
|
---|
44 | if (typeSelectorDialog == null) {
|
---|
45 | typeSelectorDialog = new TypeSelectorDialog();
|
---|
46 | typeSelectorDialog.Caption = "Select RunCollection Constraint";
|
---|
47 | typeSelectorDialog.TypeSelector.Caption = "Available Constraints";
|
---|
48 | typeSelectorDialog.TypeSelector.Configure(typeof(IRunCollectionConstraint), false, true);
|
---|
49 | }
|
---|
50 |
|
---|
51 | if (typeSelectorDialog.ShowDialog(this) == DialogResult.OK) {
|
---|
52 | try {
|
---|
53 | return (IRunCollectionConstraint)typeSelectorDialog.TypeSelector.CreateInstanceOfSelectedType();
|
---|
54 | }
|
---|
55 | catch (Exception ex) {
|
---|
56 | Auxiliary.ShowErrorMessageBox(ex);
|
---|
57 | }
|
---|
58 | }
|
---|
59 | return null;
|
---|
60 | }
|
---|
61 |
|
---|
62 | protected override void RegisterContentEvents() {
|
---|
63 | base.RegisterContentEvents();
|
---|
64 | foreach (IRunCollectionConstraint constraint in Content)
|
---|
65 | RegisterConstraintEvents(constraint);
|
---|
66 | }
|
---|
67 | protected override void DeregisterContentEvents() {
|
---|
68 | base.DeregisterContentEvents();
|
---|
69 | foreach (IRunCollectionConstraint constraint in Content)
|
---|
70 | DeregisterConstraintEvents(constraint);
|
---|
71 | }
|
---|
72 | protected override void Content_ItemsAdded(object sender, CollectionItemsChangedEventArgs<IRunCollectionConstraint> e) {
|
---|
73 | base.Content_ItemsAdded(sender, e);
|
---|
74 | foreach (IRunCollectionConstraint constraint in e.Items)
|
---|
75 | RegisterConstraintEvents(constraint);
|
---|
76 | }
|
---|
77 | protected override void Content_ItemsRemoved(object sender, CollectionItemsChangedEventArgs<IRunCollectionConstraint> e) {
|
---|
78 | base.Content_ItemsRemoved(sender, e);
|
---|
79 | foreach (IRunCollectionConstraint constraint in e.Items)
|
---|
80 | DeregisterConstraintEvents(constraint);
|
---|
81 | }
|
---|
82 | protected override void Content_CollectionReset(object sender, CollectionItemsChangedEventArgs<IRunCollectionConstraint> e) {
|
---|
83 | base.Content_CollectionReset(sender, e);
|
---|
84 | foreach (IRunCollectionConstraint constraint in e.OldItems)
|
---|
85 | RegisterConstraintEvents(constraint);
|
---|
86 | foreach (IRunCollectionConstraint constraint in e.Items)
|
---|
87 | DeregisterConstraintEvents(constraint);
|
---|
88 | }
|
---|
89 |
|
---|
90 | protected virtual void RegisterConstraintEvents(IRunCollectionConstraint constraint) {
|
---|
91 | constraint.ActiveChanged += new EventHandler(constraint_ActiveChanged);
|
---|
92 | }
|
---|
93 |
|
---|
94 | protected virtual void DeregisterConstraintEvents(IRunCollectionConstraint constraint) {
|
---|
95 | constraint.ActiveChanged -= new EventHandler(constraint_ActiveChanged);
|
---|
96 | }
|
---|
97 |
|
---|
98 | protected virtual void constraint_ActiveChanged(object sender, EventArgs e) {
|
---|
99 | IRunCollectionConstraint constraint = sender as IRunCollectionConstraint;
|
---|
100 | if (constraint != null) {
|
---|
101 | foreach (ListViewItem listViewItem in GetListViewItemsForItem(constraint)) {
|
---|
102 | if (constraint.Active)
|
---|
103 | listViewItem.Font = new Font(listViewItem.Font, FontStyle.Bold);
|
---|
104 | else
|
---|
105 | listViewItem.Font = new Font(listViewItem.Font, FontStyle.Regular);
|
---|
106 | }
|
---|
107 | }
|
---|
108 | this.AdjustListViewColumnSizes();
|
---|
109 | }
|
---|
110 | }
|
---|
111 | }
|
---|