aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/misc/e-cursors.h
diff options
context:
space:
mode:
authornobody <nobody@localhost>1999-01-13 09:21:51 +0800
committernobody <nobody@localhost>1999-01-13 09:21:51 +0800
commit6bab944cc124348b755231f1a7c32eb4a29049ff (patch)
tree9fc85f6f2906bcfe200e7bc45252a9e9c28562c9 /widgets/misc/e-cursors.h
parentb360846792c7ade453c2638c0aaaf857163ef1a1 (diff)
downloadgsoc2013-evolution-0-17.tar
gsoc2013-evolution-0-17.tar.gz
gsoc2013-evolution-0-17.tar.bz2
gsoc2013-evolution-0-17.tar.lz
gsoc2013-evolution-0-17.tar.xz
gsoc2013-evolution-0-17.tar.zst
gsoc2013-evolution-0-17.zip
This commit was manufactured by cvs2svn to create tag 'v0-17'.v0-17
svn path=/tags/v0-17/; revision=602
Diffstat (limited to 'widgets/misc/e-cursors.h')
-rw-r--r--widgets/misc/e-cursors.h32
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 */