UIevents


Synopsis

a UI base class that holds button event information


group UIevents {
int buttonPress;
ptr buttonPressData;
int buttonRelease;
ptr buttonReleaseData;
};

Description

UIevents is a base class used by other UI classes to handle mouse button actions. It cannot be instantiated separately.

Subobjects

buttonPress

Flag that indicates button press occurrence.
1 = Button pressed. 0 = Inactive.

buttonPressData

Pointer to event data from buttonPress event.

buttonRelease

Pointer to event data from buttonRelease event.
1 = Button released. 0 = Inactive.

buttonReleaseData

Pointer to event data from buttonRelease event.

Example

Not available.

File

v/UI.v