X-Git-Url: https://git.saurik.com/apt.git/blobdiff_plain/1a7c9eba99a9521a7722be37d6bafe5fa4936630..fc5aece9d8600b68cf8d654b379b6d840f2a5524:/apt-pkg/contrib/progress.h?ds=sidebyside diff --git a/apt-pkg/contrib/progress.h b/apt-pkg/contrib/progress.h index e3530cdcb..d0b1f5f94 100644 --- a/apt-pkg/contrib/progress.h +++ b/apt-pkg/contrib/progress.h @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: progress.h,v 1.2 1998/08/23 03:52:23 jgg Exp $ +// $Id: progress.h,v 1.6 2001/05/07 05:06:52 jgg Exp $ /* ###################################################################### OpProgress - Operation Progress @@ -18,7 +18,6 @@ ##################################################################### */ /*}}}*/ -// Header section: pkglib #ifndef PKGLIB_PROGRESS_H #define PKGLIB_PROGRESS_H @@ -29,6 +28,9 @@ #include #include +using std::string; + +class Configuration; class OpProgress { unsigned long Current; @@ -56,6 +58,7 @@ class OpProgress public: void Progress(unsigned long Current); + void SubProgress(unsigned long SubTotal); void SubProgress(unsigned long SubTotal,string Op); void OverallProgress(unsigned long Current,unsigned long Total, unsigned long Size,string Op); @@ -71,6 +74,7 @@ class OpTextProgress : public OpProgress string OldOp; bool NoUpdate; + bool NoDisplay; unsigned long LastLen; virtual void Update(); void Write(const char *S); @@ -79,7 +83,9 @@ class OpTextProgress : public OpProgress virtual void Done(); - OpTextProgress(bool NoUpdate = false) : NoUpdate(NoUpdate), LastLen(0) {}; + OpTextProgress(bool NoUpdate = false) : NoUpdate(NoUpdate), + NoDisplay(false), LastLen(0) {}; + OpTextProgress(Configuration &Config); virtual ~OpTextProgress() {Done();}; };