|
|
@ -5,6 +5,7 @@ |
|
|
#include <QButtonGroup>
|
|
|
#include <QButtonGroup>
|
|
|
#include <QMessageBox>
|
|
|
#include <QMessageBox>
|
|
|
#include <QPushButton>
|
|
|
#include <QPushButton>
|
|
|
|
|
|
#include <QtConcurrent/qtconcurrentrun.h>
|
|
|
#include "common/logging/log.h"
|
|
|
#include "common/logging/log.h"
|
|
|
#include "common/telemetry.h"
|
|
|
#include "common/telemetry.h"
|
|
|
#include "core/core.h"
|
|
|
#include "core/core.h"
|
|
|
@ -23,6 +24,8 @@ CompatDB::CompatDB(QWidget* parent) |
|
|
connect(ui->radioButton_IntroMenu, &QRadioButton::clicked, this, &CompatDB::EnableNext); |
|
|
connect(ui->radioButton_IntroMenu, &QRadioButton::clicked, this, &CompatDB::EnableNext); |
|
|
connect(ui->radioButton_WontBoot, &QRadioButton::clicked, this, &CompatDB::EnableNext); |
|
|
connect(ui->radioButton_WontBoot, &QRadioButton::clicked, this, &CompatDB::EnableNext); |
|
|
connect(button(NextButton), &QPushButton::clicked, this, &CompatDB::Submit); |
|
|
connect(button(NextButton), &QPushButton::clicked, this, &CompatDB::Submit); |
|
|
|
|
|
connect(&testcase_watcher, &QFutureWatcher<bool>::finished, this, |
|
|
|
|
|
&CompatDB::OnTestcaseSubmitted); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
CompatDB::~CompatDB() = default; |
|
|
CompatDB::~CompatDB() = default; |
|
|
@ -48,18 +51,38 @@ void CompatDB::Submit() { |
|
|
} |
|
|
} |
|
|
break; |
|
|
break; |
|
|
case CompatDBPage::Final: |
|
|
case CompatDBPage::Final: |
|
|
|
|
|
back(); |
|
|
LOG_DEBUG(Frontend, "Compatibility Rating: {}", compatibility->checkedId()); |
|
|
LOG_DEBUG(Frontend, "Compatibility Rating: {}", compatibility->checkedId()); |
|
|
Core::Telemetry().AddField(Telemetry::FieldType::UserFeedback, "Compatibility", |
|
|
Core::Telemetry().AddField(Telemetry::FieldType::UserFeedback, "Compatibility", |
|
|
compatibility->checkedId()); |
|
|
compatibility->checkedId()); |
|
|
// older versions of QT don't support the "NoCancelButtonOnLastPage" option, this is a
|
|
|
|
|
|
// workaround
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
button(NextButton)->setEnabled(false); |
|
|
|
|
|
button(NextButton)->setText(tr("Submitting")); |
|
|
button(QWizard::CancelButton)->setVisible(false); |
|
|
button(QWizard::CancelButton)->setVisible(false); |
|
|
|
|
|
|
|
|
|
|
|
testcase_watcher.setFuture(QtConcurrent::run( |
|
|
|
|
|
[this]() { return Core::System::GetInstance().TelemetrySession().SubmitTestcase(); })); |
|
|
break; |
|
|
break; |
|
|
default: |
|
|
default: |
|
|
LOG_ERROR(Frontend, "Unexpected page: {}", currentId()); |
|
|
LOG_ERROR(Frontend, "Unexpected page: {}", currentId()); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void CompatDB::OnTestcaseSubmitted() { |
|
|
|
|
|
if (!testcase_watcher.result()) { |
|
|
|
|
|
QMessageBox::critical(this, tr("Communication error"), |
|
|
|
|
|
tr("An error occured while sending the Testcase")); |
|
|
|
|
|
button(NextButton)->setEnabled(true); |
|
|
|
|
|
button(NextButton)->setText(tr("Next")); |
|
|
|
|
|
button(QWizard::CancelButton)->setVisible(true); |
|
|
|
|
|
} else { |
|
|
|
|
|
next(); |
|
|
|
|
|
// older versions of QT don't support the "NoCancelButtonOnLastPage" option, this is a
|
|
|
|
|
|
// workaround
|
|
|
|
|
|
button(QWizard::CancelButton)->setVisible(false); |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
void CompatDB::EnableNext() { |
|
|
void CompatDB::EnableNext() { |
|
|
button(NextButton)->setEnabled(true); |
|
|
button(NextButton)->setEnabled(true); |
|
|
} |
|
|
} |