comparison src/gtkutil.h @ 49434:a4d0ee33dcce

Fix input methods for GTK. Don't right justify GTK help menu.
author Jan Djärv <jan.h.d@swipnet.se>
date Sat, 25 Jan 2003 16:25:39 +0000
parents 078b78ea8e76
children 23a1cea22d13
comparison
equal deleted inserted replaced
49433:d8479f6ef62d 49434:a4d0ee33dcce
121 one on the free list if this one has been deallocated. 121 one on the free list if this one has been deallocated.
122 */ 122 */
123 struct _widget_value *free_list; 123 struct _widget_value *free_list;
124 } widget_value; 124 } widget_value;
125 125
126 extern widget_value *malloc_widget_value (); 126 extern widget_value *malloc_widget_value P_ ((void));
127 extern void free_widget_value P_ ((widget_value *)); 127 extern void free_widget_value P_ ((widget_value *));
128 128
129 extern char *xg_get_file_name P_ ((FRAME_PTR f, 129 extern char *xg_get_file_name P_ ((FRAME_PTR f,
130 char *prompt, 130 char *prompt,
131 char *default_filename, 131 char *default_filename,
184 long flags, 184 long flags,
185 int user_position)); 185 int user_position));
186 extern void xg_set_background_color P_ ((FRAME_PTR f, unsigned long bg)); 186 extern void xg_set_background_color P_ ((FRAME_PTR f, unsigned long bg));
187 187
188 /* Mark all callback data that are Lisp_object:s during GC. */ 188 /* Mark all callback data that are Lisp_object:s during GC. */
189 extern void xg_mark_data (); 189 extern void xg_mark_data P_ ((void));
190 190
191 /* Initialize GTK specific parts. */ 191 /* Initialize GTK specific parts. */
192 extern void xg_initialize (); 192 extern void xg_initialize P_ ((void));
193 193
194 /* Setting scrollbar values invokes the callback. Use this variable 194 /* Setting scrollbar values invokes the callback. Use this variable
195 to indicate that the callback should do nothing. */ 195 to indicate that the callback should do nothing. */
196 extern int xg_ignore_gtk_scrollbar; 196 extern int xg_ignore_gtk_scrollbar;
197 197