Index: sources/gui/GuiController.h =================================================================== diff -u -r8b044d8ef7db6f72c65aa6109d5f29a79bca92a2 -r6c6f1f5d466badd9b4fd67be7c907234c342b2a2 --- sources/gui/GuiController.h (.../GuiController.h) (revision 8b044d8ef7db6f72c65aa6109d5f29a79bca92a2) +++ sources/gui/GuiController.h (.../GuiController.h) (revision 6c6f1f5d466badd9b4fd67be7c907234c342b2a2) @@ -1,13 +1,13 @@ /*! * - * Copyright (c) 2020-2022 Diality Inc. - All Rights Reserved. + * Copyright (c) 2020-2023 Diality Inc. - All Rights Reserved. * \copyright * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN * WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. * * \file GuiController.h * \author (last) Behrouz NematiPour - * \date (last) 11-Aug-2022 + * \date (last) 15-Oct-2022 * \author (original) Behrouz NematiPour * \date (original) 26-Aug-2020 * @@ -74,6 +74,7 @@ void doExportLog (const GuiStringIndexMap &vExportList); // UI => OS void doExportService (const GuiStringIndexMap &vExportList); // UI => OS void doExportTreatment (const GuiStringIndexMap &vExportList); // UI => OS + void doQuitApplication (); private slots: // Should be private for thread safety and is connected internally. void onActionReceive (GuiActionType vAction, const QVariantList &vData); // UI <= HD/DG @@ -87,8 +88,11 @@ void onSDCardSpaceTooLow(quint8 vAvailablePercent); // OS => UI void onExport (); // OS => UI + void onExportStat (quint32 vIndex, const QString &vFileName, quint8 vPercent); void onFailedTransmit(Sequence seq); + void onPOSTPass (bool vPass); + signals: void didActionReceive (GuiActionType vAction, const QVariantList &vData); // UI <= HD/DG void didActionTransmit(GuiActionType vAction, const QVariantList &vData); // UI => HD/DG @@ -105,8 +109,13 @@ void didExportLog (const GuiStringIndexMap &vExportList); void didExportService (const GuiStringIndexMap &vExportList); void didExportTreatment (const GuiStringIndexMap &vExportList); - void didExport (); + void didExport (); + void didExportStat (quint32 vIndex, const QString &vFileName, quint8 vPercent); + void didPOSTPass (bool vPass); + + void didQuitApplication (); + // Device controller signal slots connection DEVICE_GUI_BRIDGE_DEFINITION_LIST