summaryrefslogtreecommitdiffstats
path: root/tests/manual/rhi/multiwindow_threaded/window.h
blob: 3e0212f772668ae1f7e6004ebc522367a31259e4 (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
// 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