1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2018 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.Collections.Generic;
|
---|
23 | using System.Linq;
|
---|
24 | using System.Windows.Forms;
|
---|
25 |
|
---|
26 | namespace HeuristicLab.Data.Views {
|
---|
27 | public abstract partial class StringConvertibleMatrixVisibilityDialog<T> : Form where T : DataGridViewBand {
|
---|
28 | public StringConvertibleMatrixVisibilityDialog() {
|
---|
29 | InitializeComponent();
|
---|
30 | }
|
---|
31 |
|
---|
32 | public StringConvertibleMatrixVisibilityDialog(IEnumerable<T> bands)
|
---|
33 | : this() {
|
---|
34 | this.Bands = bands;
|
---|
35 | this.visibility = bands.Select(b => b.Visible).ToList();
|
---|
36 | UpdateCheckBoxes();
|
---|
37 | }
|
---|
38 |
|
---|
39 | private List<T> bands;
|
---|
40 | public IEnumerable<T> Bands {
|
---|
41 | get { return this.bands; }
|
---|
42 | set { this.bands = new List<T>(value); }
|
---|
43 | }
|
---|
44 |
|
---|
45 | private List<bool> visibility;
|
---|
46 | public IList<bool> Visibility {
|
---|
47 | get { return this.visibility; }
|
---|
48 | }
|
---|
49 |
|
---|
50 | protected abstract void UpdateCheckBoxes();
|
---|
51 |
|
---|
52 | protected void checkedListBox_ItemCheck(object sender, ItemCheckEventArgs e) {
|
---|
53 | this.bands[e.Index].Visible = e.NewValue == CheckState.Checked;
|
---|
54 | this.visibility[e.Index] = e.NewValue == CheckState.Checked;
|
---|
55 | }
|
---|
56 |
|
---|
57 | protected void btnShowAll_Click(object sender, System.EventArgs e) {
|
---|
58 | for (int i = 0; i < checkedListBox.Items.Count; i++)
|
---|
59 | checkedListBox.SetItemChecked(i, true);
|
---|
60 | }
|
---|
61 | protected void btnHideAll_Click(object sender, System.EventArgs e) {
|
---|
62 | for (int i = 0; i < checkedListBox.Items.Count; i++)
|
---|
63 | checkedListBox.SetItemChecked(i, false);
|
---|
64 | }
|
---|
65 | }
|
---|
66 | }
|
---|