You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebase/khelpcenter/htmlsearch/progressdialog.h

36 lines
460 B

#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