Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive/sources/HeuristicLab.Hive.New/HeuristicLab.Clients.Hive/3.3/Progress/Progress.cs @ 4629

Last change on this file since 4629 was 4629, checked in by cneumuel, 13 years ago
  • worked on new hive structure
  • created IIS hostable website for hive (old structure)

(#1233)

File size: 2.2 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 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;
23
24namespace HeuristicLab.Clients.Hive {
25  public class Progress : IProgress {
26    private string status;
27    public string Status {
28      get {
29        return this.status;
30      }
31      set {
32        if (this.status != value) {
33          this.status = value;
34          OnStatusChanged();
35        }
36      }
37    }
38
39    private double progressValue;
40    public double ProgressValue {
41      get {
42        return this.progressValue;
43      }
44      set {
45        if (this.progressValue != value) {
46          this.progressValue = value;
47          OnProgressChanged();
48        }
49      }
50    }
51
52    public Progress() { }
53
54    public Progress(string status) {
55      this.Status = status;
56    }
57
58    public void Finish() {
59      OnFinished();
60    }
61
62    #region Event Handler
63    public event EventHandler Finished;
64    private void OnFinished() {
65      var handler = Finished;
66      if (handler != null) handler(this, EventArgs.Empty);
67    }
68
69    public event EventHandler StatusChanged;
70    private void OnStatusChanged() {
71      var handler = StatusChanged;
72      if (handler != null) handler(this, EventArgs.Empty);
73    }
74
75    public event EventHandler ProgressValueChanged;
76    private void OnProgressChanged() {
77      var handler = ProgressValueChanged;
78      if (handler != null) handler(this, EventArgs.Empty);
79    }
80    #endregion
81  }
82}
Note: See TracBrowser for help on using the repository browser.