Changeset View
Changeset View
Standalone View
Standalone View
intern/ghost/intern/GHOST_WindowWin32.h
| Show First 20 Lines • Show All 92 Lines • ▼ Show 20 Lines | |||||
| GHOST_SystemWin32 *m_system; | GHOST_SystemWin32 *m_system; | ||||
| /** Pointer to COM #IDropTarget implementer. */ | /** Pointer to COM #IDropTarget implementer. */ | ||||
| GHOST_DropTargetWin32 *m_dropTarget; | GHOST_DropTargetWin32 *m_dropTarget; | ||||
| /** Window handle. */ | /** Window handle. */ | ||||
| HWND m_hWnd; | HWND m_hWnd; | ||||
| /** Device context handle. */ | /** Device context handle. */ | ||||
| HDC m_hDC; | HDC m_hDC; | ||||
| bool m_isDialog; | |||||
| /** Flag for if window has captured the mouse. */ | /** Flag for if window has captured the mouse. */ | ||||
| bool m_hasMouseCaptured; | bool m_hasMouseCaptured; | ||||
| /** | /** | ||||
| * Flag if an operator grabs the mouse with #WM_cursor_grab_enable, #WM_cursor_grab_disable | * Flag if an operator grabs the mouse with #WM_cursor_grab_enable, #WM_cursor_grab_disable | ||||
| * Multiple grabs must be released with a single un-grab. | * Multiple grabs must be released with a single un-grab. | ||||
| */ | */ | ||||
| bool m_hasGrabMouse; | bool m_hasGrabMouse; | ||||
| /** Count of number of pressed buttons. */ | /** Count of number of pressed buttons. */ | ||||
| ▲ Show 20 Lines • Show All 51 Lines • Show Last 20 Lines | |||||