]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/contrib/progress.h
More CD support
[apt.git] / apt-pkg / contrib / progress.h
index e3530cdcbc933e0afca27b1f5e8acc1ea1b7cac2..094c4b016d2889883f27a15edd0cf688fc14501c 100644 (file)
@@ -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.4 1998/10/02 04:39:54 jgg Exp $
 /* ######################################################################
    
    OpProgress - Operation Progress
@@ -29,6 +29,7 @@
 #include <string>
 #include <sys/time.h>
 
+class Configuration;
 class OpProgress
 {
    unsigned long Current;
@@ -56,6 +57,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 +73,7 @@ class OpTextProgress : public OpProgress
    
    string OldOp;
    bool NoUpdate;
+   bool NoDisplay;
    unsigned long LastLen;
    virtual void Update();
    void Write(const char *S);
@@ -79,7 +82,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();};
 };