summaryrefslogtreecommitdiffstats
path: root/examples/qtapp/myqt.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/qtapp/myqt.h')
-rw-r--r--examples/qtapp/myqt.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/examples/qtapp/myqt.h b/examples/qtapp/myqt.h
new file mode 100644
index 0000000..9e63d4f
--- /dev/null
+++ b/examples/qtapp/myqt.h
@@ -0,0 +1,33 @@
+#ifndef GLWIDGET_H
+#define GLWIDGET_H
+
+#include <qlabel.h>
+
+#include <csetjmp>
+
+#include "ksquirrel-libs/fmt_types.h"
+#include "ksquirrel-libs/fileio.h"
+#include "ksquirrel-libs/fmt_codec_base.h"
+
+class MyQT : public QLabel
+{
+ Q_OBJECT
+
+ public:
+ MyQT(QWidget *parent = 0, const char *name = 0);
+ ~MyQT();
+
+ QPixmap loadImage();
+
+ public slots:
+ void bind();
+
+ private:
+ fmt_codec_base* (*codec_create)();
+ void (*codec_destroy)(fmt_codec_base*);
+
+ fmt_codec_base *codeK;
+
+};
+
+#endif