Index: sources/gui/GuiView.h =================================================================== diff -u -rb77869b5e44de6f8b140f6d8764efc5a2bb61a59 -r8b044d8ef7db6f72c65aa6109d5f29a79bca92a2 --- sources/gui/GuiView.h (.../GuiView.h) (revision b77869b5e44de6f8b140f6d8764efc5a2bb61a59) +++ sources/gui/GuiView.h (.../GuiView.h) (revision 8b044d8ef7db6f72c65aa6109d5f29a79bca92a2) @@ -105,8 +105,8 @@ void doExportListInsert (quint32 vIndex, const QString &vFilename ) { /* DEBUG: qDebug() << vIndex; */ _exportList [vIndex] = vFilename; exportCount( _exportList.count() ); } void doExportListDelete (quint32 vIndex ) { /* DEBUG: qDebug() << vIndex; */ _exportList.remove (vIndex) ; exportCount( _exportList.count() ); } bool doExportListSelect (quint32 vIndex ) { /* DEBUG: qDebug() << vIndex; */ return _exportList.contains(vIndex) ; } + void doExportListRemove ( ) { _exportList.clear ( ) ; exportCount( _exportList.count() ); } - signals: void didActionReceive (GuiActionType vAction, const QVariantList &vData); // UI <= HD/DG void didActionTransmit(GuiActionType vAction, const QVariantList &vData); // UI => HD/DG @@ -116,9 +116,9 @@ void didUSBDriveRemove(); void didUSBSpaceChange(bool vReady, qint64 vTotal, qint64 vAvailable, quint8 vPercent); - void didExportLog (); - void didExportService (); - void didExportTreatment (); + void didExportLog (const GuiStringIndexMap &vExportList); + void didExportService (const GuiStringIndexMap &vExportList); + void didExportTreatment (const GuiStringIndexMap &vExportList); void didExport (); }; }