mirror of
https://github.com/wxWidgets/wxWidgets.git
synced 2026-08-17 17:02:51 +08:00
This new class allows to let wxWidgets select the appropriate cursor, similarly to how wxBitmapBundle allows to select the bitmap of the appropriate size. Document the new class and show using it in the drawing sample.
32 lines
795 B
C
32 lines
795 B
C
/* XPM */
|
|
static char const *const cursor_xpm[] = {
|
|
"24 24 4 1",
|
|
" c None",
|
|
". c #FFFFFF",
|
|
"+ c #000000",
|
|
"x c #FF0000",
|
|
" ... ",
|
|
" .+. ",
|
|
" .+. ",
|
|
"....+.... ",
|
|
".+++ +++. ",
|
|
"....+.... ",
|
|
" .+.x ",
|
|
" .+. x ",
|
|
" ... x ",
|
|
" x ",
|
|
" x ",
|
|
" x ",
|
|
" x ",
|
|
" x ",
|
|
" x ",
|
|
" x ",
|
|
" x ",
|
|
" x ",
|
|
" x ",
|
|
" x ",
|
|
" x ",
|
|
" x ",
|
|
" x ",
|
|
" x"};
|