Index: sources/gui/GuiController.h =================================================================== diff -u -r79a6cfcb10472261f3ec26eaf0baf6f1245cd311 -r465a935949a85d3d1bebd11979737ff38ef96122 --- sources/gui/GuiController.h (.../GuiController.h) (revision 79a6cfcb10472261f3ec26eaf0baf6f1245cd311) +++ sources/gui/GuiController.h (.../GuiController.h) (revision 465a935949a85d3d1bebd11979737ff38ef96122) @@ -70,16 +70,20 @@ public slots: void doActionTransmit(GuiActionType vAction, const QVariantList &vData); // UI => HD/DG - void doUSBDriveUmount(); // UI => OS - void doExportLog (); // UI => OS + void doUSBDriveUmount (); // UI => OS + void doExportLog (); // UI => OS + void doExportService (); // UI => OS + void doExportTreatment (); // UI => OS private slots: // Should be private for thread safety and is connected internally. void onActionReceive (GuiActionType vAction, const QVariantList &vData); // UI <= HD/DG void onUSBDriveMount (); // OS => UI void onUSBDriveRemove(); // OS => UI + void onUSBSpaceChange(bool vReady, qint64 vTotal, qint64 vAvailable, quint8 vPercent); void onSDCardStateChange(bool vIsReady, bool vIsReadOnly); // OS => UI + void onSDCardSpaceChange(bool vReady, qint64 vTotal, qint64 vAvailable, quint8 vPercent); void onSDCardSpaceTooLow(quint8 vAvailablePercent); // OS => UI void onExport (); // OS => UI @@ -92,11 +96,15 @@ void didUSBDriveMount (); void didUSBDriveUmount(); void didUSBDriveRemove(); + void didUSBSpaceChange(bool vReady, qint64 vTotal, qint64 vAvailable, quint8 vPercent); void didSDCardStateChange(bool vIsReady, bool vIsReadOnly); + void didSDCardSpaceChange(bool vReady, qint64 vTotal, qint64 vAvailable, quint8 vPercent); void didSDCardSpaceTooLow(quint8 vAvailablePercent); - void didExportLog(); + void didExportLog (); + void didExportService (); + void didExportTreatment (); void didExport (); // Device controller signal slots connection @@ -105,5 +113,8 @@ // ---- Signal/Slots ADJUST_TRANSMT_MODEL_BRIDGE_DEFINITIONS_PUBLIC ACTION_RECEIVE_MODEL_BRIDGE_DEFINITIONS + + ACTION_RECEIVE_PRIVATE_SLOT(UIPostFinalResultHDRequestData) + }; }