Index: sources/gui/GuiView.h =================================================================== diff -u -r54c4136d95375116e6daf23b7d4179159cf13d0c -rfec49d1a8016d25cedff4cf2fefb4c4cd1c7c259 --- sources/gui/GuiView.h (.../GuiView.h) (revision 54c4136d95375116e6daf23b7d4179159cf13d0c) +++ sources/gui/GuiView.h (.../GuiView.h) (revision fec49d1a8016d25cedff4cf2fefb4c4cd1c7c259) @@ -43,8 +43,8 @@ // disabled coco begin validated: This needs user interaction to plug-in/out SD Card // has been tested manually - PROPERTY(bool, sdIsReady , false) - PROPERTY(bool, sdIsReadOnly, false) + PROPERTY(bool , sdIsReady , false ) + PROPERTY(bool , sdIsReadOnly , false ) PROPERTY(quint64, sdTotal , 0 ) PROPERTY(quint64, sdAvail , 0 ) @@ -81,30 +81,36 @@ void onUSBDriveMount (); void onUSBDriveRemove(); + void onUSBSpaceChange(bool vReady, qint64 vTotal, qint64 vAvailable, quint8 vPercent); void onExport (); void onSDCardStateChange(bool vIsReady, bool vIsReadOnly); void onSDCardSpaceTooLow(quint8 vAvailablePercent); void onSDCardSpaceChange(bool vReady, qint64 vTotal, qint64 vAvailable, quint8 vPercent); - void onUSBSpaceChange (bool vReady, qint64 vTotal, qint64 vAvailable, quint8 vPercent); public slots: // is public since will be used in the UI and is in the same thread. void doActionTransmit(GuiActionType vAction, const QVariantList &vData); // UI => HD/DG void doActionTransmit(GuiActionType vAction, const QVariant &vData); // UI => HD/DG void doUSBDriveUmount(); - void doExportLog (); + void doExportLog (); + void doExportService (); + void doExportTreatment (); + signals: void didActionReceive (GuiActionType vAction, const QVariantList &vData); // UI <= HD/DG void didActionTransmit(GuiActionType vAction, const QVariantList &vData); // UI => HD/DG void didUSBDriveMount (); void didUSBDriveUmount(); void didUSBDriveRemove(); + void didUSBSpaceChange(bool vReady, qint64 vTotal, qint64 vAvailable, quint8 vPercent); - void didExportLog(); + void didExportLog (); + void didExportService (); + void didExportTreatment (); void didExport (); }; }