Index: sources/gui/GuiController.cpp =================================================================== diff -u -r265ce7409a0ea99a4ae059f5ce7978c9cdb10631 -r142f2ddb8ce284c52c0add2acf3ac81f471b78de --- sources/gui/GuiController.cpp (.../GuiController.cpp) (revision 265ce7409a0ea99a4ae059f5ce7978c9cdb10631) +++ sources/gui/GuiController.cpp (.../GuiController.cpp) (revision 142f2ddb8ce284c52c0add2acf3ac81f471b78de) @@ -94,6 +94,8 @@ // Export connect(&_ApplicationController, SIGNAL(didExport()), this , SLOT( onExport())); + connect(&_ApplicationController, SIGNAL(didExportStat (quint32, const QString &, quint8)), + this , SLOT( onExportStat (quint32, const QString &, quint8))); // transmission fail connect(&_ApplicationController, SIGNAL(didFailedTransmit(Sequence)), @@ -331,34 +333,40 @@ emit didExport(); } +void GuiController::onExportStat(quint32 vIndex, const QString &vFileName, quint8 vPercent) +{ + //DEBUG: qDebug() << "2" << vIndex << vFileName << vPercent; + emit didExportStat(vIndex, vFileName, vPercent); +} + /*! * \brief GuiController::doExportLog * \details emits didExportLog signal to notify other classes (ApplicationController) * , the User requested to export the log. */ -void GuiController::doExportLog() +void GuiController::doExportLog(const GuiStringIndexMap &vExportList) { - emit didExportLog(); + emit didExportLog(vExportList); } /*! * \brief GuiController::doExportService * \details emits didExportService signal to notify other classes (ApplicationController) * , the User requested to export the log. */ -void GuiController::doExportService() +void GuiController::doExportService(const GuiStringIndexMap &vExportList) { - emit didExportService(); + emit didExportService(vExportList); } /*! * \brief GuiController::doExportTreatment * \details emits didExportTreatment signal to notify other classes (ApplicationController) * , the User requested to export the log. */ -void GuiController::doExportTreatment() +void GuiController::doExportTreatment(const GuiStringIndexMap &vExportList) { - emit didExportTreatment(); + emit didExportTreatment(vExportList); } /*!