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 // virtual functions
25 // NOLINTBEGIN
26 virtual ~BaseCyclingComponent() /*override*/ = default;
27
28 virtual ::std::unique_ptr<::UIComponent> clone(::UIControl& cloneOwner) const = 0;
29
30 virtual void reset() /*override*/;
31
32 virtual void _updateSubPage() = 0;
33
34 virtual void _postCreate() = 0;
35 // NOLINTEND
36
37public:
38 // member functions
39 // NOLINTBEGIN
40 MCAPI void _notifyPageIndicatorManagerOfNewSubscriber();
41
42 MCAPI void _notifySubPageChanged(uint64 newPage);
43 // NOLINTEND
44
45public:
46 // virtual function thunks
47 // NOLINTBEGIN
48 MCFOLD void $reset();
49 // NOLINTEND
50
51public:
52 // vftables
53 // NOLINTBEGIN
54 MCNAPI static void** $vftable();
55 // NOLINTEND
56};
Definition BaseCyclingComponent.h:5
static MCAPI void ** $vftable()
Definition UIComponent.h:5
Definition UIControl.h:5