Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.Orienteering/HeuristicLab.Clients.Hive.Slave.Views/3.3/TaskView.cs @ 11185

Last change on this file since 11185 was 11185, checked in by pfleck, 10 years ago

#2208 merged trunk and updated version info

File size: 2.9 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2014 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;
23using System.Windows.Forms;
24using HeuristicLab.Core.Views;
25using HeuristicLab.MainForm;
26
27namespace HeuristicLab.Clients.Hive.SlaveCore.Views {
28  [View("Jobs View")]
29  [Content(typeof(SlaveItem), IsDefaultView = false)]
30  public partial class TaskView : ItemView {
31    public new SlaveItem Content {
32      get { return (SlaveItem)base.Content; }
33      set { base.Content = value; }
34    }
35
36    public TaskView() {
37      InitializeComponent();
38    }
39
40    #region Register Content Events
41    protected override void DeregisterContentEvents() {
42      Content.SlaveStatusChanged -= new EventHandler<Common.EventArgs<StatusCommons>>(Content_SlaveStatusChanged);
43      base.DeregisterContentEvents();
44    }
45    protected override void RegisterContentEvents() {
46      base.RegisterContentEvents();
47      Content.SlaveStatusChanged += new EventHandler<Common.EventArgs<StatusCommons>>(Content_SlaveStatusChanged);
48    }
49    #endregion
50
51    protected override void OnContentChanged() {
52      base.OnContentChanged();
53    }
54
55    protected override void SetEnabledStateOfControls() {
56      base.SetEnabledStateOfControls();
57    }
58
59    #region Event Handlers
60    void Content_SlaveStatusChanged(object sender, Common.EventArgs<StatusCommons> e) {
61      if (InvokeRequired) {
62        Action<object, Common.EventArgs<StatusCommons>> action = new Action<object, Common.EventArgs<StatusCommons>>(Content_SlaveStatusChanged);
63        Invoke(action, sender, e);
64      } else {
65        lstJobs.Items.Clear();
66        foreach (TaskStatus job in e.Value.Jobs) {
67          ListViewItem item = new ListViewItem();
68          item.Text = job.TaskId.ToString();
69          item.SubItems.Add(job.ExecutionTime.ToString());
70          lstJobs.Items.Add(item);
71        }
72        if (e.Value.Jobs.Count == 0) {
73          lstJobs.AutoResizeColumns(ColumnHeaderAutoResizeStyle.None);
74        } else {
75          lstJobs.AutoResizeColumns(ColumnHeaderAutoResizeStyle.ColumnContent);
76        }
77      }
78    }
79    #endregion
80  }
81}
Note: See TracBrowser for help on using the repository browser.