Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.ExperimentManager/3.4/Views/HiveExperimentPermissionView.cs @ 6465

Last change on this file since 6465 was 6465, checked in by cneumuel, 13 years ago

#1233

  • show owner of experimens in listview
File size: 2.6 KB
RevLine 
[6463]1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2011 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 HeuristicLab.Clients.Hive.Views;
23using HeuristicLab.MainForm;
24
25namespace HeuristicLab.Clients.Hive.ExperimentManager.Views {
26  [View("HiveExperimentPermission View")]
27  [Content(typeof(HiveExperimentPermission), true)]
28  public partial class HiveExperimentPermissionView : HiveItemView {
29    public new HiveExperimentPermission Content {
30      get { return (HiveExperimentPermission)base.Content; }
31      set { base.Content = value; }
32    }
33
34    public HiveExperimentPermissionView() {
35      InitializeComponent();
[6465]36      permissionComboBox.Items.Add(Permission.Read);
[6463]37      permissionComboBox.Items.Add(Permission.Full);
[6465]38      permissionComboBox.SelectedItem = Permission.Read;
[6463]39    }
40
41    protected override void OnContentChanged() {
42      base.OnContentChanged();
43      if (Content == null) {
44        usernameTextBox.Text = string.Empty;
45        permissionComboBox.SelectedIndex = 0;
46      } else {
47        usernameTextBox.Text = Content.GrantedUserName;
48        permissionComboBox.SelectedValue = Content.Permission;
49      }
50    }
51
52    protected override void SetEnabledStateOfControls() {
53      base.SetEnabledStateOfControls();
54      if (Content == null) {
55        usernameTextBox.Enabled = false;
56        permissionComboBox.Enabled = false;
57      } else {
58        usernameTextBox.Enabled = true;
59        permissionComboBox.Enabled = true;
60      }
61    }
62
63    #region Child Control Events
64    private void usernameTextBox_Validated(object sender, System.EventArgs e) {
65      Content.GrantedUserName = usernameTextBox.Text;
66    }
67
68    private void permissionComboBox_Validated(object sender, System.EventArgs e) {
69      Content.Permission = (Permission)permissionComboBox.SelectedItem;
70    }
71    #endregion
72  }
73}
Note: See TracBrowser for help on using the repository browser.