summaryrefslogtreecommitdiffstats
path: root/ksirc/puke/palistbox.h
blob: 5c50023e26659339cf18477db9afc06f06dd373b (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
33
34
35
36
#ifndef PALISTBOX_H
#define PALISTBOX_H

class PAListBox;

#include "../alistbox.h"
#include "pmessage.h"
#include "plistbox.h"
#include "controller.h"

class PAListBox : public PListBox
{
  Q_OBJECT
  TQ_OBJECT
public:
  static PObject *createWidget(CreateArgs &ca);

  PAListBox ( PObject * tqparent );
  virtual ~PAListBox ();
  
  virtual void messageHandler(int fd, PukeMessage *pm);
  
  virtual void setWidget(TQObject *_lb = 0x0);
  virtual aListBox *widget();

public slots:

protected:
  bool checkWidget();

private:
  aListBox *lb;
   
};

#endif