summaryrefslogtreecommitdiffstats
path: root/xembed/tests/qt-client.h
diff options
context:
space:
mode:
Diffstat (limited to 'xembed/tests/qt-client.h')
-rw-r--r--xembed/tests/qt-client.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/xembed/tests/qt-client.h b/xembed/tests/qt-client.h
new file mode 100644
index 0000000..6911b22
--- /dev/null
+++ b/xembed/tests/qt-client.h
@@ -0,0 +1,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();
+};