mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-05 23:07:53 +00:00
30 lines
506 B
C
30 lines
506 B
C
|
// Copyright 2016 Citra Emulator Project
|
||
|
// Licensed under GPLv2 or any later version
|
||
|
// Refer to the license.txt file included.
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <memory>
|
||
|
#include <QWidget>
|
||
|
|
||
|
namespace Ui {
|
||
|
class ConfigureGraphics;
|
||
|
}
|
||
|
|
||
|
class ConfigureGraphics : public QWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit ConfigureGraphics(QWidget *parent = nullptr);
|
||
|
~ConfigureGraphics();
|
||
|
|
||
|
void applyConfiguration();
|
||
|
|
||
|
private:
|
||
|
void setConfiguration();
|
||
|
|
||
|
private:
|
||
|
std::unique_ptr<Ui::ConfigureGraphics> ui;
|
||
|
};
|