Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Grid/3.2/ClientForm.cs @ 1898

Last change on this file since 1898 was 1529, checked in by gkronber, 15 years ago

Moved source files of plugins AdvancedOptimizationFrontEnd ... Grid into version-specific sub-folders. #576

File size: 2.3 KB
RevLine 
[2]1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2008 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.Collections.Generic;
24using System.ComponentModel;
25using System.Data;
26using System.Drawing;
27using System.Linq;
28using System.Text;
29using System.Windows.Forms;
30using System.ServiceModel;
31using HeuristicLab.Core;
32using System.Xml;
33using System.Threading;
34using System.IO;
[32]35using System.Net;
[402]36using System.Diagnostics;
[2]37
38namespace HeuristicLab.Grid {
[244]39  public partial class ClientForm : Form {
[440]40    private GridClient client;
41    public ClientForm() {
[2]42      InitializeComponent();
[440]43
44      client = new GridClient();
45      UpdateControl();
[2]46    }
47
48    private void startButton_Click(object sender, EventArgs e) {
[440]49      client.Start(addressTextBox.Text);
50      UpdateControl();
51    }
[402]52
[440]53    private void stopButton_Click(object sender, EventArgs e) {
54      client.Stop();
55      UpdateControl();
56    }
57
58    private void UpdateControl() {
59      if(client.Waiting) {
[2]60        startButton.Enabled = false;
61        stopButton.Enabled = true;
62        statusTextBox.Text = "Waiting for engine";
[440]63      } else if(client.Executing) {
64        startButton.Enabled = false;
65        stopButton.Enabled = true;
66        statusTextBox.Text = "Executing engine";
67      } else if(client.Stopped) {
[2]68        startButton.Enabled = true;
69        stopButton.Enabled = false;
[440]70        statusTextBox.Text = "Stopped";
[2]71      }
[440]72      statusStrip.Text = client.StatusMessage;
[2]73    }
74
[440]75    private void timer_Tick(object sender, EventArgs e) {
76      UpdateControl();
[228]77    }
[2]78  }
79}
Note: See TracBrowser for help on using the repository browser.