LeviLamina
Loading...
Searching...
No Matches
HowToPlayScreenController.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/gui/DirtyFlag.h"
7#include "mc/client/gui/HowToPlayTopicIndex.h"
8#include "mc/client/gui/screens/controllers/MainMenuScreenController.h"
9
10// auto generated forward declare list
11// clang-format off
13struct UIPropertyBag;
14namespace Json { class Value; }
15// clang-format on
16
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<8, 32, ::std::string> mCurrentFocus;
22 ::ll::TypedStorage<8, 32, ::std::string> mCurrentTabTitle;
23 ::ll::TypedStorage<4, 4, ::HowToPlayTopicIndex> mCurrentTab;
24 ::ll::TypedStorage<4, 4, ::HowToPlayTopicIndex> mInitialTab;
25 ::ll::TypedStorage<1, 1, bool> mInitialTabSelected;
26 // NOLINTEND
27
28public:
29 // prevent constructor by default
30 HowToPlayScreenController();
31
32public:
33 // virtual functions
34 // NOLINTBEGIN
35 virtual ~HowToPlayScreenController() /*override*/;
36
37 virtual void onOpen() /*override*/;
38
39 virtual void addStaticScreenVars(::Json::Value& globalVars) /*override*/;
40
41 virtual bool bind(
42 ::std::string const& bindingName,
43 uint bindingNameHash,
44 ::std::string const& bindingNameOverride,
45 ::UIPropertyBag& bag
46 ) /*override*/;
47
48 virtual ::ui::DirtyFlag tick() /*override*/;
49
50 virtual ::std::string _getButtonADescription() /*override*/;
51 // NOLINTEND
52
53public:
54 // member functions
55 // NOLINTBEGIN
56 MCAPI HowToPlayScreenController(::std::shared_ptr<::MainMenuScreenModel> model, ::HowToPlayTopicIndex topic);
57
58 MCAPI void _registerBindings();
59
60 MCAPI void _selectNewTab(bool isInitialTab, int newTabIndex);
61 // NOLINTEND
62
63public:
64 // constructor thunks
65 // NOLINTBEGIN
66 MCAPI void* $ctor(::std::shared_ptr<::MainMenuScreenModel> model, ::HowToPlayTopicIndex topic);
67 // NOLINTEND
68
69public:
70 // destructor thunk
71 // NOLINTBEGIN
72 MCAPI void $dtor();
73 // NOLINTEND
74
75public:
76 // virtual function thunks
77 // NOLINTBEGIN
78 MCAPI void $onOpen();
79
80 MCAPI void $addStaticScreenVars(::Json::Value& globalVars);
81
82 MCAPI bool $bind(
83 ::std::string const& bindingName,
84 uint bindingNameHash,
85 ::std::string const& bindingNameOverride,
86 ::UIPropertyBag& bag
87 );
88
89 MCAPI ::ui::DirtyFlag $tick();
90
91 MCFOLD ::std::string $_getButtonADescription();
92 // NOLINTEND
93
94public:
95 // vftables
96 // NOLINTBEGIN
97 MCNAPI static void** $vftableForScreenController();
98
100 // NOLINTEND
101};
Definition HowToPlayScreenController.h:5
static MCAPI void ** $vftableForEnableNonOwnerReferences()
static MCAPI void ** $vftableForScreenController()
Definition Value.h:16
Definition MainMenuScreenController.h:5
Definition MainMenuScreenModel.h:5
Definition UIPropertyBag.h:5