LeviLamina
Loading...
Searching...
No Matches
DeleteProgressScreenController.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/screens/controllers/MinecraftScreenController.h"
8
9// auto generated forward declare list
10// clang-format off
12class ProgressHandler;
13namespace Json { class Value; }
14// clang-format on
15
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<1, 1, bool> mHasTicked;
21 ::ll::TypedStorage<1, 1, bool> mInitiated;
22 ::ll::TypedStorage<1, 1, bool> mNext;
23 ::ll::TypedStorage<8, 32, ::std::string> mCalledFrom;
24 ::ll::TypedStorage<8, 8, int64> mLastAudioProgressNotificationUpdate;
25 ::ll::TypedStorage<8, 8, int64 const> mProgressMessageInterval;
26 ::ll::TypedStorage<8, 8, ::std::unique_ptr<::ProgressHandler>> mProgressHandler;
27 ::ll::TypedStorage<8, 40, ::std::deque<::std::unique_ptr<::ProgressHandler>>> mProgressHandlerList;
28 // NOLINTEND
29
30public:
31 // prevent constructor by default
32 DeleteProgressScreenController();
33
34public:
35 // virtual functions
36 // NOLINTBEGIN
37 virtual ::ui::DirtyFlag tick() /*override*/;
38
39 virtual ::std::string getAdditionalScreenInfo() const /*override*/;
40
41 virtual void addStaticScreenVars(::Json::Value& globalVars) /*override*/;
42
43 virtual ::std::string _getButtonADescription() /*override*/;
44 // NOLINTEND
45
46public:
47 // member functions
48 // NOLINTBEGIN
49 MCAPI DeleteProgressScreenController(
50 ::std::shared_ptr<::MinecraftScreenModel> model,
51 ::std::string const& calledFrom,
52 ::std::deque<::std::unique_ptr<::ProgressHandler>> progressHandlerList
53 );
54
55 MCAPI ::std::string const _getProgressMessage() const;
56
57 MCAPI ::std::string const _getTitle() const;
58
59 MCAPI void _registerProgressBindings();
60 // NOLINTEND
61
62public:
63 // constructor thunks
64 // NOLINTBEGIN
65 MCAPI void* $ctor(
66 ::std::shared_ptr<::MinecraftScreenModel> model,
67 ::std::string const& calledFrom,
68 ::std::deque<::std::unique_ptr<::ProgressHandler>> progressHandlerList
69 );
70 // NOLINTEND
71
72public:
73 // virtual function thunks
74 // NOLINTBEGIN
75 MCAPI ::ui::DirtyFlag $tick();
76
77 MCFOLD ::std::string $getAdditionalScreenInfo() const;
78
79 MCAPI void $addStaticScreenVars(::Json::Value& globalVars);
80
81 MCFOLD ::std::string $_getButtonADescription();
82 // NOLINTEND
83
84public:
85 // vftables
86 // NOLINTBEGIN
87 MCNAPI static void** $vftableForScreenController();
88
90 // NOLINTEND
91};
Definition DeleteProgressScreenController.h:5
static MCAPI void ** $vftableForEnableNonOwnerReferences()
static MCAPI void ** $vftableForScreenController()
Definition Value.h:16
Definition MinecraftScreenController.h:5
Definition MinecraftScreenModel.h:5
Definition ProgressHandler.h:5