mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
Qt/Settings: Implement cheat settings
This commit is contained in:
@ -10,7 +10,6 @@
|
||||
|
||||
class QLabel;
|
||||
class QPushButton;
|
||||
class QTimer;
|
||||
|
||||
class CheatWarningWidget : public QWidget
|
||||
{
|
||||
@ -20,18 +19,16 @@ public:
|
||||
|
||||
signals:
|
||||
void OpenCheatEnableSettings();
|
||||
void CheatEnableToggled();
|
||||
void EmulationStarted();
|
||||
void EmulationStopped();
|
||||
|
||||
private:
|
||||
const std::string& m_game_id;
|
||||
|
||||
void CreateWidgets();
|
||||
void ConnectWidgets();
|
||||
|
||||
void Update();
|
||||
void Update(bool running);
|
||||
|
||||
QLabel* m_text;
|
||||
QPushButton* m_config_button;
|
||||
const std::string m_game_id;
|
||||
};
|
||||
|
Reference in New Issue
Block a user