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