mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-05 14:57:53 +00:00
32 lines
567 B
C++
32 lines
567 B
C++
|
// Copyright 2018 yuzu Emulator Project
|
||
|
// Licensed under GPLv2 or any later version
|
||
|
// Refer to the license.txt file included.
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <memory>
|
||
|
#include <QWidget>
|
||
|
|
||
|
namespace Ui {
|
||
|
class ConfigureAudio;
|
||
|
}
|
||
|
|
||
|
class ConfigureAudio : public QWidget {
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit ConfigureAudio(QWidget* parent = nullptr);
|
||
|
~ConfigureAudio();
|
||
|
|
||
|
void applyConfiguration();
|
||
|
void retranslateUi();
|
||
|
|
||
|
public slots:
|
||
|
void updateAudioDevices(int sink_index);
|
||
|
|
||
|
private:
|
||
|
void setConfiguration();
|
||
|
|
||
|
std::unique_ptr<Ui::ConfigureAudio> ui;
|
||
|
};
|