summaryrefslogtreecommitdiffstats
path: root/examples/opengl/hellowindow/hellowindow.h
blob: b0adecbb10b478e5d8fc676d878edb1c5537271d (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
#include <QWindow>

#include <QtOpenGL/qgl.h>
#include <QtOpenGL/qglshaderprogram.h>

#include <QTime>

class HelloWindow : public QWindow
{
    Q_OBJECT
public:
    HelloWindow();

protected:
    void mousePressEvent(QMouseEvent *);

private slots:
    void render();

private:
    void initialize();
    void updateColor();

    qreal m_fAngle;
    bool m_showBubbles;
    void paintQtLogo();
    void createGeometry();
    void createBubbles(int number);
    void quad(qreal x1, qreal y1, qreal x2, qreal y2, qreal x3, qreal y3, qreal x4, qreal y4);
    void extrude(qreal x1, qreal y1, qreal x2, qreal y2);
    QVector<QVector3D> vertices;
    QVector<QVector3D> normals;
    QGLShaderProgram program;
    int vertexAttr;
    int normalAttr;
    int matrixUniform;
    int colorUniform;
    uint colorIndex;
};