Update Spanish translation
[gnumeric.git] / src / dead-kittens.h
bloba4f64548e373b31382787c2305b8643e7636dfad
1 #ifndef GNUMERIC_GTK_DEAD_KITTENS_H
2 #define GNUMERIC_GTK_DEAD_KITTENS_H
4 #include <gutils.h>
5 #include <gdk/gdkkeysyms.h>
7 /* To be included only from C files, not headers. */
9 /* This function does not exist in gtk+ yet. 634344. */
10 #ifndef HAVE_GTK_CELL_RENDERER_TEXT_GET_BACKGROUND_SET
11 #define gtk_cell_renderer_text_get_background_set(_cr_) \
12 gnm_object_get_bool ((_cr_), "background-set")
13 #endif
15 /* This function does not exist in gtk+ yet. 634344. */
16 #ifndef HAVE_GTK_CELL_RENDERER_TEXT_GET_FOREGROUND_SET
17 #define gtk_cell_renderer_text_get_foreground_set(_cr_) \
18 gnm_object_get_bool ((_cr_), "foreground-set")
19 #endif
21 /* This function does not exist in gtk+ yet. 634344. */
22 #ifndef HAVE_GTK_CELL_RENDERER_TEXT_GET_EDITABLE
23 #define gtk_cell_renderer_text_get_editable(_cr_) \
24 gnm_object_get_bool ((_cr_), "editable")
25 #endif
27 /* This function does not exist in gtk+ yet. 634342. */
28 #ifndef HAVE_GTK_ENTRY_SET_EDITING_CANCELLED
29 #define gtk_entry_set_editing_cancelled(_e_,_b_) \
30 g_object_set ((_e_), "editing-canceled", (gboolean)(_b_), NULL)
31 #endif
33 #endif