LeviLamina
Loading...
Searching...
No Matches
BaseCyclingComponent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/gui/controls/UIComponent.h"
7#include "mc/deps/core/utility/pub_sub/Subscription.h"
8
9// auto generated forward declare list
10// clang-format off
11class UIControl;
12// clang-format on
13
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<8, 8, uint64> mMaxCycleCount;
19 ::ll::TypedStorage<8, 8, uint64> mCurrentCycleIndex;
20 ::ll::TypedStorage<8, 16, ::Bedrock::PubSub::Subscription> mPageIndicatorManagerSub;
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 BaseCyclingComponent();
26
27public:
28 // virtual functions
29 // NOLINTBEGIN
30 virtual ~BaseCyclingComponent() /*override*/;
31
32 virtual ::std::unique_ptr<::UIComponent> clone(::UIControl& cloneOwner) const = 0;
33
34 virtual void reset() /*override*/;
35
36 virtual void _updateSubPage() = 0;
37
38 virtual void _postCreate() = 0;
39 // NOLINTEND
40
41public:
42 // member functions
43 // NOLINTBEGIN
44 MCAPI explicit BaseCyclingComponent(::UIControl& owner);
45
46 MCAPI void _notifyPageIndicatorManagerOfNewSubscriber();
47
48 MCAPI void _notifySubPageChanged(uint64 newPage);
49 // NOLINTEND
50
51public:
52 // constructor thunks
53 // NOLINTBEGIN
54 MCAPI void* $ctor(::UIControl& owner);
55 // NOLINTEND
56
57public:
58 // destructor thunk
59 // NOLINTBEGIN
60 MCAPI void $dtor();
61 // NOLINTEND
62
63public:
64 // virtual function thunks
65 // NOLINTBEGIN
66 MCFOLD void $reset();
67 // NOLINTEND
68
69public:
70 // vftables
71 // NOLINTBEGIN
72 MCNAPI static void** $vftable();
73 // NOLINTEND
74};
Definition BaseCyclingComponent.h:5
static MCAPI void ** $vftable()
Definition UIComponent.h:5
Definition UIControl.h:5