mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-26 22:27:06 +08:00
58 lines
1.2 KiB
C++
58 lines
1.2 KiB
C++
// Copyright (C) 2022 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
#ifndef MAINWIDGET_H
|
|
#define MAINWIDGET_H
|
|
|
|
#include "geometryengine.h"
|
|
|
|
#include <QOpenGLWidget>
|
|
#include <QOpenGLFunctions>
|
|
#include <QMatrix4x4>
|
|
#include <QQuaternion>
|
|
#include <QVector2D>
|
|
#include <QBasicTimer>
|
|
#include <QOpenGLShaderProgram>
|
|
#include <QOpenGLTexture>
|
|
|
|
class GeometryEngine;
|
|
|
|
class MainWidget : public QOpenGLWidget, protected QOpenGLFunctions
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
using QOpenGLWidget::QOpenGLWidget;
|
|
~MainWidget();
|
|
|
|
protected:
|
|
void mousePressEvent(QMouseEvent *e) override;
|
|
void mouseReleaseEvent(QMouseEvent *e) override;
|
|
void timerEvent(QTimerEvent *e) override;
|
|
|
|
void initializeGL() override;
|
|
void resizeGL(int w, int h) override;
|
|
void paintGL() override;
|
|
|
|
void initShaders();
|
|
void initTextures();
|
|
|
|
private slots:
|
|
void cleanup();
|
|
|
|
private:
|
|
QBasicTimer timer;
|
|
QOpenGLShaderProgram *program = nullptr;
|
|
GeometryEngine *geometries = nullptr;
|
|
QOpenGLTexture *texture = nullptr;
|
|
|
|
QMatrix4x4 projection;
|
|
|
|
QVector2D mousePressPosition;
|
|
QVector3D rotationAxis;
|
|
qreal angularSpeed = 0;
|
|
QQuaternion rotation;
|
|
};
|
|
|
|
#endif // MAINWIDGET_H
|