LeviLamina
Loading...
Searching...
No Matches
CartographyScreenController.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/gui/screens/controllers/ContainerScreenController.h"
7#include "mc/deps/core/utility/pub_sub/Subscription.h"
8
9// auto generated forward declare list
10// clang-format off
11class BlockPos;
14class Player;
15struct ActorUniqueID;
16// clang-format on
17
19public:
20 // member variables
21 // NOLINTBEGIN
22 ::ll::TypedStorage<8, 16, ::std::shared_ptr<::CartographyContainerManagerController>>
23 mCartographyContainerManagerController;
24 ::ll::TypedStorage<1, 1, bool> mTextBoxEditing;
25 ::ll::TypedStorage<1, 1, bool> mShouldUseFilteredMessage;
26 ::ll::TypedStorage<8, 16, ::Bedrock::PubSub::Subscription> mProfanityToggleSubscription;
27 // NOLINTEND
28
29public:
30 // prevent constructor by default
31 CartographyScreenController();
32
33public:
34 // virtual functions
35 // NOLINTBEGIN
36 virtual ~CartographyScreenController() /*override*/;
37
38 virtual bool _isStillValid() const /*override*/;
39
40 virtual void _handleTakeHalf(::std::string const& collectionName, int index) /*override*/;
41
42 virtual void _registerCoalesceOrder() /*override*/;
43
44 virtual void _registerAutoPlaceOrder() /*override*/;
45 // NOLINTEND
46
47public:
48 // member functions
49 // NOLINTBEGIN
50 MCAPI CartographyScreenController(
51 ::std::shared_ptr<::ClientInstanceScreenModel> model,
52 ::Player& player,
53 ::BlockPos const& pos,
54 ::ActorUniqueID uniqueId
55 );
56
57 MCAPI ::std::string _getOutputDescription() const;
58
59 MCAPI void _registerBindings();
60
61 MCAPI void _registerEventHandlers();
62
63 MCAPI void _registerStateMachine();
64 // NOLINTEND
65
66public:
67 // constructor thunks
68 // NOLINTBEGIN
69 MCAPI void* $ctor(
70 ::std::shared_ptr<::ClientInstanceScreenModel> model,
71 ::Player& player,
72 ::BlockPos const& pos,
73 ::ActorUniqueID uniqueId
74 );
75 // NOLINTEND
76
77public:
78 // destructor thunk
79 // NOLINTBEGIN
80 MCAPI void $dtor();
81 // NOLINTEND
82
83public:
84 // virtual function thunks
85 // NOLINTBEGIN
86 MCFOLD bool $_isStillValid() const;
87
88 MCAPI void $_handleTakeHalf(::std::string const& collectionName, int index);
89
90 MCAPI void $_registerCoalesceOrder();
91
92 MCAPI void $_registerAutoPlaceOrder();
93 // NOLINTEND
94
95public:
96 // vftables
97 // NOLINTBEGIN
99
100 MCNAPI static void** $vftableForScreenController();
101 // NOLINTEND
102};
Definition BlockPos.h:21
Definition CartographyContainerManagerController.h:27
Definition CartographyScreenController.h:5
static MCAPI void ** $vftableForEnableNonOwnerReferences()
static MCAPI void ** $vftableForScreenController()
Definition ClientInstanceScreenModel.h:5
Definition ContainerScreenController.h:5
Definition Player.h:137
Definition ActorUniqueID.h:10