aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/misc/e-cursors.h
diff options
context:
space:
mode:
authornobody <nobody@localhost>1998-10-01 16:56:39 +0800
committernobody <nobody@localhost>1998-10-01 16:56:39 +0800
commitaae3a37cb11759f99268f86e0c37fd72ef5be232 (patch)
tree23e6dba03d3654ee9649835b0486dadab49110c5 /widgets/misc/e-cursors.h
parente94162c0a48defcaa3869dc9b82638170a62bab2 (diff)
downloadgsoc2013-evolution-WITHXMHTML.tar
gsoc2013-evolution-WITHXMHTML.tar.gz
gsoc2013-evolution-WITHXMHTML.tar.bz2
gsoc2013-evolution-WITHXMHTML.tar.lz
gsoc2013-evolution-WITHXMHTML.tar.xz
gsoc2013-evolution-WITHXMHTML.tar.zst
gsoc2013-evolution-WITHXMHTML.zip
This commit was manufactured by cvs2svn to create tag 'WITHXMHTML'.WITHXMHTML
svn path=/tags/WITHXMHTML/; revision=422
Diffstat (limited to 'widgets/misc/e-cursors.h')
-rw-r--r--widgets/misc/e-cursors.h25
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 */