DolphinQt2

This commit is contained in:
spxtr
2015-11-27 00:33:07 -08:00
parent e1fe2db7d9
commit 949f25175b
20 changed files with 1633 additions and 1 deletions

View File

@ -0,0 +1,25 @@
// Copyright 2015 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
#pragma once
#include <QEvent>
#include <QWidget>
class RenderWidget final : public QWidget
{
Q_OBJECT
public:
RenderWidget(QWidget* parent = nullptr);
bool event(QEvent* event);
signals:
void EscapePressed();
void Closed();
void HandleChanged(void* handle);
void FocusChanged(bool focus);
void StateChanged(bool fullscreen);
};