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.
33 lines
533 B
33 lines
533 B
#ifndef PKFILEDIALOG_H
|
|
#define PKFILEDIALOG_H
|
|
|
|
class PKFileDialog;
|
|
|
|
#include <kfiledialog.h>
|
|
#include "pmessage.h"
|
|
#include "pwidget.h"
|
|
#include "controller.h"
|
|
|
|
class PKFileDialog : public PWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
static PObject *createWidget(CreateArgs &ca);
|
|
|
|
PKFileDialog ( PObject * parent );
|
|
virtual ~PKFileDialog ();
|
|
|
|
virtual void messageHandler(int fd, PukeMessage *pm);
|
|
|
|
virtual void setWidget(TQObject *_f = 0x0);
|
|
virtual KFileDialog *widget();
|
|
|
|
public slots:
|
|
|
|
private:
|
|
KFileDialog *kfbd;
|
|
};
|
|
|
|
#endif
|