Changed: #1034 Implement CCustomMouse for Linux

This commit is contained in:
kervala 2010-11-02 21:17:32 +01:00
parent bc1fed6c60
commit 37dc4e08ef

View file

@ -269,14 +269,17 @@ void CDriverGL::createCursors()
#elif defined(NL_OS_UNIX) #elif defined(NL_OS_UNIX)
_DefaultCursor = None; _DefaultCursor = None;
// create blank cursor if (_dpy && _win && _BlankCursor == EmptyCursor)
char bm_no_data[] = { 0,0,0,0,0,0,0,0 }; {
Pixmap pixmap_no_data = XCreateBitmapFromData (_dpy, _win, bm_no_data, 8, 8); // create blank cursor
XColor black; char bm_no_data[] = { 0,0,0,0,0,0,0,0 };
memset(&black, 0, sizeof (XColor)); Pixmap pixmap_no_data = XCreateBitmapFromData (_dpy, _win, bm_no_data, 8, 8);
black.flags = DoRed | DoGreen | DoBlue; XColor black;
_BlankCursor = XCreatePixmapCursor (_dpy, pixmap_no_data, pixmap_no_data, &black, &black, 0, 0); memset(&black, 0, sizeof (XColor));
XFreePixmap(_dpy, pixmap_no_data); black.flags = DoRed | DoGreen | DoBlue;
_BlankCursor = XCreatePixmapCursor (_dpy, pixmap_no_data, pixmap_no_data, &black, &black, 0, 0);
XFreePixmap(_dpy, pixmap_no_data);
}
#endif #endif
} }