mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-06 02:45:59 +01:00
98a4fa2b0d
* clang-format stuff and format files
50 lines
No EOL
1.4 KiB
C++
50 lines
No EOL
1.4 KiB
C++
#pragma once
|
|
|
|
#include "../../defines.hpp"
|
|
#include "../../helpers/WLClasses.hpp"
|
|
|
|
class CInputManager;
|
|
|
|
class CInputMethodRelay {
|
|
public:
|
|
CInputMethodRelay();
|
|
|
|
void onNewIME(wlr_input_method_v2*);
|
|
void onNewTextInput(wlr_text_input_v3*);
|
|
|
|
wlr_input_method_v2* m_pWLRIME = nullptr;
|
|
|
|
void commitIMEState(wlr_text_input_v3*);
|
|
void removeTextInput(wlr_text_input_v3*);
|
|
|
|
void onKeyboardFocus(wlr_surface*);
|
|
|
|
STextInput* getFocusedTextInput();
|
|
STextInput* getFocusableTextInput();
|
|
|
|
void setPendingSurface(STextInput*, wlr_surface*);
|
|
|
|
SIMEKbGrab* getIMEKeyboardGrab(SKeyboard*);
|
|
|
|
void setIMEPopupFocus(SIMEPopup*, wlr_surface*);
|
|
void updateInputPopup(SIMEPopup*);
|
|
void damagePopup(SIMEPopup*);
|
|
void removePopup(SIMEPopup*);
|
|
|
|
private:
|
|
std::unique_ptr<SIMEKbGrab> m_pKeyboardGrab;
|
|
|
|
std::list<STextInput> m_lTextInputs;
|
|
std::list<SIMEPopup> m_lIMEPopups;
|
|
|
|
DYNLISTENER(textInputNew);
|
|
DYNLISTENER(IMECommit);
|
|
DYNLISTENER(IMEDestroy);
|
|
DYNLISTENER(IMEGrab);
|
|
DYNLISTENER(IMENewPopup);
|
|
|
|
void createNewTextInput(wlr_text_input_v3*);
|
|
|
|
friend class CHyprRenderer;
|
|
friend class CInputManager;
|
|
}; |