printprogress.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #ifndef PRINTPROGRESS_H
00025 #define PRINTPROGRESS_H
00026
00027 #include <qwidget.h>
00028
00029 class QProgressBar;
00030 class QString;
00031 class QTextBrowser;
00032
00033 namespace KABPrinting {
00034
00040 class PrintProgress : public QWidget
00041 {
00042 Q_OBJECT
00043
00044 public:
00045 PrintProgress( QWidget *parent, const char *name = 0 );
00046 ~PrintProgress();
00047
00051 void addMessage( const QString& );
00052
00056 void setProgress( int );
00057
00058 private:
00059 QStringList mMessages;
00060
00061 QTextBrowser* mLogBrowser;
00062 QProgressBar* mProgressBar;
00063 };
00064
00065 }
00066
00067 #endif
This file is part of the documentation for kaddressbook Library Version 3.2.1.
Documentation copyright © 1996-2004 the KDE developers.
Generated on Sat Mar 6 17:18:27 2004 by
doxygen 1.3.6-20040222 written by
Dimitri van Heesch, © 1997-2003