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.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/xembed/tests/qt-client.h b/xembed/tests/qt-client.h
new file mode 100644
index 0000000..0ec1d66
--- /dev/null
+++ b/xembed/tests/qt-client.h
@@ -0,0 +1,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();
+};