summaryrefslogtreecommitdiffstats
path: root/ksirc/puke/pkfiledialog.h
blob: 274f199778f2b37b6f8e337c5abad8d9905685cb (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
#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
  TQ_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