Mercurial > hg > xemacs-beta
annotate src/ui-gtk.c @ 5118:e0db3c197671 ben-lisp-object
merge up to latest default branch, doesn't compile yet
author | Ben Wing <ben@xemacs.org> |
---|---|
date | Sat, 26 Dec 2009 21:18:49 -0600 |
parents | 3742ea8250b5 db7068430402 |
children | 623d57b7fbe8 |
rev | line source |
---|---|
462 | 1 /* ui-gtk.c |
2 ** | |
3 ** Description: Creating 'real' UIs from lisp. | |
4 ** | |
5 ** Created by: William M. Perry <wmperry@gnu.org> | |
6 ** Copyright (c) 2000 William M. Perry <wmperry@gnu.org> | |
7 ** | |
4709
db7068430402
Add explicit GPL v2 or later notices to Bill Perry's code, where such notices
Jerry James <james@xemacs.org>
parents:
3017
diff
changeset
|
8 ** This file is part of XEmacs. |
db7068430402
Add explicit GPL v2 or later notices to Bill Perry's code, where such notices
Jerry James <james@xemacs.org>
parents:
3017
diff
changeset
|
9 ** |
db7068430402
Add explicit GPL v2 or later notices to Bill Perry's code, where such notices
Jerry James <james@xemacs.org>
parents:
3017
diff
changeset
|
10 ** XEmacs is free software; you can redistribute it and/or modify it |
db7068430402
Add explicit GPL v2 or later notices to Bill Perry's code, where such notices
Jerry James <james@xemacs.org>
parents:
3017
diff
changeset
|
11 ** under the terms of the GNU General Public License as published by the |
db7068430402
Add explicit GPL v2 or later notices to Bill Perry's code, where such notices
Jerry James <james@xemacs.org>
parents:
3017
diff
changeset
|
12 ** Free Software Foundation; either version 2, or (at your option) any |
db7068430402
Add explicit GPL v2 or later notices to Bill Perry's code, where such notices
Jerry James <james@xemacs.org>
parents:
3017
diff
changeset
|
13 ** later version. |
db7068430402
Add explicit GPL v2 or later notices to Bill Perry's code, where such notices
Jerry James <james@xemacs.org>
parents:
3017
diff
changeset
|
14 ** |
db7068430402
Add explicit GPL v2 or later notices to Bill Perry's code, where such notices
Jerry James <james@xemacs.org>
parents:
3017
diff
changeset
|
15 ** XEmacs is distributed in the hope that it will be useful, but WITHOUT |
db7068430402
Add explicit GPL v2 or later notices to Bill Perry's code, where such notices
Jerry James <james@xemacs.org>
parents:
3017
diff
changeset
|
16 ** ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
db7068430402
Add explicit GPL v2 or later notices to Bill Perry's code, where such notices
Jerry James <james@xemacs.org>
parents:
3017
diff
changeset
|
17 ** FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
db7068430402
Add explicit GPL v2 or later notices to Bill Perry's code, where such notices
Jerry James <james@xemacs.org>
parents:
3017
diff
changeset
|
18 ** for more details. |
db7068430402
Add explicit GPL v2 or later notices to Bill Perry's code, where such notices
Jerry James <james@xemacs.org>
parents:
3017
diff
changeset
|
19 ** |
db7068430402
Add explicit GPL v2 or later notices to Bill Perry's code, where such notices
Jerry James <james@xemacs.org>
parents:
3017
diff
changeset
|
20 ** You should have received a copy of the GNU General Public License |
db7068430402
Add explicit GPL v2 or later notices to Bill Perry's code, where such notices
Jerry James <james@xemacs.org>
parents:
3017
diff
changeset
|
21 ** along with XEmacs; see the file COPYING. If not, write to |
db7068430402
Add explicit GPL v2 or later notices to Bill Perry's code, where such notices
Jerry James <james@xemacs.org>
parents:
3017
diff
changeset
|
22 ** the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor, |
db7068430402
Add explicit GPL v2 or later notices to Bill Perry's code, where such notices
Jerry James <james@xemacs.org>
parents:
3017
diff
changeset
|
23 ** Boston, MA 02111-1301, USA. */ |
462 | 24 */ |
25 | |
26 #include <config.h> | |
27 #include "lisp.h" | |
1346 | 28 |
462 | 29 #include "buffer.h" |
2168 | 30 #include "console-gtk-impl.h" |
462 | 31 #include "device.h" |
32 #include "elhash.h" | |
778 | 33 #include "event-gtk.h" |
1346 | 34 #include "events.h" |
35 #include "faces.h" | |
36 #include "glyphs-gtk.h" | |
37 #include "hash.h" | |
38 #include "objects-gtk.h" | |
39 #include "sysdll.h" | |
40 #include "ui-gtk.h" | |
41 #include "window.h" | |
462 | 42 |
43 /* XEmacs specific GTK types */ | |
44 #include "gtk-glue.c" | |
45 | |
2054 | 46 /* Is the fundamental type of 't' the xemacs defined fundamental type 'type'? */ |
47 #define IS_XEMACS_GTK_FUNDAMENTAL_TYPE(t,type) (((GtkType) GTK_FUNDAMENTAL_TYPE(t)) == (type)) | |
48 | |
462 | 49 Lisp_Object Qemacs_ffip; |
50 Lisp_Object Qemacs_gtk_objectp; | |
51 Lisp_Object Qemacs_gtk_boxedp; | |
52 Lisp_Object Qvoid; | |
53 Lisp_Object Venumeration_info; | |
54 | |
55 static GHashTable *dll_cache; | |
56 | |
57 Lisp_Object gtk_type_to_lisp (GtkArg *arg); | |
58 int lisp_to_gtk_type (Lisp_Object obj, GtkArg *arg); | |
1883 | 59 int lisp_to_gtk_ret_type (Lisp_Object obj, GtkArg *arg); |
778 | 60 #if 0 |
462 | 61 void describe_gtk_arg (GtkArg *arg); |
778 | 62 #endif |
462 | 63 guint symbol_to_enum (Lisp_Object obj, GtkType t); |
64 static guint lisp_to_flag (Lisp_Object obj, GtkType t); | |
65 static Lisp_Object flags_to_list (guint value, GtkType t); | |
66 static Lisp_Object enum_to_symbol (guint value, GtkType t); | |
67 | |
68 #define NIL_OR_VOID_P(x) (NILP (x) || EQ (x, Qvoid)) | |
69 | |
70 static void | |
71 initialize_dll_cache (void) | |
72 { | |
73 if (!dll_cache) | |
74 { | |
2054 | 75 static char text[] = "---XEmacs Internal Handle---"; |
76 | |
462 | 77 dll_cache = g_hash_table_new (g_str_hash, g_str_equal); |
78 | |
2054 | 79 g_hash_table_insert (dll_cache, text, dll_open (Qnil)); |
462 | 80 } |
81 } | |
82 | |
83 DEFUN ("dll-load", Fdll_load, 1, 1, 0, /* | |
84 Load a shared library DLL into XEmacs. No initialization routines are required. | |
85 This is for loading dependency DLLs into XEmacs. | |
86 */ | |
87 (dll)) | |
88 { | |
89 dll_handle h; | |
90 | |
91 CHECK_STRING (dll); | |
92 | |
93 initialize_dll_cache (); | |
94 | |
95 /* If the dll name has a directory component in it, then we should | |
96 expand it. */ | |
97 if (!NILP (Fstring_match (build_string ("/"), dll, Qnil, Qnil))) | |
98 dll = Fexpand_file_name (dll, Qnil); | |
99 | |
100 /* Check if we have already opened it first */ | |
101 h = g_hash_table_lookup (dll_cache, XSTRING_DATA (dll)); | |
102 | |
103 if (!h) | |
104 { | |
1811 | 105 h = dll_open (dll); |
462 | 106 |
107 if (h) | |
108 { | |
2054 | 109 g_hash_table_insert (dll_cache, qxestrdup (XSTRING_DATA (dll)), h); |
462 | 110 } |
111 else | |
112 { | |
2054 | 113 signal_error (Qfile_error, "dll_open error", dll_error()); |
462 | 114 } |
115 } | |
116 return (h ? Qt : Qnil); | |
117 } | |
118 | |
119 | |
120 /* Gtk object importing */ | |
121 EXFUN (Fgtk_import_type, 1); | |
122 | |
123 static struct hash_table *internal_type_hash; | |
124 | |
125 static int | |
126 type_already_imported_p (GtkType t) | |
127 { | |
128 void *retval = NULL; | |
129 | |
130 /* These are cases that we don't need to import */ | |
131 switch (GTK_FUNDAMENTAL_TYPE (t)) | |
132 { | |
133 case GTK_TYPE_CHAR: | |
134 case GTK_TYPE_UCHAR: | |
135 case GTK_TYPE_BOOL: | |
136 case GTK_TYPE_INT: | |
137 case GTK_TYPE_UINT: | |
138 case GTK_TYPE_LONG: | |
139 case GTK_TYPE_ULONG: | |
140 case GTK_TYPE_FLOAT: | |
141 case GTK_TYPE_DOUBLE: | |
142 case GTK_TYPE_STRING: | |
143 case GTK_TYPE_BOXED: | |
144 case GTK_TYPE_POINTER: | |
145 case GTK_TYPE_SIGNAL: | |
146 case GTK_TYPE_ARGS: | |
147 case GTK_TYPE_CALLBACK: | |
148 case GTK_TYPE_C_CALLBACK: | |
149 case GTK_TYPE_FOREIGN: | |
150 return (1); | |
151 } | |
152 | |
153 if (!internal_type_hash) | |
154 { | |
2515 | 155 internal_type_hash = make_hash_table (163); |
462 | 156 return (0); |
157 } | |
158 | |
159 if (gethash ((void *)t, internal_type_hash, (const void **)&retval)) | |
160 { | |
161 return (1); | |
162 } | |
163 return (0); | |
164 } | |
165 | |
166 static void | |
167 mark_type_as_imported (GtkType t) | |
168 { | |
169 if (type_already_imported_p (t)) | |
170 return; | |
171 | |
172 puthash ((void *) t, (void *) 1, internal_type_hash); | |
173 } | |
174 | |
175 static void import_gtk_type (GtkType t); | |
176 | |
177 static void | |
178 import_gtk_object_internal (GtkType the_type) | |
179 { | |
180 GtkType original_type = the_type; | |
181 int first_time = 1; | |
182 | |
183 do | |
184 { | |
185 GtkArg *args; | |
186 guint32 *flags; | |
187 guint n_args; | |
188 guint i; | |
189 #if 0 | |
190 GtkObjectClass *klass; | |
191 GtkSignalQuery *query; | |
192 guint32 *signals; | |
193 guint n_signals; | |
194 #endif | |
195 | |
196 /* Register the type before we do anything else with it... */ | |
197 if (!first_time) | |
198 { | |
199 if (!type_already_imported_p (the_type)) | |
200 { | |
201 import_gtk_type (the_type); | |
202 } | |
203 } | |
204 else | |
205 { | |
206 /* We need to mark the object type as imported here or we | |
207 run the risk of SERIOUS recursion when we do automatic | |
208 argument type importing. mark_type_as_imported() is | |
209 smart enough to be a noop if we attempt to register | |
210 things twice. */ | |
211 first_time = 0; | |
212 mark_type_as_imported (the_type); | |
213 } | |
214 | |
215 args = gtk_object_query_args(the_type,&flags,&n_args); | |
216 | |
217 /* First get the arguments the object can accept */ | |
218 for (i = 0; i < n_args; i++) | |
219 { | |
220 if ((args[i].type != original_type) && !type_already_imported_p (args[i].type)) | |
221 { | |
222 import_gtk_type (args[i].type); | |
223 } | |
224 } | |
225 | |
226 g_free(args); | |
227 g_free(flags); | |
228 | |
229 #if 0 | |
230 /* Now lets publish the signals */ | |
231 klass = (GtkObjectClass *) gtk_type_class (the_type); | |
232 signals = klass->signals; | |
233 n_signals = klass->nsignals; | |
234 | |
235 for (i = 0; i < n_signals; i++) | |
236 { | |
237 query = gtk_signal_query (signals[i]); | |
238 /* What do we want to do here? */ | |
239 g_free (query); | |
240 } | |
241 #endif | |
242 | |
243 the_type = gtk_type_parent(the_type); | |
244 } while (the_type != GTK_TYPE_INVALID); | |
245 } | |
246 | |
247 static void | |
248 import_gtk_enumeration_internal (GtkType the_type) | |
249 { | |
250 GtkEnumValue *vals = gtk_type_enum_get_values (the_type); | |
251 Lisp_Object assoc = Qnil; | |
252 | |
253 if (NILP (Venumeration_info)) | |
254 { | |
255 Venumeration_info = call2 (intern ("make-hashtable"), make_int (100), Qequal); | |
256 } | |
257 | |
258 while (vals && vals->value_name) | |
259 { | |
260 assoc = Fcons (Fcons (intern (vals->value_nick), make_int (vals->value)), assoc); | |
261 assoc = Fcons (Fcons (intern (vals->value_name), make_int (vals->value)), assoc); | |
262 vals++; | |
263 } | |
264 | |
265 assoc = Fnreverse (assoc); | |
266 | |
267 Fputhash (make_int (the_type), assoc, Venumeration_info); | |
268 } | |
269 | |
270 static void | |
271 import_gtk_type (GtkType t) | |
272 { | |
273 if (type_already_imported_p (t)) | |
274 { | |
275 return; | |
276 } | |
277 | |
278 switch (GTK_FUNDAMENTAL_TYPE (t)) | |
279 { | |
280 case GTK_TYPE_ENUM: | |
281 case GTK_TYPE_FLAGS: | |
282 import_gtk_enumeration_internal (t); | |
283 break; | |
284 case GTK_TYPE_OBJECT: | |
285 import_gtk_object_internal (t); | |
286 break; | |
287 default: | |
288 break; | |
289 } | |
290 | |
291 mark_type_as_imported (t); | |
292 } | |
293 | |
294 | |
295 /* Foreign function calls */ | |
296 static emacs_ffi_data * | |
297 allocate_ffi_data (void) | |
298 { | |
5117
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3017
diff
changeset
|
299 Lisp_Object obj = ALLOC_LISP_OBJECT (emacs_ffi); |
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3017
diff
changeset
|
300 emacs_ffi_data *data = XFFI (obj); |
462 | 301 |
302 data->return_type = GTK_TYPE_NONE; | |
303 data->n_args = 0; | |
304 data->function_name = Qnil; | |
305 data->function_ptr = 0; | |
306 data->marshal = 0; | |
307 | |
308 return (data); | |
309 } | |
310 | |
1204 | 311 static const struct memory_description ffi_data_description [] = { |
312 { XD_LISP_OBJECT, offsetof (emacs_ffi_data, function_name) }, | |
934 | 313 { XD_END } |
314 }; | |
315 | |
462 | 316 static Lisp_Object |
317 mark_ffi_data (Lisp_Object obj) | |
318 { | |
319 emacs_ffi_data *data = (emacs_ffi_data *) XFFI (obj); | |
320 | |
321 mark_object (data->function_name); | |
322 return (Qnil); | |
323 } | |
324 | |
325 static void | |
2286 | 326 ffi_object_printer (Lisp_Object obj, Lisp_Object printcharfun, |
327 int UNUSED (escapeflag)) | |
462 | 328 { |
329 if (print_readably) | |
563 | 330 printing_unreadable_object ("#<ffi %p>", XFFI (obj)->function_ptr); |
462 | 331 |
800 | 332 write_fmt_string_lisp (printcharfun, "#<ffi %S", 1, XFFI (obj)->function_name); |
462 | 333 if (XFFI (obj)->n_args) |
800 | 334 write_fmt_string (printcharfun, " %d arguments", XFFI (obj)->n_args); |
335 write_fmt_string (printcharfun, " %p>", (void *)XFFI (obj)->function_ptr); | |
462 | 336 } |
337 | |
5118
e0db3c197671
merge up to latest default branch, doesn't compile yet
Ben Wing <ben@xemacs.org>
diff
changeset
|
338 DEFINE_NODUMP_LISP_OBJECT ("ffi", emacs_ffi, |
5117
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3017
diff
changeset
|
339 mark_ffi_data, ffi_object_printer, |
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3017
diff
changeset
|
340 0, 0, 0, |
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3017
diff
changeset
|
341 ffi_data_description, emacs_ffi_data); |
462 | 342 |
2054 | 343 #if defined (__cplusplus) |
344 #define MANY_ARGS ... | |
345 #else | |
346 #define MANY_ARGS | |
347 #endif | |
348 | |
349 typedef void (*pfv)(); | |
350 typedef GtkObject * (*__OBJECT_fn) (MANY_ARGS); | |
351 typedef gint (*__INT_fn) (MANY_ARGS); | |
352 typedef void (*__NONE_fn) (MANY_ARGS); | |
353 typedef gchar * (*__STRING_fn) (MANY_ARGS); | |
354 typedef gboolean (*__BOOL_fn) (MANY_ARGS); | |
355 typedef gfloat (*__FLOAT_fn) (MANY_ARGS); | |
356 typedef void * (*__POINTER_fn) (MANY_ARGS); | |
357 typedef GList * (*__LIST_fn) (MANY_ARGS); | |
462 | 358 |
359 /* An auto-generated file of marshalling functions. */ | |
360 #include "emacs-marshals.c" | |
2054 | 361 #undef MANY_ARGS |
462 | 362 |
363 #define CONVERT_SINGLE_TYPE(var,nam,tp) case GTK_TYPE_##nam: GTK_VALUE_##nam (var) = * (tp *) v; break; | |
364 #define CONVERT_RETVAL(a,freep) \ | |
365 do { \ | |
366 void *v = GTK_VALUE_POINTER(a); \ | |
367 switch (GTK_FUNDAMENTAL_TYPE (a.type)) \ | |
1726 | 368 { \ |
462 | 369 CONVERT_SINGLE_TYPE(a,CHAR,gchar); \ |
370 CONVERT_SINGLE_TYPE(a,UCHAR,guchar); \ | |
371 CONVERT_SINGLE_TYPE(a,BOOL,gboolean); \ | |
372 CONVERT_SINGLE_TYPE(a,INT,gint); \ | |
373 CONVERT_SINGLE_TYPE(a,UINT,guint); \ | |
374 CONVERT_SINGLE_TYPE(a,LONG,glong); \ | |
375 CONVERT_SINGLE_TYPE(a,ULONG,gulong); \ | |
376 CONVERT_SINGLE_TYPE(a,FLOAT,gfloat); \ | |
377 CONVERT_SINGLE_TYPE(a,DOUBLE,gdouble); \ | |
378 CONVERT_SINGLE_TYPE(a,STRING,gchar *); \ | |
379 CONVERT_SINGLE_TYPE(a,ENUM,gint); \ | |
380 CONVERT_SINGLE_TYPE(a,FLAGS,guint); \ | |
381 CONVERT_SINGLE_TYPE(a,BOXED,void *); \ | |
382 CONVERT_SINGLE_TYPE(a,POINTER,void *); \ | |
383 CONVERT_SINGLE_TYPE(a,OBJECT,GtkObject *); \ | |
1726 | 384 default: \ |
385 GTK_VALUE_POINTER (a) = * (void **) v; \ | |
462 | 386 break; \ |
1726 | 387 } \ |
388 if (freep) xfree(v, void *); \ | |
462 | 389 } while (0) |
390 | |
778 | 391 static gpointer __allocate_object_storage (GtkType t) |
462 | 392 { |
393 size_t s = 0; | |
394 void *rval = NULL; | |
395 | |
396 switch (GTK_FUNDAMENTAL_TYPE (t)) | |
397 { | |
398 /* flag types */ | |
399 case GTK_TYPE_CHAR: | |
400 s = (sizeof (gchar)); | |
401 break; | |
402 case GTK_TYPE_UCHAR: | |
403 s = (sizeof (guchar)); | |
404 break; | |
405 case GTK_TYPE_BOOL: | |
406 s = (sizeof (gboolean)); | |
407 break; | |
408 case GTK_TYPE_INT: | |
409 s = (sizeof (gint)); | |
410 break; | |
411 case GTK_TYPE_UINT: | |
412 s = (sizeof (guint)); | |
413 break; | |
414 case GTK_TYPE_LONG: | |
415 s = (sizeof (glong)); | |
416 break; | |
417 case GTK_TYPE_ULONG: | |
418 s = (sizeof (gulong)); | |
419 break; | |
420 case GTK_TYPE_FLOAT: | |
421 s = (sizeof (gfloat)); | |
422 break; | |
423 case GTK_TYPE_DOUBLE: | |
424 s = (sizeof (gdouble)); | |
425 break; | |
426 case GTK_TYPE_STRING: | |
427 s = (sizeof (gchar *)); | |
428 break; | |
429 case GTK_TYPE_ENUM: | |
430 case GTK_TYPE_FLAGS: | |
431 s = (sizeof (guint)); | |
432 break; | |
433 case GTK_TYPE_BOXED: | |
434 case GTK_TYPE_POINTER: | |
435 s = (sizeof (void *)); | |
436 break; | |
437 | |
438 /* base type of the object system */ | |
439 case GTK_TYPE_OBJECT: | |
440 s = (sizeof (GtkObject *)); | |
441 break; | |
442 | |
443 default: | |
2054 | 444 if (IS_XEMACS_GTK_FUNDAMENTAL_TYPE(t, GTK_TYPE_LISTOF)) |
462 | 445 { |
446 s = (sizeof (void *)); | |
447 } | |
448 rval = NULL; | |
449 break; | |
450 } | |
451 | |
452 if (s) | |
453 { | |
454 rval = xmalloc (s); | |
455 memset (rval, '\0', s); | |
456 } | |
457 | |
458 return (rval); | |
459 } | |
460 | |
778 | 461 static Lisp_Object type_to_marshaller_type (GtkType t) |
462 | 462 { |
463 switch (GTK_FUNDAMENTAL_TYPE (t)) | |
464 { | |
465 case GTK_TYPE_NONE: | |
466 return (build_string ("NONE")); | |
467 /* flag types */ | |
468 case GTK_TYPE_CHAR: | |
469 case GTK_TYPE_UCHAR: | |
470 return (build_string ("CHAR")); | |
471 case GTK_TYPE_BOOL: | |
472 return (build_string ("BOOL")); | |
473 case GTK_TYPE_ENUM: | |
474 case GTK_TYPE_FLAGS: | |
475 case GTK_TYPE_INT: | |
476 case GTK_TYPE_UINT: | |
477 return (build_string ("INT")); | |
478 case GTK_TYPE_LONG: | |
479 case GTK_TYPE_ULONG: | |
480 return (build_string ("LONG")); | |
481 case GTK_TYPE_FLOAT: | |
482 case GTK_TYPE_DOUBLE: | |
483 return (build_string ("FLOAT")); | |
484 case GTK_TYPE_STRING: | |
485 return (build_string ("STRING")); | |
486 case GTK_TYPE_BOXED: | |
487 case GTK_TYPE_POINTER: | |
488 return (build_string ("POINTER")); | |
489 case GTK_TYPE_OBJECT: | |
490 return (build_string ("OBJECT")); | |
491 case GTK_TYPE_CALLBACK: | |
492 return (build_string ("CALLBACK")); | |
493 default: | |
494 /* I can't put this in the main switch statement because it is a | |
495 new fundamental type that is not fixed at compile time. | |
496 *sigh* | |
497 */ | |
2054 | 498 if (IS_XEMACS_GTK_FUNDAMENTAL_TYPE(t, GTK_TYPE_ARRAY)) |
462 | 499 return (build_string ("ARRAY")); |
500 | |
2054 | 501 if (IS_XEMACS_GTK_FUNDAMENTAL_TYPE(t, GTK_TYPE_LISTOF)) |
462 | 502 return (build_string ("LIST")); |
503 return (Qnil); | |
504 } | |
505 } | |
506 | |
507 struct __dll_mapper_closure { | |
2054 | 508 void * (*func) (dll_handle, const CIbyte *); |
509 Ibyte *obj_name; | |
462 | 510 void **storage; |
511 }; | |
512 | |
2286 | 513 static void __dll_mapper (gpointer UNUSED (key), gpointer value, |
514 gpointer user_data) | |
462 | 515 { |
516 struct __dll_mapper_closure *closure = (struct __dll_mapper_closure *) user_data; | |
517 | |
518 if (*(closure->storage) == NULL) | |
519 { | |
520 /* Need to see if it is in this one */ | |
2054 | 521 *(closure->storage) = closure->func ((dll_handle) value, (CIbyte*) closure->obj_name); |
462 | 522 } |
523 } | |
524 | |
525 DEFUN ("gtk-import-variable-internal", Fgtk_import_variable_internal, 2, 2, 0, /* | |
526 Import a variable into the XEmacs namespace. | |
527 */ | |
528 (type, name)) | |
529 { | |
530 void *var = NULL; | |
531 GtkArg arg; | |
532 | |
533 if (SYMBOLP (type)) type = Fsymbol_name (type); | |
534 | |
535 CHECK_STRING (type); | |
536 CHECK_STRING (name); | |
537 | |
538 initialize_dll_cache (); | |
539 xemacs_init_gtk_classes (); | |
540 | |
541 arg.type = gtk_type_from_name ((char *) XSTRING_DATA (type)); | |
542 | |
543 if (arg.type == GTK_TYPE_INVALID) | |
544 { | |
563 | 545 sferror ("Unknown type", type); |
462 | 546 } |
547 | |
548 /* Need to look thru the already-loaded dlls */ | |
549 { | |
550 struct __dll_mapper_closure closure; | |
551 | |
552 closure.func = dll_variable; | |
553 closure.obj_name = XSTRING_DATA (name); | |
554 closure.storage = &var; | |
555 | |
556 g_hash_table_foreach (dll_cache, __dll_mapper, &closure); | |
557 } | |
558 | |
559 if (!var) | |
560 { | |
563 | 561 gui_error ("Could not locate variable", name); |
462 | 562 } |
563 | |
564 GTK_VALUE_POINTER(arg) = var; | |
565 CONVERT_RETVAL (arg, 0); | |
566 return (gtk_type_to_lisp (&arg)); | |
567 } | |
568 | |
569 DEFUN ("gtk-import-function-internal", Fgtk_import_function_internal, 2, 3, 0, /* | |
570 Import a function into the XEmacs namespace. | |
571 */ | |
572 (rettype, name, args)) | |
573 { | |
574 Lisp_Object rval = Qnil; | |
575 Lisp_Object marshaller = Qnil; | |
576 emacs_ffi_data *data = NULL; | |
577 gint n_args = 0; | |
578 #if 0 | |
579 dll_handle h = NULL; | |
580 #endif | |
581 ffi_marshalling_function marshaller_func = NULL; | |
582 ffi_actual_function name_func = NULL; | |
583 | |
584 CHECK_SYMBOL (rettype); | |
585 CHECK_STRING (name); | |
586 CHECK_LIST (args); | |
587 | |
588 initialize_dll_cache (); | |
589 xemacs_init_gtk_classes (); | |
590 | |
591 /* Need to look thru the already-loaded dlls */ | |
592 { | |
593 struct __dll_mapper_closure closure; | |
594 | |
595 closure.func = dll_function; | |
596 closure.obj_name = XSTRING_DATA (name); | |
597 closure.storage = (void **) &name_func; | |
598 | |
599 g_hash_table_foreach (dll_cache, __dll_mapper, &closure); | |
600 } | |
601 | |
602 if (!name_func) | |
603 { | |
563 | 604 gui_error ("Could not locate function", name); |
462 | 605 } |
606 | |
607 data = allocate_ffi_data (); | |
608 | |
609 if (NILP (rettype)) | |
610 { | |
611 rettype = Qvoid; | |
612 } | |
613 | |
614 if (!NILP (args)) | |
615 { | |
616 Lisp_Object value = args; | |
617 Lisp_Object type = Qnil; | |
618 | |
2367 | 619 EXTERNAL_LIST_LOOP_2 (elt, value) |
462 | 620 { |
621 GtkType the_type; | |
622 Lisp_Object marshaller_type = Qnil; | |
623 | |
2367 | 624 CHECK_SYMBOL (elt); |
462 | 625 |
2367 | 626 type = Fsymbol_name (elt); |
462 | 627 |
628 the_type = gtk_type_from_name ((char *) XSTRING_DATA (type)); | |
629 | |
630 if (the_type == GTK_TYPE_INVALID) | |
631 { | |
563 | 632 invalid_argument ("Unknown argument type", type); |
462 | 633 } |
634 | |
635 /* All things must be reduced to their basest form... */ | |
636 import_gtk_type (the_type); | |
637 data->args[n_args] = the_type; /* GTK_FUNDAMENTAL_TYPE (the_type); */ | |
638 | |
639 /* Now lets build up another chunk of our marshaller function name */ | |
640 marshaller_type = type_to_marshaller_type (data->args[n_args]); | |
641 | |
642 if (NILP (marshaller_type)) | |
643 { | |
563 | 644 invalid_argument ("Do not know how to marshal", type); |
462 | 645 } |
646 marshaller = concat3 (marshaller, build_string ("_"), marshaller_type); | |
647 n_args++; | |
648 } | |
649 } | |
650 else | |
651 { | |
652 marshaller = concat3 (marshaller, build_string ("_"), type_to_marshaller_type (GTK_TYPE_NONE)); | |
653 } | |
654 | |
655 rettype = Fsymbol_name (rettype); | |
656 data->return_type = gtk_type_from_name ((char *) XSTRING_DATA (rettype)); | |
657 | |
658 if (data->return_type == GTK_TYPE_INVALID) | |
659 { | |
563 | 660 invalid_argument ("Unknown return type", rettype); |
462 | 661 } |
662 | |
663 import_gtk_type (data->return_type); | |
664 | |
665 marshaller = concat3 (type_to_marshaller_type (data->return_type), build_string ("_"), marshaller); | |
666 marshaller = concat2 (build_string ("emacs_gtk_marshal_"), marshaller); | |
667 | |
668 marshaller_func = (ffi_marshalling_function) find_marshaller ((char *) XSTRING_DATA (marshaller)); | |
669 | |
670 if (!marshaller_func) | |
671 { | |
563 | 672 gui_error ("Could not locate marshaller function", marshaller); |
462 | 673 } |
674 | |
675 data->n_args = n_args; | |
676 data->function_name = name; | |
2054 | 677 data->function_ptr = (dll_func) name_func; |
462 | 678 data->marshal = marshaller_func; |
679 | |
797 | 680 rval = wrap_emacs_ffi (data); |
462 | 681 return (rval); |
682 } | |
683 | |
684 DEFUN ("gtk-call-function", Fgtk_call_function, 1, 2, 0, /* | |
685 Call an external function. | |
686 */ | |
687 (func, args)) | |
688 { | |
689 GtkArg the_args[MAX_GTK_ARGS]; | |
690 gint n_args = 0; | |
691 Lisp_Object retval = Qnil; | |
692 | |
693 CHECK_FFI (func); | |
694 CHECK_LIST (args); | |
695 | |
696 n_args = XINT (Flength (args)); | |
697 | |
698 #ifdef XEMACS_IS_SMARTER_THAN_THE_PROGRAMMER | |
699 /* #### I think this is too dangerous to enable by default. | |
700 ** #### Genuine program bugs would probably be allowed to | |
701 ** #### slip by, and not be very easy to find. | |
702 ** #### Bill Perry July 9, 2000 | |
703 */ | |
704 if (n_args != XFFI(func)->n_args) | |
705 { | |
706 Lisp_Object for_append[3]; | |
707 | |
708 /* Signal an error if they pass in too many arguments */ | |
709 if (n_args > XFFI(func)->n_args) | |
710 { | |
711 return Fsignal (Qwrong_number_of_arguments, | |
712 list2 (func, make_int (n_args))); | |
713 } | |
714 | |
715 /* If they did not provide enough arguments, be nice and assume | |
716 ** they wanted `nil' in there. | |
717 */ | |
718 for_append[0] = args; | |
719 for_append[1] = Fmake_list (make_int (XFFI(func)->n_args - n_args), Qnil); | |
720 | |
721 args = Fappend (2, for_append); | |
722 } | |
723 #else | |
724 if (n_args != XFFI(func)->n_args) | |
725 { | |
726 /* Signal an error if they do not pass in the correct # of arguments */ | |
727 return Fsignal (Qwrong_number_of_arguments, | |
728 list2 (func, make_int (n_args))); | |
729 } | |
730 #endif | |
731 | |
732 if (!NILP (args)) | |
733 { | |
734 Lisp_Object value = args; | |
735 | |
736 CHECK_LIST (args); | |
737 n_args = 0; | |
738 | |
739 /* First we convert all of the arguments from Lisp to GtkArgs */ | |
2367 | 740 { |
741 EXTERNAL_LIST_LOOP_2 (elt, value) | |
742 { | |
743 the_args[n_args].type = XFFI (func)->args[n_args]; | |
462 | 744 |
2367 | 745 if (lisp_to_gtk_type (elt, &the_args[n_args])) |
746 { | |
747 /* There was some sort of an error */ | |
748 gui_error ("Error converting arguments", args); | |
749 } | |
750 n_args++; | |
751 } | |
752 } | |
462 | 753 } |
754 | |
755 /* Now we need to tack on space for a return value, if they have | |
756 asked for one */ | |
757 if (XFFI (func)->return_type != GTK_TYPE_NONE) | |
758 { | |
759 the_args[n_args].type = XFFI (func)->return_type; | |
760 GTK_VALUE_POINTER (the_args[n_args]) = __allocate_object_storage (the_args[n_args].type); | |
761 n_args++; | |
762 } | |
763 | |
764 XFFI (func)->marshal ((ffi_actual_function) (XFFI (func)->function_ptr), the_args); | |
765 | |
766 if (XFFI (func)->return_type != GTK_TYPE_NONE) | |
767 { | |
768 CONVERT_RETVAL (the_args[n_args - 1], 1); | |
769 retval = gtk_type_to_lisp (&the_args[n_args - 1]); | |
770 } | |
771 | |
772 /* Need to free any array or list pointers */ | |
773 { | |
774 int i; | |
775 for (i = 0; i < n_args; i++) | |
776 { | |
2054 | 777 if (IS_XEMACS_GTK_FUNDAMENTAL_TYPE(the_args[i].type, GTK_TYPE_ARRAY)) |
462 | 778 { |
779 g_free (GTK_VALUE_POINTER (the_args[i])); | |
780 } | |
2054 | 781 else if (IS_XEMACS_GTK_FUNDAMENTAL_TYPE(the_args[i].type, GTK_TYPE_LISTOF)) |
462 | 782 { |
783 /* g_list_free (GTK_VALUE_POINTER (the_args[i])); */ | |
784 } | |
785 } | |
786 } | |
787 | |
788 return (retval); | |
789 } | |
790 | |
791 | |
792 | |
793 /* GtkObject wrapping for Lisp */ | |
794 static void | |
2286 | 795 emacs_gtk_object_printer (Lisp_Object obj, Lisp_Object printcharfun, |
796 int UNUSED (escapeflag)) | |
462 | 797 { |
798 if (print_readably) | |
563 | 799 printing_unreadable_object ("#<GtkObject %p>", XGTK_OBJECT (obj)->object); |
462 | 800 |
826 | 801 write_c_string (printcharfun, "#<GtkObject ("); |
462 | 802 if (XGTK_OBJECT (obj)->alive_p) |
826 | 803 write_c_string (printcharfun, gtk_type_name (GTK_OBJECT_TYPE (XGTK_OBJECT (obj)->object))); |
462 | 804 else |
826 | 805 write_c_string (printcharfun, "dead"); |
800 | 806 write_fmt_string (printcharfun, ") %p>", (void *) XGTK_OBJECT (obj)->object); |
462 | 807 } |
808 | |
809 static Lisp_Object | |
810 object_getprop (Lisp_Object obj, Lisp_Object prop) | |
811 { | |
812 Lisp_Object rval = Qnil; | |
813 Lisp_Object prop_name = Qnil; | |
814 GtkArgInfo *info = NULL; | |
815 char *err; | |
816 GtkArg args[2]; | |
817 | |
818 CHECK_SYMBOL (prop); /* Shouldn't need to ever do this, but I'm paranoid */ | |
819 | |
820 prop_name = Fsymbol_name (prop); | |
821 | |
822 args[0].name = (char *) XSTRING_DATA (prop_name); | |
823 | |
824 err = gtk_object_arg_get_info (GTK_OBJECT_TYPE (XGTK_OBJECT (obj)->object), | |
825 args[0].name, | |
826 &info); | |
827 | |
828 if (err) | |
829 { | |
830 /* Not a magic symbol, fall back to just looking in our real plist */ | |
831 g_free (err); | |
832 | |
833 return (Fplist_get (XGTK_OBJECT (obj)->plist, prop, Qunbound)); | |
834 } | |
835 | |
836 if (!(info->arg_flags & GTK_ARG_READABLE)) | |
837 { | |
563 | 838 invalid_operation ("Attempt to get write-only property", prop); |
462 | 839 } |
840 | |
841 gtk_object_getv (XGTK_OBJECT (obj)->object, 1, args); | |
842 | |
843 if (args[0].type == GTK_TYPE_INVALID) | |
844 { | |
845 /* If we can't get the attribute, then let the code in Fget know | |
846 so it can use the default value supplied by the caller */ | |
847 return (Qunbound); | |
848 } | |
849 | |
850 rval = gtk_type_to_lisp (&args[0]); | |
851 | |
852 /* Free up any memory. According to the documentation and Havoc's | |
853 book, if the fundamental type of the returned value is | |
854 GTK_TYPE_STRING, GTK_TYPE_BOXED, or GTK_TYPE_ARGS, you are | |
855 responsible for freeing it. */ | |
856 switch (GTK_FUNDAMENTAL_TYPE (args[0].type)) | |
857 { | |
858 case GTK_TYPE_STRING: | |
859 g_free (GTK_VALUE_STRING (args[0])); | |
860 break; | |
861 case GTK_TYPE_BOXED: | |
862 g_free (GTK_VALUE_BOXED (args[0])); | |
863 break; | |
864 case GTK_TYPE_ARGS: | |
865 g_free (GTK_VALUE_ARGS (args[0]).args); | |
866 default: | |
867 break; | |
868 } | |
869 | |
870 return (rval); | |
871 } | |
872 | |
873 static int | |
874 object_putprop (Lisp_Object obj, Lisp_Object prop, Lisp_Object value) | |
875 { | |
876 GtkArgInfo *info = NULL; | |
877 Lisp_Object prop_name = Qnil; | |
878 GtkArg args[2]; | |
879 char *err = NULL; | |
880 | |
881 prop_name = Fsymbol_name (prop); | |
882 | |
883 args[0].name = (char *) XSTRING_DATA (prop_name); | |
884 | |
885 err = gtk_object_arg_get_info (GTK_OBJECT_TYPE (XGTK_OBJECT (obj)->object), | |
886 args[0].name, | |
887 &info); | |
888 | |
889 if (err) | |
890 { | |
891 /* Not a magic symbol, fall back to just storing in our real plist */ | |
892 g_free (err); | |
893 | |
894 XGTK_OBJECT (obj)->plist = Fplist_put (XGTK_OBJECT (obj)->plist, prop, value); | |
895 return (1); | |
896 } | |
897 | |
898 args[0].type = info->type; | |
899 | |
900 if (lisp_to_gtk_type (value, &args[0])) | |
901 { | |
563 | 902 gui_error ("Error converting to GtkType", value); |
462 | 903 } |
904 | |
905 if (!(info->arg_flags & GTK_ARG_WRITABLE)) | |
906 { | |
563 | 907 invalid_operation ("Attempt to set read-only argument", prop); |
462 | 908 } |
909 | |
910 gtk_object_setv (XGTK_OBJECT (obj)->object, 1, args); | |
911 | |
912 return (1); | |
913 } | |
914 | |
1204 | 915 static const struct memory_description gtk_object_data_description [] = { |
916 { XD_LISP_OBJECT, offsetof (emacs_gtk_object_data, plist) }, | |
934 | 917 { XD_END } |
918 }; | |
919 | |
462 | 920 static Lisp_Object |
921 mark_gtk_object_data (Lisp_Object obj) | |
922 { | |
923 return (XGTK_OBJECT (obj)->plist); | |
924 } | |
925 | |
926 static void | |
927 emacs_gtk_object_finalizer (void *header, int for_disksave) | |
928 { | |
929 emacs_gtk_object_data *data = (emacs_gtk_object_data *) header; | |
930 | |
931 if (for_disksave) | |
932 { | |
797 | 933 Lisp_Object obj = wrap_emacs_gtk_object (data); |
793 | 934 |
462 | 935 |
563 | 936 invalid_operation |
462 | 937 ("Can't dump an emacs containing GtkObject objects", obj); |
938 } | |
939 | |
940 if (data->alive_p) | |
941 { | |
942 gtk_object_unref (data->object); | |
943 } | |
944 } | |
945 | |
5118
e0db3c197671
merge up to latest default branch, doesn't compile yet
Ben Wing <ben@xemacs.org>
diff
changeset
|
946 DEFINE_NODUMP_LISP_OBJECT_WITH_PROPS ("GtkObject", emacs_gtk_object, |
5117
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3017
diff
changeset
|
947 mark_gtk_object_data, |
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3017
diff
changeset
|
948 emacs_gtk_object_printer, |
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3017
diff
changeset
|
949 emacs_gtk_object_finalizer, |
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3017
diff
changeset
|
950 0, /* equality */ |
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3017
diff
changeset
|
951 0, /* hash */ |
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3017
diff
changeset
|
952 gtk_object_data_description, |
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3017
diff
changeset
|
953 object_getprop, |
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3017
diff
changeset
|
954 object_putprop, |
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3017
diff
changeset
|
955 0, /* rem prop */ |
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3017
diff
changeset
|
956 0, /* plist */ |
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3017
diff
changeset
|
957 emacs_gtk_object_data); |
462 | 958 |
959 static emacs_gtk_object_data * | |
960 allocate_emacs_gtk_object_data (void) | |
961 { | |
5117
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3017
diff
changeset
|
962 Lisp_Object obj = ALLOC_LISP_OBJECT (emacs_gtk_object); |
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3017
diff
changeset
|
963 emacs_gtk_object_data *data = XGTK_OBJECT (obj); |
462 | 964 |
965 data->object = NULL; | |
966 data->alive_p = FALSE; | |
967 data->plist = Qnil; | |
968 | |
969 return (data); | |
970 } | |
971 | |
972 /* We need to keep track of when the object is destroyed so that we | |
973 can mark it as dead, otherwise even our print routine (which calls | |
974 GTK_OBJECT_TYPE) will crap out and die. This is also used in the | |
975 lisp_to_gtk_type() routine to defend against passing dead objects | |
976 to GTK routines. */ | |
977 static void | |
2286 | 978 __notice_object_destruction (GtkObject *UNUSED (obj), gpointer user_data) |
462 | 979 { |
980 ungcpro_popup_callbacks ((GUI_ID) user_data); | |
981 } | |
982 | |
983 Lisp_Object build_gtk_object (GtkObject *obj) | |
984 { | |
985 Lisp_Object retval = Qnil; | |
986 emacs_gtk_object_data *data = NULL; | |
987 GUI_ID id = 0; | |
988 | |
2168 | 989 id = (GUI_ID) gtk_object_get_data (obj, GTK_DATA_GUI_IDENTIFIER); |
462 | 990 |
991 if (id) | |
992 { | |
993 retval = get_gcpro_popup_callbacks (id); | |
994 } | |
995 | |
996 if (NILP (retval)) | |
997 { | |
998 data = allocate_emacs_gtk_object_data (); | |
999 | |
1000 data->object = obj; | |
1001 data->alive_p = TRUE; | |
797 | 1002 retval = wrap_emacs_gtk_object (data); |
462 | 1003 |
1004 id = new_gui_id (); | |
2168 | 1005 gtk_object_set_data (obj, GTK_DATA_GUI_IDENTIFIER, (gpointer) id); |
462 | 1006 gcpro_popup_callbacks (id, retval); |
1007 gtk_object_ref (obj); | |
1008 gtk_signal_connect (obj, "destroy", GTK_SIGNAL_FUNC (__notice_object_destruction), (gpointer)id); | |
1009 } | |
1010 | |
1011 return (retval); | |
1012 } | |
1013 | |
1014 static void | |
1015 __internal_callback_destroy (gpointer data) | |
1016 { | |
1017 Lisp_Object lisp_data; | |
1018 | |
826 | 1019 lisp_data = VOID_TO_LISP (data); |
462 | 1020 |
1021 ungcpro_popup_callbacks (XINT (XCAR (lisp_data))); | |
1022 } | |
1023 | |
1024 static void | |
1025 __internal_callback_marshal (GtkObject *obj, gpointer data, guint n_args, GtkArg *args) | |
1026 { | |
1027 Lisp_Object arg_list = Qnil; | |
1028 Lisp_Object callback_fn = Qnil; | |
1029 Lisp_Object callback_data = Qnil; | |
1030 Lisp_Object newargs[3]; | |
1031 Lisp_Object rval = Qnil; | |
1032 struct gcpro gcpro1; | |
1033 int i; | |
1034 | |
826 | 1035 callback_fn = VOID_TO_LISP (data); |
462 | 1036 |
1037 /* Nuke the GUI_ID off the front */ | |
1038 callback_fn = XCDR (callback_fn); | |
1039 | |
1040 callback_data = XCAR (callback_fn); | |
1041 callback_fn = XCDR (callback_fn); | |
1042 | |
1043 /* The callback data goes at the very end of the argument list */ | |
1044 arg_list = Fcons (callback_data, Qnil); | |
1045 | |
1046 /* Build up the argument list, lisp style */ | |
1047 for (i = n_args - 1; i >= 0; i--) | |
1048 { | |
1049 arg_list = Fcons (gtk_type_to_lisp (&args[i]), arg_list); | |
1050 } | |
1051 | |
1052 /* We always pass the widget as the first parameter at the very least */ | |
1053 arg_list = Fcons (build_gtk_object (obj), arg_list); | |
1054 | |
1055 GCPRO1 ((arg_list)); | |
1056 | |
1057 newargs[0] = callback_fn; | |
1058 newargs[1] = arg_list; | |
1059 | |
1060 rval = Fapply (2, newargs); | |
1061 signal_fake_event (); | |
1062 | |
1063 if (args[n_args].type != GTK_TYPE_NONE) | |
1883 | 1064 lisp_to_gtk_ret_type (rval, &args[n_args]); |
462 | 1065 |
1066 UNGCPRO; | |
1067 } | |
1068 | |
1069 DEFUN ("gtk-signal-connect", Fgtk_signal_connect, 3, 6, 0, /* | |
1070 */ | |
1071 (obj, name, func, cb_data, object_signal, after_p)) | |
1072 { | |
1073 int c_after; | |
1074 int c_object_signal; | |
1075 GUI_ID id = 0; | |
1076 | |
1077 CHECK_GTK_OBJECT (obj); | |
1078 | |
1079 if (SYMBOLP (name)) | |
1080 name = Fsymbol_name (name); | |
1081 | |
1082 CHECK_STRING (name); | |
1083 | |
1084 if (NILP (object_signal)) | |
1085 c_object_signal = 0; | |
1086 else | |
1087 c_object_signal = 1; | |
1088 | |
1089 if (NILP (after_p)) | |
1090 c_after = 0; | |
1091 else | |
1092 c_after = 1; | |
1093 | |
1094 id = new_gui_id (); | |
1095 func = Fcons (cb_data, func); | |
1096 func = Fcons (make_int (id), func); | |
1097 | |
1098 gcpro_popup_callbacks (id, func); | |
1099 | |
1100 gtk_signal_connect_full (XGTK_OBJECT (obj)->object, (char *) XSTRING_DATA (name), | |
1101 NULL, __internal_callback_marshal, LISP_TO_VOID (func), | |
1102 __internal_callback_destroy, c_object_signal, c_after); | |
1103 return (Qt); | |
1104 } | |
1105 | |
1106 | |
1107 /* GTK_TYPE_BOXED wrapper for Emacs lisp */ | |
1204 | 1108 static const struct memory_description emacs_gtk_boxed_description [] = { |
960 | 1109 { XD_END } |
1110 }; | |
1111 | |
462 | 1112 static void |
2286 | 1113 emacs_gtk_boxed_printer (Lisp_Object obj, Lisp_Object printcharfun, |
1114 int UNUSED (escapeflag)) | |
462 | 1115 { |
1116 if (print_readably) | |
563 | 1117 printing_unreadable_object ("#<GtkBoxed %p>", XGTK_BOXED (obj)->object); |
462 | 1118 |
826 | 1119 write_c_string (printcharfun, "#<GtkBoxed ("); |
1120 write_c_string (printcharfun, gtk_type_name (XGTK_BOXED (obj)->object_type)); | |
800 | 1121 write_fmt_string (printcharfun, ") %p>", (void *) XGTK_BOXED (obj)->object); |
462 | 1122 } |
1123 | |
1124 static int | |
2286 | 1125 emacs_gtk_boxed_equality (Lisp_Object o1, Lisp_Object o2, int UNUSED (depth)) |
462 | 1126 { |
1127 emacs_gtk_boxed_data *data1 = XGTK_BOXED(o1); | |
1128 emacs_gtk_boxed_data *data2 = XGTK_BOXED(o2); | |
1129 | |
1130 return ((data1->object == data2->object) && | |
1131 (data1->object_type == data2->object_type)); | |
1132 } | |
1133 | |
2515 | 1134 static Hashcode |
2286 | 1135 emacs_gtk_boxed_hash (Lisp_Object obj, int UNUSED (depth)) |
462 | 1136 { |
1137 emacs_gtk_boxed_data *data = XGTK_BOXED(obj); | |
2515 | 1138 return (HASH2 ((Hashcode) data->object, data->object_type)); |
462 | 1139 } |
1140 | |
5118
e0db3c197671
merge up to latest default branch, doesn't compile yet
Ben Wing <ben@xemacs.org>
diff
changeset
|
1141 DEFINE_NODUMP_LISP_OBJECT_WITH_PROPS ("GtkBoxed", emacs_gtk_boxed, |
5117
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3017
diff
changeset
|
1142 0, /* marker function */ |
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3017
diff
changeset
|
1143 emacs_gtk_boxed_printer, |
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3017
diff
changeset
|
1144 0, /* nuker */ |
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3017
diff
changeset
|
1145 emacs_gtk_boxed_equality, |
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3017
diff
changeset
|
1146 emacs_gtk_boxed_hash, |
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3017
diff
changeset
|
1147 emacs_gtk_boxed_description, |
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3017
diff
changeset
|
1148 0, /* get prop */ |
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3017
diff
changeset
|
1149 0, /* put prop */ |
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3017
diff
changeset
|
1150 0, /* rem prop */ |
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3017
diff
changeset
|
1151 0, /* plist */ |
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3017
diff
changeset
|
1152 emacs_gtk_boxed_data); |
462 | 1153 /* Currently defined GTK_TYPE_BOXED structures are: |
1154 | |
1155 GtkAccelGroup - | |
1156 GtkSelectionData - | |
1157 GtkStyle - | |
1158 GtkCTreeNode - | |
1159 GdkColormap - | |
1160 GdkVisual - | |
1161 GdkFont - | |
1162 GdkWindow - | |
1163 GdkDragContext - | |
1164 GdkEvent - | |
1165 GdkColor - | |
1166 */ | |
1167 static emacs_gtk_boxed_data * | |
1168 allocate_emacs_gtk_boxed_data (void) | |
1169 { | |
5117
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3017
diff
changeset
|
1170 Lisp_Object obj = ALLOC_LISP_OBJECT (emacs_gtk_boxed); |
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3017
diff
changeset
|
1171 emacs_gtk_boxed_data *data = XGTK_BOXED (obj); |
462 | 1172 |
1173 data->object = NULL; | |
1174 data->object_type = GTK_TYPE_INVALID; | |
1175 | |
1176 return (data); | |
1177 } | |
1178 | |
1179 Lisp_Object build_gtk_boxed (void *obj, GtkType t) | |
1180 { | |
1181 Lisp_Object retval = Qnil; | |
1182 emacs_gtk_boxed_data *data = NULL; | |
1183 | |
1184 if (GTK_FUNDAMENTAL_TYPE (t) != GTK_TYPE_BOXED) | |
2500 | 1185 ABORT(); |
462 | 1186 |
1187 data = allocate_emacs_gtk_boxed_data (); | |
1188 data->object = obj; | |
1189 data->object_type = t; | |
1190 | |
797 | 1191 retval = wrap_emacs_gtk_boxed (data); |
462 | 1192 |
1193 return (retval); | |
1194 } | |
1195 | |
1196 | |
1197 /* The automatically generated structure access routines */ | |
1198 #include "emacs-widget-accessors.c" | |
1199 | |
1200 /* The hand generated funky functions that we can't just import using the FFI */ | |
1201 #include "ui-byhand.c" | |
1202 | |
1203 /* The glade support */ | |
1204 #include "glade.c" | |
1205 | |
1206 | |
1207 /* Type manipulation */ | |
1208 DEFUN ("gtk-fundamental-type", Fgtk_fundamental_type, 1, 1, 0, /* | |
1209 Load a shared library DLL into XEmacs. No initialization routines are required. | |
1210 This is for loading dependency DLLs into XEmacs. | |
1211 */ | |
1212 (type)) | |
1213 { | |
1214 GtkType t; | |
1215 | |
1216 if (SYMBOLP (type)) | |
1217 type = Fsymbol_name (type); | |
1218 | |
1219 CHECK_STRING (type); | |
1220 | |
1221 t = gtk_type_from_name ((char *) XSTRING_DATA (type)); | |
1222 | |
1223 if (t == GTK_TYPE_INVALID) | |
1224 { | |
563 | 1225 invalid_argument ("Not a GTK type", type); |
462 | 1226 } |
1227 return (make_int (GTK_FUNDAMENTAL_TYPE (t))); | |
1228 } | |
1229 | |
1230 DEFUN ("gtk-object-type", Fgtk_object_type, 1, 1, 0, /* | |
1231 Return the GtkType of OBJECT. | |
1232 */ | |
1233 (object)) | |
1234 { | |
1235 CHECK_GTK_OBJECT (object); | |
1236 return (make_int (GTK_OBJECT_TYPE (XGTK_OBJECT (object)->object))); | |
1237 } | |
1238 | |
1239 DEFUN ("gtk-describe-type", Fgtk_describe_type, 1, 1, 0, /* | |
1240 Returns a cons of two lists describing the Gtk object TYPE. | |
1241 The car is a list of all the signals that it will emit. | |
1242 The cdr is a list of all the magic properties it has. | |
1243 */ | |
1244 (type)) | |
1245 { | |
1246 Lisp_Object rval, signals, props; | |
1247 GtkType t; | |
1248 | |
1249 props = signals = rval = Qnil; | |
1250 | |
1251 if (SYMBOLP (type)) | |
1252 { | |
1253 type = Fsymbol_name (type); | |
1254 } | |
1255 | |
1256 if (STRINGP (type)) | |
1257 { | |
2054 | 1258 t = gtk_type_from_name ((gchar*) XSTRING_DATA (type)); |
462 | 1259 if (t == GTK_TYPE_INVALID) |
1260 { | |
563 | 1261 invalid_argument ("Not a GTK type", type); |
462 | 1262 } |
1263 } | |
1264 else | |
1265 { | |
1266 CHECK_INT (type); | |
1267 t = XINT (type); | |
1268 } | |
1269 | |
1270 if (GTK_FUNDAMENTAL_TYPE (t) != GTK_TYPE_OBJECT) | |
1271 { | |
563 | 1272 invalid_argument ("Not a GtkObject", type); |
462 | 1273 } |
1274 | |
1275 /* Need to do stupid shit like this to get the args | |
1276 ** registered... damn GTK and its lazy loading | |
1277 */ | |
1278 { | |
1279 GtkArg args[3]; | |
1280 GtkObject *obj = gtk_object_newv (t, 0, args); | |
1281 | |
1282 gtk_object_destroy(obj); | |
1283 } | |
1284 | |
1285 do | |
1286 { | |
1287 guint i; | |
1288 | |
1289 /* Do the magic arguments first */ | |
1290 { | |
1291 GtkArg *args; | |
1292 guint32 *flags; | |
1293 guint n_args; | |
1294 | |
1295 args = gtk_object_query_args(t,&flags,&n_args); | |
1296 | |
1297 for (i = 0; i < n_args; i++) | |
1298 { | |
1299 props = Fcons (Fcons (intern (gtk_type_name(args[i].type)), | |
1300 intern (args[i].name)), props); | |
1301 } | |
1302 | |
1303 g_free (args); | |
1304 g_free (flags); | |
1305 } | |
1306 | |
1307 /* Now the signals */ | |
1308 { | |
1309 GtkObjectClass *klass; | |
1310 GtkSignalQuery *query; | |
1311 guint32 *gtk_signals; | |
1312 guint n_signals; | |
1313 | |
1314 klass = (GtkObjectClass *) gtk_type_class (t); | |
1315 gtk_signals = klass->signals; | |
1316 n_signals = klass->nsignals; | |
1317 | |
1318 for (i = 0; i < n_signals; i++) | |
1319 { | |
1320 Lisp_Object params = Qnil; | |
1321 | |
1322 query = gtk_signal_query (gtk_signals[i]); | |
1323 | |
1324 if (query) | |
1325 { | |
1326 if (query->nparams) | |
1327 { | |
1328 int j; | |
1329 | |
1330 for (j = query->nparams - 1; j >= 0; j--) | |
1331 { | |
1332 params = Fcons (intern (gtk_type_name (query->params[j])), params); | |
1333 } | |
1334 } | |
1335 | |
1336 signals = Fcons (Fcons (intern (gtk_type_name (query->return_val)), | |
1337 Fcons (intern (query->signal_name), | |
1338 params)), | |
1339 signals); | |
1340 | |
1341 g_free (query); | |
1342 } | |
1343 } | |
1344 } | |
1345 t = gtk_type_parent(t); | |
1346 } while (t != GTK_TYPE_INVALID); | |
1347 | |
1348 rval = Fcons (signals, props); | |
1349 | |
1350 return (rval); | |
1351 } | |
1352 | |
1353 | |
1354 void | |
1355 syms_of_ui_gtk (void) | |
1356 { | |
5117
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3017
diff
changeset
|
1357 INIT_LISP_OBJECT (emacs_ffi); |
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3017
diff
changeset
|
1358 INIT_LISP_OBJECT (emacs_gtk_object); |
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3017
diff
changeset
|
1359 INIT_LISP_OBJECT (emacs_gtk_boxed); |
563 | 1360 DEFSYMBOL_MULTIWORD_PREDICATE (Qemacs_ffip); |
1361 DEFSYMBOL_MULTIWORD_PREDICATE (Qemacs_gtk_objectp); | |
1362 DEFSYMBOL_MULTIWORD_PREDICATE (Qemacs_gtk_boxedp); | |
1363 DEFSYMBOL (Qvoid); | |
462 | 1364 DEFSUBR (Fdll_load); |
1365 DEFSUBR (Fgtk_import_function_internal); | |
1366 DEFSUBR (Fgtk_import_variable_internal); | |
1367 DEFSUBR (Fgtk_signal_connect); | |
1368 DEFSUBR (Fgtk_call_function); | |
1369 DEFSUBR (Fgtk_fundamental_type); | |
1370 DEFSUBR (Fgtk_object_type); | |
1371 DEFSUBR (Fgtk_describe_type); | |
1372 syms_of_widget_accessors (); | |
1373 syms_of_ui_byhand (); | |
1374 syms_of_glade (); | |
1375 } | |
1376 | |
1377 void | |
1378 vars_of_ui_gtk (void) | |
1379 { | |
1380 Fprovide (intern ("gtk-ui")); | |
1381 DEFVAR_LISP ("gtk-enumeration-info", &Venumeration_info /* | |
1382 A hashtable holding type information about GTK enumerations and flags. | |
1383 Do NOT modify unless you really understand ui-gtk.c. | |
1384 */); | |
1385 | |
1386 Venumeration_info = Qnil; | |
1387 vars_of_glade (); | |
1388 } | |
1389 | |
1390 | |
1391 /* Various utility functions */ | |
778 | 1392 #if 0 |
462 | 1393 void describe_gtk_arg (GtkArg *arg) |
1394 { | |
1395 GtkArg a = *arg; | |
1396 | |
1397 switch (GTK_FUNDAMENTAL_TYPE (a.type)) | |
1398 { | |
1399 /* flag types */ | |
1400 case GTK_TYPE_CHAR: | |
1401 stderr_out ("char: %c\n", GTK_VALUE_CHAR (a)); | |
1402 break; | |
1403 case GTK_TYPE_UCHAR: | |
1404 stderr_out ("uchar: %c\n", GTK_VALUE_CHAR (a)); | |
1405 break; | |
1406 case GTK_TYPE_BOOL: | |
1407 stderr_out ("uchar: %s\n", GTK_VALUE_BOOL (a) ? "true" : "false"); | |
1408 break; | |
1409 case GTK_TYPE_INT: | |
1410 stderr_out ("int: %d\n", GTK_VALUE_INT (a)); | |
1411 break; | |
1412 case GTK_TYPE_UINT: | |
1413 stderr_out ("uint: %du\n", GTK_VALUE_UINT (a)); | |
1414 break; | |
1415 case GTK_TYPE_LONG: | |
1416 stderr_out ("long: %ld\n", GTK_VALUE_LONG (a)); | |
1417 break; | |
1418 case GTK_TYPE_ULONG: | |
1419 stderr_out ("ulong: %lu\n", GTK_VALUE_ULONG (a)); | |
1420 break; | |
1421 case GTK_TYPE_FLOAT: | |
1422 stderr_out ("float: %g\n", GTK_VALUE_FLOAT (a)); | |
1423 break; | |
1424 case GTK_TYPE_DOUBLE: | |
1425 stderr_out ("double: %f\n", GTK_VALUE_DOUBLE (a)); | |
1426 break; | |
1427 case GTK_TYPE_STRING: | |
1428 stderr_out ("string: %s\n", GTK_VALUE_STRING (a)); | |
1429 break; | |
1430 case GTK_TYPE_ENUM: | |
1431 case GTK_TYPE_FLAGS: | |
1432 stderr_out ("%s: ", (a.type == GTK_TYPE_ENUM) ? "enum" : "flag"); | |
1433 { | |
1434 GtkEnumValue *vals = gtk_type_enum_get_values (a.type); | |
1435 | |
1436 while (vals && vals->value_name && (vals->value != GTK_VALUE_ENUM(a))) vals++; | |
1437 | |
1438 stderr_out ("%s\n", vals ? vals->value_name : "!!! UNKNOWN ENUM VALUE !!!"); | |
1439 } | |
1440 break; | |
1441 case GTK_TYPE_BOXED: | |
1442 stderr_out ("boxed: %p\n", GTK_VALUE_BOXED (a)); | |
1443 break; | |
1444 case GTK_TYPE_POINTER: | |
1445 stderr_out ("pointer: %p\n", GTK_VALUE_BOXED (a)); | |
1446 break; | |
1447 | |
1448 /* structured types */ | |
1449 case GTK_TYPE_SIGNAL: | |
1450 case GTK_TYPE_ARGS: /* This we can do as a list of values */ | |
2500 | 1451 ABORT(); |
462 | 1452 case GTK_TYPE_CALLBACK: |
1453 stderr_out ("callback fn: ...\n"); | |
1454 break; | |
1455 case GTK_TYPE_C_CALLBACK: | |
1456 case GTK_TYPE_FOREIGN: | |
2500 | 1457 ABORT(); |
462 | 1458 |
1459 /* base type of the object system */ | |
1460 case GTK_TYPE_OBJECT: | |
1461 if (GTK_VALUE_OBJECT (a)) | |
1462 stderr_out ("object: %s\n", gtk_type_name (GTK_OBJECT_TYPE (GTK_VALUE_OBJECT (a)))); | |
1463 else | |
1464 stderr_out ("object: NULL\n"); | |
1465 break; | |
1466 | |
1467 default: | |
2500 | 1468 ABORT(); |
462 | 1469 } |
1470 } | |
778 | 1471 #endif |
462 | 1472 |
1473 Lisp_Object gtk_type_to_lisp (GtkArg *arg) | |
1474 { | |
1475 switch (GTK_FUNDAMENTAL_TYPE (arg->type)) | |
1476 { | |
1477 case GTK_TYPE_NONE: | |
1478 return (Qnil); | |
1479 case GTK_TYPE_CHAR: | |
1480 return (make_char (GTK_VALUE_CHAR (*arg))); | |
1481 case GTK_TYPE_UCHAR: | |
1482 return (make_char (GTK_VALUE_UCHAR (*arg))); | |
1483 case GTK_TYPE_BOOL: | |
1484 return (GTK_VALUE_BOOL (*arg) ? Qt : Qnil); | |
1485 case GTK_TYPE_INT: | |
1486 return (make_int (GTK_VALUE_INT (*arg))); | |
1487 case GTK_TYPE_UINT: | |
1488 return (make_int (GTK_VALUE_INT (*arg))); | |
1489 case GTK_TYPE_LONG: /* I think these are wrong! */ | |
1490 return (make_int (GTK_VALUE_INT (*arg))); | |
1491 case GTK_TYPE_ULONG: /* I think these are wrong! */ | |
1492 return (make_int (GTK_VALUE_INT (*arg))); | |
1493 case GTK_TYPE_FLOAT: | |
1494 return (make_float (GTK_VALUE_FLOAT (*arg))); | |
1495 case GTK_TYPE_DOUBLE: | |
1496 return (make_float (GTK_VALUE_DOUBLE (*arg))); | |
1497 case GTK_TYPE_STRING: | |
1498 return (build_string (GTK_VALUE_STRING (*arg))); | |
1499 case GTK_TYPE_FLAGS: | |
1500 return (flags_to_list (GTK_VALUE_FLAGS (*arg), arg->type)); | |
1501 case GTK_TYPE_ENUM: | |
1502 return (enum_to_symbol (GTK_VALUE_ENUM (*arg), arg->type)); | |
1503 case GTK_TYPE_BOXED: | |
1504 if (arg->type == GTK_TYPE_GDK_EVENT) | |
1505 { | |
1506 return (gdk_event_to_emacs_event((GdkEvent *) GTK_VALUE_BOXED (*arg))); | |
1507 } | |
1508 | |
1509 if (GTK_VALUE_BOXED (*arg)) | |
1510 return (build_gtk_boxed (GTK_VALUE_BOXED (*arg), arg->type)); | |
1511 else | |
1512 return (Qnil); | |
1513 case GTK_TYPE_POINTER: | |
1514 if (GTK_VALUE_POINTER (*arg)) | |
1515 { | |
1516 Lisp_Object rval; | |
1517 | |
826 | 1518 rval = VOID_TO_LISP (GTK_VALUE_POINTER (*arg)); |
462 | 1519 return (rval); |
1520 } | |
1521 else | |
1522 return (Qnil); | |
1523 case GTK_TYPE_OBJECT: | |
1524 if (GTK_VALUE_OBJECT (*arg)) | |
1525 return (build_gtk_object (GTK_VALUE_OBJECT (*arg))); | |
1526 else | |
1527 return (Qnil); | |
1528 | |
1529 case GTK_TYPE_CALLBACK: | |
1530 { | |
1531 Lisp_Object rval; | |
1532 | |
826 | 1533 rval = VOID_TO_LISP (GTK_VALUE_CALLBACK (*arg).data); |
462 | 1534 |
1535 return (rval); | |
1536 } | |
1537 | |
1538 default: | |
2054 | 1539 if (IS_XEMACS_GTK_FUNDAMENTAL_TYPE(arg->type, GTK_TYPE_LISTOF)) |
462 | 1540 { |
1541 if (!GTK_VALUE_POINTER (*arg)) | |
1542 return (Qnil); | |
1543 else | |
1544 { | |
1545 return (xemacs_gtklist_to_list (arg)); | |
1546 } | |
1547 } | |
1548 stderr_out ("Do not know how to convert `%s' to lisp!\n", gtk_type_name (arg->type)); | |
2500 | 1549 ABORT (); |
462 | 1550 } |
1551 /* This is chuck reminding GCC to... SHUT UP! */ | |
1552 return (Qnil); | |
1553 } | |
1554 | |
1555 int lisp_to_gtk_type (Lisp_Object obj, GtkArg *arg) | |
1556 { | |
1557 switch (GTK_FUNDAMENTAL_TYPE (arg->type)) | |
1558 { | |
1559 /* flag types */ | |
1560 case GTK_TYPE_NONE: | |
1561 return (0); | |
1562 case GTK_TYPE_CHAR: | |
1563 { | |
867 | 1564 Ichar c; |
462 | 1565 |
1566 CHECK_CHAR_COERCE_INT (obj); | |
1567 c = XCHAR (obj); | |
1568 GTK_VALUE_CHAR (*arg) = c; | |
1569 } | |
1570 break; | |
1571 case GTK_TYPE_UCHAR: | |
1572 { | |
867 | 1573 Ichar c; |
462 | 1574 |
1575 CHECK_CHAR_COERCE_INT (obj); | |
1576 c = XCHAR (obj); | |
1577 GTK_VALUE_CHAR (*arg) = c; | |
1578 } | |
1579 break; | |
1580 case GTK_TYPE_BOOL: | |
1581 GTK_VALUE_BOOL (*arg) = NILP (obj) ? FALSE : TRUE; | |
1582 break; | |
1583 case GTK_TYPE_INT: | |
1584 case GTK_TYPE_UINT: | |
1585 if (NILP (obj) || EQ (Qt, obj)) | |
1586 { | |
1587 /* For we are a kind mistress and allow sending t/nil for | |
1588 1/0 to stupid GTK functions that say they take guint or | |
1589 gint in the header files, but actually treat it like a | |
1590 bool. *sigh* | |
1591 */ | |
1592 GTK_VALUE_INT(*arg) = NILP (obj) ? 0 : 1; | |
1593 } | |
1594 else | |
1595 { | |
1596 CHECK_INT (obj); | |
1597 GTK_VALUE_INT(*arg) = XINT (obj); | |
1598 } | |
1599 break; | |
1600 case GTK_TYPE_LONG: | |
1601 case GTK_TYPE_ULONG: | |
2500 | 1602 ABORT(); |
462 | 1603 case GTK_TYPE_FLOAT: |
1604 CHECK_INT_OR_FLOAT (obj); | |
1605 GTK_VALUE_FLOAT(*arg) = extract_float (obj); | |
1606 break; | |
1607 case GTK_TYPE_DOUBLE: | |
1608 CHECK_INT_OR_FLOAT (obj); | |
1609 GTK_VALUE_DOUBLE(*arg) = extract_float (obj); | |
1610 break; | |
1611 case GTK_TYPE_STRING: | |
1612 if (NILP (obj)) | |
1613 GTK_VALUE_STRING (*arg) = NULL; | |
1614 else | |
1615 { | |
1616 CHECK_STRING (obj); | |
1617 GTK_VALUE_STRING (*arg) = (char *) XSTRING_DATA (obj); | |
1618 } | |
1619 break; | |
1620 case GTK_TYPE_ENUM: | |
1621 case GTK_TYPE_FLAGS: | |
1622 /* Convert a lisp symbol to a GTK enum */ | |
1623 GTK_VALUE_ENUM(*arg) = lisp_to_flag (obj, arg->type); | |
1624 break; | |
1625 case GTK_TYPE_BOXED: | |
1626 if (NILP (obj)) | |
1627 { | |
1628 GTK_VALUE_BOXED(*arg) = NULL; | |
1629 } | |
1630 else if (GTK_BOXEDP (obj)) | |
1631 { | |
1632 GTK_VALUE_BOXED(*arg) = XGTK_BOXED (obj)->object; | |
1633 } | |
1634 else if (arg->type == GTK_TYPE_STYLE) | |
1635 { | |
1636 obj = Ffind_face (obj); | |
1637 CHECK_FACE (obj); | |
1638 GTK_VALUE_BOXED(*arg) = face_to_style (obj); | |
1639 } | |
1640 else if (arg->type == GTK_TYPE_GDK_GC) | |
1641 { | |
1642 obj = Ffind_face (obj); | |
1643 CHECK_FACE (obj); | |
1644 GTK_VALUE_BOXED(*arg) = face_to_gc (obj); | |
1645 } | |
1646 else if (arg->type == GTK_TYPE_GDK_WINDOW) | |
1647 { | |
1648 if (GLYPHP (obj)) | |
1649 { | |
1650 Lisp_Object window = Fselected_window (Qnil); | |
793 | 1651 Lisp_Object instance = |
1652 glyph_image_instance (obj, window, ERROR_ME_DEBUG_WARN, 1); | |
462 | 1653 struct Lisp_Image_Instance *p = XIMAGE_INSTANCE (instance); |
1654 | |
1655 switch (XIMAGE_INSTANCE_TYPE (instance)) | |
1656 { | |
1657 case IMAGE_TEXT: | |
1658 case IMAGE_POINTER: | |
1659 case IMAGE_SUBWINDOW: | |
1660 case IMAGE_NOTHING: | |
1661 GTK_VALUE_BOXED(*arg) = NULL; | |
1662 break; | |
1663 | |
1664 case IMAGE_MONO_PIXMAP: | |
1665 case IMAGE_COLOR_PIXMAP: | |
1666 GTK_VALUE_BOXED(*arg) = IMAGE_INSTANCE_GTK_PIXMAP (p); | |
1667 break; | |
1668 } | |
1669 } | |
1670 else if (GTK_OBJECTP (obj) && GTK_IS_WIDGET (XGTK_OBJECT (obj)->object)) | |
1671 { | |
1672 GTK_VALUE_BOXED(*arg) = GTK_WIDGET (XGTK_OBJECT (obj))->window; | |
1673 } | |
1674 else | |
1675 { | |
563 | 1676 invalid_argument ("Don't know how to convert object to GDK_WINDOW", obj); |
462 | 1677 } |
1678 break; | |
1679 } | |
1680 else if (arg->type == GTK_TYPE_GDK_COLOR) | |
1681 { | |
1682 if (COLOR_SPECIFIERP (obj)) | |
1683 { | |
1684 /* If it is a specifier, we just convert it to an | |
1685 instance, and let the ifs below handle it. | |
1686 */ | |
1687 obj = Fspecifier_instance (obj, Qnil, Qnil, Qnil); | |
1688 } | |
1689 | |
1690 if (COLOR_INSTANCEP (obj)) | |
1691 { | |
1692 /* Easiest one */ | |
1693 GTK_VALUE_BOXED(*arg) = COLOR_INSTANCE_GTK_COLOR (XCOLOR_INSTANCE (obj)); | |
1694 } | |
1695 else if (STRINGP (obj)) | |
1696 { | |
563 | 1697 invalid_argument ("Please use a color specifier or instance, not a string", obj); |
462 | 1698 } |
1699 else | |
1700 { | |
563 | 1701 invalid_argument ("Don't know how to convert to GdkColor", obj); |
462 | 1702 } |
1703 } | |
1704 else if (arg->type == GTK_TYPE_GDK_FONT) | |
1705 { | |
1706 if (SYMBOLP (obj)) | |
1707 { | |
1708 /* If it is a symbol, we treat that as a face name */ | |
1709 obj = Ffind_face (obj); | |
1710 } | |
1711 | |
1712 if (FACEP (obj)) | |
1713 { | |
1714 /* If it is a face, we just grab the font specifier, and | |
1715 cascade down until we finally reach a FONT_INSTANCE | |
1716 */ | |
1717 obj = Fget (obj, Qfont, Qnil); | |
1718 } | |
1719 | |
1720 if (FONT_SPECIFIERP (obj)) | |
1721 { | |
1722 /* If it is a specifier, we just convert it to an | |
1723 instance, and let the ifs below handle it | |
1724 */ | |
1725 obj = Fspecifier_instance (obj, Qnil, Qnil, Qnil); | |
1726 } | |
1727 | |
1728 if (FONT_INSTANCEP (obj)) | |
1729 { | |
1730 /* Easiest one */ | |
1731 GTK_VALUE_BOXED(*arg) = FONT_INSTANCE_GTK_FONT (XFONT_INSTANCE (obj)); | |
1732 } | |
1733 else if (STRINGP (obj)) | |
1734 { | |
563 | 1735 invalid_argument ("Please use a font specifier or instance, not a string", obj); |
462 | 1736 } |
1737 else | |
1738 { | |
563 | 1739 invalid_argument ("Don't know how to convert to GdkColor", obj); |
462 | 1740 } |
1741 } | |
1742 else | |
1743 { | |
1744 /* Unknown type to convert to boxed */ | |
1745 stderr_out ("Don't know how to convert to boxed!\n"); | |
1746 GTK_VALUE_BOXED(*arg) = NULL; | |
1747 } | |
1748 break; | |
1749 | |
1750 case GTK_TYPE_POINTER: | |
1751 if (NILP (obj)) | |
1752 GTK_VALUE_POINTER(*arg) = NULL; | |
1753 else | |
1754 GTK_VALUE_POINTER(*arg) = LISP_TO_VOID (obj); | |
1755 break; | |
1756 | |
1757 /* structured types */ | |
1758 case GTK_TYPE_SIGNAL: | |
1759 case GTK_TYPE_ARGS: /* This we can do as a list of values */ | |
1760 case GTK_TYPE_C_CALLBACK: | |
1761 case GTK_TYPE_FOREIGN: | |
1762 stderr_out ("Do not know how to convert `%s' from lisp!\n", gtk_type_name (arg->type)); | |
1763 return (-1); | |
1764 | |
1765 #if 0 | |
1766 /* #### BILL! */ | |
1767 /* This is not used, and does not work with union type */ | |
1768 case GTK_TYPE_CALLBACK: | |
1769 { | |
1770 GUI_ID id; | |
1771 | |
1772 id = new_gui_id (); | |
1773 obj = Fcons (Qnil, obj); /* Empty data */ | |
1774 obj = Fcons (make_int (id), obj); | |
1775 | |
1776 gcpro_popup_callbacks (id, obj); | |
1777 | |
1778 GTK_VALUE_CALLBACK(*arg).marshal = __internal_callback_marshal; | |
1779 GTK_VALUE_CALLBACK(*arg).data = (gpointer) obj; | |
1780 GTK_VALUE_CALLBACK(*arg).notify = __internal_callback_destroy; | |
1781 } | |
1782 break; | |
1783 #endif | |
1784 | |
1785 /* base type of the object system */ | |
1786 case GTK_TYPE_OBJECT: | |
1787 if (NILP (obj)) | |
1788 GTK_VALUE_OBJECT (*arg) = NULL; | |
1789 else | |
1790 { | |
1791 CHECK_GTK_OBJECT (obj); | |
1792 if (XGTK_OBJECT (obj)->alive_p) | |
1793 GTK_VALUE_OBJECT (*arg) = XGTK_OBJECT (obj)->object; | |
1794 else | |
563 | 1795 invalid_argument ("Attempting to pass dead object to GTK function", obj); |
462 | 1796 } |
1797 break; | |
1798 | |
1799 default: | |
2054 | 1800 if (IS_XEMACS_GTK_FUNDAMENTAL_TYPE(arg->type, GTK_TYPE_ARRAY)) |
462 | 1801 { |
1802 if (NILP (obj)) | |
1803 GTK_VALUE_POINTER(*arg) = NULL; | |
1804 else | |
1805 { | |
1806 xemacs_list_to_array (obj, arg); | |
1807 } | |
1808 } | |
2054 | 1809 else if (IS_XEMACS_GTK_FUNDAMENTAL_TYPE(arg->type, GTK_TYPE_LISTOF)) |
462 | 1810 { |
1811 if (NILP (obj)) | |
1812 GTK_VALUE_POINTER(*arg) = NULL; | |
1813 else | |
1814 { | |
1815 xemacs_list_to_gtklist (obj, arg); | |
1816 } | |
1817 } | |
1818 else | |
1819 { | |
1820 stderr_out ("Do not know how to convert `%s' from lisp!\n", gtk_type_name (arg->type)); | |
2500 | 1821 ABORT(); |
462 | 1822 } |
1823 break; | |
1824 } | |
1825 | |
1826 return (0); | |
1827 } | |
1828 | |
1883 | 1829 /* Convert lisp types to GTK return types. This is identical to |
1830 lisp_to_gtk_type() except that the macro used to set the value is | |
1831 different. | |
1832 | |
1833 ### There should be some way of combining these two functions. | |
1834 */ | |
1835 int lisp_to_gtk_ret_type (Lisp_Object obj, GtkArg *arg) | |
1836 { | |
1837 switch (GTK_FUNDAMENTAL_TYPE (arg->type)) | |
1838 { | |
1839 /* flag types */ | |
1840 case GTK_TYPE_NONE: | |
1841 return (0); | |
1842 case GTK_TYPE_CHAR: | |
1843 { | |
1844 Ichar c; | |
1845 | |
1846 CHECK_CHAR_COERCE_INT (obj); | |
1847 c = XCHAR (obj); | |
1848 *(GTK_RETLOC_CHAR (*arg)) = c; | |
1849 } | |
1850 break; | |
1851 case GTK_TYPE_UCHAR: | |
1852 { | |
1853 Ichar c; | |
1854 | |
1855 CHECK_CHAR_COERCE_INT (obj); | |
1856 c = XCHAR (obj); | |
1857 *(GTK_RETLOC_CHAR (*arg)) = c; | |
1858 } | |
1859 break; | |
1860 case GTK_TYPE_BOOL: | |
1861 *(GTK_RETLOC_BOOL (*arg)) = NILP (obj) ? FALSE : TRUE; | |
1862 break; | |
1863 case GTK_TYPE_INT: | |
1864 case GTK_TYPE_UINT: | |
1865 if (NILP (obj) || EQ (Qt, obj)) | |
1866 { | |
1867 /* For we are a kind mistress and allow sending t/nil for | |
1868 1/0 to stupid GTK functions that say they take guint or | |
1869 gint in the header files, but actually treat it like a | |
1870 bool. *sigh* | |
1871 */ | |
1872 *(GTK_RETLOC_INT(*arg)) = NILP (obj) ? 0 : 1; | |
1873 } | |
1874 else | |
1875 { | |
1876 CHECK_INT (obj); | |
1877 *(GTK_RETLOC_INT(*arg)) = XINT (obj); | |
1878 } | |
1879 break; | |
1880 case GTK_TYPE_LONG: | |
1881 case GTK_TYPE_ULONG: | |
2500 | 1882 ABORT(); |
1883 | 1883 case GTK_TYPE_FLOAT: |
1884 CHECK_INT_OR_FLOAT (obj); | |
1885 *(GTK_RETLOC_FLOAT(*arg)) = extract_float (obj); | |
1886 break; | |
1887 case GTK_TYPE_DOUBLE: | |
1888 CHECK_INT_OR_FLOAT (obj); | |
1889 *(GTK_RETLOC_DOUBLE(*arg)) = extract_float (obj); | |
1890 break; | |
1891 case GTK_TYPE_STRING: | |
1892 if (NILP (obj)) | |
1893 *(GTK_RETLOC_STRING (*arg)) = NULL; | |
1894 else | |
1895 { | |
1896 CHECK_STRING (obj); | |
1897 *(GTK_RETLOC_STRING (*arg)) = (char *) XSTRING_DATA (obj); | |
1898 } | |
1899 break; | |
1900 case GTK_TYPE_ENUM: | |
1901 case GTK_TYPE_FLAGS: | |
1902 /* Convert a lisp symbol to a GTK enum */ | |
1903 *(GTK_RETLOC_ENUM(*arg)) = lisp_to_flag (obj, arg->type); | |
1904 break; | |
1905 case GTK_TYPE_BOXED: | |
1906 if (NILP (obj)) | |
1907 { | |
1908 *(GTK_RETLOC_BOXED(*arg)) = NULL; | |
1909 } | |
1910 else if (GTK_BOXEDP (obj)) | |
1911 { | |
1912 *(GTK_RETLOC_BOXED(*arg)) = XGTK_BOXED (obj)->object; | |
1913 } | |
1914 else if (arg->type == GTK_TYPE_STYLE) | |
1915 { | |
1916 obj = Ffind_face (obj); | |
1917 CHECK_FACE (obj); | |
1918 *(GTK_RETLOC_BOXED(*arg)) = face_to_style (obj); | |
1919 } | |
1920 else if (arg->type == GTK_TYPE_GDK_GC) | |
1921 { | |
1922 obj = Ffind_face (obj); | |
1923 CHECK_FACE (obj); | |
1924 *(GTK_RETLOC_BOXED(*arg)) = face_to_gc (obj); | |
1925 } | |
1926 else if (arg->type == GTK_TYPE_GDK_WINDOW) | |
1927 { | |
1928 if (GLYPHP (obj)) | |
1929 { | |
1930 Lisp_Object window = Fselected_window (Qnil); | |
1931 Lisp_Object instance = | |
1932 glyph_image_instance (obj, window, ERROR_ME_DEBUG_WARN, 1); | |
1933 struct Lisp_Image_Instance *p = XIMAGE_INSTANCE (instance); | |
1934 | |
1935 switch (XIMAGE_INSTANCE_TYPE (instance)) | |
1936 { | |
1937 case IMAGE_TEXT: | |
1938 case IMAGE_POINTER: | |
1939 case IMAGE_SUBWINDOW: | |
1940 case IMAGE_NOTHING: | |
1941 *(GTK_RETLOC_BOXED(*arg)) = NULL; | |
1942 break; | |
1943 | |
1944 case IMAGE_MONO_PIXMAP: | |
1945 case IMAGE_COLOR_PIXMAP: | |
1946 *(GTK_RETLOC_BOXED(*arg)) = IMAGE_INSTANCE_GTK_PIXMAP (p); | |
1947 break; | |
1948 } | |
1949 } | |
1950 else if (GTK_OBJECTP (obj) && GTK_IS_WIDGET (XGTK_OBJECT (obj)->object)) | |
1951 { | |
1952 *(GTK_RETLOC_BOXED(*arg)) = GTK_WIDGET (XGTK_OBJECT (obj))->window; | |
1953 } | |
1954 else | |
1955 { | |
1956 invalid_argument ("Don't know how to convert object to GDK_WINDOW", obj); | |
1957 } | |
1958 break; | |
1959 } | |
1960 else if (arg->type == GTK_TYPE_GDK_COLOR) | |
1961 { | |
1962 if (COLOR_SPECIFIERP (obj)) | |
1963 { | |
1964 /* If it is a specifier, we just convert it to an | |
1965 instance, and let the ifs below handle it. | |
1966 */ | |
1967 obj = Fspecifier_instance (obj, Qnil, Qnil, Qnil); | |
1968 } | |
1969 | |
1970 if (COLOR_INSTANCEP (obj)) | |
1971 { | |
1972 /* Easiest one */ | |
1973 *(GTK_RETLOC_BOXED(*arg)) = COLOR_INSTANCE_GTK_COLOR (XCOLOR_INSTANCE (obj)); | |
1974 } | |
1975 else if (STRINGP (obj)) | |
1976 { | |
1977 invalid_argument ("Please use a color specifier or instance, not a string", obj); | |
1978 } | |
1979 else | |
1980 { | |
1981 invalid_argument ("Don't know how to convert to GdkColor", obj); | |
1982 } | |
1983 } | |
1984 else if (arg->type == GTK_TYPE_GDK_FONT) | |
1985 { | |
1986 if (SYMBOLP (obj)) | |
1987 { | |
1988 /* If it is a symbol, we treat that as a face name */ | |
1989 obj = Ffind_face (obj); | |
1990 } | |
1991 | |
1992 if (FACEP (obj)) | |
1993 { | |
1994 /* If it is a face, we just grab the font specifier, and | |
1995 cascade down until we finally reach a FONT_INSTANCE | |
1996 */ | |
1997 obj = Fget (obj, Qfont, Qnil); | |
1998 } | |
1999 | |
2000 if (FONT_SPECIFIERP (obj)) | |
2001 { | |
2002 /* If it is a specifier, we just convert it to an | |
2003 instance, and let the ifs below handle it | |
2004 */ | |
2005 obj = Fspecifier_instance (obj, Qnil, Qnil, Qnil); | |
2006 } | |
2007 | |
2008 if (FONT_INSTANCEP (obj)) | |
2009 { | |
2010 /* Easiest one */ | |
2011 *(GTK_RETLOC_BOXED(*arg)) = FONT_INSTANCE_GTK_FONT (XFONT_INSTANCE (obj)); | |
2012 } | |
2013 else if (STRINGP (obj)) | |
2014 { | |
2015 invalid_argument ("Please use a font specifier or instance, not a string", obj); | |
2016 } | |
2017 else | |
2018 { | |
2019 invalid_argument ("Don't know how to convert to GdkColor", obj); | |
2020 } | |
2021 } | |
2022 else | |
2023 { | |
2024 /* Unknown type to convert to boxed */ | |
2025 stderr_out ("Don't know how to convert to boxed!\n"); | |
2026 *(GTK_RETLOC_BOXED(*arg)) = NULL; | |
2027 } | |
2028 break; | |
2029 | |
2030 case GTK_TYPE_POINTER: | |
2031 if (NILP (obj)) | |
2032 *(GTK_RETLOC_POINTER(*arg)) = NULL; | |
2033 else | |
2034 *(GTK_RETLOC_POINTER(*arg)) = LISP_TO_VOID (obj); | |
2035 break; | |
2036 | |
2037 /* structured types */ | |
2038 case GTK_TYPE_SIGNAL: | |
2039 case GTK_TYPE_ARGS: /* This we can do as a list of values */ | |
2040 case GTK_TYPE_C_CALLBACK: | |
2041 case GTK_TYPE_FOREIGN: | |
2042 stderr_out ("Do not know how to convert `%s' from lisp!\n", gtk_type_name (arg->type)); | |
2043 return (-1); | |
2044 | |
2045 #if 0 | |
2046 /* #### BILL! */ | |
2047 /* This is not used, and does not work with union type */ | |
2048 case GTK_TYPE_CALLBACK: | |
2049 { | |
2050 GUI_ID id; | |
2051 | |
2052 id = new_gui_id (); | |
2053 obj = Fcons (Qnil, obj); /* Empty data */ | |
2054 obj = Fcons (make_int (id), obj); | |
2055 | |
2056 gcpro_popup_callbacks (id, obj); | |
2057 | |
2058 *(GTK_RETLOC_CALLBACK(*arg)).marshal = __internal_callback_marshal; | |
2059 *(GTK_RETLOC_CALLBACK(*arg)).data = (gpointer) obj; | |
2060 *(GTK_RETLOC_CALLBACK(*arg)).notify = __internal_callback_destroy; | |
2061 } | |
2062 break; | |
2063 #endif | |
2064 | |
2065 /* base type of the object system */ | |
2066 case GTK_TYPE_OBJECT: | |
2067 if (NILP (obj)) | |
2068 *(GTK_RETLOC_OBJECT (*arg)) = NULL; | |
2069 else | |
2070 { | |
2071 CHECK_GTK_OBJECT (obj); | |
2072 if (XGTK_OBJECT (obj)->alive_p) | |
2073 *(GTK_RETLOC_OBJECT (*arg)) = XGTK_OBJECT (obj)->object; | |
2074 else | |
2075 invalid_argument ("Attempting to pass dead object to GTK function", obj); | |
2076 } | |
2077 break; | |
2078 | |
2079 default: | |
2054 | 2080 if (IS_XEMACS_GTK_FUNDAMENTAL_TYPE(arg->type, GTK_TYPE_ARRAY)) |
1883 | 2081 { |
2082 if (NILP (obj)) | |
2083 *(GTK_RETLOC_POINTER(*arg)) = NULL; | |
2084 else | |
2085 { | |
2086 xemacs_list_to_array (obj, arg); | |
2087 } | |
2088 } | |
2054 | 2089 else if (IS_XEMACS_GTK_FUNDAMENTAL_TYPE(arg->type, GTK_TYPE_LISTOF)) |
1883 | 2090 { |
2091 if (NILP (obj)) | |
2092 *(GTK_RETLOC_POINTER(*arg)) = NULL; | |
2093 else | |
2094 { | |
2095 xemacs_list_to_gtklist (obj, arg); | |
2096 } | |
2097 } | |
2098 else | |
2099 { | |
2100 stderr_out ("Do not know how to convert `%s' from lisp!\n", gtk_type_name (arg->type)); | |
2500 | 2101 ABORT(); |
1883 | 2102 } |
2103 break; | |
2104 } | |
2105 | |
2106 return (0); | |
2107 } | |
2108 | |
462 | 2109 /* This is used in glyphs-gtk.c as well */ |
2110 static Lisp_Object | |
2111 get_enumeration (GtkType t) | |
2112 { | |
2113 Lisp_Object alist; | |
2114 | |
2115 if (NILP (Venumeration_info)) | |
2116 { | |
2117 Venumeration_info = call2 (intern ("make-hashtable"), make_int (100), Qequal); | |
2118 } | |
2119 | |
2120 alist = Fgethash (make_int (t), Venumeration_info, Qnil); | |
2121 | |
2122 if (NILP (alist)) | |
2123 { | |
2124 import_gtk_enumeration_internal (t); | |
2125 alist = Fgethash (make_int (t), Venumeration_info, Qnil); | |
2126 } | |
2127 return (alist); | |
2128 } | |
2129 | |
2130 guint | |
2131 symbol_to_enum (Lisp_Object obj, GtkType t) | |
2132 { | |
2133 Lisp_Object alist = get_enumeration (t); | |
2134 Lisp_Object value = Qnil; | |
2135 | |
2136 if (NILP (alist)) | |
2137 { | |
563 | 2138 invalid_argument ("Unknown enumeration", build_string (gtk_type_name (t))); |
462 | 2139 } |
2140 | |
2141 value = Fassq (obj, alist); | |
2142 | |
2143 if (NILP (value)) | |
2144 { | |
563 | 2145 invalid_argument ("Unknown value", obj); |
462 | 2146 } |
2147 | |
2148 CHECK_INT (XCDR (value)); | |
2149 | |
2150 return (XINT (XCDR (value))); | |
2151 } | |
2152 | |
2153 static guint | |
2154 lisp_to_flag (Lisp_Object obj, GtkType t) | |
2155 { | |
2156 guint val = 0; | |
2157 | |
2158 if (NILP (obj)) | |
2159 { | |
2160 /* Do nothing */ | |
2161 } | |
2162 else if (SYMBOLP (obj)) | |
2163 { | |
2164 val = symbol_to_enum (obj, t); | |
2165 } | |
2166 else if (LISTP (obj)) | |
2167 { | |
2168 while (!NILP (obj)) | |
2169 { | |
2170 val |= symbol_to_enum (XCAR (obj), t); | |
2171 obj = XCDR (obj); | |
2172 } | |
2173 } | |
2174 else | |
2175 { | |
2500 | 2176 /* ABORT ()? */ |
462 | 2177 } |
2178 return (val); | |
2179 } | |
2180 | |
2181 static Lisp_Object | |
2182 flags_to_list (guint value, GtkType t) | |
2183 { | |
2184 Lisp_Object rval = Qnil; | |
2185 Lisp_Object alist = get_enumeration (t); | |
2186 | |
2187 while (!NILP (alist)) | |
2188 { | |
2189 if (value & XINT (XCDR (XCAR (alist)))) | |
2190 { | |
2191 rval = Fcons (XCAR (XCAR (alist)), rval); | |
2192 value &= ~(XINT (XCDR (XCAR (alist)))); | |
2193 } | |
2194 alist = XCDR (alist); | |
2195 } | |
2196 return (rval); | |
2197 } | |
2198 | |
2199 static Lisp_Object | |
2200 enum_to_symbol (guint value, GtkType t) | |
2201 { | |
2202 Lisp_Object alist = get_enumeration (t); | |
2203 Lisp_Object cell = Qnil; | |
2204 | |
2205 if (NILP (alist)) | |
2206 { | |
563 | 2207 invalid_argument ("Unknown enumeration", build_string (gtk_type_name (t))); |
462 | 2208 } |
2209 | |
2210 cell = Frassq (make_int (value), alist); | |
2211 | |
2212 return (NILP (cell) ? Qnil : XCAR (cell)); | |
2213 } |