LeviLamina
Loading...
Searching...
No Matches
GestureComponent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/gui/controls/ComponentReceiveActionType.h"
7#include "mc/client/gui/controls/UIComponent.h"
8
9// auto generated forward declare list
10// clang-format off
13class UIControl;
14class VisualTree;
15struct ScreenEvent;
16// clang-format on
17
18class GestureComponent : public ::UIComponent {
19public:
20 // member variables
21 // NOLINTBEGIN
22 ::ll::TypedStorage<1, 1, bool> mButtonDown;
23 ::ll::TypedStorage<4, 4, uint> mTrackpadButtonId;
24 // NOLINTEND
25
26public:
27 // virtual functions
28 // NOLINTBEGIN
29 virtual ::std::unique_ptr<::UIComponent> clone(::UIControl& cloneOwner) const /*override*/;
30
31 virtual void reset() /*override*/;
32
33 virtual ::ComponentReceiveActionType receive(
34 ::VisualTree& visualTree,
35 ::ScreenInputContext& context,
36 ::UIAnimationController& animationController,
37 ::ScreenEvent const& screenEvent
38 ) /*override*/;
39
40 virtual ~GestureComponent() /*override*/ = default;
41 // NOLINTEND
42
43public:
44 // virtual function thunks
45 // NOLINTBEGIN
46 MCAPI ::std::unique_ptr<::UIComponent> $clone(::UIControl& cloneOwner) const;
47
48 MCFOLD void $reset();
49
50 MCAPI ::ComponentReceiveActionType $receive(
51 ::VisualTree& visualTree,
52 ::ScreenInputContext& context,
53 ::UIAnimationController& animationController,
54 ::ScreenEvent const& screenEvent
55 );
56 // NOLINTEND
57
58public:
59 // vftables
60 // NOLINTBEGIN
61 MCNAPI static void** $vftable();
62 // NOLINTEND
63};
Definition GestureComponent.h:5
static MCAPI void ** $vftable()
Definition ScreenInputContext.h:5
Definition UIAnimationController.h:5
Definition UIComponent.h:5
Definition UIControl.h:5
Definition VisualTree.h:5
Definition ScreenEvent.h:5