mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-05 14:57:53 +00:00
c09ff382a4
To prepare for translation support, this makes all of the widgets cognizant of the language change event that occurs whenever installTranslator() is called and automatically retranslates their text where necessary. This is important as calling the backing UI's retranslateUi() is often not enough, particularly in cases where we add our own strings that aren't controlled by it. In that case we need to manually refresh the strings ourselves.
38 lines
781 B
C++
38 lines
781 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() override;
|
|
|
|
void ApplyConfiguration();
|
|
|
|
private:
|
|
void changeEvent(QEvent* event) override;
|
|
|
|
void InitializeAudioOutputSinkComboBox();
|
|
|
|
void RetranslateUI();
|
|
|
|
void UpdateAudioDevices(int sink_index);
|
|
|
|
void SetConfiguration();
|
|
void SetOutputSinkFromSinkID();
|
|
void SetAudioDeviceFromDeviceID();
|
|
void SetVolumeIndicatorText(int percentage);
|
|
|
|
std::unique_ptr<Ui::ConfigureAudio> ui;
|
|
};
|