Hyprland/src/managers/input/TextInput.hpp

56 lines
1.6 KiB
C++
Raw Normal View History

#pragma once
#include "../../helpers/math/Math.hpp"
#include "../../helpers/signal/Signal.hpp"
#include "../../helpers/memory/Memory.hpp"
struct wl_client;
class CTextInputV1;
2024-04-25 23:27:25 +01:00
class CTextInputV3;
2024-05-01 16:41:17 +01:00
class CInputMethodV2;
class CWLSurfaceResource;
class CTextInput {
public:
CTextInput(WP<CTextInputV3> ti);
CTextInput(WP<CTextInputV1> ti);
bool isV3();
void enter(SP<CWLSurfaceResource> pSurface);
void leave();
void tiV1Destroyed();
wl_client* client();
void commitStateToIME(SP<CInputMethodV2> ime);
void updateIMEState(SP<CInputMethodV2> ime);
void onEnabled(SP<CWLSurfaceResource> surfV1 = nullptr);
void onDisabled();
void onCommit();
void onReset();
bool hasCursorRectangle();
CBox cursorBox();
SP<CWLSurfaceResource> focusedSurface();
private:
void setFocusedSurface(SP<CWLSurfaceResource> pSurface);
void initCallbacks();
WP<CWLSurfaceResource> m_focusedSurface;
int m_enterLocks = 0;
WP<CTextInputV3> m_v3Input;
WP<CTextInputV1> m_v1Input;
2024-04-25 23:27:25 +01:00
struct {
CHyprSignalListener enable;
CHyprSignalListener disable;
CHyprSignalListener reset;
2024-04-25 23:27:25 +01:00
CHyprSignalListener commit;
CHyprSignalListener destroy;
CHyprSignalListener surfaceUnmap;
CHyprSignalListener surfaceDestroy;
} m_listeners;
};