mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-18 11:25:33 +08:00
Ref T731, connected AFV client signals with UI
This commit is contained in:
committed by
Mat Sutcliffe
parent
dc5cc4c7b0
commit
11275d3560
@@ -50,8 +50,8 @@ namespace BlackGui
|
||||
//! @}
|
||||
|
||||
//! Set input and output level values @{
|
||||
void setInLevel(int value, int from = BlackMisc::Audio::CSettings::InMin, int to = BlackMisc::Audio::CSettings::InMax);
|
||||
void setOutLevel(int value, int from = BlackMisc::Audio::CSettings::OutMin, int to = BlackMisc::Audio::CSettings::OutMax);
|
||||
void setInLevel(int value, int from, int to);
|
||||
void setOutLevel(int value, int from, int to);
|
||||
//! @}
|
||||
|
||||
//! Info string
|
||||
@@ -92,6 +92,9 @@ namespace BlackGui
|
||||
//! Save the audio volumes
|
||||
void saveVolumes();
|
||||
|
||||
void onOutputVU(double vu);
|
||||
void onInputVU(double vu);
|
||||
|
||||
QScopedPointer<Ui::CAudioDeviceVolumeSetupComponent> ui;
|
||||
BlackMisc::CDigestSignal m_volumeSliderChanged { this, &CAudioDeviceVolumeSetupComponent::saveVolumes, 1000, 10 };
|
||||
BlackMisc::CSetting<BlackMisc::Audio::TSettings> m_audioSettings { this, &CAudioDeviceVolumeSetupComponent::reloadSettings };
|
||||
|
||||
Reference in New Issue
Block a user