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
40public:
41 // member functions
42 // NOLINTBEGIN
43 MCAPI ModalScreenData();
44
45 MCAPI ModalScreenData(::ModalScreenData&&);
46
47 MCAPI ModalScreenData(::ModalScreenData const&);
48
49 MCAPI ~ModalScreenData();
50 // NOLINTEND
51
52public:
53 // constructor thunks
54 // NOLINTBEGIN
55 MCAPI void* $ctor();
56
57 MCAPI void* $ctor(::ModalScreenData&&);
58
59 MCAPI void* $ctor(::ModalScreenData const&);
60 // NOLINTEND
61
62public:
63 // destructor thunk
64 // NOLINTBEGIN
65 MCAPI void $dtor();
66 // NOLINTEND
67};
Definition ModalScreenData.h:5