Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Views/3.4/ExperimentManager/StateLogView.cs @ 5597

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

#1233

  • extended jobview to show statelog as list with details or as ganttview
  • also a ganttview of all statelogs of all childjobs was implemented
File size: 3.0 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.Core.Views;
24using HeuristicLab.MainForm;
25
26namespace HeuristicLab.Clients.Hive.Views {
27  [View("StateLog View")]
28  [Content(typeof(StateLogItem), IsDefaultView = false)]
29  public sealed partial class StateLogView : ItemView {
30    public new StateLogItem Content {
31      get { return (StateLogItem)base.Content; }
32      set { base.Content = value; }
33    }
34
35    public StateLogView() {
36      InitializeComponent();
37    }
38
39    protected override void DeregisterContentEvents() {
40      // Deregister your event handlers here
41
42      base.DeregisterContentEvents();
43    }
44
45    protected override void RegisterContentEvents() {
46      base.RegisterContentEvents();
47      // Register your event handlers here
48
49    }
50
51    #region Event Handlers (Content)
52    // Put event handlers of the content here
53
54    #endregion
55
56    protected override void OnContentChanged() {
57      base.OnContentChanged();
58      if (Content == null) {
59        // Add code when content has been changed and is null
60        stateTextBox.Text = string.Empty;
61        dateTextBox.Text = string.Empty;
62        exceptionTextBox.Text = string.Empty;
63        userIdTextBox.Text = string.Empty;
64        slaveIdTextBox.Text = string.Empty;
65      } else {
66        // Add code when content has been changed and is not null
67        stateTextBox.Text = Content.State.ToString();
68        dateTextBox.Text = Content.DateTime.ToString();
69        exceptionTextBox.Text = Content.Exception;
70        userIdTextBox.Text = Content.UserId.ToString();
71        slaveIdTextBox.Text = Content.SlaveId.ToString();
72      }
73    }
74
75    protected override void SetEnabledStateOfControls() {
76      base.SetEnabledStateOfControls();
77      // Enable or disable controls based on whether the content is null or the view is set readonly
78      stateTextBox.ReadOnly = true;
79      dateTextBox.ReadOnly = true;
80      exceptionTextBox.ReadOnly = true;
81      userIdTextBox.ReadOnly = true;
82      slaveIdTextBox.ReadOnly = true;
83    }
84
85    #region Event Handlers (child controls)
86    // Put event handlers of child controls here.
87
88    #endregion
89  }
90}
Note: See TracBrowser for help on using the repository browser.