add compatibility reporting to qt frontend
This commit is contained in:
parent
ae42267cc7
commit
e768a92587
14 changed files with 353 additions and 8 deletions
27
src/citra_qt/compatdb.h
Normal file
27
src/citra_qt/compatdb.h
Normal file
|
@ -0,0 +1,27 @@
|
|||
// Copyright 2017 Citra Emulator Project
|
||||
// Licensed under GPLv2 or any later version
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <memory>
|
||||
#include <QWizard>
|
||||
|
||||
namespace Ui {
|
||||
class CompatDB;
|
||||
}
|
||||
|
||||
class CompatDB : public QWizard {
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit CompatDB(QWidget* parent = nullptr);
|
||||
~CompatDB();
|
||||
|
||||
private:
|
||||
std::unique_ptr<Ui::CompatDB> ui;
|
||||
|
||||
private slots:
|
||||
void Submit();
|
||||
void EnableNext();
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue