aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/misc/e-cursors.c
diff options
context:
space:
mode:
authornobody <nobody@localhost>1999-06-26 07:54:26 +0800
committernobody <nobody@localhost>1999-06-26 07:54:26 +0800
commita0228638efbbd9e4e0dc61edb5032017c5ec3a25 (patch)
treec84597e4d0e467d77fa23f3320467cca127cf86d /widgets/misc/e-cursors.c
parent0e4983d6b9e0450741ffa8d7c7b0257d5fbbf3a3 (diff)
downloadgsoc2013-evolution-a0228638efbbd9e4e0dc61edb5032017c5ec3a25.tar
gsoc2013-evolution-a0228638efbbd9e4e0dc61edb5032017c5ec3a25.tar.gz
gsoc2013-evolution-a0228638efbbd9e4e0dc61edb5032017c5ec3a25.tar.bz2
gsoc2013-evolution-a0228638efbbd9e4e0dc61edb5032017c5ec3a25.tar.lz
gsoc2013-evolution-a0228638efbbd9e4e0dc61edb5032017c5ec3a25.tar.xz
gsoc2013-evolution-a0228638efbbd9e4e0dc61edb5032017c5ec3a25.tar.zst
gsoc2013-evolution-a0228638efbbd9e4e0dc61edb5032017c5ec3a25.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.c')
-rw-r--r--widgets/misc/e-cursors.c32
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 */