aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/managers/input/TextInput.hpp
blob: 481d60c1f8aad61b01fa4168ef6458fce3bc4c0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#pragma once

#include "../../helpers/WLListener.hpp"
#include "../../macros.hpp"
#include "../../helpers/Box.hpp"
#include "../../helpers/signal/Listener.hpp"
#include <memory>

struct wlr_surface;
struct wl_client;

struct STextInputV1;
class CTextInputV3;
class CInputMethodV2;

class CTextInput {
  public:
    CTextInput(std::weak_ptr<CTextInputV3> ti);
    CTextInput(STextInputV1* ti);
    ~CTextInput();

    bool         isV3();
    void         enter(wlr_surface* pSurface);
    void         leave();
    void         tiV1Destroyed();
    wl_client*   client();
    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:
    void                        setFocusedSurface(wlr_surface* pSurface);
    void                        initCallbacks();

    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);

    struct {
        CHyprSignalListener enable;
        CHyprSignalListener disable;
        CHyprSignalListener commit;
        CHyprSignalListener destroy;
    } listeners;
};