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