diff options
author | nobody <nobody@localhost> | 1998-09-23 04:22:43 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 1998-09-23 04:22:43 +0800 |
commit | b26eabbf5cb79a3ce6d128679d7fe209aa7e4dfb (patch) | |
tree | 9a011b3086fb5f0929a959dda5a09b160508c990 /widgets/misc/e-cursors.c | |
parent | c9f3dfe29bdf0ff816bcab90498d1c009eb51a19 (diff) | |
download | gsoc2013-evolution-PANTING_CHIMPANZEE.tar gsoc2013-evolution-PANTING_CHIMPANZEE.tar.gz gsoc2013-evolution-PANTING_CHIMPANZEE.tar.bz2 gsoc2013-evolution-PANTING_CHIMPANZEE.tar.lz gsoc2013-evolution-PANTING_CHIMPANZEE.tar.xz gsoc2013-evolution-PANTING_CHIMPANZEE.tar.zst gsoc2013-evolution-PANTING_CHIMPANZEE.zip |
This commit was manufactured by cvs2svn to create tagPANTING_CHIMPANZEE
'PANTING_CHIMPANZEE'.
svn path=/tags/PANTING_CHIMPANZEE/; revision=395
Diffstat (limited to 'widgets/misc/e-cursors.c')
-rw-r--r-- | widgets/misc/e-cursors.c | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/widgets/misc/e-cursors.c b/widgets/misc/e-cursors.c deleted file mode 100644 index 4927277833..0000000000 --- a/widgets/misc/e-cursors.c +++ /dev/null @@ -1,25 +0,0 @@ -#ifndef CURSORS_H -#define CURSORS_H - -typedef struct { - GdkCursor *cursor; - int hot_x, hot_y; - char **xpm; -} GnumericCursorDef; - -#define GNUMERIC_CURSOR_FAT_CROSS 0 -#define GNUMERIC_CURSOR_THIN_CROSS 1 -#define GNUMERIC_CURSOR_ARROW 2 - -extern GnumericCursorDef gnumeric_cursors []; - -void cursors_init (void); -void cursors_shutdown (void); - -#define cursor_set(win,c) \ - gdk_window_set_cursor (win, gnumeric_cursors [c].cursor) - -#define cursor_set_widget(w,c) \ - gdk_window_set_cursor (GTK_WIDGET (w)->window, gnumeric_cursors [c].cursor) - -#endif |