all repos — mgba @ aacab52a840f8c086a8fb22160c52f25fbe49032

mGBA Game Boy Advance Emulator

src/platform/qt/DisplayQt.h (view raw)

 1/* Copyright (c) 2013-2015 Jeffrey Pfau
 2 *
 3 * This Source Code Form is subject to the terms of the Mozilla Public
 4 * License, v. 2.0. If a copy of the MPL was not distributed with this
 5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
 6#ifndef QGBA_DISPLAY_QT
 7#define QGBA_DISPLAY_QT
 8
 9#include "Display.h"
10
11#include <QImage>
12#include <QTimer>
13
14struct GBAThread;
15
16namespace QGBA {
17
18class DisplayQt : public Display {
19Q_OBJECT
20
21public:
22	DisplayQt(QWidget* parent = nullptr);
23
24public slots:
25	void startDrawing(GBAThread* context) override;
26	void stopDrawing() override {}
27	void pauseDrawing() override {}
28	void unpauseDrawing() override {}
29	void forceDraw() override { update(); }
30	void lockAspectRatio(bool lock) override;
31	void filter(bool filter) override;
32	void framePosted(const uint32_t*) override;
33
34protected:
35	virtual void paintEvent(QPaintEvent*) override;
36
37private:
38	GBAThread* m_context;
39	QImage m_backing;
40	bool m_lockAspectRatio;
41	bool m_filter;
42};
43
44}
45
46#endif