blob: 595173b65d6c0ed9e882e156b43d2837017d185a (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
|
#ifndef MAINWIDGET_H
#define MAINWIDGET_H
#include <QtOpenGL/QGLWidget>
#include <QMatrix4x4>
#include <QQuaternion>
#include <QVector2D>
class QBasicTimer;
class QGLShaderProgram;
class GeometryEngine;
class MainWidget : public QGLWidget
{
Q_OBJECT
public:
explicit MainWidget(QWidget *parent = 0);
virtual ~MainWidget();
signals:
public slots:
protected:
void mousePressEvent(QMouseEvent *e);
void mouseReleaseEvent(QMouseEvent *e);
void timerEvent(QTimerEvent *e);
void initializeGL();
void resizeGL(int w, int h);
void paintGL();
void initShaders();
void initTextures();
private:
QBasicTimer *timer;
QGLShaderProgram *program;
GeometryEngine *geometries;
GLuint texture;
QMatrix4x4 projection;
QVector2D mousePressPosition;
QVector3D rotationAxis;
qreal angularSpeed;
QQuaternion rotation;
};
#endif // MAINWIDGET_H
|