mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-05-05 06:25:42 -04:00
33 lines
754 B
C++
33 lines
754 B
C++
// SPDX-FileCopyrightText: 2019-2022 Connor McLaughlin <stenzek@gmail.com>
|
|
// SPDX-License-Identifier: (GPL-3.0 OR CC-BY-NC-ND-4.0)
|
|
|
|
#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;
|
|
};
|