blob: 9ab5660d9376a7f063f2d3f1ed11a8063763d2a8 (
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 TQLabel;
class KProgress;
class ProgressDialog : public KDialogBase
{
Q_OBJECT
public:
ProgressDialog(TQWidget *parent=0, const char *name=0);
void setFilesScanned(int s);
void setFilesToDig(int d);
void setFilesDigged(int d);
void setState(int n);
private:
TQLabel *filesScanned, *check1, *check2, *check3;
KProgress *bar;
};
#endif
|