mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-30 09:35:40 +00:00
ac825855f7
Stops them breaking in Qt 6.6.
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 SettingsWindow;
|
|
|
|
class AudioSettingsWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit AudioSettingsWidget(SettingsWindow* 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;
|
|
|
|
SettingsWindow* m_dialog;
|
|
};
|