mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-23 14:25:37 +00:00
8c7a192128
Should've did this in the beginning.
34 lines
771 B
C++
34 lines
771 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_audiosettingswidget.h"
|
|
|
|
class SettingsDialog;
|
|
|
|
class AudioSettingsWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit AudioSettingsWidget(SettingsDialog* dialog, QWidget* parent);
|
|
~AudioSettingsWidget();
|
|
|
|
private Q_SLOTS:
|
|
void updateDriverNames();
|
|
void updateLatencyLabel();
|
|
void updateVolumeLabel();
|
|
void onMinimalOutputLatencyChecked(bool new_value);
|
|
void onOutputVolumeChanged(int new_value);
|
|
void onFastForwardVolumeChanged(int new_value);
|
|
void onOutputMutedChanged(int new_state);
|
|
|
|
private:
|
|
Ui::AudioSettingsWidget m_ui;
|
|
|
|
SettingsDialog* m_dialog;
|
|
};
|