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.
|
|
|
#ifndef PPROGRESS_H
|
|
|
|
#define PPROGRESS_H
|
|
|
|
|
|
|
|
class PProgress;
|
|
|
|
|
|
|
|
#include "../KSProgress/ksprogress.h"
|
|
|
|
#include "pmessage.h"
|
|
|
|
//#include "pwidget.h"
|
|
|
|
#include "pobject.h"
|
|
|
|
#include "controller.h"
|
|
|
|
|
|
|
|
class PProgress : public PWidget {
|
|
|
|
Q_OBJECT
|
|
|
|
TQ_OBJECT
|
|
|
|
public:
|
|
|
|
static PObject *createWidget(CreateArgs &ca);
|
|
|
|
|
|
|
|
PProgress ( PObject * parent = 0);
|
|
|
|
virtual ~PProgress ();
|
|
|
|
|
|
|
|
virtual void messageHandler(int fd, PukeMessage *pm);
|
|
|
|
|
|
|
|
virtual void setWidget(TQObject *_f);
|
|
|
|
virtual KSProgress *widget();
|
|
|
|
|
|
|
|
protected slots:
|
|
|
|
void cancelPressed();
|
|
|
|
|
|
|
|
private:
|
|
|
|
KSProgress *ksp;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|