broken: play dj outside, get it stuck

This commit is contained in:
Hane 2023-08-14 16:10:35 +02:00
commit bea0a2af94
5 changed files with 58 additions and 12 deletions

View file

@ -71,6 +71,7 @@ public:
void updateMainVolume(float newValue);
void updateChannelVolume(uint32_t channel, float newValue);
void updateMute(bool muted);
void toggleFrontEvents(bool active);
//void populateEndpointWidget(EndpointHandler *eph);
//void setEndpointHandlers(std::vector<EndpointHandler*> *ephs);
@ -93,6 +94,8 @@ private:
typedef void (EndpointWidget::*epwMuteFunc)(bool muted);
typedef void (EndpointWidget::*epwMainVolumeFunc)(float newValue);
typedef void (EndpointWidget::*epwChannelVolumeFunc)(uint32_t channel, float newValue);
typedef void (EndpointWidget::*epwToggleFrontFunc)(bool active);
class MainWindow : public QMainWindow {
Q_OBJECT