2016-08-25 02:15:38 +00:00
|
|
|
// Copyright 2016 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
#include <memory>
|
2016-09-20 15:21:23 +00:00
|
|
|
#include <QWidget>
|
2016-08-25 02:15:38 +00:00
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class ConfigureGraphics;
|
|
|
|
}
|
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
class ConfigureGraphics : public QWidget {
|
2016-08-25 02:15:38 +00:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2016-09-18 00:38:01 +00:00
|
|
|
explicit ConfigureGraphics(QWidget* parent = nullptr);
|
2018-12-02 19:10:28 +00:00
|
|
|
~ConfigureGraphics() override;
|
2016-08-25 02:15:38 +00:00
|
|
|
|
2019-05-26 04:39:23 +00:00
|
|
|
void ApplyConfiguration();
|
2016-08-25 02:15:38 +00:00
|
|
|
|
|
|
|
private:
|
2019-06-05 22:39:46 +00:00
|
|
|
void changeEvent(QEvent* event) override;
|
|
|
|
void RetranslateUI();
|
|
|
|
|
2019-05-26 04:39:23 +00:00
|
|
|
void SetConfiguration();
|
2016-08-25 02:15:38 +00:00
|
|
|
|
2019-01-21 03:09:23 +00:00
|
|
|
void UpdateBackgroundColorButton(QColor color);
|
|
|
|
|
2016-08-25 02:15:38 +00:00
|
|
|
std::unique_ptr<Ui::ConfigureGraphics> ui;
|
2018-09-08 23:57:19 +00:00
|
|
|
QColor bg_color;
|
2016-08-25 02:15:38 +00:00
|
|
|
};
|