mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2025-01-21 07:45:38 +00:00
30 lines
581 B
C++
30 lines
581 B
C++
#pragma once
|
|
|
|
#include <QtWidgets/QWidget>
|
|
|
|
#include "ui_consolesettingswidget.h"
|
|
|
|
class SettingsDialog;
|
|
|
|
class ConsoleSettingsWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ConsoleSettingsWidget(SettingsDialog* dialog, QWidget* parent);
|
|
~ConsoleSettingsWidget();
|
|
|
|
private Q_SLOTS:
|
|
void updateRecompilerICacheEnabled();
|
|
void onEnableCPUClockSpeedControlChecked(int state);
|
|
void onCPUClockSpeedValueChanged(int value);
|
|
void updateCPUClockSpeedLabel();
|
|
|
|
private:
|
|
void calculateCPUClockValue();
|
|
|
|
Ui::ConsoleSettingsWidget m_ui;
|
|
|
|
SettingsDialog* m_dialog;
|
|
};
|