diff options
author | nobody <nobody@localhost> | 1999-01-08 13:40:14 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 1999-01-08 13:40:14 +0800 |
commit | 5ea07903d36065bc9ee5580960ee2d06b6678293 (patch) | |
tree | a9ba1b7363baf7b2bca1b34e112f5a538b937d92 /widgets/misc/e-cursors.h | |
parent | c3284ed1198fb5284e239edf28d009af5c55e6bc (diff) | |
download | gsoc2013-evolution-OLD_EZPAINT.tar gsoc2013-evolution-OLD_EZPAINT.tar.gz gsoc2013-evolution-OLD_EZPAINT.tar.bz2 gsoc2013-evolution-OLD_EZPAINT.tar.lz gsoc2013-evolution-OLD_EZPAINT.tar.xz gsoc2013-evolution-OLD_EZPAINT.tar.zst gsoc2013-evolution-OLD_EZPAINT.zip |
This commit was manufactured by cvs2svn to create tag 'OLD_EZPAINT'.OLD_EZPAINT
svn path=/tags/OLD_EZPAINT/; revision=588
Diffstat (limited to 'widgets/misc/e-cursors.h')
-rw-r--r-- | widgets/misc/e-cursors.h | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/widgets/misc/e-cursors.h b/widgets/misc/e-cursors.h deleted file mode 100644 index b4eb2436ec..0000000000 --- a/widgets/misc/e-cursors.h +++ /dev/null @@ -1,25 +0,0 @@ -#ifndef GNUMERIC_CURSORS_H -#define GNUMERIC_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 /* GNUMERIC_CURSORS_H */ |