LeviLamina
Loading...
Searching...
No Matches
CollectionComponent.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
8// auto generated forward declare list
9// clang-format off
11class UIControl;
12// clang-format on
13
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<4, 4, int> mCurrentLength;
19 ::ll::TypedStorage<8, 32, ::std::string> mCollectionName;
20 ::ll::TypedStorage<8, 24, ::std::vector<::std::string>> mControlBindings;
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 CollectionComponent();
26
27public:
28 // virtual functions
29 // NOLINTBEGIN
30 virtual ::std::unique_ptr<::UIComponent> clone(::UIControl& cloneOwner) const /*override*/;
31
32 virtual void reset() /*override*/;
33 // NOLINTEND
34
35public:
36 // member functions
37 // NOLINTBEGIN
38 MCAPI explicit CollectionComponent(::UIControl& owner);
39
40 MCAPI ::CollectionItemComponent const* const _findLastChildCollectionItemComponent();
41
42 MCAPI void _reinitializeCollection();
43
44 MCFOLD ::std::string const& getCollectionName() const;
45
46 MCAPI void refreshPanelItems();
47
48 MCAPI void setCollectionName(::std::string const& collectionName);
49
50 MCAPI void setControlBindings(::std::vector<::std::string> const& controlBindings);
51 // NOLINTEND
52
53public:
54 // constructor thunks
55 // NOLINTBEGIN
56 MCAPI void* $ctor(::UIControl& owner);
57 // NOLINTEND
58
59public:
60 // virtual function thunks
61 // NOLINTBEGIN
62 MCAPI ::std::unique_ptr<::UIComponent> $clone(::UIControl& cloneOwner) const;
63
64 MCFOLD void $reset();
65 // NOLINTEND
66
67public:
68 // vftables
69 // NOLINTBEGIN
70 MCNAPI static void** $vftable();
71 // NOLINTEND
72};
Definition CollectionComponent.h:5
static MCAPI void ** $vftable()
Definition CollectionItemComponent.h:5
Definition UIComponent.h:5
Definition UIControl.h:5