SecureBlackbox 2020 Qt Edition

Questions / Feedback?

Progress Event

Reports the progress of the decryption operation.

Syntax

class PGPWriterProgressEventParams {
public:
  qint64 Current();
  qint64 Total();
  bool Cancel();
  void SetCancel(bool bCancel);
  int EventRetVal();
  void SetEventRetVal(int iRetVal);
};
// To handle, connect one or more slots to this signal. void Progress(PGPWriterProgressEventParams *e);
// Or, subclass PGPWriter and override this emitter function. virtual int FireProgress(PGPWriterProgressEventParams *e) {...}

Remarks

The class fires this event repeatedly to report the progress of the file protection operation.

Current indicates the amount of processed data in bytes, and Total is the total number of bytes to be processed. Use Cancel to terminate the protection process.

Copyright (c) 2022 /n software inc. - All rights reserved.
SecureBlackbox 2020 Qt Edition - Version 20.0 [Build 8154]