LeviLamina
Loading...
Searching...
No Matches
ContentLogFileDeleteProgressHandler.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/gui/ProgressHandler.h"
7#include "mc/world/actor/player/LoadingState.h"
8
9// auto generated forward declare list
10// clang-format off
12class TaskGroup;
13// clang-format on
14
16public:
17 // ContentLogFileDeleteProgressHandler inner types define
18 enum class FileDeleteTarget : int {
19 ContentLogs = 0,
20 DiagnosticsAndProfilerCaptures = 1,
21 };
22
23public:
24 // member variables
25 // NOLINTBEGIN
26 ::ll::TypedStorage<4, 4, ::ContentLogFileDeleteProgressHandler::FileDeleteTarget> mTarget;
27 ::ll::TypedStorage<8, 8, ::std::unique_ptr<::TaskGroup>> mIOTaskGroup;
28 // NOLINTEND
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 virtual ~ContentLogFileDeleteProgressHandler() /*override*/ = default;
34
35 virtual void onStart(::MinecraftScreenModel& minecraftScreenModel) /*override*/;
36
37 virtual void tick(::MinecraftScreenModel&) /*override*/;
38
39 virtual void onCancel(::MinecraftScreenModel&) /*override*/;
40
41 virtual void onExit(::MinecraftScreenModel&) /*override*/;
42
43 virtual ::LoadingState getLoadingState(::MinecraftScreenModel&) const /*override*/;
44
45 virtual ::std::string getProgressMessage(::MinecraftScreenModel&) const /*override*/;
46
47 virtual ::std::string getTitleText() const /*override*/;
48
49 virtual ::std::string getName() const /*override*/;
50 // NOLINTEND
51
52public:
53 // virtual function thunks
54 // NOLINTBEGIN
55 MCAPI void $onStart(::MinecraftScreenModel& minecraftScreenModel);
56
57 MCFOLD void $tick(::MinecraftScreenModel&);
58
59 MCFOLD void $onCancel(::MinecraftScreenModel&);
60
61 MCFOLD void $onExit(::MinecraftScreenModel&);
62
63 MCFOLD ::LoadingState $getLoadingState(::MinecraftScreenModel&) const;
64
65 MCFOLD ::std::string $getProgressMessage(::MinecraftScreenModel&) const;
66
67 MCAPI ::std::string $getTitleText() const;
68
69 MCAPI ::std::string $getName() const;
70 // NOLINTEND
71
72public:
73 // vftables
74 // NOLINTBEGIN
75 MCNAPI static void** $vftable();
76 // NOLINTEND
77};
Definition ContentLogFileDeleteProgressHandler.h:5
static MCAPI void ** $vftable()
Definition MinecraftScreenModel.h:5
Definition ProgressHandler.h:5
Definition TaskGroup.h:57