LeviLamina
Loading...
Searching...
No Matches
JigsawEditorScreenController.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/gui/screens/controllers/BlockScreenController.h"
7#include "mc/world/level/levelgen/structure/JigsawEditorData.h"
8
9// auto generated forward declare list
10// clang-format off
11class BlockPos;
13class Player;
14struct ActorUniqueID;
16namespace Json { class Value; }
17// clang-format on
18
20public:
21 // member variables
22 // NOLINTBEGIN
23 ::ll::TypedStorage<1, 1, bool> mTextBoxEditing;
24 ::ll::TypedStorage<8, 144, ::JigsawEditorData> mTempData;
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
29 JigsawEditorScreenController();
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34 virtual ~JigsawEditorScreenController() /*override*/ = default;
35
36 virtual void addStaticScreenVars(::Json::Value& globalVars) /*override*/;
37 // NOLINTEND
38
39public:
40 // member functions
41 // NOLINTBEGIN
42 MCAPI JigsawEditorScreenController(
43 ::std::shared_ptr<::ClientInstanceScreenModel> model,
44 ::Player&,
45 ::BlockPos const& pos,
46 ::ActorUniqueID uniqueId
47 );
48
49 MCFOLD ::std::string _getTextEditValue(::TextEditScreenEventData& textEditEvent) const;
50
51 MCAPI int _getTextEditValueAsInt(::TextEditScreenEventData& textEditEvent) const;
52
53 MCAPI void _registerBindings();
54
55 MCAPI void _registerEventHandlers();
56 // NOLINTEND
57
58public:
59 // constructor thunks
60 // NOLINTBEGIN
61 MCAPI void* $ctor(
62 ::std::shared_ptr<::ClientInstanceScreenModel> model,
63 ::Player&,
64 ::BlockPos const& pos,
65 ::ActorUniqueID uniqueId
66 );
67 // NOLINTEND
68
69public:
70 // virtual function thunks
71 // NOLINTBEGIN
72 MCFOLD void $addStaticScreenVars(::Json::Value& globalVars);
73 // NOLINTEND
74
75public:
76 // vftables
77 // NOLINTBEGIN
78 MCNAPI static void** $vftableForScreenController();
79
81 // NOLINTEND
82};
Definition BlockPos.h:19
Definition BlockScreenController.h:5
Definition ClientInstanceScreenModel.h:5
Definition JigsawEditorScreenController.h:5
static MCAPI void ** $vftableForScreenController()
static MCAPI void ** $vftableForEnableNonOwnerReferences()
Definition Value.h:16
Definition Player.h:129
Definition ActorUniqueID.h:5
Definition TextEditScreenEventData.h:5