2022-08-05 13:03:37 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "../../defines.hpp"
|
|
|
|
#include "../../helpers/WLClasses.hpp"
|
|
|
|
|
2022-11-07 23:22:13 +01:00
|
|
|
class CInputManager;
|
|
|
|
|
2022-08-05 13:03:37 +02:00
|
|
|
class CInputMethodRelay {
|
2022-12-16 18:17:31 +01:00
|
|
|
public:
|
2022-08-05 13:03:37 +02:00
|
|
|
CInputMethodRelay();
|
|
|
|
|
2022-12-16 18:17:31 +01:00
|
|
|
void onNewIME(wlr_input_method_v2*);
|
|
|
|
void onNewTextInput(wlr_text_input_v3*);
|
2022-08-05 13:03:37 +02:00
|
|
|
|
|
|
|
wlr_input_method_v2* m_pWLRIME = nullptr;
|
|
|
|
|
2022-12-16 18:17:31 +01:00
|
|
|
void commitIMEState(wlr_text_input_v3*);
|
|
|
|
void removeTextInput(wlr_text_input_v3*);
|
2022-08-05 13:03:37 +02:00
|
|
|
|
2022-12-16 18:17:31 +01:00
|
|
|
void onKeyboardFocus(wlr_surface*);
|
2022-08-05 13:03:37 +02:00
|
|
|
|
2022-12-16 18:17:31 +01:00
|
|
|
STextInput* getFocusedTextInput();
|
|
|
|
STextInput* getFocusableTextInput();
|
2022-08-05 13:03:37 +02:00
|
|
|
|
2022-12-16 18:17:31 +01:00
|
|
|
void setPendingSurface(STextInput*, wlr_surface*);
|
2022-08-05 13:19:16 +02:00
|
|
|
|
2022-12-16 18:17:31 +01:00
|
|
|
SIMEKbGrab* getIMEKeyboardGrab(SKeyboard*);
|
2022-08-05 16:21:08 +02:00
|
|
|
|
2022-12-16 18:17:31 +01:00
|
|
|
void setIMEPopupFocus(SIMEPopup*, wlr_surface*);
|
|
|
|
void updateInputPopup(SIMEPopup*);
|
|
|
|
void damagePopup(SIMEPopup*);
|
|
|
|
void removePopup(SIMEPopup*);
|
2022-08-05 13:03:37 +02:00
|
|
|
|
2022-12-16 18:17:31 +01:00
|
|
|
private:
|
2022-08-05 16:21:08 +02:00
|
|
|
std::unique_ptr<SIMEKbGrab> m_pKeyboardGrab;
|
|
|
|
|
2022-12-16 18:17:31 +01:00
|
|
|
std::list<STextInput> m_lTextInputs;
|
|
|
|
std::list<SIMEPopup> m_lIMEPopups;
|
2022-08-05 13:03:37 +02:00
|
|
|
|
|
|
|
DYNLISTENER(textInputNew);
|
|
|
|
DYNLISTENER(IMECommit);
|
|
|
|
DYNLISTENER(IMEDestroy);
|
2022-08-05 16:21:08 +02:00
|
|
|
DYNLISTENER(IMEGrab);
|
2022-08-05 17:07:01 +02:00
|
|
|
DYNLISTENER(IMENewPopup);
|
2022-08-05 13:03:37 +02:00
|
|
|
|
2022-12-16 18:17:31 +01:00
|
|
|
void createNewTextInput(wlr_text_input_v3*);
|
2022-08-05 17:07:01 +02:00
|
|
|
|
|
|
|
friend class CHyprRenderer;
|
2022-11-07 23:22:13 +01:00
|
|
|
friend class CInputManager;
|
2022-08-05 13:03:37 +02:00
|
|
|
};
|