GUIBaseContext :: waitPointer - Mouse pointer state property
The mouse pointer supports two states: 'wait' or 'busy' (true) and 'normal' (false).
Return value: Set pointer to wait ( bool )
Passing true causes the mouse pointer to be set to wait or busy (e.g. hourglass). Passing false will reset the pointer to its default image.
Implementation overview
- Returns mouse pointer state
GUIBaseContext :: waitPointer (  ) - Set mouse pointer state
GUIBaseContext :: waitPointer ( bPointerWait )
Implementation details
-
Returns mouse pointer state
bool GUIBaseContext  :: waitPointer (  )
The function returns the mouse pointer state as true, when being busy or waiting and false otherwise.
to list
-
Set mouse pointer state
bool GUIBaseContext  :: waitPointer ( bool bPointerWait )
The function changes the mouse pointer state to waiting or busy when passing true and to normal otherwise (false).
- bPointerWait
- Set pointer to wait
Passing true causes the mouse pointer to be set to wait or busy (e.g. hourglass). Passing false will reset the pointer to its default image.
to list
- bPointerWait
- Set pointer to wait