qt: Add UI to configure touchscreen parameters

This allows adjusting the finger, diameter, and angle of the emulated touchscreen. It also provides a warning to the user about what changing these parameters can do.
This commit is contained in:
Zach Hilman
2018-11-01 22:10:51 -04:00
parent 2e1dd9c649
commit afe8df5020
4 changed files with 281 additions and 0 deletions

View File

@ -0,0 +1,31 @@
// Copyright 2016 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
#include <memory>
#include <QDialog>
#include <QWidget>
#include "yuzu/configuration/config.h"
namespace Ui {
class ConfigureTouchscreenAdvanced;
}
class ConfigureTouchscreenAdvanced : public QDialog {
Q_OBJECT
public:
explicit ConfigureTouchscreenAdvanced(QWidget* parent);
void applyConfiguration();
private:
/// Load configuration settings.
void loadConfiguration();
/// Restore all buttons to their default values.
void restoreDefaults();
std::unique_ptr<Ui::ConfigureTouchscreenAdvanced> ui;
};