Changeset View
Changeset View
Standalone View
Standalone View
intern/ghost/intern/GHOST_SystemWin32.h
| Show First 20 Lines • Show All 97 Lines • ▼ Show 20 Lines | public: | ||||
| * Never explicitly delete the window, use #disposeWindow() instead. | * Never explicitly delete the window, use #disposeWindow() instead. | ||||
| * \param title: The name of the window. | * \param title: The name of the window. | ||||
| * (displayed in the title bar of the window if the OS supports it). | * (displayed in the title bar of the window if the OS supports it). | ||||
| * \param left: The coordinate of the left edge of the window. | * \param left: The coordinate of the left edge of the window. | ||||
| * \param top: The coordinate of the top edge of the window. | * \param top: The coordinate of the top edge of the window. | ||||
| * \param width: The width the window. | * \param width: The width the window. | ||||
| * \param height: The height the window. | * \param height: The height the window. | ||||
| * \param state: The state of the window when opened. | * \param state: The state of the window when opened. | ||||
| * \param type: The type of drawing context installed in this window. | |||||
| * \param glSettings: Misc OpenGL settings. | * \param glSettings: Misc OpenGL settings. | ||||
| * \param exclusive: Use to show the window on top and ignore others (used full-screen). | * \param exclusive: Use to show the window on top and ignore others (used full-screen). | ||||
| * \param parentWindow: Parent window. | * \param parentWindow: Parent window. | ||||
| * \return The new window (or 0 if creation failed). | * \return The new window (or 0 if creation failed). | ||||
| */ | */ | ||||
| GHOST_IWindow *createWindow(const char *title, | GHOST_IWindow *createWindow(const char *title, | ||||
| int32_t left, | int32_t left, | ||||
| int32_t top, | int32_t top, | ||||
| uint32_t width, | uint32_t width, | ||||
| uint32_t height, | uint32_t height, | ||||
| GHOST_TWindowState state, | GHOST_TWindowState state, | ||||
| GHOST_TDrawingContextType type, | |||||
| GHOST_GLSettings glSettings, | GHOST_GLSettings glSettings, | ||||
| const bool exclusive = false, | const bool exclusive = false, | ||||
| const bool is_dialog = false, | const bool is_dialog = false, | ||||
| const GHOST_IWindow *parentWindow = 0); | const GHOST_IWindow *parentWindow = 0); | ||||
| /** | /** | ||||
| * Create a new off-screen context. | * Create a new off-screen context. | ||||
| * Never explicitly delete the window, use #disposeContext() instead. | * Never explicitly delete the window, use #disposeContext() instead. | ||||
| ▲ Show 20 Lines • Show All 352 Lines • Show Last 20 Lines | |||||