LeviLamina
Loading...
Searching...
No Matches
ModalScreenData.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/gui/screens/controllers/ModalScreenButtonId.h"
7#include "mc/client/gui/screens/controllers/ModalScreenButtonMode.h"
8
9struct ModalScreenData {
10public:
11 // member variables
12 // NOLINTBEGIN
13 ::ll::TypedStorage<8, 32, ::std::string> contentTitleId;
14 ::ll::TypedStorage<8, 24, ::std::vector<::std::string>> contentTitleParams;
15 ::ll::TypedStorage<8, 32, ::std::string> contentLabelId;
16 ::ll::TypedStorage<8, 24, ::std::vector<::std::string>> contentLabelParams;
17 ::ll::TypedStorage<8, 32, ::std::string> ttsContentTitleId;
18 ::ll::TypedStorage<8, 24, ::std::vector<::std::string>> ttsContentTitleParams;
19 ::ll::TypedStorage<8, 32, ::std::string> ttsContentLabelId;
20 ::ll::TypedStorage<8, 24, ::std::vector<::std::string>> ttsContentLabelParams;
21 ::ll::TypedStorage<8, 32, ::std::string> eventScreenNameOverride;
22 ::ll::TypedStorage<8, 32, ::std::string> leftButtonLabelId;
23 ::ll::TypedStorage<8, 32, ::std::string> middleButtonLabelId;
24 ::ll::TypedStorage<8, 32, ::std::string> rightCancelButtonLabelId;
25 ::ll::TypedStorage<4, 4, ::ModalScreenButtonMode> buttonMode;
26 ::ll::TypedStorage<1, 1, bool> contentContainsPII;
27 ::ll::TypedStorage<1, 1, bool> closeButton;
28 ::ll::TypedStorage<1, 1, bool> enableEmoticonify;
29 ::ll::TypedStorage<4, 4, ::ModalScreenButtonId> initialFocusButton;
30 ::ll::TypedStorage<1, 1, bool> leftButtonClosesModal;
31 ::ll::TypedStorage<1, 1, bool> middleButtonClosesModal;
32 ::ll::TypedStorage<1, 1, bool> rightButtonClosesModal;
33 ::ll::TypedStorage<1, 1, bool> shouldHideKeyboard;
34 // NOLINTEND
35
36public:
37 // prevent constructor by default
38 ModalScreenData& operator=(ModalScreenData const&);
39 ModalScreenData();
40
41public:
42 // member functions
43 // NOLINTBEGIN
44 MCAPI ModalScreenData(::ModalScreenData const&);
45
46 MCAPI ~ModalScreenData();
47 // NOLINTEND
48
49public:
50 // constructor thunks
51 // NOLINTBEGIN
52 MCAPI void* $ctor(::ModalScreenData const&);
53 // NOLINTEND
54
55public:
56 // destructor thunk
57 // NOLINTBEGIN
58 MCAPI void $dtor();
59 // NOLINTEND
60};
Definition ModalScreenData.h:5