Progress Event

Fired as progress is made.

Syntax

class ZipSFXProgressEventParams {
public:
  const QString &Filename();
  qint64 BytesProcessed();
  int PercentProcessed();
  int EventRetVal();
  void SetEventRetVal(int iRetVal);
};
// To handle, connect one or more slots to this signal. void Progress(ZipSFXProgressEventParams *e);
// Or, subclass ZipSFX and override this emitter function. virtual int FireProgress(ZipSFXProgressEventParams *e) {...}

Remarks

The Progress event is automatically fired as compression is performed.

Filename contains the name of the file being written.

BytesProcessed contains the total number of uncompressed bytes processed.

PercentProcessed contains the percent of uncompressed bytes processed, corresponding roughly to the running time of the operation.

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