mirror of
https://github.com/yuzu-emu/yuzu-android
synced 2025-01-07 09:21:21 -08:00
226dc914b3
Disambiguates what the string represents to help translators more easily understand what it is that they're translating. While we're at it, we can move the code to its own function, so that we don't need to specify the same string twice.
33 lines
616 B
C++
33 lines
616 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();
|
|
void setVolumeIndicatorText(int percentage);
|
|
|
|
std::unique_ptr<Ui::ConfigureAudio> ui;
|
|
};
|