Cyrus Mod Loader
Loading...
Searching...
No Matches
ControlPopupButton.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/ControlButton.h>
4#include <Cyrus/Classes/PropertyClass.h>
5#include <Cyrus/Classes/Window.h>
6
8public:
9 bool getBUp() { // Property Generated Getter
10 return *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x370);
11 }
12
13 void setBUp(bool val) { // Property Generated Setter
14 *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x370) = val;
15 }
16
17 float GetPopupDelay() { // Function Generated
18 using FunctionPointerType = float (*)(ControlPopupButton *self);
19 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x1687480);
20 return inner(this);
21 }
22
23 void SetPopupDelay(float a0) { // Function Generated
24 using FunctionPointerType = void (*)(ControlPopupButton *self, float a0);
25 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x16874B0);
26 return inner(this, a0);
27 }
28
29 float GetPopdownDelay() { // Function Generated
30 using FunctionPointerType = float (*)(ControlPopupButton *self);
31 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x1687470);
32 return inner(this);
33 }
34
35 void SetPopdownDelay(float a0) { // Function Generated
36 using FunctionPointerType = void (*)(ControlPopupButton *self, float a0);
37 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x16874A0);
38 return inner(this, a0);
39 }
40
41};
A class that represents a button control element in a window.
Definition ControlButton.h:22
Definition ControlPopupButton.h:7
void SetPopdownDelay(float a0)
Definition ControlPopupButton.h:35
float GetPopupDelay()
Definition ControlPopupButton.h:17
bool getBUp()
Definition ControlPopupButton.h:9
void SetPopupDelay(float a0)
Definition ControlPopupButton.h:23
void setBUp(bool val)
Definition ControlPopupButton.h:13
float GetPopdownDelay()
Definition ControlPopupButton.h:29