You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
libksquirrel/examples/qtgl/myqgl.h

41 lines
624 B

#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(TQWidget *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