Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/HeuristicLab.MainForm/3.3/Interfaces/IProgress.cs @ 17180

Last change on this file since 17180 was 17180, checked in by swagner, 5 years ago

#2875: Removed years in copyrights

File size: 2.2 KB
RevLine 
[7582]1#region License Information
2/* HeuristicLab
[17180]3 * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[7582]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;
[8165]23using HeuristicLab.Common;
[7582]24
25namespace HeuristicLab.MainForm {
[16430]26  public enum ProgressState { Started, Finished, StopRequested, CancelRequested }
27  public enum ProgressMode { Determinate, Indeterminate }
[7582]28
[8165]29  public interface IProgress : IContent {
[9894]30    ProgressState ProgressState { get; }
[7582]31
[16430]32    string Message { get; set; }
[8156]33
[16430]34    ProgressMode ProgressMode { get; set; }
[9894]35    /// <summary>
[16430]36    /// Gets or sets the currently associated progress value in the range [0;1] (values outside the range are truncated).
37    /// Changing the ProgressValue when <c>ProgressMode</c> is <c>Indeterminate</c> raises an Exception.
[9894]38    /// </summary>
[16430]39    /// <exception cref="InvalidOperationException">Setting the ProgressValue-property while in the Indeterminate state is invalid.</exception>
40    double ProgressValue { get; set; }
[15400]41
[16430]42    bool CanBeStopped { get; set; }
43    bool CanBeCanceled { get; set; }
[9893]44
[16430]45    void Start(string message, ProgressMode mode = ProgressMode.Determinate);
46    void Finish();
47    void Stop();
48    void Cancel();
49
50    event EventHandler ProgressStateChanged;
51    event EventHandler MessageChanged;
52    event EventHandler ProgressBarModeChanged;
[7582]53    event EventHandler ProgressValueChanged;
[16430]54    event EventHandler CanBeStoppedChanged;
[8165]55    event EventHandler CanBeCanceledChanged;
[16430]56    event EventHandler StopRequested;
[9894]57    event EventHandler CancelRequested;
[7582]58  }
59}
Note: See TracBrowser for help on using the repository browser.