MCPcopy Create free account
hub / github.com/aethersdr/AetherSDR / stageLabel

Function stageLabel

src/gui/ClientRxChainWidget.cpp:71–83  ·  view source on GitHub ↗

Short label per RX stage — kept ≤5 chars to fit inside the narrow box.

Source from the content-addressed store, hash-verified

69
70// Short label per RX stage — kept ≤5 chars to fit inside the narrow box.
71QString stageLabel(AudioEngine::RxChainStage s)
72{
73 switch (s) {
74 case AudioEngine::RxChainStage::Eq: return "EQ";
75 case AudioEngine::RxChainStage::Gate: return "AGC-G";
76 case AudioEngine::RxChainStage::Comp: return "AGC-C";
77 case AudioEngine::RxChainStage::Tube: return "TUBE";
78 case AudioEngine::RxChainStage::Pudu: return "EVO";
79 case AudioEngine::RxChainStage::DeEss: return "DESS";
80 case AudioEngine::RxChainStage::None: return "";
81 }
82 return "";
83}
84
85} // namespace
86

Callers 2

mouseMoveEventMethod · 0.70
paintEventMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected