diff options
author | nobody <nobody@localhost> | 1999-03-11 07:16:04 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 1999-03-11 07:16:04 +0800 |
commit | 304334533525006f73f223281e407170be4455b3 (patch) | |
tree | acac9833d59d9db26faf0577053dbe9c8f8e4c8b /widgets/misc/e-cursors.c | |
parent | 1b383b0fa71f05423f333fc0afcd049a643dca74 (diff) | |
download | gsoc2013-evolution-0-18.tar gsoc2013-evolution-0-18.tar.gz gsoc2013-evolution-0-18.tar.bz2 gsoc2013-evolution-0-18.tar.lz gsoc2013-evolution-0-18.tar.xz gsoc2013-evolution-0-18.tar.zst gsoc2013-evolution-0-18.zip |
This commit was manufactured by cvs2svn to create tag 'v0-18'.v0-18
svn path=/tags/v0-18/; revision=755
Diffstat (limited to 'widgets/misc/e-cursors.c')
-rw-r--r-- | widgets/misc/e-cursors.c | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/widgets/misc/e-cursors.c b/widgets/misc/e-cursors.c deleted file mode 100644 index d38fe71d0c..0000000000 --- a/widgets/misc/e-cursors.c +++ /dev/null @@ -1,32 +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) \ - do { \ - if (win) \ - gdk_window_set_cursor (win, gnumeric_cursors [c].cursor); \ -} while (0) - -#define cursor_set_widget(w,c) \ - do { \ - if (GTK_WIDGET (w)->window) \ - gdk_window_set_cursor (GTK_WIDGET (w)->window, gnumeric_cursors [c].cursor); \ -} while (0) - - -#endif /* GNUMERIC_CURSORS_H */ |