aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/misc/e-cursors.c
diff options
context:
space:
mode:
authornobody <nobody@localhost>1999-11-01 02:48:15 +0800
committernobody <nobody@localhost>1999-11-01 02:48:15 +0800
commitc48faceb78e6c8a8b7f536b8475e039858f703ed (patch)
tree8cefe43740f603fea65ecbf6d8d3bf8b0d407572 /widgets/misc/e-cursors.c
parentc8d14b53ef41de80458405ffadb0721458b7add9 (diff)
downloadgsoc2013-evolution-BUG_BUDDY_0_2.tar
gsoc2013-evolution-BUG_BUDDY_0_2.tar.gz
gsoc2013-evolution-BUG_BUDDY_0_2.tar.bz2
gsoc2013-evolution-BUG_BUDDY_0_2.tar.lz
gsoc2013-evolution-BUG_BUDDY_0_2.tar.xz
gsoc2013-evolution-BUG_BUDDY_0_2.tar.zst
gsoc2013-evolution-BUG_BUDDY_0_2.zip
This commit was manufactured by cvs2svn to create tagBUG_BUDDY_0_2
'BUG_BUDDY_0_2'. svn path=/tags/BUG_BUDDY_0_2/; revision=1359
Diffstat (limited to 'widgets/misc/e-cursors.c')
-rw-r--r--widgets/misc/e-cursors.c41
1 files changed, 0 insertions, 41 deletions
diff --git a/widgets/misc/e-cursors.c b/widgets/misc/e-cursors.c
deleted file mode 100644
index b94c54bc73..0000000000
--- a/widgets/misc/e-cursors.c
+++ /dev/null
@@ -1,41 +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
-#define GNUMERIC_CURSOR_MOVE 3
-#define GNUMERIC_CURSOR_ZOOM_IN 4
-#define GNUMERIC_CURSOR_ZOOM_OUT 5
-#define GNUMERIC_CURSOR_SIZE_X 6
-#define GNUMERIC_CURSOR_SIZE_Y 7
-#define GNUMERIC_CURSOR_SIZE_TL 8
-#define GNUMERIC_CURSOR_SIZE_TR 9
-#define GNUMERIC_CURSOR_PRESS 10
-
-extern GnumericCursorDef gnumeric_cursors [];
-
-void cursors_init (void);
-void cursors_shutdown (void);
-
-#define cursor_set(win,c) \
-G_STMT_START { \
- if (win) \
- gdk_window_set_cursor (win, gnumeric_cursors [c].cursor); \
-} G_STMT_END
-
-#define cursor_set_widget(w,c) \
-G_STMT_START { \
- if (GTK_WIDGET (w)->window) \
- gdk_window_set_cursor (GTK_WIDGET (w)->window, gnumeric_cursors [c].cursor); \
-} G_STMT_END
-
-
-#endif /* GNUMERIC_CURSORS_H */
-