summaryrefslogtreecommitdiffstats
path: root/examples/qtgl/myqgl.h
blob: d0549df83af27b41084447633770ea2652c2b783 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#ifndef GLWIDGET_H
#define GLWIDGET_H

#include <qgl.h>

#include <csetjmp>

#include "ksquirrel-libs/fmt_types.h"
#include "ksquirrel-libs/fileio.h"
#include "ksquirrel-libs/fmt_codec_base.h"

class MyQGL : public QGLWidget
{
    TQ_OBJECT

	public:
		MyQGL(QWidget *parent = 0, const char *name = 0);
		~MyQGL();

	public slots:
		void bind();

	protected:
		void initializeGL();
		void paintGL();
		void resizeGL(int,int);
		void loadImage();

	private:
		void *bits;
		unsigned int tex;
		int w, h;
		fmt_codec_base* (*codec_create)();
		void (*codec_destroy)(fmt_codec_base*);

		fmt_codec_base	*codeK;
			
};

#endif