LeviLamina
Loading...
Searching...
No Matches
RouterLocation.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/gui/oreui/interface/RouteMode.h"
7#include "mc/client/gui/oreui/interface/RouteType.h"
8
9// auto generated forward declare list
10// clang-format off
11class AbstractScene;
12// clang-format on
13
14namespace OreUI {
15
16class RouterLocation {
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<8, 16, ::std::weak_ptr<::AbstractScene>> mScene;
21 ::ll::TypedStorage<8, 32, ::std::string> mUrl;
22 ::ll::TypedStorage<8, 32, ::std::string> mPath;
23 ::ll::TypedStorage<8, 32, ::std::string> mQuery;
24 ::ll::TypedStorage<8, 32, ::std::string> mFragment;
25 ::ll::TypedStorage<4, 4, ::OreUI::RouteMode> mMode;
26 ::ll::TypedStorage<4, 4, ::OreUI::RouteType> mType;
27 // NOLINTEND
28
29public:
30 // prevent constructor by default
31 RouterLocation();
32
33public:
34 // member functions
35 // NOLINTBEGIN
36 MCAPI RouterLocation(::OreUI::RouterLocation const&);
37
38 MCAPI RouterLocation(
39 ::std::weak_ptr<::AbstractScene> scene,
40 ::std::string const& url,
41 ::OreUI::RouteMode mode,
42 ::OreUI::RouteType routeType
43 );
44
45 MCAPI bool _isRealmsStoriesScreen(::std::string const& routeName) const;
46
47 MCFOLD ::std::string const& getFragment() const;
48
49 MCFOLD ::OreUI::RouteMode getMode() const;
50
51 MCFOLD ::std::string const& getPath() const;
52
53 MCFOLD ::std::string const& getQuery() const;
54
55 MCFOLD ::std::weak_ptr<::AbstractScene> getScene() const;
56
57 MCAPI ::std::unordered_map<::std::string, ::std::string> getTelemetryEventProperties() const;
58
59 MCAPI ::std::string getTelemetryId() const;
60
61 MCFOLD ::OreUI::RouteType getType() const;
62
63 MCFOLD ::std::string const& getUrl() const;
64
65 MCAPI bool isValid() const;
66
67 MCAPI ::OreUI::RouterLocation& operator=(::OreUI::RouterLocation const&);
68
69 MCAPI ::OreUI::RouterLocation& operator=(::OreUI::RouterLocation&&);
70
71 MCAPI ~RouterLocation();
72 // NOLINTEND
73
74public:
75 // constructor thunks
76 // NOLINTBEGIN
77 MCAPI void* $ctor(::OreUI::RouterLocation const&);
78
79 MCAPI void* $ctor(
80 ::std::weak_ptr<::AbstractScene> scene,
81 ::std::string const& url,
82 ::OreUI::RouteMode mode,
83 ::OreUI::RouteType routeType
84 );
85 // NOLINTEND
86
87public:
88 // destructor thunk
89 // NOLINTBEGIN
90 MCAPI void $dtor();
91 // NOLINTEND
92};
93
94} // namespace OreUI
Definition AbstractScene.h:5
Definition RouterLocation.h:7