Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.Views/3.3/SlaveMainViewBase.cs @ 6734

Last change on this file since 6734 was 6734, checked in by ascheibe, 13 years ago

#1233 some minor improvements in the Slave UI and Administrator UI

File size: 3.7 KB
Line 
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 System;
23using System.Threading;
24using System.Threading.Tasks;
25using System.Windows.Forms;
26using HeuristicLab.Clients.Hive.SlaveCore.Views.Properties;
27using HeuristicLab.Core.Views;
28using HeuristicLab.MainForm;
29
30namespace HeuristicLab.Clients.Hive.SlaveCore.Views {
31
32  [View("HeuristicLab Slave Main View Base")]
33  [Content(typeof(SlaveItem), IsDefaultView = false)]
34  public partial class SlaveMainViewBase : ItemView {
35
36    public event EventHandler VisibilitySwitched;
37    public void OnVisibilitySwitched() {
38      var handler = VisibilitySwitched;
39      if (handler != null) handler(this, new EventArgs());
40    }
41
42    public new SlaveItem Content {
43      get { return (SlaveItem)base.Content; }
44      set {
45        if (base.Content != value) {
46          base.Content = value;
47        }
48      }
49    }
50
51    void Content_UserVisibleMessageFired(object sender, Common.EventArgs<string> e) {
52      if (Settings.Default.ShowBalloonTips) {
53        notifyIcon.ShowBalloonTip(2000, "HeuristicLab Hive", e.Value, ToolTipIcon.Info);
54      }
55    }
56
57    public SlaveMainViewBase() {
58      InitializeComponent();
59    }
60
61    #region Register Content Events
62    protected override void DeregisterContentEvents() {
63      base.DeregisterContentEvents();
64    }
65
66    protected override void RegisterContentEvents() {
67      base.RegisterContentEvents();
68    }
69    #endregion
70
71    protected override void OnContentChanged() {
72      base.OnContentChanged();
73
74      jobsView.Content = Content;
75      logView.Content = Content;
76      if (Content != null) {
77        Content.UserVisibleMessageFired += new System.EventHandler<Common.EventArgs<string>>(Content_UserVisibleMessageFired);
78        ((SlaveItem)base.Content).Open();
79        Task.Factory.StartNew(Connector);
80      }
81    }
82
83    protected override void SetEnabledStateOfControls() {
84      base.SetEnabledStateOfControls();
85    }
86
87    private void notifyIcon_DoubleClick(object sender, EventArgs e) {
88      OnVisibilitySwitched();
89    }
90
91    private void closeToolStripMenuItem_Click(object sender, EventArgs e) {
92      Application.Exit();
93    }
94
95    private void showToolStripMenuItem_Click(object sender, EventArgs e) {
96      OnVisibilitySwitched();
97    }
98
99    private void notifyIcon_BalloonTipClicked(object sender, EventArgs e) {
100      OnVisibilitySwitched();
101    }
102
103    private void homepageToolStripMenuItem_Click(object sender, EventArgs e) {
104      System.Diagnostics.Process.Start("http://dev.heuristiclab.com");
105    }
106
107    private void Connector() {
108      bool connected = false;
109      while (!connected) {
110        this.Invoke(new Func<bool>(() => connected = ((SlaveItem)base.Content).ReconnectToSlaveCore()));
111
112        if (!connected) {
113          Thread.Sleep(1000);
114        }
115      }
116      this.Invoke(new Action(SetEnabledStateOfControls));
117    }
118  }
119}
Note: See TracBrowser for help on using the repository browser.