Added lots of model synchronization mechanisms

This commit is contained in:
2023-02-19 20:54:51 +01:00
parent 01129e7a30
commit 9edce9bee4
5 changed files with 187 additions and 2 deletions

View File

@ -28,6 +28,14 @@ public:
signals:
void controllerChanged(DmxController *controller);
private slots:
void otherDeviceInserted(int first, int last);
void otherDeviceRemoved(int first, int last);
void otherDeviceNameChanged(int row, const QString &name);
void otherDeviceDeviceTypeIdChanged(int row, int deviceTypeId);
void otherDeviceAddressChanged(int row, int address);
void otherDevicePositionChanged(int row, const QVector3D &position);
private:
DmxController *m_controller{};
};