Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/HeuristicLab.Data.Views/3.3/StringConvertibleMatrixVisibilityDialog.cs @ 17180

Last change on this file since 17180 was 17180, checked in by swagner, 5 years ago

#2875: Removed years in copyrights

File size: 2.3 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 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.Collections.Generic;
23using System.Linq;
24using System.Windows.Forms;
25
26namespace 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}
Note: See TracBrowser for help on using the repository browser.