diff options
author | nobody <nobody@localhost> | 1999-06-26 07:54:26 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 1999-06-26 07:54:26 +0800 |
commit | a0228638efbbd9e4e0dc61edb5032017c5ec3a25 (patch) | |
tree | c84597e4d0e467d77fa23f3320467cca127cf86d /widgets/misc/e-cursors.h | |
parent | 0e4983d6b9e0450741ffa8d7c7b0257d5fbbf3a3 (diff) | |
download | gsoc2013-evolution-before-pyidl.tar gsoc2013-evolution-before-pyidl.tar.gz gsoc2013-evolution-before-pyidl.tar.bz2 gsoc2013-evolution-before-pyidl.tar.lz gsoc2013-evolution-before-pyidl.tar.xz gsoc2013-evolution-before-pyidl.tar.zst gsoc2013-evolution-before-pyidl.zip |
This commit was manufactured by cvs2svn to create tag 'before-pyidl'.before-pyidl
svn path=/tags/before-pyidl/; revision=1000
Diffstat (limited to 'widgets/misc/e-cursors.h')
-rw-r--r-- | widgets/misc/e-cursors.h | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/widgets/misc/e-cursors.h b/widgets/misc/e-cursors.h deleted file mode 100644 index d38fe71d0c..0000000000 --- a/widgets/misc/e-cursors.h +++ /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 */ |