2007-05-11 21:15:35 +00:00
|
|
|
#region CPL License
|
|
|
|
/*
|
|
|
|
Nuclex Framework
|
2009-01-07 19:05:29 +00:00
|
|
|
Copyright (C) 2002-2009 Nuclex Development Labs
|
2007-05-11 21:15:35 +00:00
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the IBM Common Public License as
|
|
|
|
published by the IBM Corporation; either version 1.0 of the
|
|
|
|
License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
IBM Common Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the IBM Common Public
|
|
|
|
License along with this library
|
|
|
|
*/
|
|
|
|
#endregion
|
2007-07-24 20:15:19 +00:00
|
|
|
|
2007-04-16 17:18:16 +00:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
namespace Nuclex.Support.Tracking {
|
|
|
|
|
|
|
|
/// <summary>Event arguments for a progress update notification</summary>
|
2008-03-26 21:03:49 +00:00
|
|
|
public class ProgressReportEventArgs : EventArgs {
|
2007-04-16 17:18:16 +00:00
|
|
|
|
|
|
|
/// <summary>Initializes the progress update informations</summary>
|
|
|
|
/// <param name="progress">Achieved progress ranging from 0.0 to 1.0</param>
|
2008-03-26 21:03:49 +00:00
|
|
|
public ProgressReportEventArgs(float progress) {
|
2007-04-16 17:18:16 +00:00
|
|
|
this.progress = progress;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>Currently achieved progress</summary>
|
|
|
|
public float Progress {
|
|
|
|
get { return this.progress; }
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>Achieved progress</summary>
|
2007-04-19 18:18:34 +00:00
|
|
|
private float progress;
|
2007-04-16 17:18:16 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Nuclex.Support.Tracking
|