2022-05-10 10:06:48 +00:00
|
|
|
// Copyright (C) 2017 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2017-02-12 14:08:52 +00:00
|
|
|
|
2023-01-30 13:32:42 +00:00
|
|
|
#ifndef HELLOVULKANWIDGET_H
|
|
|
|
#define HELLOVULKANWIDGET_H
|
|
|
|
|
2017-02-12 14:08:52 +00:00
|
|
|
#include "../shared/trianglerenderer.h"
|
|
|
|
#include <QWidget>
|
|
|
|
|
|
|
|
class VulkanWindow;
|
|
|
|
|
|
|
|
QT_BEGIN_NAMESPACE
|
2017-03-30 07:43:07 +00:00
|
|
|
class QTabWidget;
|
|
|
|
class QPlainTextEdit;
|
2017-02-12 14:08:52 +00:00
|
|
|
class QLCDNumber;
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
|
|
|
class MainWindow : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2017-03-30 07:43:07 +00:00
|
|
|
explicit MainWindow(VulkanWindow *w, QPlainTextEdit *logWidget);
|
2017-02-12 14:08:52 +00:00
|
|
|
|
|
|
|
public slots:
|
|
|
|
void onVulkanInfoReceived(const QString &text);
|
|
|
|
void onFrameQueued(int colorValue);
|
|
|
|
void onGrabRequested();
|
|
|
|
|
|
|
|
private:
|
|
|
|
VulkanWindow *m_window;
|
2017-03-30 07:43:07 +00:00
|
|
|
QTabWidget *m_infoTab;
|
|
|
|
QPlainTextEdit *m_info;
|
2017-02-12 14:08:52 +00:00
|
|
|
QLCDNumber *m_number;
|
|
|
|
};
|
|
|
|
|
|
|
|
class VulkanRenderer : public TriangleRenderer
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
VulkanRenderer(VulkanWindow *w);
|
|
|
|
|
|
|
|
void initResources() override;
|
|
|
|
void startNextFrame() override;
|
|
|
|
};
|
|
|
|
|
|
|
|
class VulkanWindow : public QVulkanWindow
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
QVulkanWindowRenderer *createRenderer() override;
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void vulkanInfoReceived(const QString &text);
|
|
|
|
void frameQueued(int colorValue);
|
|
|
|
};
|
2023-01-30 13:32:42 +00:00
|
|
|
|
|
|
|
#endif // HELLOVULKANWIDGET_H
|