diff options
author | nobody <nobody@localhost> | 1998-12-10 00:25:39 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 1998-12-10 00:25:39 +0800 |
commit | 2041ddc092b3b6f503ef382e8a693eba68263d88 (patch) | |
tree | 9d4994954706edce7d2afc711fa7927538390943 /widgets/misc/e-cursors.h | |
parent | 60ab9dc306f5dae4f807da3336cb9329a77c665f (diff) | |
download | gsoc2013-evolution-PRE_PANEL2.tar gsoc2013-evolution-PRE_PANEL2.tar.gz gsoc2013-evolution-PRE_PANEL2.tar.bz2 gsoc2013-evolution-PRE_PANEL2.tar.lz gsoc2013-evolution-PRE_PANEL2.tar.xz gsoc2013-evolution-PRE_PANEL2.tar.zst gsoc2013-evolution-PRE_PANEL2.zip |
This commit was manufactured by cvs2svn to create tag 'PRE_PANEL2'.PRE_PANEL2
svn path=/tags/PRE_PANEL2/; revision=521
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 */ |