Hyprland/src/managers/input/TextInput.hpp

61 lines
1.6 KiB
C++
Raw Normal View History

#pragma once
#include "../../helpers/WLListener.hpp"
#include "../../macros.hpp"
#include "../../helpers/Box.hpp"
2024-04-25 23:27:25 +01:00
#include "../../helpers/signal/Listener.hpp"
#include <memory>
struct wlr_surface;
struct wl_client;
struct STextInputV1;
2024-04-25 23:27:25 +01:00
class CTextInputV3;
2024-05-01 16:41:17 +01:00
class CInputMethodV2;
class CTextInput {
public:
2024-04-25 23:27:25 +01:00
CTextInput(std::weak_ptr<CTextInputV3> ti);
CTextInput(STextInputV1* ti);
~CTextInput();
bool isV3();
void enter(wlr_surface* pSurface);
void leave();
void tiV1Destroyed();
wl_client* client();
2024-05-01 16:41:17 +01:00
void commitStateToIME(SP<CInputMethodV2> ime);
void updateIMEState(SP<CInputMethodV2> ime);
void onEnabled(wlr_surface* surfV1 = nullptr);
void onDisabled();
void onCommit();
bool hasCursorRectangle();
CBox cursorBox();
wlr_surface* focusedSurface();
private:
2024-04-25 23:27:25 +01:00
void setFocusedSurface(wlr_surface* pSurface);
void initCallbacks();
2024-04-25 23:27:25 +01:00
wlr_surface* pFocusedSurface = nullptr;
int enterLocks = 0;
std::weak_ptr<CTextInputV3> pV3Input;
STextInputV1* pV1Input = nullptr;
DYNLISTENER(textInputEnable);
DYNLISTENER(textInputDisable);
DYNLISTENER(textInputCommit);
DYNLISTENER(textInputDestroy);
DYNLISTENER(surfaceUnmapped);
DYNLISTENER(surfaceDestroyed);
2024-04-25 23:27:25 +01:00
struct {
CHyprSignalListener enable;
CHyprSignalListener disable;
CHyprSignalListener commit;
CHyprSignalListener destroy;
} listeners;
};