summaryrefslogtreecommitdiffstats
path: root/xembed/tests/qt-client.h
blob: 6911b22f93ade6801ea0fe74dfb515b1b1a04859 (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
#include <qmainwindow.h>

class XEmbedQtClient;

class XEmbedQtButtonBox : public QWidget
{
  Q_OBJECT

 public:
  
  XEmbedQtButtonBox (XEmbedQtClient *client);
};

class XEmbedQtClient : public QWidget
{
  Q_OBJECT

 public:

  XEmbedQtClient ();

 public slots:
   void addButtons ();

 private slots:
   void blink();
};