Lines Matching full:cursor
42 SDL_Rect area; /**< The area of the mouse cursor */
43 Sint16 hot_x, hot_y; /**< The "tip" of the cursor */
44 Uint8 *data; /**< B/W cursor data */
45 Uint8 *mask; /**< B/W cursor mask */
46 Uint8 *save[2]; /**< Place to save cursor area */
47 WMcursor *wm_cursor; /**< Window-manager cursor */
55 * current mouse cursor position. You can pass NULL for either x or y.
68 * Set the position of the mouse cursor (generates a mouse motion event)
73 * Create a cursor using the specified data and mask (in MSB format).
74 * The cursor width must be a multiple of 8 bits.
76 * The cursor is created in black and white according to the following:
89 * Set the currently active cursor to the specified one.
90 * If the cursor is currently visible, the change will be immediately
93 extern DECLSPEC void SDLCALL SDL_SetCursor(SDL_Cursor *cursor);
96 * Returns the currently active cursor.
101 * Deallocates a cursor created with SDL_CreateCursor().
103 extern DECLSPEC void SDLCALL SDL_FreeCursor(SDL_Cursor *cursor);
106 * Toggle whether or not the cursor is shown on the screen.
107 * The cursor start off displayed, but can be turned off.
108 * SDL_ShowCursor() returns 1 if the cursor was being displayed