[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 |
|
---|
| 22 | using System;
|
---|
| 23 | using System.Collections.Generic;
|
---|
| 24 | using System.ComponentModel;
|
---|
| 25 | using System.Data;
|
---|
| 26 | using System.Drawing;
|
---|
| 27 | using System.Linq;
|
---|
| 28 | using System.Text;
|
---|
| 29 | using System.Windows.Forms;
|
---|
| 30 | using System.ServiceModel;
|
---|
| 31 | using HeuristicLab.Core;
|
---|
| 32 | using System.Xml;
|
---|
| 33 | using System.Threading;
|
---|
| 34 | using System.IO;
|
---|
[32] | 35 | using System.Net;
|
---|
[402] | 36 | using System.Diagnostics;
|
---|
[2] | 37 |
|
---|
| 38 | namespace 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 | }
|
---|