summaryrefslogtreecommitdiffstats
path: root/xembed/tests/qt-client.h
blob: 0ec1d66b48c282e5ce2c475b65bb2fdeb475bec1 (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
#include <qframe.h>

class QHBox;

class XEmbedQtClient;

class XEmbedQtButtonBox : public QWidget
{
  Q_OBJECT

 public:
  
  XEmbedQtButtonBox (QWidget *parent, XEmbedQtClient *client);
};

class XEmbedQtClient : public QFrame
{
  Q_OBJECT

 public:

  XEmbedQtClient ();

 public slots:
   void addButtons ();

 private:
   QHBox *hbox_;
  
 private slots:
   void blink();
   void addGtkChild();
   void addQtChild();
};