CommonLibSSE (powerof3)
Loading...
Searching...
No Matches
CursorMenu.h
Go to the documentation of this file.
1#pragma once
2
3#include "RE/I/IMenu.h"
5
6namespace RE
7{
8 // menuDepth = 13
9 // flags = kAllowSaving | kCustomRendering
10 // context = kNone
11 class CursorMenu :
12 public IMenu, // 00
13 public MenuEventHandler // 30
14 {
15 public:
16 inline static constexpr auto RTTI = RTTI_CursorMenu;
17 inline static constexpr auto VTABLE = VTABLE_CursorMenu;
18 constexpr static std::string_view MENU_NAME = "Cursor Menu";
19
20 ~CursorMenu() override; // 00
21
22 // override (IMenu)
23 UI_MESSAGE_RESULTS ProcessMessage(UIMessage& a_message) override; // 04
24
25 // override (MenuEventHandler)
26 bool CanProcess(InputEvent* a_event) override; // 01
27 bool ProcessThumbstick(ThumbstickEvent* a_event) override; // 03
28 bool ProcessMouseMove(MouseMoveEvent* a_event) override; // 04
29 };
30 static_assert(sizeof(CursorMenu) == 0x40);
31}
Definition CursorMenu.h:14
bool ProcessThumbstick(ThumbstickEvent *a_event) override
bool ProcessMouseMove(MouseMoveEvent *a_event) override
static constexpr auto RTTI
Definition CursorMenu.h:16
static constexpr auto VTABLE
Definition CursorMenu.h:17
UI_MESSAGE_RESULTS ProcessMessage(UIMessage &a_message) override
bool CanProcess(InputEvent *a_event) override
~CursorMenu() override
static constexpr std::string_view MENU_NAME
Definition CursorMenu.h:18
Definition IMenu.h:55
Definition InputEvent.h:25
Definition MenuEventHandler.h:14
Definition MouseMoveEvent.h:8
Definition ThumbstickEvent.h:8
Definition UIMessage.h:28
Definition AbsorbEffect.h:6
constexpr REL::ID RTTI_CursorMenu(static_cast< std::uint64_t >(688828))
UI_MESSAGE_RESULTS
Definition IMenu.h:48
constexpr std::array< REL::ID, 2 > VTABLE_CursorMenu
Definition Offsets_VTABLE.h:11434