summaryrefslogtreecommitdiffstats
path: root/ksirc/puke/ptdefiledialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'ksirc/puke/ptdefiledialog.h')
-rw-r--r--ksirc/puke/ptdefiledialog.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/ksirc/puke/ptdefiledialog.h b/ksirc/puke/ptdefiledialog.h
new file mode 100644
index 00000000..cdf940a8
--- /dev/null
+++ b/ksirc/puke/ptdefiledialog.h
@@ -0,0 +1,32 @@
+#ifndef PKFILEDIALOG_H
+#define PKFILEDIALOG_H
+
+class PKFileDialog;
+
+#include <tdefiledialog.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