Make a branch to make krunner Good Enough For Aaron™.
[kdebase/uwolfer.git] / runtime / khelpcenter / htmlsearch / progressdialog.h
blob2b71857239833b5262f5324316932ba0bbdf55a9
1 #ifndef __PROGRESS_DIALOG_H__
2 #define __PROGRESS_DIALOG_H__
4 #include <kdialog.h>
6 class QLabel;
7 class QProgressBar;
9 class ProgressDialog : public KDialog
12 Q_OBJECT
14 public:
16 explicit ProgressDialog(QWidget *parent=0, const char *name=0);
18 void setFilesScanned(int s);
19 void setFilesToDig(int d);
20 void setFilesDigged(int d);
22 void setState(int n);
24 private:
26 QLabel *filesScanned, *check1, *check2, *check3;
27 QProgressBar *bar;
32 #endif