From cd28c669806a62ddda79c1bc9a2d28468dfc6ffa Mon Sep 17 00:00:00 2001 From: =?utf8?q?Michal=20Mal=C3=BD?= Date: Fri, 1 Aug 2014 21:26:00 +0200 Subject: [PATCH] - Store last patch in ExportRawDataDialog - Fix some warnings --- Anyanka.pro | 5 +++++ datafilesloader.cpp | 1 - datamanager.cpp | 23 ++++++++++++++--------- datamanager.h | 1 + gui/exportrawdatadialog.cpp | 13 ++++++++++++- gui/exportrawdatadialog.h | 2 ++ gui/failedfilesdialog.cpp | 22 ++++++++++++++++++++++ gui/failedfilesdialog.h | 22 ++++++++++++++++++++++ signal.cpp | 5 ----- signalcontroller.cpp | 4 +++- signaldrawer.cpp | 34 ++++++++++++++++------------------ singlerundata.cpp | 2 +- 12 files changed, 98 insertions(+), 36 deletions(-) diff --git a/Anyanka.pro b/Anyanka.pro index 3c9ee5d..07ede8e 100644 --- a/Anyanka.pro +++ b/Anyanka.pro @@ -102,3 +102,8 @@ RESOURCES += \ imgresources.qrc DEFINES += _HPCS_LITTLE_ENDIAN + +CONFIG(release) +{ + DEFINES += NDEBUG +} diff --git a/datafilesloader.cpp b/datafilesloader.cpp index f116e16..0ae0181 100644 --- a/datafilesloader.cpp +++ b/datafilesloader.cpp @@ -46,7 +46,6 @@ DataFilesLoader::ReturnCode DataFilesLoader::loadSingleRun(const QDir& path, std } QString absPath = path.absoluteFilePath(s); - qDebug() << absPath << absPath.toStdString().c_str(); HPCS_RetCode iret = hpcs_read_file(absPath.toStdString().c_str(), mdata); if (iret == HPCS_OK) diff --git a/datamanager.cpp b/datamanager.cpp index aa95588..b364b22 100644 --- a/datamanager.cpp +++ b/datamanager.cpp @@ -44,6 +44,7 @@ const QString DataManager::S_RES_IMGEXPORT("Error while exporting graph to image DataManager::DataManager(QObject* parent) : QObject(parent), m_sequenceRejected(false), + m_exportRawDataDialog(DataFileExporter::supportedFormats()), m_graphToImageExportDialog(ImageDrawer::supportedImageFormats()) { m_sequences.push_back(std::make_pair>("Single runs", std::shared_ptr(new Sequence()))); @@ -191,30 +192,31 @@ Signal::Equipment DataManager::equipmentFromFiletype(HPCS_FileType filetype) void DataManager::processDataExport(GeneratorFunc genfunc) { + QMetaObject::Connection c1, c2; DataFileExporter exporter(this); - ExportRawDataDialog dlg(DataFileExporter::supportedFormats()); DataFileExporter::WriteList writeList; std::shared_ptr sr = m_activeSequence->selectedRun(); int ret = 1; - connect(&dlg, SIGNAL(fileNameChanged(QString)), &exporter, SLOT(guessFormatFromSuffix(QString))); - connect(&exporter, SIGNAL(formatChanged(int)), &dlg, SLOT(onFormatChanged(int))); + m_exportRawDataDialog.removeAllSignals(); + c1 = connect(&m_exportRawDataDialog, SIGNAL(fileNameChanged(QString)), &exporter, SLOT(guessFormatFromSuffix(QString))); + c2 = connect(&exporter, SIGNAL(formatChanged(int)), &m_exportRawDataDialog, SLOT(onFormatChanged(int))); for (const std::string& s : sr->allKeys()) - dlg.addAvailableSignal(QString::fromStdString(s)); + m_exportRawDataDialog.addAvailableSignal(QString::fromStdString(s)); do { - int dret = dlg.exec(); + int dret = m_exportRawDataDialog.exec(); if (dret == QDialog::Rejected) ret = 0; - else if (dret == QDialog::Accepted && !dlg.isSignalSelected()) { + else if (dret == QDialog::Accepted && !m_exportRawDataDialog.isSignalSelected()) { QMessageBox::information(nullptr, S_RES_DATAEXPORT, "No signals selected"); - } else if (dret == QDialog::Accepted && dlg.isSignalSelected()) { - std::vector selKeys = dlg.selectedSignalKeys(); + } else if (dret == QDialog::Accepted && m_exportRawDataDialog.isSignalSelected()) { + std::vector selKeys = m_exportRawDataDialog.selectedSignalKeys(); DataFileExporter::ReturnCode exRet; /* Generate data to export */ genfunc(writeList, sr, selKeys); - exRet = exporter.exportData(writeList, dlg.destination(), dlg.format()); + exRet = exporter.exportData(writeList, m_exportRawDataDialog.destination(), m_exportRawDataDialog.format()); switch (exRet) { case DataFileExporter::ReturnCode::SUCCESS: ret = 0; @@ -236,6 +238,9 @@ void DataManager::processDataExport(GeneratorFunc genfunc) } } } while (ret == 1); + + disconnect(c1); + disconnect(c2); } Signal::Resource DataManager::resourceFromFiletype(HPCS_FileType filetype) diff --git a/datamanager.h b/datamanager.h index 250acea..847960f 100644 --- a/datamanager.h +++ b/datamanager.h @@ -74,6 +74,7 @@ private: std::vector m_sequences; DataFilesLoader m_dfl; + ExportRawDataDialog m_exportRawDataDialog; ExportGraphToImageDialog m_graphToImageExportDialog; static const QString ME_SENDER_STR; diff --git a/gui/exportrawdatadialog.cpp b/gui/exportrawdatadialog.cpp index bb7230a..1396720 100644 --- a/gui/exportrawdatadialog.cpp +++ b/gui/exportrawdatadialog.cpp @@ -27,6 +27,7 @@ ExportRawDataDialog::ExportRawDataDialog(const QStringList& supportedFormats, QWidget* parent) : QDialog(parent), + m_lastPath(""), m_supportedFormats(supportedFormats), ui(new Ui::ExportRawDataDialog) { @@ -46,7 +47,7 @@ void ExportRawDataDialog::addAvailableSignal(const QString& name) { QCheckBox* cbox = new QCheckBox(name, this); m_signalCheckboxes.push_back(cbox); - ui->form_availSigs->addWidget(cbox); + ui->form_availSigs->addRow(cbox); } QString ExportRawDataDialog::destination() const @@ -67,6 +68,16 @@ bool ExportRawDataDialog::isSignalSelected() const return false; } +void ExportRawDataDialog::removeAllSignals() +{ + QLayoutItem* item; + while ((item = ui->form_availSigs->takeAt(0)) != nullptr) { + delete item->widget(); + delete item; + } + m_signalCheckboxes.clear(); +} + std::vector ExportRawDataDialog::selectedSignalKeys() const { std::vector kl; diff --git a/gui/exportrawdatadialog.h b/gui/exportrawdatadialog.h index b232c41..c3115e3 100644 --- a/gui/exportrawdatadialog.h +++ b/gui/exportrawdatadialog.h @@ -43,10 +43,12 @@ public: QString destination() const; int format() const; bool isSignalSelected() const; + void removeAllSignals(); std::vector selectedSignalKeys() const; int signalsCount() const { return m_signalCheckboxes.size(); } private: + QString m_lastPath; std::vector m_signalCheckboxes; QStringList m_supportedFormats; Ui::ExportRawDataDialog* ui; diff --git a/gui/failedfilesdialog.cpp b/gui/failedfilesdialog.cpp index 9b01f28..863dced 100644 --- a/gui/failedfilesdialog.cpp +++ b/gui/failedfilesdialog.cpp @@ -1,3 +1,25 @@ +/* + Copyright (c) 2013 Michal Malý + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +*/ + #include "failedfilesdialog.h" #include "ui_failedfilesdialog.h" #include diff --git a/gui/failedfilesdialog.h b/gui/failedfilesdialog.h index 0e89848..749eac9 100644 --- a/gui/failedfilesdialog.h +++ b/gui/failedfilesdialog.h @@ -1,3 +1,25 @@ +/* + Copyright (c) 2013 Michal Malý + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. +*/ + #ifndef FAILEDFILESDIALOG_H #define FAILEDFILESDIALOG_H diff --git a/signal.cpp b/signal.cpp index 61afd20..8fee612 100644 --- a/signal.cpp +++ b/signal.cpp @@ -114,11 +114,6 @@ double Signal::timeAt(const size_t idx) const return m_values.at(idx).first; } -/*QString Signal::uidString() const -{ - return resourceToString() + QString::number(m_wavelengthAbs) + QString::number(m_wavelengthRef); -}*/ - double Signal::valueAt(const size_t idx) const { if (idx >= m_values.size()) diff --git a/signalcontroller.cpp b/signalcontroller.cpp index c2a1942..f93c0e2 100644 --- a/signalcontroller.cpp +++ b/signalcontroller.cpp @@ -224,7 +224,7 @@ PeakDrawData SignalController::integratePeak(const double fromX, const double fr Integrator::ReturnCode ret; std::shared_ptr peak; - qDebug() << __QFUNC__ << fromX << fromY << toX << toY; + //qDebug() << __QFUNC__ << fromX << fromY << toX << toY; fromIdx = relToIdx(fromX); toIdx = relToIdx(toX); @@ -292,6 +292,8 @@ PeakDrawData SignalController::genPeakDrawData(const std::shared_ptrfromY(); toY = peak->toY(); break; + default: + return PeakDrawData(); } //qDebug() << __QFUNC__ << beforeFromY << fromY diff --git a/signaldrawer.cpp b/signaldrawer.cpp index 2486309..12be107 100644 --- a/signaldrawer.cpp +++ b/signaldrawer.cpp @@ -221,18 +221,20 @@ bool SignalDrawer::drawScale(const SignalController::Axis axis, QPixmap* const t p.begin(target); switch (axis) { - case SignalController::Axis::TIME: - relMin = m_relXMin; relMax = m_relXMax; - tickDrawFunc = std::bind(&SignalDrawer::renderTimeScaleTick, this, &p, std::placeholders::_1, std::placeholders::_2); - textDrawFunc = std::bind(&SignalDrawer::renderTimeScaleText, this, &p, std::placeholders::_1, std::placeholders::_2); - p.drawLine(SCALE_MARGIN_VALUE, m_gHeight + 1, m_gWidth + SCALE_MARGIN_VALUE, m_gHeight + 1); - break; - case SignalController::Axis::VALUE: - relMin = m_relYMin; relMax = m_relYMax; - tickDrawFunc = std::bind(&SignalDrawer::renderValueScaleTick, this, &p, std::placeholders::_1, std::placeholders::_2); - textDrawFunc = std::bind(&SignalDrawer::renderValueScaleText, this, &p, std::placeholders::_1, std::placeholders::_2); - p.drawLine(SCALE_MARGIN_VALUE - 1, 0, SCALE_MARGIN_VALUE - 1, m_gHeight); - break; + case SignalController::Axis::TIME: + relMin = m_relXMin; relMax = m_relXMax; + tickDrawFunc = std::bind(&SignalDrawer::renderTimeScaleTick, this, &p, std::placeholders::_1, std::placeholders::_2); + textDrawFunc = std::bind(&SignalDrawer::renderTimeScaleText, this, &p, std::placeholders::_1, std::placeholders::_2); + p.drawLine(SCALE_MARGIN_VALUE, m_gHeight + 1, m_gWidth + SCALE_MARGIN_VALUE, m_gHeight + 1); + break; + case SignalController::Axis::VALUE: + relMin = m_relYMin; relMax = m_relYMax; + tickDrawFunc = std::bind(&SignalDrawer::renderValueScaleTick, this, &p, std::placeholders::_1, std::placeholders::_2); + textDrawFunc = std::bind(&SignalDrawer::renderValueScaleText, this, &p, std::placeholders::_1, std::placeholders::_2); + p.drawLine(SCALE_MARGIN_VALUE - 1, 0, SCALE_MARGIN_VALUE - 1, m_gHeight); + break; + default: + return false; } RulerDrawData rd = m_controller->getRulerDrawData(relMin, relMax, axis); @@ -485,12 +487,12 @@ QRegion SignalDrawer::renderPeak(const PeakDrawData& pd, QPixmap* const target) p.end(); if (peakReg.intersects(m_xAxisLabelRect)) { - qDebug() << "x inters"; + //qDebug() << "x inters"; drawAxisLabel(SignalController::Axis::TIME, target); peakReg += m_xAxisLabelRect; } if (peakReg.intersects(m_yAxisLabelRect)) { - qDebug() << "y inters"; + //qDebug() << "y inters"; drawAxisLabel(SignalController::Axis::VALUE, target); peakReg += m_yAxisLabelRect; } @@ -503,7 +505,6 @@ QRegion SignalDrawer::renderPeak(const PeakDrawData& pd, QPixmap* const target) double SignalDrawer::linesIntersection(const double k1, const double q1, const double k2, const double q2) { double ret = (q1 - q2) / (k2 - k1); - qDebug() << __QFUNC__ << ret; return ret; } @@ -511,14 +512,12 @@ double SignalDrawer::linesIntersection(const double k1, const double q1, const d int SignalDrawer::relToXPix(const double rel) { const double ret = m_gWidth / (m_relXMax - m_relXMin) * (rel - m_relXMin) + SCALE_MARGIN_VALUE; - //qDebug() << __QFUNC__ << ret; return ret; } int SignalDrawer::relToYPix(const double rel) { const double ret = m_gHeight - (m_gHeight / (m_relYMax - m_relYMin) * (rel - m_relYMin)); - //qDebug() << __QFUNC__ << ret; return ret; } @@ -528,7 +527,6 @@ double SignalDrawer::xPixToRel(const int pix) if (pix < SCALE_MARGIN_VALUE) return m_relXMin; ret = ((pix - SCALE_MARGIN_VALUE) * (m_relXMax - m_relXMin) / m_gWidth) + m_relXMin; - //qDebug() << __QFUNC__ << ret; return ret; } diff --git a/singlerundata.cpp b/singlerundata.cpp index 6cee819..6b6887e 100644 --- a/singlerundata.cpp +++ b/singlerundata.cpp @@ -144,7 +144,7 @@ bool SingleRunData::saveUserDataToJSON() } f.write(bytes.data(), bytes.size()); - qDebug() << val; + //qDebug() << val; f.close(); cit->second->userDataSaved(); ++cit; -- 2.43.5