Improve cmake and GUI (#13)
+ Packaging and CI for Windows, Mac, Linux + Debian package, NSIS Windows installer, OSX appbundle + Example application using libqtk + Component installation for `qtk`, `libqtk`, or `collection` with cmake
This commit was merged in pull request #13.
This commit is contained in:
38
example-app/examplewidget.h
Normal file
38
example-app/examplewidget.h
Normal file
@@ -0,0 +1,38 @@
|
||||
/*##############################################################################
|
||||
## Author: Shaun Reed ##
|
||||
## Legal: All Content (c) 2023 Shaun Reed, all rights reserved ##
|
||||
## About: Example Qtk widget ##
|
||||
## ##
|
||||
## Contact: shaunrd0@gmail.com | URL: www.shaunreed.com | GitHub: shaunrd0 ##
|
||||
##############################################################################*/
|
||||
|
||||
#ifndef QTKCLIENT_EXAMPLEWIDGET_H
|
||||
#define QTKCLIENT_EXAMPLEWIDGET_H
|
||||
|
||||
#include <QOpenGLFunctions>
|
||||
#include <QOpenGLWidget>
|
||||
|
||||
#include "examplescene.h"
|
||||
|
||||
class ExampleWidget : public QOpenGLWidget, protected QOpenGLFunctions {
|
||||
Q_OBJECT;
|
||||
|
||||
public:
|
||||
explicit ExampleWidget(QWidget * parent = nullptr);
|
||||
|
||||
~ExampleWidget() = default;
|
||||
|
||||
void initializeGL() override;
|
||||
|
||||
void resizeGL(int width, int height) override;
|
||||
|
||||
void paintGL() override;
|
||||
|
||||
protected slots:
|
||||
void update();
|
||||
|
||||
private:
|
||||
Qtk::Scene * mScene;
|
||||
};
|
||||
|
||||
#endif // QTKCLIENT_EXAMPLEWIDGET_H
|
||||
Reference in New Issue
Block a user