2017-05-23 16:08:53 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
#include <QKeyEvent>
|
2018-01-10 16:24:21 +00:00
|
|
|
#include <chrono>
|
|
|
|
#include <thread>
|
2017-05-23 16:08:53 +01:00
|
|
|
#include "ui_unix/PH_HidUnix.h"
|
|
|
|
|
2018-05-23 03:11:24 +03:00
|
|
|
#ifdef HAS_LIBEVDEV
|
2017-06-13 04:51:38 +01:00
|
|
|
#include "GamePad/GamePadInputEventListener.h"
|
|
|
|
#include "GamePad/GamePadDeviceListener.h"
|
2018-10-23 01:40:35 +01:00
|
|
|
#elif defined(__APPLE__)
|
|
|
|
#include "GamePad/GamePadDeviceListener_OSX.h"
|
2018-05-23 03:11:24 +03:00
|
|
|
#endif
|
2017-06-13 04:51:38 +01:00
|
|
|
|
2018-04-30 21:01:23 +01:00
|
|
|
namespace Ui
|
|
|
|
{
|
2018-01-10 16:24:21 +00:00
|
|
|
class InputEventSelectionDialog;
|
2017-05-23 16:08:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
class InputEventSelectionDialog : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2018-07-31 19:00:26 -04:00
|
|
|
explicit InputEventSelectionDialog(QWidget* parent = nullptr);
|
2017-05-23 16:08:53 +01:00
|
|
|
~InputEventSelectionDialog();
|
|
|
|
|
2018-07-31 19:00:16 -04:00
|
|
|
void Setup(const char* text, CInputBindingManager* inputManager, PS2::CControllerInfo::BUTTON button);
|
2018-10-23 01:40:35 +01:00
|
|
|
#if defined(HAS_LIBEVDEV) || defined(__APPLE__)
|
2018-10-23 01:41:02 +01:00
|
|
|
void SetupInputDeviceManager(CGamePadDeviceListener* GPDL);
|
2018-05-23 03:11:24 +03:00
|
|
|
#endif
|
2017-05-23 16:08:53 +01:00
|
|
|
|
|
|
|
protected:
|
2018-04-30 21:01:23 +01:00
|
|
|
void keyPressEvent(QKeyEvent*) Q_DECL_OVERRIDE;
|
|
|
|
void keyReleaseEvent(QKeyEvent*) Q_DECL_OVERRIDE;
|
2017-05-23 16:08:53 +01:00
|
|
|
|
|
|
|
private:
|
2018-01-10 16:24:21 +00:00
|
|
|
struct BINDINGINFOEXTENDED : CInputBindingManager::BINDINGINFO
|
|
|
|
{
|
|
|
|
int value;
|
|
|
|
CInputBindingManager::BINDINGTYPE bindtype;
|
|
|
|
};
|
2018-04-30 21:01:23 +01:00
|
|
|
void CountDownThreadLoop();
|
|
|
|
bool setCounter(int);
|
|
|
|
int click_count = 0;
|
|
|
|
QString m_bindingtext = QString("Select new binding for\n%1");
|
|
|
|
QString m_countingtext = QString("Press & Hold Button for %1 Seconds to assign key");
|
|
|
|
PS2::CControllerInfo::BUTTON m_button;
|
|
|
|
BINDINGINFOEXTENDED m_key1;
|
|
|
|
CInputBindingManager::BINDINGINFO m_key2;
|
|
|
|
CInputBindingManager* m_inputManager;
|
|
|
|
Ui::InputEventSelectionDialog* ui;
|
2018-01-10 16:24:21 +00:00
|
|
|
std::chrono::time_point<std::chrono::system_clock> m_countStart = std::chrono::system_clock::now();
|
2018-04-30 21:01:23 +01:00
|
|
|
std::thread m_thread;
|
|
|
|
std::atomic<bool> m_running;
|
|
|
|
std::atomic<bool> m_isCounting;
|
2018-01-10 16:24:21 +00:00
|
|
|
|
2018-01-10 15:45:33 +00:00
|
|
|
Q_SIGNALS:
|
2018-04-30 21:01:23 +01:00
|
|
|
void setSelectedButtonLabelText(QString);
|
|
|
|
void setCountDownLabelText(QString);
|
2017-05-23 16:08:53 +01:00
|
|
|
};
|