summaryrefslogtreecommitdiffstats
path: root/khelpcenter/htmlsearch/progressdialog.h
blob: 9c18f2d01af557ebae1c511bb88a7e20bccfcebf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#ifndef __PROGRESS_DIALOG_H__
#define __PROGRESS_DIALOG_H__


#include <kdialogbase.h>


class QLabel;
class KProgress;


class ProgressDialog : public KDialogBase
{

  Q_OBJECT

public:

  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;
  KProgress *bar;

};


#endif