summaryrefslogtreecommitdiffstats
path: root/ksirc/puke/playout.h
blob: 4124cb14e1778ba4aa9eb91edb45e1279e177e15 (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
37
38
39
40
41
42
43
#ifndef PLAYOUT_H
#define PLAYOUT_H

class PLayout;

#include <tqobject.h>
#include <tqlayout.h>
#include "pmessage.h"
#include "pobject.h"

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

  PLayout(TQObject *parent = 0);
  virtual ~PLayout();

  /**
   * Handles messages from dsirc
   * PObject can't get messages so return an error
   */
  virtual void messageHandler(int fd, PukeMessage *pm);

  /**
   * Sets the current opbect
   */
  virtual void setWidget(TQObject *qb = 0x0);
  
  /**
   * Returns the current object
   */
  virtual TQBoxLayout *widget();

private:

  TQBoxLayout *tqlayout;

};

#endif