![]() |
![]() |
a UI base class that holds button event information
group UIevents {
int buttonPress;
ptr buttonPressData;
int buttonRelease;
ptr buttonReleaseData;
};
UIevents is a base class used by other UI classes to handle mouse button actions. It cannot be instantiated separately.
Flag that indicates button press occurrence.
1 = Button pressed. 0 = Inactive.
Pointer to event data from buttonPress event.
Pointer to event data from buttonRelease event.
1 = Button released. 0 = Inactive.
Pointer to event data from buttonRelease event.
![]() |
![]() |