LeviLamina
Loading...
Searching...
No Matches
KeyboardManager.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class RectangleArea;
8class Vec2;
9// clang-format on
10
11class KeyboardManager {
12public:
13 // virtual functions
14 // NOLINTBEGIN
15 virtual ~KeyboardManager() = default;
16
17 virtual bool tryEnableKeyboard(::std::string const&, int, bool, bool, bool, ::Vec2 const&, float) = 0;
18
19 virtual bool isFullScreenKeyboard() const = 0;
20
21 virtual void disableKeyboard() = 0;
22
23 virtual bool canActivateKeyboard() = 0;
24
25 virtual bool isKeyboardEnabled() const = 0;
26
27 virtual bool isKeyboardActive() const = 0;
28
29 virtual bool wasEnabledWithMultiline() const = 0;
30
31 virtual bool isNumbersOnly() const = 0;
32
33 virtual int getMaxLength() const = 0;
34
35 virtual float getKeyboardHeight() const = 0;
36
37 virtual void setForcedHeight(float) = 0;
38
39 virtual bool tryClaimKeyboardOwnership() = 0;
40
41 virtual void releaseKeyboardOwnership() = 0;
42
43 virtual bool getKeyboardClosedEvent() = 0;
44
45 virtual void clearKeyboardClosedEvent() = 0;
46
47 virtual void updateTextEditBoxPosition(::RectangleArea const&, ::Vec2 const&, ::Vec2 const&) = 0;
48 // NOLINTEND
49
50public:
51 // virtual function thunks
52 // NOLINTBEGIN
53
54 // NOLINTEND
55
56public:
57 // vftables
58 // NOLINTBEGIN
59 MCNAPI static void** $vftable();
60 // NOLINTEND
61};
Definition KeyboardManager.h:5
static MCAPI void ** $vftable()
Definition RectangleArea.h:5
Definition Vec2.h:5