Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKB (trunk integration)/HeuristicLab.Clients.OKB/3.3/Query/Views/SetComparisonFilterView.cs @ 5604

Last change on this file since 5604 was 5604, checked in by swagner, 13 years ago

Worked on OKB (#1174)

File size: 2.7 KB
Line 
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
22using System.Windows.Forms;
23using HeuristicLab.MainForm;
24using HeuristicLab.MainForm.WindowsForms;
25
26namespace HeuristicLab.Clients.OKB {
27  [View("SetComparisonFilter View")]
28  [Content(typeof(SetComparisonFilter), true)]
29  public partial class SetComparisonFilterView : FilterView {
30    public new SetComparisonFilter Content {
31      get { return (SetComparisonFilter)base.Content; }
32      set { base.Content = value; }
33    }
34
35    public SetComparisonFilterView() {
36      InitializeComponent();
37    }
38
39    protected override void OnContentChanged() {
40      base.OnContentChanged();
41      comparisonComboBox.SelectedIndex = -1;
42      if (Content != null) {
43        if (Content.Comparison == SetComparison.Equal)
44          comparisonComboBox.SelectedItem = "=";
45        else if (Content.Comparison == SetComparison.NotEqual)
46          comparisonComboBox.SelectedItem = "<>";
47        else if (Content.Comparison == SetComparison.Contains)
48          comparisonComboBox.SelectedItem = "contains";
49        else if (Content.Comparison == SetComparison.NotContains)
50          comparisonComboBox.SelectedItem = "not contains";
51      }
52    }
53
54    protected override void SetEnabledStateOfControls() {
55      base.SetEnabledStateOfControls();
56      comparisonComboBox.Enabled = Content != null && !ReadOnly;
57    }
58
59    private void comparisonComboBox_SelectedIndexChanged(object sender, System.EventArgs e) {
60      if (Content != null) {
61        if (comparisonComboBox.SelectedItem == "=")
62          Content.Comparison = SetComparison.Equal;
63        else if (comparisonComboBox.SelectedItem == "<>")
64          Content.Comparison = SetComparison.NotEqual;
65        else if (comparisonComboBox.SelectedItem == "contains")
66          Content.Comparison = SetComparison.Contains;
67        else if (comparisonComboBox.SelectedItem == "not contains")
68          Content.Comparison = SetComparison.NotContains;
69      }
70    }
71  }
72}
Note: See TracBrowser for help on using the repository browser.