Changeset View
Changeset View
Standalone View
Standalone View
intern/ghost/GHOST_ISystem.h
| Show First 20 Lines • Show All 226 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 is_dialog: Stay on top of parent window, no icon in taskbar, can't be minimized. | * \param is_dialog: Stay on top of parent window, no icon in taskbar, can't be minimized. | ||||
| * \param parentWindow: Parent (embedder) window | * \param parentWindow: Parent (embedder) window | ||||
| * \return The new window (or 0 if creation failed). | * \return The new window (or 0 if creation failed). | ||||
| */ | */ | ||||
| virtual GHOST_IWindow *createWindow(const char *title, | virtual 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 = NULL) = 0; | const GHOST_IWindow *parentWindow = NULL) = 0; | ||||
| /** | /** | ||||
| * Dispose a window. | * Dispose a window. | ||||
| * \param window: Pointer to the window to be disposed. | * \param window: Pointer to the window to be disposed. | ||||
| ▲ Show 20 Lines • Show All 279 Lines • Show Last 20 Lines | |||||