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
12struct 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
45 virtual ~DeleteProgressScreenController() /*override*/ = default;
46 // NOLINTEND
47
48public:
49 // member functions
50 // NOLINTBEGIN
51 MCAPI DeleteProgressScreenController(
52 ::std::shared_ptr<::MinecraftScreenModel> model,
53 ::std::string const& calledFrom,
54 ::std::deque<::std::unique_ptr<::ProgressHandler>> progressHandlerList
55 );
56
57 MCAPI ::std::string const _getProgressMessage() const;
58 // NOLINTEND
59
60public:
61 // constructor thunks
62 // NOLINTBEGIN
63 MCAPI void* $ctor(
64 ::std::shared_ptr<::MinecraftScreenModel> model,
65 ::std::string const& calledFrom,
66 ::std::deque<::std::unique_ptr<::ProgressHandler>> progressHandlerList
67 );
68 // NOLINTEND
69
70public:
71 // virtual function thunks
72 // NOLINTBEGIN
73 MCAPI ::ui::DirtyFlag $tick();
74
75 MCFOLD ::std::string $getAdditionalScreenInfo() const;
76
77 MCAPI void $addStaticScreenVars(::Json::Value& globalVars);
78
79 MCFOLD ::std::string $_getButtonADescription();
80 // NOLINTEND
81
82public:
83 // vftables
84 // NOLINTBEGIN
85 MCNAPI static void** $vftableForScreenController();
86
88 // NOLINTEND
89};
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