kde-playground/khelpcenter/htmlsearch/progressdialog.h
Ivailo Monev a9b00154bc generic: replace forward class declarations with header inclusions
Signed-off-by: Ivailo Monev <xakepa10@laimg.moc>
2019-07-31 18:05:48 +00:00

32 lines
469 B
C++

#ifndef __PROGRESS_DIALOG_H__
#define __PROGRESS_DIALOG_H__
#include <kdialog.h>
#include <QLabel>
#include <QProgressBar>
class ProgressDialog : public KDialog
{
Q_OBJECT
public:
explicit ProgressDialog(QWidget *parent=0, const char *name=0);
void setFilesScanned(int s);
void setFilesToDig(int d);
void setFilesDigged(int d);
void setState(int n);
private:
QLabel *filesScanned, *check1, *check2, *check3;
QProgressBar *bar;
};
#endif