/* cursor.c - initialise mouse cursors Copyright (C) 1996-2000 Paul Sheer This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. */ #include #include #include #include #include "pool.h" #include #include #ifdef HAVE_UNISTD_H #include #endif #include #include #include #include "cursor/hour.xbm" #include "cursor/hour_mask.xbm" #include "cursor/left_ptr.xbm" #include "cursor/left_ptr_mask.xbm" #include "cursor/hand.xbm" #include "cursor/hand_mask.xbm" #include "app_glob.c" #include "coolwidget.h" #include "mad.h" typedef struct { int width, height; unsigned char *image_data, *mask_data; int x, y; Pixmap image, mask; Cursor cursor; } CursorData; static CursorData cool_cursor[] = { {hour_width, hour_height, hour_bits, hour_mask_bits, hour_x_hot, hour_y_hot, 0, 0, 0}, {left_ptr_width, left_ptr_height, left_ptr_bits, left_ptr_mask_bits, left_ptr_x_hot, left_ptr_y_hot, 0, 0, 0}, {hand_width, hand_height, hand_bits, hand_mask_bits, hand_x_hot, hand_y_hot, 0, 0, 0} }; static int num_cursors = sizeof (cool_cursor) / sizeof (CursorData); void CHourGlass (Window win) { XDefineCursor (CDisplay, win, cool_cursor[CURSOR_HOUR].cursor); XSync (CDisplay, 0); } void CUnHourGlass (Window win) { XUndefineCursor (CDisplay, win); XSync (CDisplay, 0); } void edit_tri_cursor (Window win) { XDefineCursor (CDisplay, win, cool_cursor[CURSOR_LEFT].cursor); XSync (CDisplay, 0); } void menu_hand_cursor (Window win) { XDefineCursor (CDisplay, win, cool_cursor[CURSOR_MENU].cursor); XSync (CDisplay, 0); } void init_cursors (void) { int screen, i; Colormap colormap; Window root; XColor black, white; screen = DefaultScreen (CDisplay); colormap = DefaultColormap (CDisplay, screen); root = CRoot; black.pixel = BlackPixel (CDisplay, screen); white.pixel = WhitePixel (CDisplay, screen); XQueryColor (CDisplay, colormap, &black); XQueryColor (CDisplay, colormap, &white); for (i = 0; i < num_cursors; i++) { cool_cursor[i].image = XCreateBitmapFromData (CDisplay, root, (char *) cool_cursor[i].image_data, cool_cursor[i].width, cool_cursor[i].height); cool_cursor[i].mask = XCreateBitmapFromData (CDisplay, root, (char *) cool_cursor[i].mask_data, cool_cursor[i].width, cool_cursor[i].height); cool_cursor[i].cursor = XCreatePixmapCursor (CDisplay, cool_cursor[i].image, cool_cursor[i].mask, &black, &white, cool_cursor[i].x, cool_cursor[i].y); } } Cursor CGetCursorID (int i) { if (i < 0 || i >= num_cursors) { CErrorDialog (CRoot, 20, 20, "Error", "\nCGetCursorID called with parameter out of range.\n"); return 0; } return cool_cursor[i].cursor; }