Changeset View
Changeset View
Standalone View
Standalone View
intern/ghost/GHOST_C-api.h
| Show First 20 Lines • Show All 243 Lines • ▼ Show 20 Lines | |||||
| /** | /** | ||||
| * Returns current full screen mode status. | * Returns current full screen mode status. | ||||
| * \param systemhandle: The handle to the system. | * \param systemhandle: The handle to the system. | ||||
| * \return The current status. | * \return The current status. | ||||
| */ | */ | ||||
| extern int GHOST_GetFullScreen(GHOST_SystemHandle systemhandle); | extern int GHOST_GetFullScreen(GHOST_SystemHandle systemhandle); | ||||
| /** | |||||
| * Get the Window under the cursor. | |||||
| * \param x: The x-coordinate of the cursor. | |||||
| * \param y: The y-coordinate of the cursor. | |||||
| * \param below_window: The search will start below this window. | |||||
| * @return The window under the cursor or nullptr in none. | |||||
| */ | |||||
| extern GHOST_WindowHandle GHOST_GetWindowUnderCursor(GHOST_SystemHandle systemhandle, | |||||
| int32_t x, | |||||
| int32_t y, | |||||
| const GHOST_WindowHandle below_window); | |||||
| /*************************************************************************************** | /*************************************************************************************** | ||||
| * Event management functionality | * Event management functionality | ||||
| ***************************************************************************************/ | ***************************************************************************************/ | ||||
| /** | /** | ||||
| * Retrieves events from the system and stores them in the queue. | * Retrieves events from the system and stores them in the queue. | ||||
| * \param systemhandle: The handle to the system. | * \param systemhandle: The handle to the system. | ||||
| * \param waitForEvent: Boolean to indicate that #ProcessEvents should. | * \param waitForEvent: Boolean to indicate that #ProcessEvents should. | ||||
| ▲ Show 20 Lines • Show All 885 Lines • Show Last 20 Lines | |||||