mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2025-01-21 07:45:38 +00:00
30 lines
621 B
C++
30 lines
621 B
C++
#pragma once
|
|
|
|
#include <QtWidgets/QWidget>
|
|
|
|
#include "ui_emulationsettingswidget.h"
|
|
|
|
class SettingsDialog;
|
|
|
|
class EmulationSettingsWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit EmulationSettingsWidget(SettingsDialog* dialog, QWidget* parent);
|
|
~EmulationSettingsWidget();
|
|
|
|
private Q_SLOTS:
|
|
void onEmulationSpeedIndexChanged(int index);
|
|
void onFastForwardSpeedIndexChanged(int index);
|
|
void onTurboSpeedIndexChanged(int index);
|
|
void updateRewind();
|
|
|
|
private:
|
|
void fillComboBoxWithEmulationSpeeds(QComboBox* cb, float global_value);
|
|
|
|
Ui::EmulationSettingsWidget m_ui;
|
|
|
|
SettingsDialog* m_dialog;
|
|
};
|