mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-02 16:35:06 +01:00
45 lines
1.2 KiB
C++
45 lines
1.2 KiB
C++
|
// 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();
|
||
|
}
|