LeviLamina
Loading...
Searching...
No Matches
DropdownComponent.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
11class UIControl;
12struct ScreenEvent;
13// clang-format on
14
15class DropdownComponent : public ::UIComponent {
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<4, 4, uint> mDropdownNameId;
20 ::ll::TypedStorage<8, 16, ::std::weak_ptr<::UIControl>> mContentControl;
21 ::ll::TypedStorage<8, 16, ::std::weak_ptr<::UIControl>> mAreaControl;
22 // NOLINTEND
23
24public:
25 // virtual functions
26 // NOLINTBEGIN
27 virtual ~DropdownComponent() /*override*/ = default;
28
29 virtual ::std::unique_ptr<::UIComponent> clone(::UIControl& cloneOwner) const /*override*/;
30
31 virtual void reset() /*override*/;
32
33 virtual ::ComponentReceiveActionType receive(::ScreenEvent const& screenEvent) /*override*/;
34 // NOLINTEND
35
36public:
37 // member functions
38 // NOLINTBEGIN
39 MCAPI void _positionContent();
40 // NOLINTEND
41
42public:
43 // virtual function thunks
44 // NOLINTBEGIN
45 MCAPI ::std::unique_ptr<::UIComponent> $clone(::UIControl& cloneOwner) const;
46
47 MCFOLD void $reset();
48
49 MCAPI ::ComponentReceiveActionType $receive(::ScreenEvent const& screenEvent);
50 // NOLINTEND
51
52public:
53 // vftables
54 // NOLINTBEGIN
55 MCNAPI static void** $vftable();
56 // NOLINTEND
57};
Definition DropdownComponent.h:5
static MCAPI void ** $vftable()
Definition UIComponent.h:5
Definition UIControl.h:5
Definition ScreenEvent.h:5