2020-07-14 17:01:36 +00:00
|
|
|
// Copyright 2018 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
#include <QDialog>
|
|
|
|
#include "common/param_package.h"
|
|
|
|
|
|
|
|
class QLabel;
|
|
|
|
class QPushButton;
|
2020-11-18 04:16:29 +00:00
|
|
|
class QStringListModel;
|
2020-08-29 18:56:51 +00:00
|
|
|
class QVBoxLayout;
|
2020-07-14 17:01:36 +00:00
|
|
|
|
2020-08-29 22:07:38 +00:00
|
|
|
namespace InputCommon {
|
|
|
|
class InputSubsystem;
|
2020-07-14 17:01:36 +00:00
|
|
|
}
|
|
|
|
|
2020-08-29 18:56:51 +00:00
|
|
|
namespace InputCommon::CemuhookUDP {
|
|
|
|
class CalibrationConfigurationJob;
|
|
|
|
}
|
|
|
|
|
2020-08-29 22:07:38 +00:00
|
|
|
namespace Ui {
|
|
|
|
class ConfigureMotionTouch;
|
|
|
|
}
|
|
|
|
|
2020-07-14 17:01:36 +00:00
|
|
|
/// A dialog for touchpad calibration configuration.
|
|
|
|
class CalibrationConfigurationDialog : public QDialog {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2021-03-30 17:42:05 +00:00
|
|
|
explicit CalibrationConfigurationDialog(QWidget* parent, const std::string& host, u16 port);
|
2020-08-29 18:56:51 +00:00
|
|
|
~CalibrationConfigurationDialog() override;
|
2020-07-14 17:01:36 +00:00
|
|
|
|
|
|
|
private:
|
2020-08-29 18:56:51 +00:00
|
|
|
Q_INVOKABLE void UpdateLabelText(const QString& text);
|
|
|
|
Q_INVOKABLE void UpdateButtonText(const QString& text);
|
2020-07-14 17:01:36 +00:00
|
|
|
|
|
|
|
QVBoxLayout* layout;
|
|
|
|
QLabel* status_label;
|
|
|
|
QPushButton* cancel_button;
|
|
|
|
std::unique_ptr<InputCommon::CemuhookUDP::CalibrationConfigurationJob> job;
|
|
|
|
|
|
|
|
// Configuration results
|
|
|
|
bool completed{};
|
2020-08-29 18:56:51 +00:00
|
|
|
u16 min_x{};
|
|
|
|
u16 min_y{};
|
|
|
|
u16 max_x{};
|
|
|
|
u16 max_y{};
|
2020-07-14 17:01:36 +00:00
|
|
|
|
|
|
|
friend class ConfigureMotionTouch;
|
|
|
|
};
|
|
|
|
|
|
|
|
class ConfigureMotionTouch : public QDialog {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2020-08-29 18:56:51 +00:00
|
|
|
explicit ConfigureMotionTouch(QWidget* parent, InputCommon::InputSubsystem* input_subsystem_);
|
2020-07-14 17:01:36 +00:00
|
|
|
~ConfigureMotionTouch() override;
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
void ApplyConfiguration();
|
|
|
|
|
|
|
|
private slots:
|
2020-11-18 04:16:29 +00:00
|
|
|
void OnUDPAddServer();
|
|
|
|
void OnUDPDeleteServer();
|
2020-07-14 17:01:36 +00:00
|
|
|
void OnCemuhookUDPTest();
|
|
|
|
void OnConfigureTouchCalibration();
|
|
|
|
void OnConfigureTouchFromButton();
|
|
|
|
|
|
|
|
private:
|
|
|
|
void closeEvent(QCloseEvent* event) override;
|
|
|
|
Q_INVOKABLE void ShowUDPTestResult(bool result);
|
|
|
|
void SetConfiguration();
|
|
|
|
void UpdateUiDisplay();
|
|
|
|
void ConnectEvents();
|
|
|
|
bool CanCloseDialog();
|
2020-11-18 04:16:29 +00:00
|
|
|
std::string GetUDPServerString() const;
|
2020-07-14 17:01:36 +00:00
|
|
|
|
2020-08-29 19:34:01 +00:00
|
|
|
InputCommon::InputSubsystem* input_subsystem;
|
|
|
|
|
2020-07-14 17:01:36 +00:00
|
|
|
std::unique_ptr<Ui::ConfigureMotionTouch> ui;
|
2020-11-18 04:16:29 +00:00
|
|
|
QStringListModel* udp_server_list_model;
|
2020-07-14 17:01:36 +00:00
|
|
|
|
|
|
|
// Coordinate system of the CemuhookUDP touch provider
|
2020-08-29 18:56:51 +00:00
|
|
|
int min_x{};
|
|
|
|
int min_y{};
|
|
|
|
int max_x{};
|
|
|
|
int max_y{};
|
2020-07-14 17:01:36 +00:00
|
|
|
|
|
|
|
bool udp_test_in_progress{};
|
|
|
|
|
|
|
|
std::vector<Settings::TouchFromButtonMap> touch_from_button_maps;
|
|
|
|
};
|