Changeset View
Changeset View
Standalone View
Standalone View
intern/ghost/intern/GHOST_Window.cpp
| Show First 20 Lines • Show All 48 Lines • ▼ Show 20 Lines | GHOST_Window::GHOST_Window( | ||||
| const bool /*exclusive*/, | const bool /*exclusive*/, | ||||
| const GHOST_TUns16 wantNumOfAASamples) | const GHOST_TUns16 wantNumOfAASamples) | ||||
| : m_drawingContextType(GHOST_kDrawingContextTypeNone), | : m_drawingContextType(GHOST_kDrawingContextTypeNone), | ||||
| m_cursorVisible(true), | m_cursorVisible(true), | ||||
| m_cursorGrab(GHOST_kGrabDisable), | m_cursorGrab(GHOST_kGrabDisable), | ||||
| m_cursorShape(GHOST_kStandardCursorDefault), | m_cursorShape(GHOST_kStandardCursorDefault), | ||||
| m_wantStereoVisual(wantStereoVisual), | m_wantStereoVisual(wantStereoVisual), | ||||
| m_wantNumOfAASamples(wantNumOfAASamples), | m_wantNumOfAASamples(wantNumOfAASamples), | ||||
| #if defined(WITH_IM_OVERTHESPOT) || defined(WITH_IM_ONTHESPOT) | |||||
| m_im_modal(false), | |||||
| #endif | |||||
| m_context(new GHOST_ContextNone(false, 0)) | m_context(new GHOST_ContextNone(false, 0)) | ||||
| { | { | ||||
| m_isUnsavedChanges = false; | m_isUnsavedChanges = false; | ||||
| m_canAcceptDragOperation = false; | m_canAcceptDragOperation = false; | ||||
| m_progressBarVisible = false; | m_progressBarVisible = false; | ||||
| m_cursorGrabAccumPos[0] = 0; | m_cursorGrabAccumPos[0] = 0; | ||||
| ▲ Show 20 Lines • Show All 180 Lines • Show Last 20 Lines | |||||