Changeset View
Changeset View
Standalone View
Standalone View
intern/ghost/intern/GHOST_SystemWin32.h
| Context not available. | |||||
| * Returns the dimensions of the main display on this system. | * Returns the dimensions of the main display on this system. | ||||
| * \return The dimension of the main display. | * \return The dimension of the main display. | ||||
| */ | */ | ||||
| void getMainDisplayDimensions(GHOST_TUns32& width, GHOST_TUns32& height) const; | void getMainDisplayDimensions( | ||||
| GHOST_TUns32& x, GHOST_TUns32& y, | |||||
| GHOST_TUns32& width, GHOST_TUns32& height) const; | |||||
| /** | /** | ||||
| * Returns the dimensions of all displays on this system. | * Returns the dimensions of all displays on this system. | ||||
| Context not available. | |||||
| */ | */ | ||||
| void getAllDisplayDimensions(GHOST_TUns32& width, GHOST_TUns32& height) const; | void getAllDisplayDimensions(GHOST_TUns32& width, GHOST_TUns32& height) const; | ||||
| /** | |||||
| * Returns the dimensions of the given display number on this system. | |||||
| * \param num The display number. Must be between 0 and getNumDisplays()-1 inclusive. | |||||
| * \return The dimension and coordinates of the display. | |||||
| */ | |||||
| void getDisplayDimensions( | |||||
| GHOST_TUns8 num, | |||||
| GHOST_TUns32& x, GHOST_TUns32& y, | |||||
| GHOST_TUns32& width, GHOST_TUns32& height) const; | |||||
| /** | /** | ||||
| * Create a new window. | * Create a new window. | ||||
| * The new window is added to the list of windows managed. | * The new window is added to the list of windows managed. | ||||
| Context not available. | |||||