Config: Audio sink configuration (#1798)
This commit is contained in:
parent
7a7488a0bb
commit
d014873916
6 changed files with 134 additions and 0 deletions
44
src/citra_qt/configure_audio.cpp
Normal file
44
src/citra_qt/configure_audio.cpp
Normal file
|
@ -0,0 +1,44 @@
|
|||
// Copyright 2016 Citra Emulator Project
|
||||
// Licensed under GPLv2 or any later version
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#include "audio_core/sink_details.h"
|
||||
|
||||
#include "citra_qt/configure_audio.h"
|
||||
#include "ui_configure_audio.h"
|
||||
|
||||
#include "core/settings.h"
|
||||
|
||||
ConfigureAudio::ConfigureAudio(QWidget* parent) :
|
||||
QWidget(parent),
|
||||
ui(std::make_unique<Ui::ConfigureAudio>())
|
||||
{
|
||||
ui->setupUi(this);
|
||||
|
||||
ui->output_sink_combo_box->clear();
|
||||
ui->output_sink_combo_box->addItem("auto");
|
||||
for (const auto& sink_detail : AudioCore::g_sink_details) {
|
||||
ui->output_sink_combo_box->addItem(sink_detail.id);
|
||||
}
|
||||
|
||||
this->setConfiguration();
|
||||
}
|
||||
|
||||
ConfigureAudio::~ConfigureAudio() {
|
||||
}
|
||||
|
||||
void ConfigureAudio::setConfiguration() {
|
||||
for (int index = 0; index < ui->output_sink_combo_box->count(); index++) {
|
||||
if (ui->output_sink_combo_box->itemText(index).toStdString() == Settings::values.sink_id) {
|
||||
ui->output_sink_combo_box->setCurrentIndex(index);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
ui->output_sink_combo_box->setCurrentIndex(0);
|
||||
}
|
||||
|
||||
void ConfigureAudio::applyConfiguration() {
|
||||
Settings::values.sink_id = ui->output_sink_combo_box->itemText(ui->output_sink_combo_box->currentIndex()).toStdString();
|
||||
Settings::Apply();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue