// /*************************************************************************** // Aaru Data Preservation Suite // ---------------------------------------------------------------------------- // // Filename : Events.cs // Author(s) : Natalia Portillo // // Component : Core algorithms. // // --[ Description ] ---------------------------------------------------------- // // Events to glue user interface with sidecar creation. // // --[ License ] -------------------------------------------------------------- // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 3 of the // License, or (at your option) any later version. // // This program 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 // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // // ---------------------------------------------------------------------------- // Copyright © 2011-2020 Natalia Portillo // ****************************************************************************/ namespace Aaru.Core { public sealed partial class Sidecar { public event InitProgressHandler InitProgressEvent; public event UpdateProgressHandler UpdateProgressEvent; public event EndProgressHandler EndProgressEvent; public event InitProgressHandler2 InitProgressEvent2; public event UpdateProgressHandler2 UpdateProgressEvent2; public event EndProgressHandler2 EndProgressEvent2; public event UpdateStatusHandler UpdateStatusEvent; public void InitProgress() => InitProgressEvent?.Invoke(); public void UpdateProgress(string text, long current, long maximum) => UpdateProgressEvent?.Invoke(string.Format(text, current, maximum), current, maximum); public void EndProgress() => EndProgressEvent?.Invoke(); public void InitProgress2() => InitProgressEvent2?.Invoke(); public void UpdateProgress2(string text, long current, long maximum) => UpdateProgressEvent2?.Invoke(string.Format(text, current, maximum), current, maximum); public void EndProgress2() => EndProgressEvent2?.Invoke(); public void UpdateStatus(string text, params object[] args) => UpdateStatusEvent?.Invoke(string.Format(text, args)); } }