LeviLamina
Loading...
Searching...
No Matches
TouchControl.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
9class RectangleArea;
11// clang-format on
12
13class TouchControl {
14public:
15 // member variables
16 // NOLINTBEGIN
17 ::ll::TypedStorage<8, 64, ::std::function<::RectangleArea()>> mArea;
18 ::ll::TypedStorage<4, 4, int> mScreenWidth;
19 ::ll::TypedStorage<4, 4, int> mScreenHeight;
20 ::ll::TypedStorage<8, 32, ::std::string> mCurrentLabel;
21 // NOLINTEND
22
23public:
24 // virtual functions
25 // NOLINTBEGIN
26 virtual ~TouchControl();
27
28 virtual uint getHoldButtonId() const;
29
30 virtual int getActivePointerId() const;
31
32 virtual bool releaseOnClear() const;
33
34 virtual void render(::InputRenderContext& context) const;
35
36 virtual void tick(::InputEventQueue& eventQueue, ::TouchPointResults& touchPointResults, int yAxisInversionFactor);
37
38 virtual void release(::InputEventQueue& eventQueue);
39 // NOLINTEND
40
41public:
42 // destructor thunk
43 // NOLINTBEGIN
44 MCAPI void $dtor();
45 // NOLINTEND
46
47public:
48 // virtual function thunks
49 // NOLINTBEGIN
50 MCFOLD uint $getHoldButtonId() const;
51
52 MCFOLD int $getActivePointerId() const;
53
54 MCFOLD bool $releaseOnClear() const;
55
56 MCFOLD void $render(::InputRenderContext& context) const;
57
58 MCFOLD void $tick(::InputEventQueue& eventQueue, ::TouchPointResults& touchPointResults, int yAxisInversionFactor);
59
60 MCFOLD void $release(::InputEventQueue& eventQueue);
61 // NOLINTEND
62
63public:
64 // vftables
65 // NOLINTBEGIN
66 MCNAPI static void** $vftable();
67 // NOLINTEND
68};
Definition InputEventQueue.h:5
Definition InputRenderContext.h:5
Definition RectangleArea.h:5
Definition TouchControl.h:5
static MCAPI void ** $vftable()
Definition TouchPointResults.h:5