diff options
author | Jody Goldberg <jody@src.gnome.org> | 2000-09-18 03:47:05 +0800 |
---|---|---|
committer | Jody Goldberg <jody@src.gnome.org> | 2000-09-18 03:47:05 +0800 |
commit | a8b86efbebeff5fcd4318d2d18ba29218883b21d (patch) | |
tree | f9e5f170461daa0a5dd93070cd612b588386d081 /widgets/misc/e-cursors.h | |
parent | 9b6c32ad6635ca8950a576f8e3be53e53cae1dbf (diff) | |
download | gsoc2013-evolution-a8b86efbebeff5fcd4318d2d18ba29218883b21d.tar gsoc2013-evolution-a8b86efbebeff5fcd4318d2d18ba29218883b21d.tar.gz gsoc2013-evolution-a8b86efbebeff5fcd4318d2d18ba29218883b21d.tar.bz2 gsoc2013-evolution-a8b86efbebeff5fcd4318d2d18ba29218883b21d.tar.lz gsoc2013-evolution-a8b86efbebeff5fcd4318d2d18ba29218883b21d.tar.xz gsoc2013-evolution-a8b86efbebeff5fcd4318d2d18ba29218883b21d.tar.zst gsoc2013-evolution-a8b86efbebeff5fcd4318d2d18ba29218883b21d.zip |
Move srcs from gnumeric and
Rename to e-colors and e-cursor
svn path=/trunk/; revision=5480
Diffstat (limited to 'widgets/misc/e-cursors.h')
-rw-r--r-- | widgets/misc/e-cursors.h | 50 |
1 files changed, 25 insertions, 25 deletions
diff --git a/widgets/misc/e-cursors.h b/widgets/misc/e-cursors.h index 79447247c8..5373c942bb 100644 --- a/widgets/misc/e-cursors.h +++ b/widgets/misc/e-cursors.h @@ -1,40 +1,40 @@ -#ifndef GNUMERIC_CURSORS_H -#define GNUMERIC_CURSORS_H +#ifndef GNOME_APP_LIB_CURSORS_H +#define GNOME_APP_LIB_CURSORS_H #include <gdk/gdk.h> typedef enum { - GNUMERIC_CURSOR_FAT_CROSS, - GNUMERIC_CURSOR_THIN_CROSS, - GNUMERIC_CURSOR_ARROW, - GNUMERIC_CURSOR_MOVE, - GNUMERIC_CURSOR_ZOOM_IN, - GNUMERIC_CURSOR_ZOOM_OUT, - GNUMERIC_CURSOR_SIZE_X, - GNUMERIC_CURSOR_SIZE_Y, - GNUMERIC_CURSOR_SIZE_TL, - GNUMERIC_CURSOR_SIZE_TR, - GNUMERIC_CURSOR_PRESS, - GNUMERIC_CURSOR_HAND_OPEN, - GNUMERIC_CURSOR_HAND_CLOSED, - GNUMERIC_CURSOR_NUM_CURSORS -} CursorType; + E_CURSOR_FAT_CROSS, + E_CURSOR_THIN_CROSS, + E_CURSOR_ARROW, + E_CURSOR_MOVE, + E_CURSOR_ZOOM_IN, + E_CURSOR_ZOOM_OUT, + E_CURSOR_SIZE_X, + E_CURSOR_SIZE_Y, + E_CURSOR_SIZE_TL, + E_CURSOR_SIZE_TR, + E_CURSOR_PRESS, + E_CURSOR_HAND_OPEN, + E_CURSOR_HAND_CLOSED, + E_CURSOR_NUM_CURSORS +} ECursorType; -void cursors_init (void); -void cursors_shutdown (void); +void e_cursors_init (void); +void e_cursors_shutdown (void); -#define cursor_set(win, c) \ +#define e_cursor_set(win, c) \ G_STMT_START { \ if (win) \ - gdk_window_set_cursor (win, cursor_get (c)); \ + gdk_window_set_cursor (win, e_cursor_get (c)); \ } G_STMT_END -#define cursor_set_widget(w, c) \ +#define e_cursor_set_widget(w, c) \ G_STMT_START { \ if (GTK_WIDGET (w)->window) \ - gdk_window_set_cursor (GTK_WIDGET (w)->window, cursor_get (c)); \ + gdk_window_set_cursor (GTK_WIDGET (w)->window, e_cursor_get (c)); \ } G_STMT_END -GdkCursor *cursor_get (CursorType type); +GdkCursor *e_cursor_get (ECursorType type); -#endif /* GNUMERIC_CURSORS_H */ +#endif /* GNOME_APP_LIB_CURSORS_H */ |