mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-02 05:17:52 +00:00
Merge pull request #7831 from lioncash/motion
configure_motion_touch: Use functor versions of invokeMethod
This commit is contained in:
commit
a28a10bc54
1 changed files with 20 additions and 18 deletions
|
@ -42,6 +42,7 @@ CalibrationConfigurationDialog::CalibrationConfigurationDialog(QWidget* parent,
|
||||||
job = std::make_unique<CalibrationConfigurationJob>(
|
job = std::make_unique<CalibrationConfigurationJob>(
|
||||||
host, port,
|
host, port,
|
||||||
[this](CalibrationConfigurationJob::Status status) {
|
[this](CalibrationConfigurationJob::Status status) {
|
||||||
|
QMetaObject::invokeMethod(this, [status, this] {
|
||||||
QString text;
|
QString text;
|
||||||
switch (status) {
|
switch (status) {
|
||||||
case CalibrationConfigurationJob::Status::Ready:
|
case CalibrationConfigurationJob::Status::Ready:
|
||||||
|
@ -56,9 +57,10 @@ CalibrationConfigurationDialog::CalibrationConfigurationDialog(QWidget* parent,
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
QMetaObject::invokeMethod(this, "UpdateLabelText", Q_ARG(QString, text));
|
UpdateLabelText(text);
|
||||||
|
});
|
||||||
if (status == CalibrationConfigurationJob::Status::Completed) {
|
if (status == CalibrationConfigurationJob::Status::Completed) {
|
||||||
QMetaObject::invokeMethod(this, "UpdateButtonText", Q_ARG(QString, tr("OK")));
|
QMetaObject::invokeMethod(this, [this] { UpdateButtonText(tr("OK")); });
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
[this](u16 min_x_, u16 min_y_, u16 max_x_, u16 max_y_) {
|
[this](u16 min_x_, u16 min_y_, u16 max_x_, u16 max_y_) {
|
||||||
|
@ -215,11 +217,11 @@ void ConfigureMotionTouch::OnCemuhookUDPTest() {
|
||||||
ui->udp_server->text().toStdString(), static_cast<u16>(ui->udp_port->text().toInt()),
|
ui->udp_server->text().toStdString(), static_cast<u16>(ui->udp_port->text().toInt()),
|
||||||
[this] {
|
[this] {
|
||||||
LOG_INFO(Frontend, "UDP input test success");
|
LOG_INFO(Frontend, "UDP input test success");
|
||||||
QMetaObject::invokeMethod(this, "ShowUDPTestResult", Q_ARG(bool, true));
|
QMetaObject::invokeMethod(this, [this] { ShowUDPTestResult(true); });
|
||||||
},
|
},
|
||||||
[this] {
|
[this] {
|
||||||
LOG_ERROR(Frontend, "UDP input test failed");
|
LOG_ERROR(Frontend, "UDP input test failed");
|
||||||
QMetaObject::invokeMethod(this, "ShowUDPTestResult", Q_ARG(bool, false));
|
QMetaObject::invokeMethod(this, [this] { ShowUDPTestResult(false); });
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue