4 * The mouse cursor related stuff.
6 * Copyright (c) 1999-2000 Pawel W. Olszta. All Rights Reserved.
7 * Written by Pawel W. Olszta, <olszta@sourceforge.net>
8 * Creation date: Thu Dec 16 1999
10 * Permission is hereby granted, free of charge, to any person obtaining a
11 * copy of this software and associated documentation files (the "Software"),
12 * to deal in the Software without restriction, including without limitation
13 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
14 * and/or sell copies of the Software, and to permit persons to whom the
15 * Software is furnished to do so, subject to the following conditions:
17 * The above copyright notice and this permission notice shall be included
18 * in all copies or substantial portions of the Software.
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
21 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
23 * PAWEL W. OLSZTA BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
24 * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
25 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
32 #include <GL/freeglut.h>
33 #include "freeglut_internal.h"
35 #if TARGET_HOST_UNIX_X11
36 #include <X11/cursorfont.h>
40 * TODO BEFORE THE STABLE RELEASE:
41 * glutSetCursor() -- Win32 mappings are incomplete.
43 * It would be good to use custom mouse cursor shapes, and introduce
44 * an option to display them using glBitmap() and/or texture mapping,
45 * apart from the windowing system version.
48 /* -- INTERNAL FUNCTIONS --------------------------------------------------- */
50 #if TARGET_HOST_UNIX_X11
52 static int fghGetCursorError( Cursor cursor )
64 XGetErrorText( fgDisplay.Display, cursor, buf, sizeof buf );
65 fgWarning( "Error in setting cursor:\n %s.", buf );
79 /* -- INTERFACE FUNCTIONS -------------------------------------------------- */
82 * Set the cursor image to be used for the current window
84 void FGAPIENTRY glutSetCursor( int cursorID )
86 FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutSetCursor" );
87 FREEGLUT_EXIT_IF_NO_WINDOW ( "glutSetCursor" );
89 #if TARGET_HOST_UNIX_X11
92 * (a) Partial error checking. Is that a problem?
93 * Is fghGetCursorError() correct? Should we abort on errors?
94 * Should there be a freeglut-wide X error handler? Should
95 * we use the X error-handler mechanism?
96 * (b) FULL_CROSSHAIR demotes to plain CROSSHAIR. Old GLUT allows
97 * for this, but if there is a system that easily supports a full-
98 * window (or full-screen) crosshair, we might consider it.
99 * (c) Out-of-range cursor-types generate warnings. Should we abort?
102 Cursor cursor = None;
103 Pixmap no_cursor = None ; /* Used for GLUT_CURSOR_NONE */
106 #define MAP_CURSOR(a,b) \
108 cursor = XCreateFontCursor( fgDisplay.Display, b ); \
111 if( GLUT_CURSOR_FULL_CROSSHAIR == cursorID )
112 cursorID = GLUT_CURSOR_CROSSHAIR;
116 MAP_CURSOR( GLUT_CURSOR_RIGHT_ARROW, XC_right_ptr);
117 MAP_CURSOR( GLUT_CURSOR_LEFT_ARROW, XC_left_ptr);
118 MAP_CURSOR( GLUT_CURSOR_INFO, XC_hand1);
119 MAP_CURSOR( GLUT_CURSOR_DESTROY, XC_pirate);
120 MAP_CURSOR( GLUT_CURSOR_HELP, XC_question_arrow);
121 MAP_CURSOR( GLUT_CURSOR_CYCLE, XC_exchange);
122 MAP_CURSOR( GLUT_CURSOR_SPRAY, XC_spraycan);
123 MAP_CURSOR( GLUT_CURSOR_WAIT, XC_watch);
124 MAP_CURSOR( GLUT_CURSOR_TEXT, XC_xterm);
125 MAP_CURSOR( GLUT_CURSOR_CROSSHAIR, XC_crosshair);
126 MAP_CURSOR( GLUT_CURSOR_UP_DOWN, XC_sb_v_double_arrow);
127 MAP_CURSOR( GLUT_CURSOR_LEFT_RIGHT, XC_sb_h_double_arrow);
128 MAP_CURSOR( GLUT_CURSOR_TOP_SIDE, XC_top_side);
129 MAP_CURSOR( GLUT_CURSOR_BOTTOM_SIDE, XC_bottom_side);
130 MAP_CURSOR( GLUT_CURSOR_LEFT_SIDE, XC_left_side);
131 MAP_CURSOR( GLUT_CURSOR_RIGHT_SIDE, XC_right_side);
132 MAP_CURSOR( GLUT_CURSOR_TOP_LEFT_CORNER, XC_top_left_corner);
133 MAP_CURSOR( GLUT_CURSOR_TOP_RIGHT_CORNER, XC_top_right_corner);
134 MAP_CURSOR( GLUT_CURSOR_BOTTOM_RIGHT_CORNER,
135 XC_bottom_right_corner);
136 MAP_CURSOR( GLUT_CURSOR_BOTTOM_LEFT_CORNER, XC_bottom_left_corner);
137 /* MAP_CURSOR( GLUT_CURSOR_NONE, XC_bogosity); */
139 case GLUT_CURSOR_NONE:
142 * Note that we *never* change {no_cursor_bits} from anything
143 * but all-zeros. It is our image and mask. We also apparently
144 * need to pick a color for foreground/background---but what
145 * one we pick doesn't matter for GLUT_CURSOR_NONE.
147 static char no_cursor_bits[ 32 ];
149 no_cursor = XCreatePixmapFromBitmapData( fgDisplay.Display,
150 fgDisplay.RootWindow,
154 XParseColor( fgDisplay.Display,
155 DefaultColormap( fgDisplay.Display,
156 DefaultScreen( fgDisplay.Display ) ),
159 cursor = XCreatePixmapCursor( fgDisplay.Display,
160 no_cursor, no_cursor,
166 case GLUT_CURSOR_INHERIT:
170 fgWarning( "Unknown cursor type: %d", cursorID );
174 error = fghGetCursorError( cursor );
176 if( GLUT_CURSOR_INHERIT == cursorID )
177 XUndefineCursor( fgDisplay.Display,
178 fgStructure.Window->Window.Handle );
181 XDefineCursor( fgDisplay.Display,
182 fgStructure.Window->Window.Handle, cursor );
183 XFreeCursor( fgDisplay.Display, cursor );
184 if( GLUT_CURSOR_NONE == cursorID )
185 XFreePixmap( fgDisplay.Display, no_cursor );
189 #elif TARGET_HOST_WIN32 || TARGET_HOST_WINCE
192 * This is a temporary solution only...
194 /* Set the cursor AND change it for this window class. */
195 # define MAP_CURSOR(a,b) \
197 SetCursor( LoadCursor( NULL, b ) ); \
198 SetClassLong( fgStructure.Window->Window.Handle, \
200 ( LONG )LoadCursor( NULL, b ) ); \
203 /* Nuke the cursor AND change it for this window class. */
204 # define ZAP_CURSOR(a,b) \
207 SetClassLong( fgStructure.Window->Window.Handle, \
208 GCL_HCURSOR, ( LONG )NULL ); \
213 MAP_CURSOR( GLUT_CURSOR_RIGHT_ARROW, IDC_ARROW );
214 MAP_CURSOR( GLUT_CURSOR_LEFT_ARROW, IDC_ARROW );
215 MAP_CURSOR( GLUT_CURSOR_INFO, IDC_HELP );
216 MAP_CURSOR( GLUT_CURSOR_DESTROY, IDC_CROSS );
217 MAP_CURSOR( GLUT_CURSOR_HELP, IDC_HELP );
218 MAP_CURSOR( GLUT_CURSOR_CYCLE, IDC_SIZEALL );
219 MAP_CURSOR( GLUT_CURSOR_SPRAY, IDC_CROSS );
220 MAP_CURSOR( GLUT_CURSOR_WAIT, IDC_WAIT );
221 MAP_CURSOR( GLUT_CURSOR_TEXT, IDC_UPARROW );
222 MAP_CURSOR( GLUT_CURSOR_CROSSHAIR, IDC_CROSS );
223 /* MAP_CURSOR( GLUT_CURSOR_NONE, IDC_NO ); */
224 ZAP_CURSOR( GLUT_CURSOR_NONE, NULL );
227 MAP_CURSOR( GLUT_CURSOR_UP_DOWN, IDC_ARROW );
231 fgStructure.Window->State.Cursor = cursorID;
235 * Moves the mouse pointer to given window coordinates
237 void FGAPIENTRY glutWarpPointer( int x, int y )
239 FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutWarpPointer" );
240 FREEGLUT_EXIT_IF_NO_WINDOW ( "glutWarpPointer" );
242 #if TARGET_HOST_UNIX_X11
247 fgStructure.Window->Window.Handle,
251 XFlush( fgDisplay.Display ); /* XXX Is this really necessary? */
253 #elif TARGET_HOST_WIN32 || TARGET_HOST_WINCE
260 /* ClientToScreen() translates {coords} for us. */
261 ClientToScreen( fgStructure.Window->Window.Handle, &coords );
262 SetCursorPos( coords.x, coords.y );
268 /*** END OF FILE ***/