LeviLamina
Loading...
Searching...
No Matches
EduExternalLinkScreenController.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/GameEventNotification.h"
8#include "mc/client/gui/screens/controllers/EduExternalLinkResourceUriState.h"
9#include "mc/client/gui/screens/controllers/MinecraftScreenController.h"
10
11// auto generated forward declare list
12// clang-format off
14// clang-format on
15
17public:
18 // EduExternalLinkScreenController inner types declare
19 // clang-format off
20 struct Capabilities;
21 // clang-format on
22
23 // EduExternalLinkScreenController inner types define
24 struct Capabilities {
25 public:
26 // member variables
27 // NOLINTBEGIN
28 ::ll::TypedStorage<1, 1, bool> mExternalLinkEnabled;
29 // NOLINTEND
30 };
31
32public:
33 // member variables
34 // NOLINTBEGIN
35 ::ll::TypedStorage<1, 1, ::EduExternalLinkScreenController::Capabilities> mCapabilities;
36 ::ll::TypedStorage<1, 1, ::EduExternalLinkResourceUriState> mResourceUriState;
37 // NOLINTEND
38
39public:
40 // prevent constructor by default
41 EduExternalLinkScreenController();
42
43public:
44 // virtual functions
45 // NOLINTBEGIN
46 virtual ::ui::DirtyFlag handleGameEventNotification(::ui::GameEventNotification notification) /*override*/;
47 // NOLINTEND
48
49public:
50 // member functions
51 // NOLINTBEGIN
52 MCAPI explicit EduExternalLinkScreenController(::std::shared_ptr<::MinecraftScreenModel> model);
53
54 MCAPI void _registerBindings();
55
56 MCAPI void _registerEventHandlers();
57
58 MCAPI void _updateResourceUriState();
59 // NOLINTEND
60
61public:
62 // constructor thunks
63 // NOLINTBEGIN
64 MCAPI void* $ctor(::std::shared_ptr<::MinecraftScreenModel> model);
65 // NOLINTEND
66
67public:
68 // virtual function thunks
69 // NOLINTBEGIN
70 MCAPI ::ui::DirtyFlag $handleGameEventNotification(::ui::GameEventNotification notification);
71 // NOLINTEND
72
73public:
74 // vftables
75 // NOLINTBEGIN
76 MCNAPI static void** $vftableForScreenController();
77
79 // NOLINTEND
80};
Definition EduExternalLinkScreenController.h:5
static MCAPI void ** $vftableForEnableNonOwnerReferences()
static MCAPI void ** $vftableForScreenController()
Definition MinecraftScreenController.h:5
Definition MinecraftScreenModel.h:5
Definition EduExternalLinkScreenController.h:13