mirror of
https://github.com/moonlight-stream/moonlight-qt.git
synced 2025-07-01 07:15:27 +00:00
47 lines
937 B
C++
47 lines
937 B
C++
#pragma once
|
|
|
|
#include <QTimer>
|
|
#include <QEvent>
|
|
|
|
#include "SDL_compat.h"
|
|
|
|
#include "settings/streamingpreferences.h"
|
|
|
|
class SdlGamepadKeyNavigation : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
SdlGamepadKeyNavigation(StreamingPreferences* prefs);
|
|
|
|
~SdlGamepadKeyNavigation();
|
|
|
|
Q_INVOKABLE void enable();
|
|
|
|
Q_INVOKABLE void disable();
|
|
|
|
Q_INVOKABLE void notifyWindowFocus(bool hasFocus);
|
|
|
|
Q_INVOKABLE void setUiNavMode(bool settingsMode);
|
|
|
|
Q_INVOKABLE int getConnectedGamepads();
|
|
|
|
private:
|
|
void sendKey(QEvent::Type type, Qt::Key key, Qt::KeyboardModifiers modifiers = Qt::NoModifier);
|
|
|
|
void updateTimerState();
|
|
|
|
private slots:
|
|
void onPollingTimerFired();
|
|
|
|
private:
|
|
StreamingPreferences* m_Prefs;
|
|
QTimer* m_PollingTimer;
|
|
QList<SDL_GameController*> m_Gamepads;
|
|
bool m_Enabled;
|
|
bool m_UiNavMode;
|
|
bool m_FirstPoll;
|
|
bool m_HasFocus;
|
|
Uint32 m_LastAxisNavigationEventTime;
|
|
};
|