1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
/*
* This file is part of the XForms library package.
*
* XForms is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1, or
* (at your option) any later version.
*
* XForms 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with XForms. If not, see <http://www.gnu.org/licenses/>.
*/
/********************** crop here for forms.h **********************/
/**
* \file cursor.h
*
* Cursor defs and prototypes
*/
#ifndef FL_CURSOR_H
#define FL_CURSOR_H
#include <X11/cursorfont.h>
enum {
FL_INVISIBLE_CURSOR = -2,
FL_DEFAULT_CURSOR = -1,
FL_BUSY_CURSOR = XC_watch,
FL_CROSSHAIR_CURSOR = XC_tcross,
FL_KILL_CURSOR = XC_pirate,
FL_NWARROW_CURSOR = XC_top_left_arrow,
FL_NEARROW_CURSOR = XC_arrow
};
#ifndef XC_invisible
#define XC_invisible FL_INVISIBLE_CURSOR
#endif
FL_EXPORT void fl_set_cursor( Window win,
int name );
FL_EXPORT void fl_set_cursor_color( int name,
FL_COLOR fg,
FL_COLOR bg );
FL_EXPORT int fl_create_bitmap_cursor( const char * source,
const char * mask,
int w,
int h,
int hotx,
int hoty );
FL_EXPORT int fl_create_animated_cursor( int * cur_names,
int timeout );
FL_EXPORT Cursor fl_get_cursor_byname( int name );
#define fl_reset_cursor( win ) fl_set_cursor( win, FL_DEFAULT_CURSOR );
#endif /* ! defined FL_CURSOR_H */
|