Mercurial > hg > xemacs-beta
comparison src/gui.h @ 454:d7a9135ec789 r21-2-42
Import from CVS: tag r21-2-42
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:40:54 +0200 |
parents | abe6d1db359e |
children | 190b164ddcac |
comparison
equal
deleted
inserted
replaced
453:270b05afd845 | 454:d7a9135ec789 |
---|---|
28 #define INCLUDED_gui_h_ | 28 #define INCLUDED_gui_h_ |
29 | 29 |
30 int separator_string_p (const Bufbyte *s); | 30 int separator_string_p (const Bufbyte *s); |
31 void get_gui_callback (Lisp_Object, Lisp_Object *, Lisp_Object *); | 31 void get_gui_callback (Lisp_Object, Lisp_Object *, Lisp_Object *); |
32 int gui_item_equal_sans_selected (Lisp_Object obj1, Lisp_Object obj2, int depth); | 32 int gui_item_equal_sans_selected (Lisp_Object obj1, Lisp_Object obj2, int depth); |
33 | |
34 | |
35 | |
33 | 36 |
34 extern int popup_up_p; | 37 extern int popup_up_p; |
35 | 38 |
36 /************************************************************************/ | 39 /************************************************************************/ |
37 /* Image Instance Object */ | 40 /* Image Instance Object */ |
62 #define XSETGUI_ITEM(x, p) XSETRECORD (x, p, gui_item) | 65 #define XSETGUI_ITEM(x, p) XSETRECORD (x, p, gui_item) |
63 #define GUI_ITEMP(x) RECORDP (x, gui_item) | 66 #define GUI_ITEMP(x) RECORDP (x, gui_item) |
64 #define CHECK_GUI_ITEM(x) CHECK_RECORD (x, gui_item) | 67 #define CHECK_GUI_ITEM(x) CHECK_RECORD (x, gui_item) |
65 #define CONCHECK_GUI_ITEM(x) CONCHECK_RECORD (x, gui_item) | 68 #define CONCHECK_GUI_ITEM(x) CONCHECK_RECORD (x, gui_item) |
66 | 69 |
67 void gui_item_add_keyval_pair (Lisp_Object, | 70 int update_gui_item_keywords (Lisp_Object gui_item, Lisp_Object item); |
68 Lisp_Object key, Lisp_Object val, | 71 Lisp_Object copy_gui_item (Lisp_Object gui_item); |
69 Error_behavior errb); | 72 Lisp_Object widget_gui_parse_item_keywords (Lisp_Object item); |
73 int gui_item_add_keyval_pair (Lisp_Object gui_item, | |
74 Lisp_Object key, Lisp_Object val, | |
75 Error_behavior errb); | |
70 Lisp_Object gui_parse_item_keywords (Lisp_Object item); | 76 Lisp_Object gui_parse_item_keywords (Lisp_Object item); |
71 Lisp_Object gui_parse_item_keywords_no_errors (Lisp_Object item); | 77 Lisp_Object gui_parse_item_keywords_no_errors (Lisp_Object item); |
72 void gui_add_item_keywords_to_plist (Lisp_Object plist, Lisp_Object gui_item); | 78 void gui_add_item_keywords_to_plist (Lisp_Object plist, Lisp_Object gui_item); |
73 int gui_item_active_p (Lisp_Object); | 79 int gui_item_active_p (Lisp_Object); |
74 int gui_item_selected_p (Lisp_Object); | 80 int gui_item_selected_p (Lisp_Object); |