summaryrefslogtreecommitdiffstats
path: root/xembed/tests/qt-client.h
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2002-04-21 13:02:50 +0000
committerOwen Taylor <otaylor@redhat.com>2002-04-21 13:02:50 +0000
commit0384881729afeaa1ff5c6ef1282b1222ebfd7179 (patch)
tree6bb052bd461c4c59514ef1c9f6decf3c7917b6cc /xembed/tests/qt-client.h
parent19ceb4ed34fd0368294ed42f72e95dfaac4b107e (diff)
downloadxdg-specs-0384881729afeaa1ff5c6ef1282b1222ebfd7179.tar.xz
Sun Apr 21 09:20:30 2002 Owen Taylor <otaylor@redhat.com>
* Reorganize, add test cases in tests/
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();
+};