LeviLamina
Loading...
Searching...
No Matches
ViewContext.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/gui/oreui/binding/interface/IBindable.h"
7#include "mc/client/gui/oreui/binding/interface/debug/IBindingsDataProvider.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace OreUI::Debug { struct QueryInformation; }
12namespace OreUI::Detail { class CommandRegistry; }
13namespace OreUI::Detail { class ICommandGroup; }
14namespace OreUI::Detail { class QueryRegistry; }
15// clang-format on
16
17namespace OreUI::Detail {
18
19class ViewContext : public ::OreUI::Detail::IBindable, public ::OreUI::Debug::IBindingsDataProvider {
20public:
21 // member variables
22 // NOLINTBEGIN
23 ::ll::TypedStorage<8, 8, ::std::unique_ptr<::OreUI::Detail::QueryRegistry>> mQueries;
24 ::ll::TypedStorage<8, 8, ::std::unique_ptr<::OreUI::Detail::CommandRegistry>> mCommands;
25 // NOLINTEND
26
27public:
28 // virtual functions
29 // NOLINTBEGIN
30 virtual void onReadyForBindings() /*override*/;
31
32 virtual void onSuspend() /*override*/;
33
34 virtual void onBindingsReleased() /*override*/;
35
36 virtual void update(double const time) /*override*/;
37
38 virtual ::std::vector<::OreUI::Debug::QueryInformation> getQueryInformation() const /*override*/;
39
40 virtual ::std::vector<::OreUI::Detail::ICommandGroup*> getCommands() const /*override*/;
41
42 virtual ~ViewContext() /*override*/ = default;
43 // NOLINTEND
44
45public:
46 // virtual function thunks
47 // NOLINTBEGIN
48 MCAPI void $onReadyForBindings();
49
50 MCAPI void $onSuspend();
51
52 MCFOLD void $onBindingsReleased();
53
54 MCAPI void $update(double const time);
55
56 MCAPI ::std::vector<::OreUI::Debug::QueryInformation> $getQueryInformation() const;
57
58 MCAPI ::std::vector<::OreUI::Detail::ICommandGroup*> $getCommands() const;
59 // NOLINTEND
60
61public:
62 // vftables
63 // NOLINTBEGIN
64 MCNAPI static void** $vftableForIBindable();
65
66 MCNAPI static void** $vftableForIBindingsDataProvider();
67 // NOLINTEND
68};
69
70} // namespace OreUI::Detail
Definition CommandRegistry.h:7
Definition ICommandGroup.h:7
Definition QueryRegistry.h:7
Definition ViewContext.h:7
static MCAPI void ** $vftableForIBindingsDataProvider()
static MCAPI void ** $vftableForIBindable()
Definition QueryInformation.h:7