mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-24 04:20:46 +08:00
40 lines
666 B
C++
40 lines
666 B
C++
// Copyright (C) 2018 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
|
|
#ifndef WINDOW_H
|
|
#define WINDOW_H
|
|
|
|
#include <QWindow>
|
|
|
|
enum GraphicsApi
|
|
{
|
|
OpenGL,
|
|
Vulkan,
|
|
D3D11,
|
|
Metal
|
|
};
|
|
|
|
class Window : public QWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
Window(const QString &title, GraphicsApi api);
|
|
~Window();
|
|
|
|
void exposeEvent(QExposeEvent *) override;
|
|
bool event(QEvent *) override;
|
|
|
|
signals:
|
|
void initRequested();
|
|
void renderRequested(bool newlyExposed);
|
|
void surfaceGoingAway();
|
|
void syncSurfaceSizeRequested();
|
|
|
|
protected:
|
|
bool m_running = false;
|
|
bool m_notExposed = true;
|
|
};
|
|
|
|
#endif
|