mirror of
https://github.com/citra-emu/citra.git
synced 2024-11-23 22:50:10 +00:00
5840943110
These slots are only ever attached to event handling mechanisms within the class itself, they're never used externally. Because of this, we can make the functions private. This also removes redundant usages of the private access specifier.
28 lines
543 B
C++
28 lines
543 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() override;
|
|
|
|
void applyConfiguration();
|
|
void retranslateUi();
|
|
void setConfiguration();
|
|
|
|
std::unique_ptr<Ui::ConfigureGraphics> ui;
|
|
QColor bg_color;
|
|
};
|