summaryrefslogtreecommitdiffstats
path: root/xembed/tests/qt-client.h
diff options
context:
space:
mode:
authorVincent Untz <vuntz@gnome.org>2012-03-02 15:36:01 +0100
committerVincent Untz <vuntz@gnome.org>2012-03-02 15:36:01 +0100
commit94db110fab0dcea1f8f87efce6ce1be15a67dfc7 (patch)
tree5e04297a2a3a811f9097de50160c4533887a141e /xembed/tests/qt-client.h
parenta988ef565a037a39aecca754a2f9d2f43e5c5131 (diff)
parent23d7d60971b8428429f120cbf77f3fcf70304b67 (diff)
downloadxdg-specs-94db110fab0dcea1f8f87efce6ce1be15a67dfc7.tar.xz
xembed: Merge import from CVS
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();
+};