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 // NOLINTEND
42
43public:
44 // virtual function thunks
45 // NOLINTBEGIN
46 MCAPI void $onReadyForBindings();
47
48 MCAPI void $onSuspend();
49
50 MCFOLD void $onBindingsReleased();
51
52 MCAPI void $update(double const time);
53
54 MCAPI ::std::vector<::OreUI::Debug::QueryInformation> $getQueryInformation() const;
55
56 MCAPI ::std::vector<::OreUI::Detail::ICommandGroup*> $getCommands() const;
57 // NOLINTEND
58};
59
60} // namespace OreUI::Detail
Definition CommandRegistry.h:7
Definition ICommandGroup.h:7
Definition QueryRegistry.h:7
Definition ViewContext.h:7
Definition QueryInformation.h:7