462
|
1 /* X-specific Lisp objects.
|
|
2 Copyright (C) 1993, 1994 Free Software Foundation, Inc.
|
|
3 Copyright (C) 1995 Board of Trustees, University of Illinois.
|
|
4 Copyright (C) 1995 Tinker Systems
|
|
5 Copyright (C) 1995, 1996 Ben Wing
|
|
6 Copyright (C) 1995 Sun Microsystems
|
|
7
|
|
8 This file is part of XEmacs.
|
|
9
|
|
10 XEmacs is free software; you can redistribute it and/or modify it
|
|
11 under the terms of the GNU General Public License as published by the
|
|
12 Free Software Foundation; either version 2, or (at your option) any
|
|
13 later version.
|
|
14
|
|
15 XEmacs is distributed in the hope that it will be useful, but WITHOUT
|
|
16 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
17 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
18 for more details.
|
|
19
|
|
20 You should have received a copy of the GNU General Public License
|
|
21 along with XEmacs; see the file COPYING. If not, write to
|
|
22 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
23 Boston, MA 02111-1307, USA. */
|
|
24
|
|
25 /* Synched up with: Not in FSF. */
|
|
26
|
|
27 /* Original author: Jamie Zawinski for 19.8
|
|
28 font-truename stuff added by Jamie Zawinski for 19.10
|
|
29 subwindow support added by Chuck Thompson
|
|
30 additional XPM support added by Chuck Thompson
|
|
31 initial X-Face support added by Stig
|
|
32 rewritten/restructured by Ben Wing for 19.12/19.13
|
|
33 GIF/JPEG support added by Ben Wing for 19.14
|
|
34 PNG support added by Bill Perry for 19.14
|
|
35 Improved GIF/JPEG support added by Bill Perry for 19.14
|
|
36 Cleanup/simplification of error handling by Ben Wing for 19.14
|
|
37 Pointer/icon overhaul, more restructuring by Ben Wing for 19.14
|
|
38 GIF support changed to external GIFlib 3.1 by Jareth Hein for 21.0
|
|
39 Many changes for color work and optimizations by Jareth Hein for 21.0
|
|
40 Switch of GIF/JPEG/PNG to new EImage intermediate code by Jareth Hein for 21.0
|
|
41 TIFF code by Jareth Hein for 21.0
|
|
42 GIF/JPEG/PNG/TIFF code moved to new glyph-eimage.c for 21.0
|
|
43 Gtk version by William Perry for 21.1
|
|
44
|
|
45 TODO:
|
|
46 Support the GrayScale, StaticColor and StaticGray visual classes.
|
|
47 Convert images.el to C and stick it in here?
|
|
48 */
|
|
49
|
|
50 #include <config.h>
|
|
51 #include "lisp.h"
|
|
52 #include "lstream.h"
|
|
53 #include "console-gtk.h"
|
|
54 #include "glyphs.h"
|
|
55 #include "glyphs-gtk.h"
|
|
56 #include "objects-gtk.h"
|
|
57 #include "gui-gtk.h"
|
|
58 #include "ui-gtk.h"
|
|
59
|
|
60 #include "buffer.h"
|
|
61 #include "window.h"
|
|
62 #include "frame.h"
|
|
63 #include "insdel.h"
|
|
64 #include "opaque.h"
|
|
65 #include "faces.h"
|
|
66
|
|
67 #include "imgproc.h"
|
|
68
|
|
69 #include "sysfile.h"
|
|
70
|
|
71 #include <setjmp.h>
|
|
72
|
|
73 #ifdef FILE_CODING
|
|
74 #include "file-coding.h"
|
|
75 #endif
|
|
76
|
|
77 #if INTBITS == 32
|
|
78 # define FOUR_BYTE_TYPE unsigned int
|
|
79 #elif LONGBITS == 32
|
|
80 # define FOUR_BYTE_TYPE unsigned long
|
|
81 #elif SHORTBITS == 32
|
|
82 # define FOUR_BYTE_TYPE unsigned short
|
|
83 #else
|
|
84 #error What kind of strange-ass system are we running on?
|
|
85 #endif
|
|
86
|
|
87 DECLARE_IMAGE_INSTANTIATOR_FORMAT (nothing);
|
|
88 DECLARE_IMAGE_INSTANTIATOR_FORMAT (string);
|
|
89 DECLARE_IMAGE_INSTANTIATOR_FORMAT (formatted_string);
|
|
90 DECLARE_IMAGE_INSTANTIATOR_FORMAT (inherit);
|
|
91 #ifdef HAVE_JPEG
|
|
92 DECLARE_IMAGE_INSTANTIATOR_FORMAT (jpeg);
|
|
93 #endif
|
|
94 #ifdef HAVE_TIFF
|
|
95 DECLARE_IMAGE_INSTANTIATOR_FORMAT (tiff);
|
|
96 #endif
|
|
97 #ifdef HAVE_PNG
|
|
98 DECLARE_IMAGE_INSTANTIATOR_FORMAT (png);
|
|
99 #endif
|
|
100 #ifdef HAVE_GIF
|
|
101 DECLARE_IMAGE_INSTANTIATOR_FORMAT (gif);
|
|
102 #endif
|
|
103
|
|
104 #ifdef HAVE_XFACE
|
|
105 DEFINE_DEVICE_IIFORMAT (gtk, xface);
|
|
106 Lisp_Object Qxface;
|
|
107 #endif
|
|
108
|
|
109 #ifdef HAVE_XPM
|
|
110 DEFINE_DEVICE_IIFORMAT (gtk, xpm);
|
|
111 #endif
|
|
112
|
|
113 DEFINE_DEVICE_IIFORMAT (gtk, xbm);
|
|
114 DEFINE_DEVICE_IIFORMAT (gtk, subwindow);
|
|
115
|
|
116 DEFINE_IMAGE_INSTANTIATOR_FORMAT (cursor_font);
|
|
117 Lisp_Object Qcursor_font;
|
|
118
|
|
119 DEFINE_IMAGE_INSTANTIATOR_FORMAT (font);
|
|
120
|
|
121 DEFINE_IMAGE_INSTANTIATOR_FORMAT (autodetect);
|
|
122
|
|
123 #ifdef HAVE_WIDGETS
|
|
124 DECLARE_IMAGE_INSTANTIATOR_FORMAT (layout);
|
|
125 DEFINE_DEVICE_IIFORMAT (gtk, widget);
|
|
126 DEFINE_DEVICE_IIFORMAT (gtk, native_layout);
|
|
127 DEFINE_DEVICE_IIFORMAT (gtk, button);
|
|
128 DEFINE_DEVICE_IIFORMAT (gtk, progress_gauge);
|
|
129 DEFINE_DEVICE_IIFORMAT (gtk, edit_field);
|
|
130 DEFINE_DEVICE_IIFORMAT (gtk, combo_box);
|
|
131 DEFINE_DEVICE_IIFORMAT (gtk, tab_control);
|
|
132 DEFINE_DEVICE_IIFORMAT (gtk, label);
|
|
133 #endif
|
|
134
|
|
135 static void update_widget_face (GtkWidget *w, Lisp_Image_Instance *ii,
|
|
136 Lisp_Object domain);
|
|
137 static void cursor_font_instantiate (Lisp_Object image_instance,
|
|
138 Lisp_Object instantiator,
|
|
139 Lisp_Object pointer_fg,
|
|
140 Lisp_Object pointer_bg,
|
|
141 int dest_mask,
|
|
142 Lisp_Object domain);
|
|
143
|
|
144 static gint cursor_name_to_index (const char *name);
|
|
145
|
|
146 #ifndef BitmapSuccess
|
|
147 #define BitmapSuccess 0
|
|
148 #define BitmapOpenFailed 1
|
|
149 #define BitmapFileInvalid 2
|
|
150 #define BitmapNoMemory 3
|
|
151 #endif
|
|
152
|
|
153 #include "bitmaps.h"
|
|
154
|
|
155 DEFINE_IMAGE_INSTANTIATOR_FORMAT (gtk_resource);
|
|
156 Lisp_Object Qgtk_resource;
|
|
157 #ifdef HAVE_WIDGETS
|
|
158 Lisp_Object Qgtk_widget_instantiate_internal, Qgtk_widget_property_internal;
|
|
159 Lisp_Object Qgtk_widget_redisplay_internal, Qgtk_widget_set_style;
|
|
160 #endif
|
|
161
|
|
162 #define CONST const
|
|
163
|
|
164
|
|
165 /************************************************************************/
|
|
166 /* image instance methods */
|
|
167 /************************************************************************/
|
|
168
|
|
169 /************************************************************************/
|
|
170 /* convert from a series of RGB triples to an XImage formated for the */
|
|
171 /* proper display */
|
|
172 /************************************************************************/
|
|
173 static GdkImage *
|
|
174 convert_EImage_to_GDKImage (Lisp_Object device, int width, int height,
|
|
175 unsigned char *pic, unsigned long **pixtbl,
|
|
176 int *npixels)
|
|
177 {
|
|
178 GdkColormap *cmap;
|
|
179 GdkVisual *vis;
|
|
180 GdkImage *outimg;
|
|
181 int depth, byte_cnt, i, j;
|
|
182 int rd,gr,bl,q;
|
|
183 unsigned char *data, *ip, *dp = NULL;
|
|
184 quant_table *qtable = NULL;
|
|
185 union {
|
|
186 FOUR_BYTE_TYPE val;
|
|
187 char cp[4];
|
|
188 } conv;
|
|
189
|
|
190 cmap = DEVICE_GTK_COLORMAP (XDEVICE(device));
|
|
191 vis = DEVICE_GTK_VISUAL (XDEVICE(device));
|
|
192 depth = DEVICE_GTK_DEPTH(XDEVICE(device));
|
|
193
|
|
194 if (vis->type == GDK_VISUAL_GRAYSCALE || vis->type == GDK_VISUAL_STATIC_COLOR ||
|
|
195 vis->type == GDK_VISUAL_STATIC_GRAY)
|
|
196 {
|
|
197 /* #### Implement me!!! */
|
|
198 return NULL;
|
|
199 }
|
|
200
|
|
201 if (vis->type == GDK_VISUAL_PSEUDO_COLOR)
|
|
202 {
|
|
203 /* Quantize the image and get a histogram while we're at it.
|
|
204 Do this first to save memory */
|
|
205 qtable = build_EImage_quantable(pic, width, height, 256);
|
|
206 if (qtable == NULL) return NULL;
|
|
207 }
|
|
208
|
|
209 /* The first parameter (GdkWindow *) is allowed to be NULL if we
|
|
210 ** specify the depth */
|
|
211 outimg = gdk_image_new (GDK_IMAGE_FASTEST, vis, width, height);
|
|
212
|
|
213 if (!outimg) return NULL;
|
|
214
|
|
215 byte_cnt = outimg->bpp;
|
|
216
|
|
217 data = (unsigned char *) outimg->mem;
|
|
218
|
|
219 if (!data)
|
|
220 {
|
|
221 gdk_image_destroy (outimg);
|
|
222 return NULL;
|
|
223 }
|
|
224
|
|
225 if (vis->type == GDK_VISUAL_PSEUDO_COLOR)
|
|
226 {
|
|
227 unsigned long pixarray[256];
|
|
228 int pixcount, n;
|
|
229 /* use our quantize table to allocate the colors */
|
|
230 pixcount = 32;
|
|
231 *pixtbl = xnew_array (unsigned long, pixcount);
|
|
232 *npixels = 0;
|
|
233
|
|
234 /* ### should implement a sort by popularity to assure proper allocation */
|
|
235 n = *npixels;
|
|
236 for (i = 0; i < qtable->num_active_colors; i++)
|
|
237 {
|
|
238 GdkColor color;
|
|
239 int res;
|
|
240
|
|
241 color.red = qtable->rm[i] ? qtable->rm[i] << 8 : 0;
|
|
242 color.green = qtable->gm[i] ? qtable->gm[i] << 8 : 0;
|
|
243 color.blue = qtable->bm[i] ? qtable->bm[i] << 8 : 0;
|
|
244 res = allocate_nearest_color (cmap, vis, &color);
|
|
245 if (res > 0 && res < 3)
|
|
246 {
|
|
247 DO_REALLOC(*pixtbl, pixcount, n+1, unsigned long);
|
|
248 (*pixtbl)[n] = color.pixel;
|
|
249 n++;
|
|
250 }
|
|
251 pixarray[i] = color.pixel;
|
|
252 }
|
|
253 *npixels = n;
|
|
254 ip = pic;
|
|
255 for (i = 0; i < height; i++)
|
|
256 {
|
|
257 dp = data + (i * outimg->bpl);
|
|
258 for (j = 0; j < width; j++)
|
|
259 {
|
|
260 rd = *ip++;
|
|
261 gr = *ip++;
|
|
262 bl = *ip++;
|
|
263 conv.val = pixarray[QUANT_GET_COLOR(qtable,rd,gr,bl)];
|
|
264 #if WORDS_BIGENDIAN
|
|
265 if (outimg->byte_order == GDK_MSB_FIRST)
|
|
266 for (q = 4-byte_cnt; q < 4; q++) *dp++ = conv.cp[q];
|
|
267 else
|
|
268 for (q = 3; q >= 4-byte_cnt; q--) *dp++ = conv.cp[q];
|
|
269 #else
|
|
270 if (outimg->byte_order == GDK_MSB_FIRST)
|
|
271 for (q = byte_cnt-1; q >= 0; q--) *dp++ = conv.cp[q];
|
|
272 else
|
|
273 for (q = 0; q < byte_cnt; q++) *dp++ = conv.cp[q];
|
|
274 #endif
|
|
275 }
|
|
276 }
|
|
277 xfree(qtable);
|
|
278 } else {
|
|
279 unsigned long rshift,gshift,bshift,rbits,gbits,bbits,junk;
|
|
280 junk = vis->red_mask;
|
|
281 rshift = 0;
|
|
282 while ((junk & 0x1) == 0)
|
|
283 {
|
|
284 junk = junk >> 1;
|
|
285 rshift ++;
|
|
286 }
|
|
287 rbits = 0;
|
|
288 while (junk != 0)
|
|
289 {
|
|
290 junk = junk >> 1;
|
|
291 rbits++;
|
|
292 }
|
|
293 junk = vis->green_mask;
|
|
294 gshift = 0;
|
|
295 while ((junk & 0x1) == 0)
|
|
296 {
|
|
297 junk = junk >> 1;
|
|
298 gshift ++;
|
|
299 }
|
|
300 gbits = 0;
|
|
301 while (junk != 0)
|
|
302 {
|
|
303 junk = junk >> 1;
|
|
304 gbits++;
|
|
305 }
|
|
306 junk = vis->blue_mask;
|
|
307 bshift = 0;
|
|
308 while ((junk & 0x1) == 0)
|
|
309 {
|
|
310 junk = junk >> 1;
|
|
311 bshift ++;
|
|
312 }
|
|
313 bbits = 0;
|
|
314 while (junk != 0)
|
|
315 {
|
|
316 junk = junk >> 1;
|
|
317 bbits++;
|
|
318 }
|
|
319 ip = pic;
|
|
320 for (i = 0; i < height; i++)
|
|
321 {
|
|
322 dp = data + (i * outimg->bpl);
|
|
323 for (j = 0; j < width; j++)
|
|
324 {
|
|
325 if (rbits > 8)
|
|
326 rd = *ip++ << (rbits - 8);
|
|
327 else
|
|
328 rd = *ip++ >> (8 - rbits);
|
|
329 if (gbits > 8)
|
|
330 gr = *ip++ << (gbits - 8);
|
|
331 else
|
|
332 gr = *ip++ >> (8 - gbits);
|
|
333 if (bbits > 8)
|
|
334 bl = *ip++ << (bbits - 8);
|
|
335 else
|
|
336 bl = *ip++ >> (8 - bbits);
|
|
337
|
|
338 conv.val = (rd << rshift) | (gr << gshift) | (bl << bshift);
|
|
339 #if WORDS_BIGENDIAN
|
|
340 if (outimg->byte_order == GDK_MSB_FIRST)
|
|
341 for (q = 4-byte_cnt; q < 4; q++) *dp++ = conv.cp[q];
|
|
342 else
|
|
343 for (q = 3; q >= 4-byte_cnt; q--) *dp++ = conv.cp[q];
|
|
344 #else
|
|
345 if (outimg->byte_order == GDK_MSB_FIRST)
|
|
346 for (q = byte_cnt-1; q >= 0; q--) *dp++ = conv.cp[q];
|
|
347 else
|
|
348 for (q = 0; q < byte_cnt; q++) *dp++ = conv.cp[q];
|
|
349 #endif
|
|
350 }
|
|
351 }
|
|
352 }
|
|
353 return outimg;
|
|
354 }
|
|
355
|
|
356 static void
|
|
357 gtk_print_image_instance (struct Lisp_Image_Instance *p,
|
|
358 Lisp_Object printcharfun,
|
|
359 int escapeflag)
|
|
360 {
|
|
361 char buf[100];
|
|
362
|
|
363 switch (IMAGE_INSTANCE_TYPE (p))
|
|
364 {
|
|
365 case IMAGE_MONO_PIXMAP:
|
|
366 case IMAGE_COLOR_PIXMAP:
|
|
367 case IMAGE_POINTER:
|
|
368 sprintf (buf, " (0x%lx", (unsigned long) IMAGE_INSTANCE_GTK_PIXMAP (p));
|
|
369 write_c_string (buf, printcharfun);
|
|
370 if (IMAGE_INSTANCE_GTK_MASK (p))
|
|
371 {
|
|
372 sprintf (buf, "/0x%lx", (unsigned long) IMAGE_INSTANCE_GTK_MASK (p));
|
|
373 write_c_string (buf, printcharfun);
|
|
374 }
|
|
375 write_c_string (")", printcharfun);
|
|
376 break;
|
|
377 #if HAVE_SUBWINDOWS
|
|
378 case IMAGE_SUBWINDOW:
|
|
379 /* #### implement me */
|
|
380 #endif
|
|
381 default:
|
|
382 break;
|
|
383 }
|
|
384 }
|
|
385
|
|
386 static void
|
|
387 gtk_finalize_image_instance (struct Lisp_Image_Instance *p)
|
|
388 {
|
|
389 if (!p->data)
|
|
390 return;
|
|
391
|
|
392 if (DEVICE_LIVE_P (XDEVICE (p->device)))
|
|
393 {
|
|
394 if (0)
|
|
395 ;
|
|
396 #ifdef HAVE_WIDGETS
|
|
397 if (IMAGE_INSTANCE_TYPE (p) == IMAGE_WIDGET)
|
|
398 {
|
|
399 if (IMAGE_INSTANCE_SUBWINDOW_ID (p))
|
|
400 {
|
|
401 gtk_widget_destroy (IMAGE_INSTANCE_SUBWINDOW_ID (p));
|
|
402
|
|
403 /* We can release the callbacks again. */
|
|
404 /* #### FIXME! */
|
|
405 /* ungcpro_popup_callbacks (...); */
|
|
406
|
|
407 /* IMAGE_INSTANCE_GTK_WIDGET_ID (p) = 0; */
|
|
408 IMAGE_INSTANCE_GTK_CLIPWIDGET (p) = 0;
|
|
409 }
|
|
410 }
|
|
411 #endif
|
|
412 else if (IMAGE_INSTANCE_TYPE (p) == IMAGE_SUBWINDOW)
|
|
413 {
|
|
414 abort();
|
|
415 }
|
|
416 else
|
|
417 {
|
|
418 int i;
|
|
419 if (IMAGE_INSTANCE_PIXMAP_TIMEOUT (p))
|
|
420 disable_glyph_animated_timeout (IMAGE_INSTANCE_PIXMAP_TIMEOUT (p));
|
|
421
|
|
422 if (IMAGE_INSTANCE_GTK_MASK (p) &&
|
|
423 IMAGE_INSTANCE_GTK_MASK (p) != IMAGE_INSTANCE_GTK_PIXMAP (p))
|
|
424 gdk_pixmap_unref (IMAGE_INSTANCE_GTK_MASK (p));
|
|
425 IMAGE_INSTANCE_PIXMAP_MASK (p) = 0;
|
|
426
|
|
427 if (IMAGE_INSTANCE_GTK_PIXMAP_SLICES (p))
|
|
428 {
|
|
429 for (i = 0; i < IMAGE_INSTANCE_PIXMAP_MAXSLICE (p); i++)
|
|
430 if (IMAGE_INSTANCE_GTK_PIXMAP_SLICE (p,i))
|
|
431 {
|
|
432 gdk_pixmap_unref (IMAGE_INSTANCE_GTK_PIXMAP_SLICE (p,i));
|
|
433 IMAGE_INSTANCE_GTK_PIXMAP_SLICE (p, i) = 0;
|
|
434 }
|
|
435 xfree (IMAGE_INSTANCE_GTK_PIXMAP_SLICES (p));
|
|
436 IMAGE_INSTANCE_GTK_PIXMAP_SLICES (p) = 0;
|
|
437 }
|
|
438
|
|
439 if (IMAGE_INSTANCE_GTK_CURSOR (p))
|
|
440 {
|
|
441 gdk_cursor_destroy (IMAGE_INSTANCE_GTK_CURSOR (p));
|
|
442 IMAGE_INSTANCE_GTK_CURSOR (p) = 0;
|
|
443 }
|
|
444 }
|
|
445
|
|
446 #if 0
|
|
447 /* #### BILL!!! */
|
|
448 if (IMAGE_INSTANCE_GTK_NPIXELS (p) != 0)
|
|
449 {
|
|
450 XFreeColors (dpy,
|
|
451 IMAGE_INSTANCE_GTK_COLORMAP (p),
|
|
452 IMAGE_INSTANCE_GTK_PIXELS (p),
|
|
453 IMAGE_INSTANCE_GTK_NPIXELS (p), 0);
|
|
454 IMAGE_INSTANCE_GTK_NPIXELS (p) = 0;
|
|
455 }
|
|
456 #endif
|
|
457 }
|
|
458
|
|
459 if (IMAGE_INSTANCE_TYPE (p) != IMAGE_WIDGET
|
|
460 && IMAGE_INSTANCE_TYPE (p) != IMAGE_SUBWINDOW
|
|
461 && IMAGE_INSTANCE_GTK_PIXELS (p))
|
|
462 {
|
|
463 xfree (IMAGE_INSTANCE_GTK_PIXELS (p));
|
|
464 IMAGE_INSTANCE_GTK_PIXELS (p) = 0;
|
|
465 }
|
|
466
|
|
467 xfree (p->data);
|
|
468 p->data = 0;
|
|
469 }
|
|
470
|
|
471 static int
|
|
472 gtk_image_instance_equal (struct Lisp_Image_Instance *p1,
|
|
473 struct Lisp_Image_Instance *p2, int depth)
|
|
474 {
|
|
475 switch (IMAGE_INSTANCE_TYPE (p1))
|
|
476 {
|
|
477 case IMAGE_MONO_PIXMAP:
|
|
478 case IMAGE_COLOR_PIXMAP:
|
|
479 case IMAGE_POINTER:
|
|
480 if (IMAGE_INSTANCE_GTK_COLORMAP (p1) != IMAGE_INSTANCE_GTK_COLORMAP (p2) ||
|
|
481 IMAGE_INSTANCE_GTK_NPIXELS (p1) != IMAGE_INSTANCE_GTK_NPIXELS (p2))
|
|
482 return 0;
|
|
483 #if HAVE_SUBWINDOWS
|
|
484 case IMAGE_SUBWINDOW:
|
|
485 /* #### implement me */
|
|
486 #endif
|
|
487 break;
|
|
488 default:
|
|
489 break;
|
|
490 }
|
|
491
|
|
492 return 1;
|
|
493 }
|
|
494
|
|
495 static unsigned long
|
|
496 gtk_image_instance_hash (struct Lisp_Image_Instance *p, int depth)
|
|
497 {
|
|
498 switch (IMAGE_INSTANCE_TYPE (p))
|
|
499 {
|
|
500 case IMAGE_MONO_PIXMAP:
|
|
501 case IMAGE_COLOR_PIXMAP:
|
|
502 case IMAGE_POINTER:
|
|
503 return IMAGE_INSTANCE_GTK_NPIXELS (p);
|
|
504 #if HAVE_SUBWINDOWS
|
|
505 case IMAGE_SUBWINDOW:
|
|
506 /* #### implement me */
|
|
507 return 0;
|
|
508 #endif
|
|
509 default:
|
|
510 return 0;
|
|
511 }
|
|
512 }
|
|
513
|
|
514 /* Set all the slots in an image instance structure to reasonable
|
|
515 default values. This is used somewhere within an instantiate
|
|
516 method. It is assumed that the device slot within the image
|
|
517 instance is already set -- this is the case when instantiate
|
|
518 methods are called. */
|
|
519
|
|
520 static void
|
|
521 gtk_initialize_pixmap_image_instance (struct Lisp_Image_Instance *ii,
|
|
522 int slices,
|
|
523 enum image_instance_type type)
|
|
524 {
|
|
525 ii->data = xnew_and_zero (struct gtk_image_instance_data);
|
|
526 IMAGE_INSTANCE_PIXMAP_MAXSLICE (ii) = slices;
|
|
527 IMAGE_INSTANCE_GTK_PIXMAP_SLICES (ii) =
|
|
528 xnew_array_and_zero (GdkPixmap *, slices);
|
|
529 IMAGE_INSTANCE_TYPE (ii) = type;
|
|
530 IMAGE_INSTANCE_PIXMAP_FILENAME (ii) = Qnil;
|
|
531 IMAGE_INSTANCE_PIXMAP_MASK_FILENAME (ii) = Qnil;
|
|
532 IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii) = Qnil;
|
|
533 IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii) = Qnil;
|
|
534 IMAGE_INSTANCE_PIXMAP_FG (ii) = Qnil;
|
|
535 IMAGE_INSTANCE_PIXMAP_BG (ii) = Qnil;
|
|
536 }
|
|
537
|
|
538
|
|
539 /************************************************************************/
|
|
540 /* pixmap file functions */
|
|
541 /************************************************************************/
|
|
542
|
|
543 /* Where bitmaps are; initialized from resource database */
|
|
544 Lisp_Object Vgtk_bitmap_file_path;
|
|
545
|
|
546 #ifndef BITMAPDIR
|
|
547 #define BITMAPDIR "/usr/include/X11/bitmaps"
|
|
548 #endif
|
|
549
|
|
550 /* Given a pixmap filename, look through all of the "standard" places
|
|
551 where the file might be located. Return a full pathname if found;
|
|
552 otherwise, return Qnil. */
|
|
553
|
|
554 static Lisp_Object
|
|
555 gtk_locate_pixmap_file (Lisp_Object name)
|
|
556 {
|
|
557 /* This function can GC if IN_REDISPLAY is false */
|
|
558
|
|
559 /* Check non-absolute pathnames with a directory component relative to
|
|
560 the search path; that's the way Xt does it. */
|
|
561 /* #### Unix-specific */
|
|
562 if (XSTRING_BYTE (name, 0) == '/' ||
|
|
563 (XSTRING_BYTE (name, 0) == '.' &&
|
|
564 (XSTRING_BYTE (name, 1) == '/' ||
|
|
565 (XSTRING_BYTE (name, 1) == '.' &&
|
|
566 (XSTRING_BYTE (name, 2) == '/')))))
|
|
567 {
|
|
568 if (!NILP (Ffile_readable_p (name)))
|
|
569 return name;
|
|
570 else
|
|
571 return Qnil;
|
|
572 }
|
|
573
|
|
574 if (NILP (Vdefault_gtk_device))
|
|
575 /* This may occur during intialization. */
|
|
576 return Qnil;
|
|
577
|
|
578 if (NILP (Vgtk_bitmap_file_path))
|
|
579 {
|
|
580 Vgtk_bitmap_file_path = nconc2 (Vgtk_bitmap_file_path,
|
|
581 (decode_path (BITMAPDIR)));
|
|
582 }
|
|
583
|
|
584 {
|
|
585 Lisp_Object found;
|
|
586 if (locate_file (Vgtk_bitmap_file_path, name, Qnil, &found, R_OK) < 0)
|
|
587 {
|
|
588 Lisp_Object temp = list1 (Vdata_directory);
|
|
589 struct gcpro gcpro1;
|
|
590
|
|
591 GCPRO1 (temp);
|
|
592 locate_file (temp, name, Qnil, &found, R_OK);
|
|
593 UNGCPRO;
|
|
594 }
|
|
595
|
|
596 return found;
|
|
597 }
|
|
598 }
|
|
599
|
|
600 static Lisp_Object
|
|
601 locate_pixmap_file (Lisp_Object name)
|
|
602 {
|
|
603 return gtk_locate_pixmap_file (name);
|
|
604 }
|
|
605
|
|
606
|
|
607 /************************************************************************/
|
|
608 /* cursor functions */
|
|
609 /************************************************************************/
|
|
610
|
|
611 /* Check that this server supports cursors of size WIDTH * HEIGHT. If
|
|
612 not, signal an error. INSTANTIATOR is only used in the error
|
|
613 message. */
|
|
614
|
|
615 static void
|
|
616 check_pointer_sizes (unsigned int width, unsigned int height,
|
|
617 Lisp_Object instantiator)
|
|
618 {
|
|
619 /* #### BILL!!! There is no way to call XQueryBestCursor from Gdk! */
|
|
620 #if 0
|
|
621 unsigned int best_width, best_height;
|
|
622 if (! XQueryBestCursor (DisplayOfScreen (xs), RootWindowOfScreen (xs),
|
|
623 width, height, &best_width, &best_height))
|
|
624 /* this means that an X error of some sort occurred (we trap
|
|
625 these so they're not fatal). */
|
563
|
626 gui_error ("XQueryBestCursor() failed?", instantiator);
|
462
|
627
|
|
628 if (width > best_width || height > best_height)
|
563
|
629 signal_ferror_with_frob (Qgui_error, instantiator,
|
|
630 "pointer too large (%dx%d): "
|
|
631 "server requires %dx%d or smaller",
|
|
632 width, height, best_width, best_height);
|
462
|
633 #endif
|
|
634 }
|
|
635
|
|
636 static void
|
|
637 generate_cursor_fg_bg (Lisp_Object device, Lisp_Object *foreground,
|
|
638 Lisp_Object *background, GdkColor *xfg, GdkColor *xbg)
|
|
639 {
|
|
640 if (!NILP (*foreground) && !COLOR_INSTANCEP (*foreground))
|
|
641 *foreground =
|
|
642 Fmake_color_instance (*foreground, device,
|
|
643 encode_error_behavior_flag (ERROR_ME));
|
|
644 if (COLOR_INSTANCEP (*foreground))
|
|
645 *xfg = * COLOR_INSTANCE_GTK_COLOR (XCOLOR_INSTANCE (*foreground));
|
|
646 else
|
|
647 {
|
|
648 xfg->pixel = 0;
|
|
649 xfg->red = xfg->green = xfg->blue = 0;
|
|
650 }
|
|
651
|
|
652 if (!NILP (*background) && !COLOR_INSTANCEP (*background))
|
|
653 *background =
|
|
654 Fmake_color_instance (*background, device,
|
|
655 encode_error_behavior_flag (ERROR_ME));
|
|
656 if (COLOR_INSTANCEP (*background))
|
|
657 *xbg = * COLOR_INSTANCE_GTK_COLOR (XCOLOR_INSTANCE (*background));
|
|
658 else
|
|
659 {
|
|
660 xbg->pixel = 0;
|
|
661 xbg->red = xbg->green = xbg->blue = ~0;
|
|
662 }
|
|
663 }
|
|
664
|
|
665 static void
|
|
666 maybe_recolor_cursor (Lisp_Object image_instance, Lisp_Object foreground,
|
|
667 Lisp_Object background)
|
|
668 {
|
|
669 #if 0
|
|
670 /* #### BILL!!! */
|
|
671 Lisp_Object device = XIMAGE_INSTANCE_DEVICE (image_instance);
|
|
672 GdkColor xfg, xbg;
|
|
673
|
|
674 generate_cursor_fg_bg (device, &foreground, &background, &xfg, &xbg);
|
|
675 if (!NILP (foreground) || !NILP (background))
|
|
676 {
|
|
677 XRecolorCursor (DEVICE_X_DISPLAY (XDEVICE (device)),
|
|
678 XIMAGE_INSTANCE_GTK_CURSOR (image_instance),
|
|
679 &xfg, &xbg);
|
|
680 XIMAGE_INSTANCE_PIXMAP_FG (image_instance) = foreground;
|
|
681 XIMAGE_INSTANCE_PIXMAP_BG (image_instance) = background;
|
|
682 }
|
|
683 #else
|
|
684 /* stderr_out ("Don't know how to recolor cursors in Gtk!\n"); */
|
|
685 #endif
|
|
686 }
|
|
687
|
|
688
|
|
689 /************************************************************************/
|
|
690 /* color pixmap functions */
|
|
691 /************************************************************************/
|
|
692
|
|
693 /* Initialize an image instance from an XImage.
|
|
694
|
|
695 DEST_MASK specifies the mask of allowed image types.
|
|
696
|
|
697 PIXELS and NPIXELS specify an array of pixels that are used in
|
|
698 the image. These need to be kept around for the duration of the
|
|
699 image. When the image instance is freed, XFreeColors() will
|
|
700 automatically be called on all the pixels specified here; thus,
|
|
701 you should have allocated the pixels yourself using XAllocColor()
|
|
702 or the like. The array passed in is used directly without
|
|
703 being copied, so it should be heap data created with xmalloc().
|
|
704 It will be freed using xfree() when the image instance is
|
|
705 destroyed.
|
|
706
|
|
707 If this fails, signal an error. INSTANTIATOR is only used
|
|
708 in the error message.
|
|
709
|
|
710 #### This should be able to handle conversion into `pointer'.
|
|
711 Use the same code as for `xpm'. */
|
|
712
|
|
713 static void
|
|
714 init_image_instance_from_gdk_image (struct Lisp_Image_Instance *ii,
|
|
715 GdkImage *gdk_image,
|
|
716 int dest_mask,
|
|
717 GdkColormap *cmap,
|
|
718 unsigned long *pixels,
|
|
719 int npixels,
|
|
720 int slices,
|
|
721 Lisp_Object instantiator)
|
|
722 {
|
|
723 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
|
|
724 GdkGC *gc;
|
|
725 GdkWindow *d;
|
|
726 GdkPixmap *pixmap;
|
|
727
|
|
728 if (!DEVICE_GTK_P (XDEVICE (device)))
|
563
|
729 gui_error ("Not a Gtk device", device);
|
462
|
730
|
|
731 d = GET_GTK_WIDGET_WINDOW (DEVICE_GTK_APP_SHELL (XDEVICE (device)));
|
|
732
|
|
733 if (!(dest_mask & IMAGE_COLOR_PIXMAP_MASK))
|
|
734 incompatible_image_types (instantiator, dest_mask,
|
|
735 IMAGE_COLOR_PIXMAP_MASK);
|
|
736
|
|
737 pixmap = gdk_pixmap_new (d, gdk_image->width, gdk_image->height, gdk_image->depth);
|
|
738 if (!pixmap)
|
563
|
739 gui_error ("Unable to create pixmap", instantiator);
|
462
|
740
|
|
741 gc = gdk_gc_new (pixmap);
|
|
742 if (!gc)
|
|
743 {
|
|
744 gdk_pixmap_unref (pixmap);
|
563
|
745 gui_error ("Unable to create GC", instantiator);
|
462
|
746 }
|
|
747
|
|
748 gdk_draw_image (GDK_DRAWABLE (pixmap), gc, gdk_image,
|
|
749 0, 0, 0, 0, gdk_image->width, gdk_image->height);
|
|
750
|
|
751 gdk_gc_destroy (gc);
|
|
752
|
|
753 gtk_initialize_pixmap_image_instance (ii, slices, IMAGE_COLOR_PIXMAP);
|
|
754
|
|
755 IMAGE_INSTANCE_PIXMAP_FILENAME (ii) =
|
|
756 find_keyword_in_vector (instantiator, Q_file);
|
|
757
|
|
758 IMAGE_INSTANCE_GTK_PIXMAP (ii) = pixmap;
|
|
759 IMAGE_INSTANCE_GTK_MASK (ii) = 0;
|
|
760 IMAGE_INSTANCE_PIXMAP_WIDTH (ii) = gdk_image->width;
|
|
761 IMAGE_INSTANCE_PIXMAP_HEIGHT (ii) = gdk_image->height;
|
|
762 IMAGE_INSTANCE_PIXMAP_DEPTH (ii) = gdk_image->depth;
|
|
763 IMAGE_INSTANCE_GTK_COLORMAP (ii) = cmap;
|
|
764 IMAGE_INSTANCE_GTK_PIXELS (ii) = pixels;
|
|
765 IMAGE_INSTANCE_GTK_NPIXELS (ii) = npixels;
|
|
766 }
|
|
767
|
|
768 #if 0
|
|
769 void init_image_instance_from_gdk_pixmap (struct Lisp_Image_Instance *ii,
|
|
770 struct device *device,
|
|
771 GdkPixmap *gdk_pixmap,
|
|
772 int dest_mask,
|
|
773 Lisp_Object instantiator)
|
|
774 {
|
|
775 GdkWindow *d;
|
|
776 gint width, height, depth;
|
|
777
|
|
778 if (!DEVICE_GTK_P (device))
|
|
779 abort ();
|
|
780
|
|
781 IMAGE_INSTANCE_DEVICE (ii) = device;
|
|
782 IMAGE_INSTANCE_TYPE (ii) = IMAGE_COLOR_PIXMAP;
|
|
783
|
|
784 d = GET_GTK_WIDGET_WINDOW (DEVICE_GTK_APP_SHELL (device));
|
|
785
|
|
786 if (!(dest_mask & IMAGE_COLOR_PIXMAP_MASK))
|
|
787 incompatible_image_types (instantiator, dest_mask,
|
|
788 IMAGE_COLOR_PIXMAP_MASK);
|
|
789
|
|
790 gtk_initialize_pixmap_image_instance (ii, IMAGE_COLOR_PIXMAP);
|
|
791
|
|
792 gdk_window_get_geometry (gdk_pixmap, NULL, NULL, &width, &height, &depth);
|
|
793
|
|
794 IMAGE_INSTANCE_PIXMAP_FILENAME (ii) = Qnil;
|
|
795 IMAGE_INSTANCE_GTK_PIXMAP (ii) = gdk_pixmap;
|
|
796 IMAGE_INSTANCE_GTK_MASK (ii) = 0;
|
|
797 IMAGE_INSTANCE_PIXMAP_WIDTH (ii) = width;
|
|
798 IMAGE_INSTANCE_PIXMAP_HEIGHT (ii) = height;
|
|
799 IMAGE_INSTANCE_PIXMAP_DEPTH (ii) = depth;
|
|
800 IMAGE_INSTANCE_GTK_COLORMAP (ii) = gdk_window_get_colormap (gdk_pixmap);
|
|
801 IMAGE_INSTANCE_GTK_PIXELS (ii) = 0;
|
|
802 IMAGE_INSTANCE_GTK_NPIXELS (ii) = 0;
|
|
803 }
|
|
804 #endif
|
|
805
|
|
806 static void
|
|
807 image_instance_add_gdk_image (Lisp_Image_Instance *ii,
|
|
808 GdkImage *gdk_image,
|
|
809 int slice,
|
|
810 Lisp_Object instantiator)
|
|
811 {
|
|
812 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
|
|
813 GdkWindow *d;
|
|
814 GdkPixmap *pixmap;
|
|
815 GdkGC *gc;
|
|
816
|
|
817 d = GET_GTK_WIDGET_WINDOW (DEVICE_GTK_APP_SHELL (XDEVICE (device)));
|
|
818
|
|
819 pixmap = gdk_pixmap_new (d, gdk_image->width, gdk_image->height, gdk_image->depth);
|
|
820
|
|
821 if (!pixmap)
|
563
|
822 gui_error ("Unable to create pixmap", instantiator);
|
462
|
823
|
|
824 gc = gdk_gc_new (pixmap);
|
|
825
|
|
826 if (!gc)
|
|
827 {
|
|
828 gdk_pixmap_unref (pixmap);
|
563
|
829 gui_error ("Unable to create GC", instantiator);
|
462
|
830 }
|
|
831
|
|
832 gdk_draw_image (GDK_DRAWABLE (pixmap), gc, gdk_image, 0, 0, 0, 0,
|
|
833 gdk_image->width, gdk_image->height);
|
|
834
|
|
835 gdk_gc_destroy (gc);
|
|
836
|
|
837 IMAGE_INSTANCE_GTK_PIXMAP_SLICE (ii, slice) = pixmap;
|
|
838 }
|
|
839
|
|
840 static void
|
|
841 gtk_init_image_instance_from_eimage (struct Lisp_Image_Instance *ii,
|
|
842 int width, int height,
|
|
843 int slices,
|
|
844 unsigned char *eimage,
|
|
845 int dest_mask,
|
|
846 Lisp_Object instantiator,
|
|
847 Lisp_Object domain)
|
|
848 {
|
|
849 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
|
|
850 GdkColormap *cmap = DEVICE_GTK_COLORMAP (XDEVICE(device));
|
|
851 unsigned long *pixtbl = NULL;
|
|
852 int npixels = 0;
|
|
853 int slice;
|
|
854 GdkImage* gdk_image;
|
|
855
|
|
856
|
|
857 for (slice = 0; slice < slices; slice++)
|
|
858 {
|
|
859 gdk_image = convert_EImage_to_GDKImage (device, width, height, eimage,
|
|
860 &pixtbl, &npixels);
|
|
861 if (!gdk_image)
|
|
862 {
|
|
863 if (pixtbl) xfree (pixtbl);
|
|
864 signal_image_error("EImage to GdkImage conversion failed", instantiator);
|
|
865 }
|
|
866
|
|
867 if (slice == 0)
|
|
868 /* Now create the pixmap and set up the image instance */
|
|
869 init_image_instance_from_gdk_image (ii, gdk_image, dest_mask,
|
|
870 cmap, pixtbl, npixels, slices,
|
|
871 instantiator);
|
|
872 else
|
|
873 image_instance_add_gdk_image (ii, gdk_image, slice, instantiator);
|
|
874
|
|
875 if (gdk_image)
|
|
876 {
|
|
877 gdk_image_destroy (gdk_image);
|
|
878 }
|
|
879 gdk_image = 0;
|
|
880 }
|
|
881 }
|
|
882
|
|
883 /* Given inline data for a mono pixmap, create and return the
|
|
884 corresponding X object. */
|
|
885
|
|
886 static GdkPixmap *
|
|
887 pixmap_from_xbm_inline (Lisp_Object device, int width, int height,
|
|
888 /* Note that data is in ext-format! */
|
|
889 CONST Extbyte *bits)
|
|
890 {
|
|
891 return (gdk_bitmap_create_from_data (GET_GTK_WIDGET_WINDOW (DEVICE_GTK_APP_SHELL (XDEVICE (device))),
|
|
892 (char *) bits, width, height));
|
|
893 }
|
|
894
|
|
895 /* Given inline data for a mono pixmap, initialize the given
|
|
896 image instance accordingly. */
|
|
897
|
|
898 static void
|
|
899 init_image_instance_from_xbm_inline (struct Lisp_Image_Instance *ii,
|
|
900 int width, int height,
|
|
901 /* Note that data is in ext-format! */
|
|
902 CONST char *bits,
|
|
903 Lisp_Object instantiator,
|
|
904 Lisp_Object pointer_fg,
|
|
905 Lisp_Object pointer_bg,
|
|
906 int dest_mask,
|
|
907 GdkPixmap *mask,
|
|
908 Lisp_Object mask_filename)
|
|
909 {
|
|
910 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
|
|
911 Lisp_Object foreground = find_keyword_in_vector (instantiator, Q_foreground);
|
|
912 Lisp_Object background = find_keyword_in_vector (instantiator, Q_background);
|
|
913 GdkColor fg;
|
|
914 GdkColor bg;
|
|
915 enum image_instance_type type;
|
|
916 GdkWindow *draw = GET_GTK_WIDGET_WINDOW (DEVICE_GTK_APP_SHELL (XDEVICE (device)));
|
|
917 GdkColormap *cmap = DEVICE_GTK_COLORMAP (XDEVICE(device));
|
|
918 GdkColor black;
|
|
919 GdkColor white;
|
|
920
|
|
921 gdk_color_black(cmap, &black);
|
|
922 gdk_color_white(cmap, &white);
|
|
923
|
|
924 if (!DEVICE_GTK_P (XDEVICE (device)))
|
563
|
925 gui_error ("Not a Gtk device", device);
|
462
|
926
|
|
927 if ((dest_mask & IMAGE_MONO_PIXMAP_MASK) &&
|
|
928 (dest_mask & IMAGE_COLOR_PIXMAP_MASK))
|
|
929 {
|
|
930 if (!NILP (foreground) || !NILP (background))
|
|
931 type = IMAGE_COLOR_PIXMAP;
|
|
932 else
|
|
933 type = IMAGE_MONO_PIXMAP;
|
|
934 }
|
|
935 else if (dest_mask & IMAGE_MONO_PIXMAP_MASK)
|
|
936 type = IMAGE_MONO_PIXMAP;
|
|
937 else if (dest_mask & IMAGE_COLOR_PIXMAP_MASK)
|
|
938 type = IMAGE_COLOR_PIXMAP;
|
|
939 else if (dest_mask & IMAGE_POINTER_MASK)
|
|
940 type = IMAGE_POINTER;
|
|
941 else
|
|
942 incompatible_image_types (instantiator, dest_mask,
|
|
943 IMAGE_MONO_PIXMAP_MASK | IMAGE_COLOR_PIXMAP_MASK
|
|
944 | IMAGE_POINTER_MASK);
|
|
945
|
|
946 gtk_initialize_pixmap_image_instance (ii, 1, type);
|
|
947 IMAGE_INSTANCE_PIXMAP_WIDTH (ii) = width;
|
|
948 IMAGE_INSTANCE_PIXMAP_HEIGHT (ii) = height;
|
|
949 IMAGE_INSTANCE_PIXMAP_FILENAME (ii) =
|
|
950 find_keyword_in_vector (instantiator, Q_file);
|
|
951
|
|
952 switch (type)
|
|
953 {
|
|
954 case IMAGE_MONO_PIXMAP:
|
|
955 {
|
|
956 IMAGE_INSTANCE_GTK_PIXMAP (ii) =
|
|
957 pixmap_from_xbm_inline (device, width, height, (Extbyte *) bits);
|
|
958 }
|
|
959 break;
|
|
960
|
|
961 case IMAGE_COLOR_PIXMAP:
|
|
962 {
|
|
963 gint d = DEVICE_GTK_DEPTH (XDEVICE(device));
|
|
964
|
|
965 if (!NILP (foreground) && !COLOR_INSTANCEP (foreground))
|
|
966 foreground =
|
|
967 Fmake_color_instance (foreground, device,
|
|
968 encode_error_behavior_flag (ERROR_ME));
|
|
969
|
|
970 if (COLOR_INSTANCEP (foreground))
|
|
971 fg = * COLOR_INSTANCE_GTK_COLOR (XCOLOR_INSTANCE (foreground));
|
|
972
|
|
973 if (!NILP (background) && !COLOR_INSTANCEP (background))
|
|
974 background =
|
|
975 Fmake_color_instance (background, device,
|
|
976 encode_error_behavior_flag (ERROR_ME));
|
|
977
|
|
978 if (COLOR_INSTANCEP (background))
|
|
979 bg = * COLOR_INSTANCE_GTK_COLOR (XCOLOR_INSTANCE (background));
|
|
980
|
|
981 /* We used to duplicate the pixels using XAllocColor(), to protect
|
|
982 against their getting freed. Just as easy to just store the
|
|
983 color instances here and GC-protect them, so this doesn't
|
|
984 happen. */
|
|
985 IMAGE_INSTANCE_PIXMAP_FG (ii) = foreground;
|
|
986 IMAGE_INSTANCE_PIXMAP_BG (ii) = background;
|
|
987 IMAGE_INSTANCE_GTK_PIXMAP (ii) =
|
|
988 gdk_pixmap_create_from_data (draw, (char *) bits, width, height, d, &fg, &bg);
|
|
989 IMAGE_INSTANCE_PIXMAP_DEPTH (ii) = d;
|
|
990 }
|
|
991 break;
|
|
992
|
|
993 case IMAGE_POINTER:
|
|
994 {
|
|
995 GdkColor fg_color, bg_color;
|
|
996 GdkPixmap *source;
|
|
997
|
|
998 check_pointer_sizes (width, height, instantiator);
|
|
999
|
|
1000 source = gdk_pixmap_create_from_data (draw, (char *) bits, width, height, 1, &black, &white);
|
|
1001
|
|
1002 if (NILP (foreground))
|
|
1003 foreground = pointer_fg;
|
|
1004 if (NILP (background))
|
|
1005 background = pointer_bg;
|
|
1006 generate_cursor_fg_bg (device, &foreground, &background,
|
|
1007 &fg_color, &bg_color);
|
|
1008
|
|
1009 IMAGE_INSTANCE_PIXMAP_FG (ii) = foreground;
|
|
1010 IMAGE_INSTANCE_PIXMAP_BG (ii) = background;
|
|
1011 IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii) =
|
|
1012 find_keyword_in_vector (instantiator, Q_hotspot_x);
|
|
1013 IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii) =
|
|
1014 find_keyword_in_vector (instantiator, Q_hotspot_y);
|
|
1015 IMAGE_INSTANCE_GTK_CURSOR (ii) =
|
|
1016 gdk_cursor_new_from_pixmap (source, mask, &fg_color, &bg_color,
|
|
1017 !NILP (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii)) ?
|
|
1018 XINT (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii)) : 0,
|
|
1019 !NILP (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii)) ?
|
|
1020 XINT (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii)) : 0);
|
|
1021 }
|
|
1022 break;
|
|
1023
|
|
1024 default:
|
|
1025 abort ();
|
|
1026 }
|
|
1027 }
|
|
1028
|
|
1029 static void
|
|
1030 xbm_instantiate_1 (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
1031 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
|
1032 int dest_mask, int width, int height,
|
|
1033 /* Note that data is in ext-format! */
|
|
1034 CONST char *bits)
|
|
1035 {
|
|
1036 Lisp_Object mask_data = find_keyword_in_vector (instantiator, Q_mask_data);
|
|
1037 Lisp_Object mask_file = find_keyword_in_vector (instantiator, Q_mask_file);
|
|
1038 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
|
|
1039 GdkPixmap *mask = 0;
|
|
1040 CONST char *gcc_may_you_rot_in_hell;
|
|
1041
|
|
1042 if (!NILP (mask_data))
|
|
1043 {
|
|
1044 TO_EXTERNAL_FORMAT (LISP_STRING, XCAR (XCDR (XCDR (mask_data))),
|
|
1045 C_STRING_ALLOCA, gcc_may_you_rot_in_hell,
|
|
1046 Qfile_name);
|
|
1047 mask =
|
|
1048 pixmap_from_xbm_inline (IMAGE_INSTANCE_DEVICE (ii),
|
|
1049 XINT (XCAR (mask_data)),
|
|
1050 XINT (XCAR (XCDR (mask_data))),
|
|
1051 (CONST unsigned char *)
|
|
1052 gcc_may_you_rot_in_hell);
|
|
1053 }
|
|
1054
|
|
1055 init_image_instance_from_xbm_inline (ii, width, height, bits,
|
|
1056 instantiator, pointer_fg, pointer_bg,
|
|
1057 dest_mask, mask, mask_file);
|
|
1058 }
|
|
1059
|
|
1060 /* Instantiate method for XBM's. */
|
|
1061
|
|
1062 static void
|
|
1063 gtk_xbm_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
1064 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
|
1065 int dest_mask, Lisp_Object domain)
|
|
1066 {
|
|
1067 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
|
|
1068 CONST char *gcc_go_home;
|
|
1069
|
|
1070 assert (!NILP (data));
|
|
1071
|
|
1072 TO_EXTERNAL_FORMAT (LISP_STRING, XCAR (XCDR (XCDR (data))),
|
|
1073 C_STRING_ALLOCA, gcc_go_home,
|
|
1074 Qbinary);
|
|
1075
|
|
1076 xbm_instantiate_1 (image_instance, instantiator, pointer_fg,
|
|
1077 pointer_bg, dest_mask, XINT (XCAR (data)),
|
|
1078 XINT (XCAR (XCDR (data))), gcc_go_home);
|
|
1079 }
|
|
1080
|
|
1081
|
|
1082 #ifdef HAVE_XPM
|
|
1083 /**********************************************************************
|
|
1084 * XPM *
|
|
1085 **********************************************************************/
|
|
1086 static void
|
|
1087 write_lisp_string_to_temp_file (Lisp_Object string, char *filename_out)
|
|
1088 {
|
|
1089 Lisp_Object instream, outstream;
|
|
1090 Lstream *istr, *ostr;
|
|
1091 char tempbuf[1024]; /* some random amount */
|
|
1092 int fubar = 0;
|
|
1093 FILE *tmpfil;
|
|
1094 static Extbyte_dynarr *conversion_out_dynarr;
|
|
1095 Bytecount bstart, bend;
|
|
1096 struct gcpro gcpro1, gcpro2;
|
|
1097 #ifdef FILE_CODING
|
|
1098 Lisp_Object conv_out_stream;
|
|
1099 Lstream *costr;
|
|
1100 struct gcpro gcpro3;
|
|
1101 #endif
|
|
1102
|
|
1103 /* This function can GC */
|
|
1104 if (!conversion_out_dynarr)
|
|
1105 conversion_out_dynarr = Dynarr_new (Extbyte);
|
|
1106 else
|
|
1107 Dynarr_reset (conversion_out_dynarr);
|
|
1108
|
|
1109 /* Create the temporary file ... */
|
|
1110 sprintf (filename_out, "/tmp/emacs%d.XXXXXX", (int) getpid ());
|
|
1111 mktemp (filename_out);
|
|
1112 tmpfil = fopen (filename_out, "w");
|
|
1113 if (!tmpfil)
|
|
1114 {
|
|
1115 if (tmpfil)
|
|
1116 {
|
|
1117 int old_errno = errno;
|
|
1118 fclose (tmpfil);
|
|
1119 unlink (filename_out);
|
|
1120 errno = old_errno;
|
|
1121 }
|
563
|
1122 report_file_error ("Creating temp file", build_string (filename_out));
|
462
|
1123 }
|
|
1124
|
|
1125 CHECK_STRING (string);
|
|
1126 get_string_range_byte (string, Qnil, Qnil, &bstart, &bend,
|
|
1127 GB_HISTORICAL_STRING_BEHAVIOR);
|
|
1128 instream = make_lisp_string_input_stream (string, bstart, bend);
|
|
1129 istr = XLSTREAM (instream);
|
|
1130 /* setup the out stream */
|
|
1131 outstream = make_dynarr_output_stream((unsigned_char_dynarr *)conversion_out_dynarr);
|
|
1132 ostr = XLSTREAM (outstream);
|
|
1133 #ifdef FILE_CODING
|
|
1134 /* setup the conversion stream */
|
|
1135 conv_out_stream = make_encoding_output_stream (ostr, Fget_coding_system(Qbinary));
|
|
1136 costr = XLSTREAM (conv_out_stream);
|
|
1137 GCPRO3 (instream, outstream, conv_out_stream);
|
|
1138 #else
|
|
1139 GCPRO2 (instream, outstream);
|
|
1140 #endif
|
|
1141
|
|
1142 /* Get the data while doing the conversion */
|
|
1143 while (1)
|
|
1144 {
|
|
1145 int size_in_bytes = Lstream_read (istr, tempbuf, sizeof (tempbuf));
|
|
1146 if (!size_in_bytes)
|
|
1147 break;
|
|
1148 /* It does seem the flushes are necessary... */
|
|
1149 #ifdef FILE_CODING
|
|
1150 Lstream_write (costr, tempbuf, size_in_bytes);
|
|
1151 Lstream_flush (costr);
|
|
1152 #else
|
|
1153 Lstream_write (ostr, tempbuf, size_in_bytes);
|
|
1154 #endif
|
|
1155 Lstream_flush (ostr);
|
|
1156 if (fwrite ((unsigned char *)Dynarr_atp(conversion_out_dynarr, 0),
|
|
1157 Dynarr_length(conversion_out_dynarr), 1, tmpfil) != 1)
|
|
1158 {
|
|
1159 fubar = 1;
|
|
1160 break;
|
|
1161 }
|
|
1162 /* reset the dynarr */
|
|
1163 Lstream_rewind(ostr);
|
|
1164 }
|
|
1165
|
|
1166 if (fclose (tmpfil) != 0)
|
|
1167 fubar = 1;
|
|
1168 Lstream_close (istr);
|
|
1169 #ifdef FILE_CODING
|
|
1170 Lstream_close (costr);
|
|
1171 #endif
|
|
1172 Lstream_close (ostr);
|
|
1173
|
|
1174 UNGCPRO;
|
|
1175 Lstream_delete (istr);
|
|
1176 Lstream_delete (ostr);
|
|
1177 #ifdef FILE_CODING
|
|
1178 Lstream_delete (costr);
|
|
1179 #endif
|
|
1180
|
|
1181 if (fubar)
|
563
|
1182 report_file_error ("Writing temp file", build_string (filename_out));
|
462
|
1183 }
|
|
1184
|
|
1185 struct color_symbol
|
|
1186 {
|
|
1187 char* name;
|
|
1188 GdkColor color;
|
|
1189 };
|
|
1190
|
|
1191 static struct color_symbol*
|
|
1192 extract_xpm_color_names (Lisp_Object device,
|
|
1193 Lisp_Object domain,
|
|
1194 Lisp_Object color_symbol_alist,
|
|
1195 int* nsymbols)
|
|
1196 {
|
|
1197 /* This function can GC */
|
|
1198 Lisp_Object rest;
|
|
1199 Lisp_Object results = Qnil;
|
|
1200 int i, j;
|
|
1201 struct color_symbol *colortbl;
|
|
1202 struct gcpro gcpro1, gcpro2;
|
|
1203
|
|
1204 GCPRO2 (results, device);
|
|
1205
|
|
1206 /* We built up results to be (("name" . #<color>) ...) so that if an
|
|
1207 error happens we don't lose any malloc()ed data, or more importantly,
|
|
1208 leave any pixels allocated in the server. */
|
|
1209 i = 0;
|
|
1210 LIST_LOOP (rest, color_symbol_alist)
|
|
1211 {
|
|
1212 Lisp_Object cons = XCAR (rest);
|
|
1213 Lisp_Object name = XCAR (cons);
|
|
1214 Lisp_Object value = XCDR (cons);
|
|
1215 if (NILP (value))
|
|
1216 continue;
|
|
1217 if (STRINGP (value))
|
|
1218 value =
|
|
1219 Fmake_color_instance
|
|
1220 (value, device, encode_error_behavior_flag (ERROR_ME_NOT));
|
|
1221 else
|
|
1222 {
|
|
1223 assert (COLOR_SPECIFIERP (value));
|
|
1224 value = Fspecifier_instance (value, domain, Qnil, Qnil);
|
|
1225 }
|
|
1226 if (NILP (value))
|
|
1227 continue;
|
|
1228 results = noseeum_cons (noseeum_cons (name, value), results);
|
|
1229 i++;
|
|
1230 }
|
|
1231 UNGCPRO; /* no more evaluation */
|
|
1232
|
|
1233 *nsymbols=i;
|
|
1234 if (i == 0) return 0;
|
|
1235
|
|
1236 colortbl = xnew_array_and_zero (struct color_symbol, i);
|
|
1237
|
|
1238 for (j=0; j<i; j++)
|
|
1239 {
|
|
1240 Lisp_Object cons = XCAR (results);
|
|
1241 colortbl[j].color =
|
|
1242 * COLOR_INSTANCE_GTK_COLOR (XCOLOR_INSTANCE (XCDR (cons)));
|
|
1243
|
|
1244 colortbl[j].name = (char *) XSTRING_DATA (XCAR (cons));
|
|
1245 free_cons (XCONS (cons));
|
|
1246 cons = results;
|
|
1247 results = XCDR (results);
|
|
1248 free_cons (XCONS (cons));
|
|
1249 }
|
|
1250 return colortbl;
|
|
1251 }
|
|
1252
|
|
1253 static void
|
|
1254 gtk_xpm_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
1255 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
|
1256 int dest_mask, Lisp_Object domain)
|
|
1257 {
|
|
1258 /* This function can GC */
|
|
1259 char temp_file_name[1024];
|
|
1260 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
|
|
1261 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
|
|
1262 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
|
|
1263 GdkColormap *cmap;
|
|
1264 int depth;
|
|
1265 GdkVisual *visual;
|
|
1266 GdkPixmap *pixmap;
|
|
1267 GdkPixmap *mask = 0;
|
|
1268 GdkWindow *window = 0;
|
|
1269 int nsymbols = 0, i = 0;
|
|
1270 struct color_symbol *color_symbols = NULL;
|
|
1271 GdkColor *transparent_color = NULL;
|
|
1272 Lisp_Object color_symbol_alist = find_keyword_in_vector (instantiator,
|
|
1273 Q_color_symbols);
|
|
1274 enum image_instance_type type;
|
|
1275 int force_mono;
|
|
1276 unsigned int w, h;
|
|
1277
|
|
1278 if (!DEVICE_GTK_P (XDEVICE (device)))
|
563
|
1279 gui_error ("Not a Gtk device", device);
|
462
|
1280
|
|
1281 if (dest_mask & IMAGE_COLOR_PIXMAP_MASK)
|
|
1282 type = IMAGE_COLOR_PIXMAP;
|
|
1283 else if (dest_mask & IMAGE_MONO_PIXMAP_MASK)
|
|
1284 type = IMAGE_MONO_PIXMAP;
|
|
1285 else if (dest_mask & IMAGE_POINTER_MASK)
|
|
1286 type = IMAGE_POINTER;
|
|
1287 else
|
|
1288 incompatible_image_types (instantiator, dest_mask,
|
|
1289 IMAGE_MONO_PIXMAP_MASK | IMAGE_COLOR_PIXMAP_MASK
|
|
1290 | IMAGE_POINTER_MASK);
|
|
1291 force_mono = (type != IMAGE_COLOR_PIXMAP);
|
|
1292
|
|
1293 window = GET_GTK_WIDGET_WINDOW (DEVICE_GTK_APP_SHELL (XDEVICE (device)));
|
|
1294 cmap = DEVICE_GTK_COLORMAP (XDEVICE (device));
|
|
1295 depth = DEVICE_GTK_DEPTH (XDEVICE (device));
|
|
1296 visual = DEVICE_GTK_VISUAL (XDEVICE (device));
|
|
1297
|
|
1298 gtk_initialize_pixmap_image_instance (ii, 1, type);
|
|
1299
|
|
1300 assert (!NILP (data));
|
|
1301
|
|
1302 /* Need to get the transparent color here */
|
|
1303 color_symbols = extract_xpm_color_names (device, domain, color_symbol_alist, &nsymbols);
|
|
1304 for (i = 0; i < nsymbols; i++)
|
|
1305 {
|
|
1306 if (!strcasecmp ("BgColor", color_symbols[i].name) ||
|
|
1307 !strcasecmp ("None", color_symbols[i].name))
|
|
1308 {
|
|
1309 transparent_color = &color_symbols[i].color;
|
|
1310 }
|
|
1311 }
|
|
1312
|
|
1313 write_lisp_string_to_temp_file (data, temp_file_name);
|
|
1314 pixmap = gdk_pixmap_create_from_xpm (window, &mask, transparent_color, temp_file_name);
|
|
1315 unlink (temp_file_name);
|
|
1316
|
|
1317 if (color_symbols) xfree (color_symbols);
|
|
1318
|
|
1319 if (!pixmap)
|
|
1320 {
|
|
1321 signal_image_error ("Error reading pixmap", data);
|
|
1322 }
|
|
1323
|
|
1324 gdk_window_get_geometry (pixmap, NULL, NULL, &w, &h, &depth);
|
|
1325
|
|
1326 IMAGE_INSTANCE_GTK_PIXMAP (ii) = pixmap;
|
|
1327 IMAGE_INSTANCE_GTK_MASK (ii) = mask;
|
|
1328 IMAGE_INSTANCE_GTK_COLORMAP (ii) = cmap;
|
|
1329 IMAGE_INSTANCE_GTK_PIXELS (ii) = 0;
|
|
1330 IMAGE_INSTANCE_GTK_NPIXELS (ii) = 0;
|
|
1331 IMAGE_INSTANCE_PIXMAP_WIDTH (ii) = w;
|
|
1332 IMAGE_INSTANCE_PIXMAP_HEIGHT (ii) = h;
|
|
1333 IMAGE_INSTANCE_PIXMAP_FILENAME (ii) =
|
|
1334 find_keyword_in_vector (instantiator, Q_file);
|
|
1335
|
|
1336 switch (type)
|
|
1337 {
|
|
1338 case IMAGE_MONO_PIXMAP:
|
|
1339 break;
|
|
1340
|
|
1341 case IMAGE_COLOR_PIXMAP:
|
|
1342 {
|
|
1343 IMAGE_INSTANCE_PIXMAP_DEPTH (ii) = depth;
|
|
1344 }
|
|
1345 break;
|
|
1346
|
|
1347 case IMAGE_POINTER:
|
|
1348 {
|
|
1349 GdkColor fg, bg;
|
|
1350 unsigned int xhot, yhot;
|
|
1351
|
|
1352 /* #### Gtk does not give us access to the hotspots of a pixmap */
|
|
1353 xhot = yhot = 1;
|
|
1354 XSETINT (IMAGE_INSTANCE_PIXMAP_HOTSPOT_X (ii), xhot);
|
|
1355 XSETINT (IMAGE_INSTANCE_PIXMAP_HOTSPOT_Y (ii), yhot);
|
|
1356
|
|
1357 check_pointer_sizes (w, h, instantiator);
|
|
1358
|
|
1359 /* If the loaded pixmap has colors allocated (meaning it came from an
|
|
1360 XPM file), then use those as the default colors for the cursor we
|
|
1361 create. Otherwise, default to pointer_fg and pointer_bg.
|
|
1362 */
|
|
1363 if (depth > 1)
|
|
1364 {
|
|
1365 warn_when_safe (Qunimplemented, Qnotice,
|
|
1366 "GTK does not support XPM cursors...\n");
|
|
1367 IMAGE_INSTANCE_GTK_CURSOR (ii) = gdk_cursor_new (GDK_COFFEE_MUG);
|
|
1368 }
|
|
1369 else
|
|
1370 {
|
|
1371 generate_cursor_fg_bg (device, &pointer_fg, &pointer_bg,
|
|
1372 &fg, &bg);
|
|
1373 IMAGE_INSTANCE_PIXMAP_FG (ii) = pointer_fg;
|
|
1374 IMAGE_INSTANCE_PIXMAP_BG (ii) = pointer_bg;
|
|
1375 IMAGE_INSTANCE_GTK_CURSOR (ii) = gdk_cursor_new_from_pixmap (pixmap, mask, &fg, &bg, xhot, yhot);
|
|
1376 }
|
|
1377 }
|
|
1378
|
|
1379 break;
|
|
1380
|
|
1381 default:
|
|
1382 abort ();
|
|
1383 }
|
|
1384 }
|
|
1385 #endif /* HAVE_XPM */
|
|
1386
|
|
1387
|
|
1388 #ifdef HAVE_XFACE
|
|
1389
|
|
1390 /**********************************************************************
|
|
1391 * X-Face *
|
|
1392 **********************************************************************/
|
|
1393 #if defined(EXTERN)
|
|
1394 /* This is about to get redefined! */
|
|
1395 #undef EXTERN
|
|
1396 #endif
|
|
1397 /* We have to define SYSV32 so that compface.h includes string.h
|
|
1398 instead of strings.h. */
|
|
1399 #define SYSV32
|
|
1400 #ifdef __cplusplus
|
|
1401 extern "C" {
|
|
1402 #endif
|
|
1403 #include <compface.h>
|
|
1404 #ifdef __cplusplus
|
|
1405 }
|
|
1406 #endif
|
|
1407 /* JMP_BUF cannot be used here because if it doesn't get defined
|
|
1408 to jmp_buf we end up with a conflicting type error with the
|
|
1409 definition in compface.h */
|
|
1410 extern jmp_buf comp_env;
|
|
1411 #undef SYSV32
|
|
1412
|
|
1413 static void
|
|
1414 gtk_xface_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
1415 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
|
1416 int dest_mask, Lisp_Object domain)
|
|
1417 {
|
|
1418 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
|
|
1419 int i, stattis;
|
|
1420 char *p, *bits, *bp;
|
|
1421 CONST char * volatile emsg = 0;
|
|
1422 CONST char * volatile dstring;
|
|
1423
|
|
1424 assert (!NILP (data));
|
|
1425
|
|
1426 LISP_STRING_TO_EXTERNAL (data, dstring, Qbinary);
|
|
1427
|
|
1428 if ((p = strchr (dstring, ':')))
|
|
1429 {
|
|
1430 dstring = p + 1;
|
|
1431 }
|
|
1432
|
|
1433 /* Must use setjmp not SETJMP because we used jmp_buf above not JMP_BUF */
|
|
1434 if (!(stattis = setjmp (comp_env)))
|
|
1435 {
|
|
1436 UnCompAll ((char *) dstring);
|
|
1437 UnGenFace ();
|
|
1438 }
|
|
1439
|
|
1440 switch (stattis)
|
|
1441 {
|
|
1442 case -2:
|
|
1443 emsg = "uncompface: internal error";
|
|
1444 break;
|
|
1445 case -1:
|
|
1446 emsg = "uncompface: insufficient or invalid data";
|
|
1447 break;
|
|
1448 case 1:
|
|
1449 emsg = "uncompface: excess data ignored";
|
|
1450 break;
|
|
1451 }
|
|
1452
|
|
1453 if (emsg)
|
563
|
1454 gui_error_2 (emsg, data, Qimage);
|
462
|
1455
|
|
1456 bp = bits = (char *) alloca (PIXELS / 8);
|
|
1457
|
|
1458 /* the compface library exports char F[], which uses a single byte per
|
|
1459 pixel to represent a 48x48 bitmap. Yuck. */
|
|
1460 for (i = 0, p = F; i < (PIXELS / 8); ++i)
|
|
1461 {
|
|
1462 int n, b;
|
|
1463 /* reverse the bit order of each byte... */
|
|
1464 for (b = n = 0; b < 8; ++b)
|
|
1465 {
|
|
1466 n |= ((*p++) << b);
|
|
1467 }
|
|
1468 *bp++ = (char) n;
|
|
1469 }
|
|
1470
|
|
1471 xbm_instantiate_1 (image_instance, instantiator, pointer_fg,
|
|
1472 pointer_bg, dest_mask, 48, 48, bits);
|
|
1473 }
|
|
1474
|
|
1475 #endif /* HAVE_XFACE */
|
|
1476
|
|
1477 /**********************************************************************
|
|
1478 * RESOURCES *
|
|
1479 **********************************************************************/
|
|
1480
|
|
1481 static void
|
|
1482 gtk_resource_validate (Lisp_Object instantiator)
|
|
1483 {
|
|
1484 if ((NILP (find_keyword_in_vector (instantiator, Q_file))
|
|
1485 &&
|
|
1486 NILP (find_keyword_in_vector (instantiator, Q_resource_id)))
|
|
1487 ||
|
|
1488 NILP (find_keyword_in_vector (instantiator, Q_resource_type)))
|
563
|
1489 sferror ("Must supply :file, :resource-id and :resource-type",
|
462
|
1490 instantiator);
|
|
1491 }
|
|
1492
|
|
1493 static Lisp_Object
|
563
|
1494 gtk_resource_normalize (Lisp_Object inst, Lisp_Object console_type,
|
|
1495 Lisp_Object dest_mask)
|
462
|
1496 {
|
563
|
1497 return shared_resource_normalize (inst, console_type, dest_mask,
|
|
1498 Qgtk_resource);
|
462
|
1499 }
|
|
1500
|
|
1501 static int
|
|
1502 gtk_resource_possible_dest_types (void)
|
|
1503 {
|
|
1504 return IMAGE_POINTER_MASK | IMAGE_COLOR_PIXMAP_MASK;
|
|
1505 }
|
|
1506
|
|
1507 extern guint symbol_to_enum (Lisp_Object, GtkType);
|
|
1508
|
|
1509 static guint resource_name_to_resource (Lisp_Object name, int type)
|
|
1510 {
|
|
1511 if (type == IMAGE_POINTER)
|
|
1512 return (symbol_to_enum (name, GTK_TYPE_GDK_CURSOR_TYPE));
|
|
1513 else
|
|
1514 return (0);
|
|
1515 }
|
|
1516
|
|
1517 static int
|
|
1518 resource_symbol_to_type (Lisp_Object data)
|
|
1519 {
|
|
1520 if (EQ (data, Qcursor))
|
|
1521 return IMAGE_POINTER;
|
|
1522 #if 0
|
|
1523 else if (EQ (data, Qicon))
|
|
1524 return IMAGE_ICON;
|
|
1525 else if (EQ (data, Qbitmap))
|
|
1526 return IMAGE_BITMAP;
|
|
1527 #endif
|
|
1528 else
|
|
1529 return 0;
|
|
1530 }
|
|
1531
|
|
1532 static void
|
|
1533 gtk_resource_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
1534 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
|
1535 int dest_mask, Lisp_Object domain)
|
|
1536 {
|
|
1537 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
|
|
1538 GdkCursor *c = NULL;
|
|
1539 unsigned int type = 0;
|
|
1540 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
|
|
1541 Lisp_Object resource_type = find_keyword_in_vector (instantiator, Q_resource_type);
|
|
1542 Lisp_Object resource_id = find_keyword_in_vector (instantiator, Q_resource_id);
|
|
1543
|
|
1544 if (!DEVICE_GTK_P (XDEVICE (device)))
|
563
|
1545 gui_error ("Not a GTK device", device);
|
462
|
1546
|
|
1547 type = resource_symbol_to_type (resource_type);
|
|
1548
|
595
|
1549 #if 0
|
|
1550 if (dest_mask & IMAGE_POINTER_MASK && type == IMAGE_POINTER_MASK)
|
|
1551 iitype = IMAGE_POINTER;
|
|
1552 else if (dest_mask & IMAGE_COLOR_PIXMAP_MASK)
|
|
1553 iitype = IMAGE_COLOR_PIXMAP;
|
|
1554 else
|
|
1555 incompatible_image_types (instantiator, dest_mask,
|
|
1556 IMAGE_COLOR_PIXMAP_MASK | IMAGE_POINTER_MASK);
|
|
1557 #endif
|
|
1558
|
462
|
1559 /* mess with the keyword info we were provided with */
|
|
1560 gtk_initialize_pixmap_image_instance (ii, 1, type);
|
|
1561 c = gdk_cursor_new (resource_name_to_resource (resource_id, type));
|
|
1562 IMAGE_INSTANCE_GTK_CURSOR (ii) = c;
|
|
1563 IMAGE_INSTANCE_PIXMAP_FILENAME (ii) = resource_id;
|
|
1564 IMAGE_INSTANCE_PIXMAP_WIDTH (ii) = 10;
|
|
1565 IMAGE_INSTANCE_PIXMAP_HEIGHT (ii) = 10;
|
|
1566 IMAGE_INSTANCE_PIXMAP_DEPTH (ii) = 1;
|
|
1567 }
|
|
1568
|
|
1569 static void
|
|
1570 check_valid_resource_symbol (Lisp_Object data)
|
|
1571 {
|
|
1572 CHECK_SYMBOL (data);
|
|
1573 if (!resource_symbol_to_type (data))
|
563
|
1574 invalid_constant ("invalid resource type", data);
|
462
|
1575 }
|
|
1576
|
|
1577 static void
|
|
1578 check_valid_resource_id (Lisp_Object data)
|
|
1579 {
|
|
1580 if (!resource_name_to_resource (data, IMAGE_POINTER)
|
|
1581 &&
|
|
1582 !resource_name_to_resource (data, IMAGE_COLOR_PIXMAP)
|
|
1583 #if 0
|
|
1584 &&
|
|
1585 !resource_name_to_resource (data, IMAGE_BITMAP)
|
|
1586 #endif
|
|
1587 )
|
563
|
1588 invalid_constant ("invalid resource identifier", data);
|
462
|
1589 }
|
|
1590
|
|
1591 #if 0
|
|
1592 void
|
|
1593 check_valid_string_or_int (Lisp_Object data)
|
|
1594 {
|
|
1595 if (!INTP (data))
|
|
1596 CHECK_STRING (data);
|
|
1597 else
|
|
1598 CHECK_INT (data);
|
|
1599 }
|
|
1600 #endif
|
|
1601
|
|
1602
|
|
1603 /**********************************************************************
|
|
1604 * Autodetect *
|
|
1605 **********************************************************************/
|
|
1606
|
|
1607 static void
|
|
1608 autodetect_validate (Lisp_Object instantiator)
|
|
1609 {
|
|
1610 data_must_be_present (instantiator);
|
|
1611 }
|
|
1612
|
|
1613 static Lisp_Object
|
|
1614 autodetect_normalize (Lisp_Object instantiator,
|
|
1615 Lisp_Object console_type,
|
|
1616 Lisp_Object dest_mask)
|
|
1617 {
|
|
1618 Lisp_Object file = find_keyword_in_vector (instantiator, Q_data);
|
|
1619 Lisp_Object filename = Qnil;
|
|
1620 Lisp_Object data = Qnil;
|
|
1621 struct gcpro gcpro1, gcpro2, gcpro3;
|
|
1622 Lisp_Object alist = Qnil;
|
|
1623
|
|
1624 GCPRO3 (filename, data, alist);
|
|
1625
|
|
1626 if (NILP (file)) /* no conversion necessary */
|
|
1627 RETURN_UNGCPRO (instantiator);
|
|
1628
|
|
1629 alist = tagged_vector_to_alist (instantiator);
|
|
1630
|
|
1631 filename = locate_pixmap_file (file);
|
|
1632 if (!NILP (filename))
|
|
1633 {
|
|
1634 int xhot, yhot;
|
|
1635 /* #### Apparently some versions of XpmReadFileToData, which is
|
|
1636 called by pixmap_to_lisp_data, don't return an error value
|
|
1637 if the given file is not a valid XPM file. Instead, they
|
|
1638 just seg fault. It is definitely caused by passing a
|
|
1639 bitmap. To try and avoid this we check for bitmaps first. */
|
|
1640
|
|
1641 data = bitmap_to_lisp_data (filename, &xhot, &yhot, 1);
|
|
1642
|
|
1643 if (!EQ (data, Qt))
|
|
1644 {
|
|
1645 alist = remassq_no_quit (Q_data, alist);
|
|
1646 alist = Fcons (Fcons (Q_file, filename),
|
|
1647 Fcons (Fcons (Q_data, data), alist));
|
|
1648 if (xhot != -1)
|
|
1649 alist = Fcons (Fcons (Q_hotspot_x, make_int (xhot)),
|
|
1650 alist);
|
|
1651 if (yhot != -1)
|
|
1652 alist = Fcons (Fcons (Q_hotspot_y, make_int (yhot)),
|
|
1653 alist);
|
|
1654
|
|
1655 alist = xbm_mask_file_munging (alist, filename, Qnil, console_type);
|
|
1656
|
|
1657 {
|
|
1658 Lisp_Object result = alist_to_tagged_vector (Qxbm, alist);
|
|
1659 free_alist (alist);
|
|
1660 RETURN_UNGCPRO (result);
|
|
1661 }
|
|
1662 }
|
|
1663
|
|
1664 #ifdef HAVE_XPM
|
|
1665 data = pixmap_to_lisp_data (filename, 1);
|
|
1666
|
|
1667 if (!EQ (data, Qt))
|
|
1668 {
|
|
1669 alist = remassq_no_quit (Q_data, alist);
|
|
1670 alist = Fcons (Fcons (Q_file, filename),
|
|
1671 Fcons (Fcons (Q_data, data), alist));
|
|
1672 alist = Fcons (Fcons (Q_color_symbols,
|
|
1673 evaluate_xpm_color_symbols ()),
|
|
1674 alist);
|
|
1675 {
|
|
1676 Lisp_Object result = alist_to_tagged_vector (Qxpm, alist);
|
|
1677 free_alist (alist);
|
|
1678 RETURN_UNGCPRO (result);
|
|
1679 }
|
|
1680 }
|
|
1681 #endif
|
|
1682 }
|
|
1683
|
|
1684 /* If we couldn't convert it, just put it back as it is.
|
|
1685 We might try to further frob it later as a cursor-font
|
|
1686 specification. (We can't do that now because we don't know
|
|
1687 what dest-types it's going to be instantiated into.) */
|
|
1688 {
|
|
1689 Lisp_Object result = alist_to_tagged_vector (Qautodetect, alist);
|
|
1690 free_alist (alist);
|
|
1691 RETURN_UNGCPRO (result);
|
|
1692 }
|
|
1693 }
|
|
1694
|
|
1695 static int
|
|
1696 autodetect_possible_dest_types (void)
|
|
1697 {
|
|
1698 return
|
|
1699 IMAGE_MONO_PIXMAP_MASK |
|
|
1700 IMAGE_COLOR_PIXMAP_MASK |
|
|
1701 IMAGE_POINTER_MASK |
|
|
1702 IMAGE_TEXT_MASK;
|
|
1703 }
|
|
1704
|
|
1705 static void
|
|
1706 autodetect_instantiate (Lisp_Object image_instance,
|
|
1707 Lisp_Object instantiator,
|
|
1708 Lisp_Object pointer_fg,
|
|
1709 Lisp_Object pointer_bg,
|
|
1710 int dest_mask, Lisp_Object domain)
|
|
1711 {
|
|
1712 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
|
|
1713 struct gcpro gcpro1, gcpro2, gcpro3;
|
|
1714 Lisp_Object alist = Qnil;
|
|
1715 Lisp_Object result = Qnil;
|
|
1716 int is_cursor_font = 0;
|
|
1717
|
|
1718 GCPRO3 (data, alist, result);
|
|
1719
|
|
1720 alist = tagged_vector_to_alist (instantiator);
|
|
1721 if (dest_mask & IMAGE_POINTER_MASK)
|
|
1722 {
|
|
1723 CONST char *name_ext;
|
|
1724
|
|
1725 TO_EXTERNAL_FORMAT (LISP_STRING, data,
|
|
1726 C_STRING_ALLOCA, name_ext,
|
|
1727 Qfile_name);
|
|
1728
|
|
1729 if (cursor_name_to_index (name_ext) != -1)
|
|
1730 {
|
|
1731 result = alist_to_tagged_vector (Qcursor_font, alist);
|
|
1732 is_cursor_font = 1;
|
|
1733 }
|
|
1734 }
|
|
1735
|
|
1736 if (!is_cursor_font)
|
|
1737 result = alist_to_tagged_vector (Qstring, alist);
|
|
1738 free_alist (alist);
|
|
1739
|
|
1740 if (is_cursor_font)
|
|
1741 cursor_font_instantiate (image_instance, result, pointer_fg,
|
|
1742 pointer_bg, dest_mask, domain);
|
|
1743 else
|
|
1744 string_instantiate (image_instance, result, pointer_fg,
|
|
1745 pointer_bg, dest_mask, domain);
|
|
1746
|
|
1747 UNGCPRO;
|
|
1748 }
|
|
1749
|
|
1750
|
|
1751 /**********************************************************************
|
|
1752 * Font *
|
|
1753 **********************************************************************/
|
|
1754
|
|
1755 static void
|
|
1756 font_validate (Lisp_Object instantiator)
|
|
1757 {
|
|
1758 data_must_be_present (instantiator);
|
|
1759 }
|
|
1760
|
|
1761 static int
|
|
1762 font_possible_dest_types (void)
|
|
1763 {
|
|
1764 return IMAGE_POINTER_MASK;
|
|
1765 }
|
|
1766
|
|
1767 static void
|
|
1768 font_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
1769 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
|
1770 int dest_mask, Lisp_Object domain)
|
|
1771 {
|
|
1772 /* This function can GC */
|
|
1773 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
|
|
1774 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
|
|
1775 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
|
|
1776 GdkColor fg, bg;
|
|
1777 GdkFont *source, *mask;
|
|
1778 char source_name[MAXPATHLEN], mask_name[MAXPATHLEN], dummy;
|
|
1779 int source_char, mask_char;
|
|
1780 int count;
|
|
1781 Lisp_Object foreground, background;
|
|
1782
|
|
1783 if (!DEVICE_GTK_P (XDEVICE (device)))
|
563
|
1784 gui_error ("Not a Gtk device", device);
|
462
|
1785
|
|
1786 if (!STRINGP (data) ||
|
|
1787 strncmp ("FONT ", (char *) XSTRING_DATA (data), 5))
|
563
|
1788 invalid_argument ("Invalid font-glyph instantiator",
|
462
|
1789 instantiator);
|
|
1790
|
|
1791 if (!(dest_mask & IMAGE_POINTER_MASK))
|
|
1792 incompatible_image_types (instantiator, dest_mask, IMAGE_POINTER_MASK);
|
|
1793
|
|
1794 foreground = find_keyword_in_vector (instantiator, Q_foreground);
|
|
1795 if (NILP (foreground))
|
|
1796 foreground = pointer_fg;
|
|
1797 background = find_keyword_in_vector (instantiator, Q_background);
|
|
1798 if (NILP (background))
|
|
1799 background = pointer_bg;
|
|
1800
|
|
1801 generate_cursor_fg_bg (device, &foreground, &background, &fg, &bg);
|
|
1802
|
|
1803 count = sscanf ((char *) XSTRING_DATA (data),
|
|
1804 "FONT %s %d %s %d %c",
|
|
1805 source_name, &source_char,
|
|
1806 mask_name, &mask_char, &dummy);
|
|
1807 /* Allow "%s %d %d" as well... */
|
|
1808 if (count == 3 && (1 == sscanf (mask_name, "%d %c", &mask_char, &dummy)))
|
|
1809 count = 4, mask_name[0] = 0;
|
|
1810
|
|
1811 if (count != 2 && count != 4)
|
563
|
1812 syntax_error ("invalid cursor specification", data);
|
462
|
1813 source = gdk_font_load (source_name);
|
|
1814 if (! source)
|
563
|
1815 gui_error_2 ("couldn't load font",
|
462
|
1816 build_string (source_name),
|
|
1817 data);
|
|
1818 if (count == 2)
|
|
1819 mask = 0;
|
|
1820 else if (!mask_name[0])
|
|
1821 mask = source;
|
|
1822 else
|
|
1823 {
|
|
1824 mask = gdk_font_load (mask_name);
|
|
1825 if (!mask)
|
|
1826 /* continuable */
|
563
|
1827 Fsignal (Qgui_error, list3 (build_string ("couldn't load font"),
|
|
1828 build_string (mask_name), data));
|
462
|
1829 }
|
|
1830 if (!mask)
|
|
1831 mask_char = 0;
|
|
1832
|
|
1833 /* #### call XQueryTextExtents() and check_pointer_sizes() here. */
|
|
1834
|
|
1835 gtk_initialize_pixmap_image_instance (ii, 1, IMAGE_POINTER);
|
|
1836
|
|
1837 IMAGE_INSTANCE_GTK_CURSOR (ii) = NULL;
|
|
1838
|
|
1839 #if 0
|
|
1840 /* #### BILL!!! There is no way to call this function from Gdk */
|
|
1841 XCreateGlyphCursor (dpy, source, mask, source_char, mask_char,
|
|
1842 &fg, &bg);
|
|
1843 #endif
|
|
1844 XIMAGE_INSTANCE_PIXMAP_FG (image_instance) = foreground;
|
|
1845 XIMAGE_INSTANCE_PIXMAP_BG (image_instance) = background;
|
|
1846
|
|
1847 gdk_font_unref (source);
|
|
1848 if (mask && mask != source) gdk_font_unref (mask);
|
|
1849 }
|
|
1850
|
|
1851
|
|
1852 /**********************************************************************
|
|
1853 * Cursor-Font *
|
|
1854 **********************************************************************/
|
|
1855
|
|
1856 static void
|
|
1857 cursor_font_validate (Lisp_Object instantiator)
|
|
1858 {
|
|
1859 data_must_be_present (instantiator);
|
|
1860 }
|
|
1861
|
|
1862 static int
|
|
1863 cursor_font_possible_dest_types (void)
|
|
1864 {
|
|
1865 return IMAGE_POINTER_MASK;
|
|
1866 }
|
|
1867
|
|
1868 static char *__downcase (const char *name)
|
|
1869 {
|
|
1870 char *converted = strdup(name);
|
|
1871 char *work = converted;
|
|
1872
|
|
1873 while (*work)
|
|
1874 {
|
|
1875 *work = tolower(*work);
|
|
1876 work++;
|
|
1877 }
|
|
1878 return(converted);
|
|
1879 }
|
|
1880
|
|
1881 /* This is basically the equivalent of XmuCursorNameToIndex */
|
|
1882 static gint
|
|
1883 cursor_name_to_index (const char *name)
|
|
1884 {
|
|
1885 int i;
|
|
1886 static char *the_gdk_cursors[GDK_NUM_GLYPHS];
|
|
1887
|
|
1888 if (!the_gdk_cursors[GDK_BASED_ARROW_UP])
|
|
1889 {
|
|
1890 /* Need to initialize the array */
|
|
1891 /* Supposedly since this array is static it should be
|
|
1892 initialized to NULLs for us, but I'm very paranoid. */
|
|
1893 for (i = 0; i < GDK_NUM_GLYPHS; i++)
|
|
1894 {
|
|
1895 the_gdk_cursors[i] = NULL;
|
|
1896 }
|
|
1897
|
|
1898 #define FROB_CURSOR(x) the_gdk_cursors[GDK_##x] = __downcase(#x)
|
|
1899 FROB_CURSOR(ARROW); FROB_CURSOR(BASED_ARROW_DOWN);
|
|
1900 FROB_CURSOR(BASED_ARROW_UP); FROB_CURSOR(BOAT);
|
|
1901 FROB_CURSOR(BOGOSITY); FROB_CURSOR(BOTTOM_LEFT_CORNER);
|
|
1902 FROB_CURSOR(BOTTOM_RIGHT_CORNER); FROB_CURSOR(BOTTOM_SIDE);
|
|
1903 FROB_CURSOR(BOTTOM_TEE); FROB_CURSOR(BOX_SPIRAL);
|
|
1904 FROB_CURSOR(CENTER_PTR); FROB_CURSOR(CIRCLE);
|
|
1905 FROB_CURSOR(CLOCK); FROB_CURSOR(COFFEE_MUG);
|
|
1906 FROB_CURSOR(CROSS); FROB_CURSOR(CROSS_REVERSE);
|
|
1907 FROB_CURSOR(CROSSHAIR); FROB_CURSOR(DIAMOND_CROSS);
|
|
1908 FROB_CURSOR(DOT); FROB_CURSOR(DOTBOX);
|
|
1909 FROB_CURSOR(DOUBLE_ARROW); FROB_CURSOR(DRAFT_LARGE);
|
|
1910 FROB_CURSOR(DRAFT_SMALL); FROB_CURSOR(DRAPED_BOX);
|
|
1911 FROB_CURSOR(EXCHANGE); FROB_CURSOR(FLEUR);
|
|
1912 FROB_CURSOR(GOBBLER); FROB_CURSOR(GUMBY);
|
|
1913 FROB_CURSOR(HAND1); FROB_CURSOR(HAND2);
|
|
1914 FROB_CURSOR(HEART); FROB_CURSOR(ICON);
|
|
1915 FROB_CURSOR(IRON_CROSS); FROB_CURSOR(LEFT_PTR);
|
|
1916 FROB_CURSOR(LEFT_SIDE); FROB_CURSOR(LEFT_TEE);
|
|
1917 FROB_CURSOR(LEFTBUTTON); FROB_CURSOR(LL_ANGLE);
|
|
1918 FROB_CURSOR(LR_ANGLE); FROB_CURSOR(MAN);
|
|
1919 FROB_CURSOR(MIDDLEBUTTON); FROB_CURSOR(MOUSE);
|
|
1920 FROB_CURSOR(PENCIL); FROB_CURSOR(PIRATE);
|
|
1921 FROB_CURSOR(PLUS); FROB_CURSOR(QUESTION_ARROW);
|
|
1922 FROB_CURSOR(RIGHT_PTR); FROB_CURSOR(RIGHT_SIDE);
|
|
1923 FROB_CURSOR(RIGHT_TEE); FROB_CURSOR(RIGHTBUTTON);
|
|
1924 FROB_CURSOR(RTL_LOGO); FROB_CURSOR(SAILBOAT);
|
|
1925 FROB_CURSOR(SB_DOWN_ARROW); FROB_CURSOR(SB_H_DOUBLE_ARROW);
|
|
1926 FROB_CURSOR(SB_LEFT_ARROW); FROB_CURSOR(SB_RIGHT_ARROW);
|
|
1927 FROB_CURSOR(SB_UP_ARROW); FROB_CURSOR(SB_V_DOUBLE_ARROW);
|
|
1928 FROB_CURSOR(SHUTTLE); FROB_CURSOR(SIZING);
|
|
1929 FROB_CURSOR(SPIDER); FROB_CURSOR(SPRAYCAN);
|
|
1930 FROB_CURSOR(STAR); FROB_CURSOR(TARGET);
|
|
1931 FROB_CURSOR(TCROSS); FROB_CURSOR(TOP_LEFT_ARROW);
|
|
1932 FROB_CURSOR(TOP_LEFT_CORNER); FROB_CURSOR(TOP_RIGHT_CORNER);
|
|
1933 FROB_CURSOR(TOP_SIDE); FROB_CURSOR(TOP_TEE);
|
|
1934 FROB_CURSOR(TREK); FROB_CURSOR(UL_ANGLE);
|
|
1935 FROB_CURSOR(UMBRELLA); FROB_CURSOR(UR_ANGLE);
|
|
1936 FROB_CURSOR(WATCH); FROB_CURSOR(XTERM);
|
|
1937 FROB_CURSOR(X_CURSOR);
|
|
1938 #undef FROB_CURSOR
|
|
1939 }
|
|
1940
|
|
1941 for (i = 0; i < GDK_NUM_GLYPHS; i++)
|
|
1942 {
|
|
1943 if (!the_gdk_cursors[i]) continue;
|
|
1944 if (!strcmp (the_gdk_cursors[i], name))
|
|
1945 {
|
|
1946 return (i);
|
|
1947 }
|
|
1948 }
|
|
1949 return(-1);
|
|
1950 }
|
|
1951
|
|
1952 static void
|
|
1953 cursor_font_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
1954 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
|
1955 int dest_mask, Lisp_Object domain)
|
|
1956 {
|
|
1957 /* This function can GC */
|
|
1958 Lisp_Object data = find_keyword_in_vector (instantiator, Q_data);
|
|
1959 struct Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
|
|
1960 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
|
|
1961 int i;
|
|
1962 CONST char *name_ext;
|
|
1963 Lisp_Object foreground, background;
|
|
1964
|
|
1965 if (!DEVICE_GTK_P (XDEVICE (device)))
|
563
|
1966 gui_error ("Not a Gtk device", device);
|
462
|
1967
|
|
1968 if (!(dest_mask & IMAGE_POINTER_MASK))
|
|
1969 incompatible_image_types (instantiator, dest_mask, IMAGE_POINTER_MASK);
|
|
1970
|
|
1971 TO_EXTERNAL_FORMAT (LISP_STRING, data,
|
|
1972 C_STRING_ALLOCA, name_ext,
|
|
1973 Qfile_name);
|
|
1974
|
|
1975 if ((i = cursor_name_to_index (name_ext)) == -1)
|
563
|
1976 invalid_argument ("Unrecognized cursor-font name", data);
|
462
|
1977
|
|
1978 gtk_initialize_pixmap_image_instance (ii, 1, IMAGE_POINTER);
|
|
1979 IMAGE_INSTANCE_GTK_CURSOR (ii) = gdk_cursor_new (i);
|
|
1980 foreground = find_keyword_in_vector (instantiator, Q_foreground);
|
|
1981 if (NILP (foreground))
|
|
1982 foreground = pointer_fg;
|
|
1983 background = find_keyword_in_vector (instantiator, Q_background);
|
|
1984 if (NILP (background))
|
|
1985 background = pointer_bg;
|
|
1986 maybe_recolor_cursor (image_instance, foreground, background);
|
|
1987 }
|
|
1988
|
|
1989 static int
|
|
1990 gtk_colorize_image_instance (Lisp_Object image_instance,
|
|
1991 Lisp_Object foreground, Lisp_Object background);
|
|
1992
|
|
1993
|
|
1994 /************************************************************************/
|
|
1995 /* subwindow and widget support */
|
|
1996 /************************************************************************/
|
|
1997
|
|
1998 /* unmap the image if it is a widget. This is used by redisplay via
|
|
1999 redisplay_unmap_subwindows */
|
|
2000 static void
|
|
2001 gtk_unmap_subwindow (Lisp_Image_Instance *p)
|
|
2002 {
|
|
2003 if (IMAGE_INSTANCE_TYPE (p) == IMAGE_SUBWINDOW)
|
|
2004 {
|
|
2005 /* We don't support subwindows, but we do support widgets... */
|
|
2006 abort ();
|
|
2007 }
|
|
2008 else /* must be a widget */
|
|
2009 {
|
|
2010 /* Since we are being unmapped we want the enclosing frame to
|
|
2011 get focus. The losing with simple scrolling but is the safest
|
|
2012 thing to do. */
|
|
2013 if (IMAGE_INSTANCE_GTK_CLIPWIDGET (p))
|
|
2014 gtk_widget_unmap (IMAGE_INSTANCE_GTK_CLIPWIDGET (p));
|
|
2015 }
|
|
2016 }
|
|
2017
|
|
2018 /* map the subwindow. This is used by redisplay via
|
|
2019 redisplay_output_subwindow */
|
|
2020 static void
|
|
2021 gtk_map_subwindow (Lisp_Image_Instance *p, int x, int y,
|
|
2022 struct display_glyph_area* dga)
|
|
2023 {
|
|
2024 assert (dga->width > 0 && dga->height > 0);
|
|
2025
|
|
2026 if (IMAGE_INSTANCE_TYPE (p) == IMAGE_SUBWINDOW)
|
|
2027 {
|
|
2028 /* No subwindow support... */
|
|
2029 abort ();
|
|
2030 }
|
|
2031 else /* must be a widget */
|
|
2032 {
|
|
2033 struct frame *f = XFRAME (IMAGE_INSTANCE_FRAME (p));
|
|
2034 GtkWidget *wid = IMAGE_INSTANCE_GTK_CLIPWIDGET (p);
|
|
2035 GtkAllocation a;
|
|
2036
|
|
2037 if (!wid) return;
|
|
2038
|
|
2039 a.x = x + IMAGE_INSTANCE_GTK_WIDGET_XOFFSET (p);
|
|
2040 a.y = y + IMAGE_INSTANCE_GTK_WIDGET_YOFFSET (p);
|
|
2041 a.width = dga->width;
|
|
2042 a.height = dga->height;
|
|
2043
|
|
2044 if ((a.width != wid->allocation.width) ||
|
|
2045 (a.height != wid->allocation.height))
|
|
2046 {
|
|
2047 gtk_widget_size_allocate (IMAGE_INSTANCE_GTK_CLIPWIDGET (p), &a);
|
|
2048 }
|
|
2049
|
|
2050 /* #### FIXME DAMMIT */
|
|
2051 if ((wid->allocation.x != -dga->xoffset) ||
|
|
2052 (wid->allocation.y != -dga->yoffset))
|
|
2053 {
|
|
2054 guint32 old_flags = GTK_WIDGET_FLAGS (FRAME_GTK_TEXT_WIDGET (f));
|
|
2055
|
|
2056 /* Fucking GtkFixed widget queues a resize when you add a widget.
|
|
2057 ** But only if it is visible.
|
|
2058 ** losers.
|
|
2059 */
|
|
2060 GTK_WIDGET_FLAGS(FRAME_GTK_TEXT_WIDGET (f)) &= ~GTK_VISIBLE;
|
|
2061 if (IMAGE_INSTANCE_GTK_ALREADY_PUT(p))
|
|
2062 {
|
|
2063 gtk_fixed_move (GTK_FIXED (FRAME_GTK_TEXT_WIDGET (f)),
|
|
2064 wid,
|
|
2065 -dga->xoffset, -dga->yoffset);
|
|
2066 }
|
|
2067 else
|
|
2068 {
|
|
2069 IMAGE_INSTANCE_GTK_ALREADY_PUT(p) = TRUE;
|
|
2070 gtk_fixed_put (GTK_FIXED (FRAME_GTK_TEXT_WIDGET (f)),
|
|
2071 wid,
|
|
2072 -dga->xoffset, -dga->yoffset);
|
|
2073 }
|
|
2074 GTK_WIDGET_FLAGS(FRAME_GTK_TEXT_WIDGET (f)) = old_flags;
|
|
2075 }
|
|
2076
|
|
2077 if (!IMAGE_INSTANCE_SUBWINDOW_DISPLAYEDP (p))
|
|
2078 {
|
|
2079 gtk_widget_map (wid);
|
|
2080 }
|
|
2081
|
|
2082 gtk_widget_draw (wid, NULL);
|
|
2083 }
|
|
2084 }
|
|
2085
|
|
2086 /* when you click on a widget you may activate another widget this
|
|
2087 needs to be checked and all appropriate widgets updated */
|
|
2088 static void
|
|
2089 gtk_redisplay_subwindow (Lisp_Image_Instance *p)
|
|
2090 {
|
|
2091 /* Update the subwindow size if necessary. */
|
|
2092 if (IMAGE_INSTANCE_SIZE_CHANGED (p))
|
|
2093 {
|
|
2094 #if 0
|
|
2095 XResizeWindow (IMAGE_INSTANCE_X_SUBWINDOW_DISPLAY (p),
|
|
2096 IMAGE_INSTANCE_X_SUBWINDOW_ID (p),
|
|
2097 IMAGE_INSTANCE_WIDTH (p),
|
|
2098 IMAGE_INSTANCE_HEIGHT (p));
|
|
2099 #endif
|
|
2100 }
|
|
2101 }
|
|
2102
|
|
2103 /* Update all attributes that have changed. */
|
|
2104 static void
|
|
2105 gtk_redisplay_widget (Lisp_Image_Instance *p)
|
|
2106 {
|
|
2107 /* This function can GC if IN_REDISPLAY is false. */
|
|
2108
|
|
2109 if (!IMAGE_INSTANCE_GTK_CLIPWIDGET (p))
|
|
2110 return;
|
|
2111
|
|
2112 #ifdef HAVE_WIDGETS
|
|
2113 /* First get the items if they have changed since this is a
|
|
2114 structural change. As such it will nuke all added values so we
|
|
2115 need to update most other things after the items have changed.*/
|
|
2116 gtk_widget_show_all (IMAGE_INSTANCE_GTK_CLIPWIDGET (p));
|
|
2117 if (IMAGE_INSTANCE_WIDGET_ITEMS_CHANGED (p))
|
|
2118 {
|
|
2119 Lisp_Object image_instance;
|
|
2120
|
|
2121 XSETIMAGE_INSTANCE (image_instance, p);
|
|
2122
|
|
2123 /* Need to update GtkArgs that might have changed... */
|
|
2124 /* #### FIXME!!! */
|
|
2125 }
|
|
2126 else
|
|
2127 {
|
|
2128 /* #### FIXME!!! */
|
|
2129 /* No items changed, so do nothing, right? */
|
|
2130 }
|
|
2131
|
|
2132 /* Possibly update the colors and font */
|
|
2133 if (IMAGE_INSTANCE_WIDGET_FACE_CHANGED (p)
|
|
2134 ||
|
|
2135 /* #### This is not sufficient because it will not cope with widgets
|
|
2136 that are not currently visible. Once redisplay has done the
|
|
2137 visible ones it will clear this flag so that when new ones
|
|
2138 become visible they will not be updated. */
|
|
2139 XFRAME (IMAGE_INSTANCE_FRAME (p))->faces_changed
|
|
2140 ||
|
|
2141 XFRAME (IMAGE_INSTANCE_FRAME (p))->frame_changed
|
|
2142 ||
|
|
2143 IMAGE_INSTANCE_WIDGET_ITEMS_CHANGED (p))
|
|
2144 {
|
|
2145 /* #### Write this function BILL! */
|
|
2146 update_widget_face (NULL, p, IMAGE_INSTANCE_FRAME (p));
|
|
2147 }
|
|
2148
|
|
2149 /* Possibly update the text. */
|
|
2150 if (IMAGE_INSTANCE_TEXT_CHANGED (p))
|
|
2151 {
|
|
2152 char* str;
|
|
2153 Lisp_Object val = IMAGE_INSTANCE_WIDGET_TEXT (p);
|
|
2154 LISP_STRING_TO_EXTERNAL (val, str, Qnative);
|
|
2155
|
|
2156 /* #### Need to special case each type of GtkWidget here! */
|
|
2157 }
|
|
2158
|
|
2159 /* Possibly update the size. */
|
|
2160 if (IMAGE_INSTANCE_SIZE_CHANGED (p)
|
|
2161 ||
|
|
2162 IMAGE_INSTANCE_WIDGET_ITEMS_CHANGED (p)
|
|
2163 ||
|
|
2164 IMAGE_INSTANCE_TEXT_CHANGED (p))
|
|
2165 {
|
|
2166 assert (IMAGE_INSTANCE_GTK_WIDGET_ID (p) &&
|
|
2167 IMAGE_INSTANCE_GTK_CLIPWIDGET (p)) ;
|
|
2168
|
|
2169 /* #### Resize the widget! */
|
|
2170 /* gtk_widget_size_allocate () */
|
|
2171 }
|
|
2172
|
|
2173 /* Adjust offsets within the frame. */
|
|
2174 if (XFRAME (IMAGE_INSTANCE_FRAME (p))->size_changed)
|
|
2175 {
|
|
2176 /* I don't think we need to do anything for Gtk here... */
|
|
2177 }
|
|
2178
|
|
2179 /* now modify the widget */
|
|
2180 #endif
|
|
2181 }
|
|
2182
|
|
2183 /* instantiate and gtk type subwindow */
|
|
2184 static void
|
|
2185 gtk_subwindow_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
2186 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
|
2187 int dest_mask, Lisp_Object domain)
|
|
2188 {
|
|
2189 /* This function can GC */
|
|
2190 Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
|
|
2191 Lisp_Object device = IMAGE_INSTANCE_DEVICE (ii);
|
|
2192 Lisp_Object frame = DOMAIN_FRAME (domain);
|
|
2193
|
|
2194 if (!DEVICE_GTK_P (XDEVICE (device)))
|
563
|
2195 gui_error ("Not a GTK device", device);
|
462
|
2196
|
|
2197 IMAGE_INSTANCE_TYPE (ii) = IMAGE_SUBWINDOW;
|
|
2198
|
|
2199 ii->data = xnew_and_zero (struct gtk_subwindow_data);
|
|
2200
|
|
2201 /* Create a window for clipping */
|
|
2202 IMAGE_INSTANCE_GTK_CLIPWINDOW (ii) = NULL;
|
|
2203
|
|
2204 /* Now put the subwindow inside the clip window. */
|
|
2205 IMAGE_INSTANCE_SUBWINDOW_ID (ii) = (void *) NULL;
|
|
2206 }
|
|
2207
|
|
2208 #ifdef HAVE_WIDGETS
|
|
2209
|
|
2210 /************************************************************************/
|
|
2211 /* widgets */
|
|
2212 /************************************************************************/
|
|
2213 static void
|
|
2214 update_widget_face (GtkWidget *w, Lisp_Image_Instance *ii,
|
|
2215 Lisp_Object domain)
|
|
2216 {
|
|
2217 if (0)
|
|
2218 {
|
|
2219 GtkStyle *style = gtk_widget_get_style (w);
|
|
2220 Lisp_Object pixel = Qnil;
|
|
2221 GdkColor *fcolor, *bcolor;
|
|
2222
|
|
2223 style = gtk_style_copy (style);
|
|
2224
|
|
2225 /* Update the foreground. */
|
|
2226 pixel = FACE_FOREGROUND (IMAGE_INSTANCE_WIDGET_FACE (ii), domain);
|
|
2227 fcolor = COLOR_INSTANCE_GTK_COLOR (XCOLOR_INSTANCE (pixel));
|
|
2228
|
|
2229 /* Update the background. */
|
|
2230 pixel = FACE_BACKGROUND (IMAGE_INSTANCE_WIDGET_FACE (ii), domain);
|
|
2231 bcolor = COLOR_INSTANCE_GTK_COLOR (XCOLOR_INSTANCE (pixel));
|
|
2232
|
|
2233 /* Update the font */
|
|
2234 /* #### FIXME!!! Need to copy the widgets style, dick with it, and
|
|
2235 ** set the widgets style to the new style...
|
|
2236 */
|
|
2237 gtk_widget_set_style (w, style);
|
|
2238
|
|
2239 /* #### Megahack - but its just getting too complicated to do this
|
|
2240 in the right place. */
|
|
2241 #if 0
|
|
2242 if (EQ (IMAGE_INSTANCE_WIDGET_TYPE (ii), Qtab_control))
|
|
2243 update_tab_widget_face (wv, ii, domain);
|
|
2244 #endif
|
|
2245 }
|
|
2246 }
|
|
2247
|
|
2248 #if 0
|
|
2249 static void
|
|
2250 update_tab_widget_face (GtkWidget *w, Lisp_Image_Instance *ii,
|
|
2251 Lisp_Object domain)
|
|
2252 {
|
|
2253 if (wv->contents)
|
|
2254 {
|
|
2255 widget_value* val = wv->contents, *cur;
|
|
2256
|
|
2257 /* Give each child label the correct foreground color. */
|
|
2258 Lisp_Object pixel = FACE_FOREGROUND
|
|
2259 (IMAGE_INSTANCE_WIDGET_FACE (ii),
|
|
2260 domain);
|
|
2261 XColor fcolor = COLOR_INSTANCE_X_COLOR (XCOLOR_INSTANCE (pixel));
|
|
2262 lw_add_widget_value_arg (val, XtNtabForeground, fcolor.pixel);
|
|
2263 wv->change = VISIBLE_CHANGE;
|
|
2264 val->change = VISIBLE_CHANGE;
|
|
2265
|
|
2266 for (cur = val->next; cur; cur = cur->next)
|
|
2267 {
|
|
2268 cur->change = VISIBLE_CHANGE;
|
|
2269 if (cur->value)
|
|
2270 {
|
|
2271 lw_copy_widget_value_args (val, cur);
|
|
2272 }
|
|
2273 }
|
|
2274 }
|
|
2275 }
|
|
2276 #endif
|
|
2277
|
|
2278 static Lisp_Object
|
|
2279 gtk_widget_instantiate_1 (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
2280 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
|
2281 Lisp_Object domain)
|
|
2282 {
|
|
2283 Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
|
|
2284 Lisp_Object widget = Qnil;
|
|
2285 char *nm = NULL;
|
|
2286 GtkWidget *w = NULL;
|
|
2287 struct gcpro gcpro1;
|
|
2288
|
|
2289 IMAGE_INSTANCE_TYPE (ii) = IMAGE_WIDGET;
|
|
2290
|
|
2291 if (!NILP (IMAGE_INSTANCE_WIDGET_TEXT (ii)))
|
|
2292 {
|
|
2293 LISP_STRING_TO_EXTERNAL (IMAGE_INSTANCE_WIDGET_TEXT (ii), nm, Qnative);
|
|
2294 }
|
|
2295
|
|
2296 ii->data = xnew_and_zero (struct gtk_subwindow_data);
|
|
2297
|
|
2298 /* Create a clipping widget */
|
|
2299 IMAGE_INSTANCE_GTK_CLIPWIDGET (ii) = NULL;
|
|
2300 IMAGE_INSTANCE_GTK_ALREADY_PUT(ii) = FALSE;
|
|
2301
|
|
2302 /* Create the actual widget */
|
|
2303 GCPRO1 (widget);
|
|
2304 widget = call5 (Qgtk_widget_instantiate_internal,
|
|
2305 image_instance, instantiator,
|
|
2306 pointer_fg, pointer_bg,
|
|
2307 domain);
|
|
2308
|
|
2309 if (!NILP (widget))
|
|
2310 {
|
|
2311 CHECK_GTK_OBJECT (widget);
|
|
2312 w = GTK_WIDGET (XGTK_OBJECT (widget)->object);
|
|
2313 }
|
|
2314 else
|
|
2315 {
|
|
2316 stderr_out ("Lisp-level creation of widget failed... falling back\n");
|
|
2317 w = gtk_label_new ("Widget Creation Failed...");
|
|
2318 }
|
|
2319
|
|
2320 UNGCPRO;
|
|
2321
|
|
2322 IMAGE_INSTANCE_SUBWINDOW_ID (ii) = (void *) w;
|
|
2323
|
|
2324 /* #### HACK!!!! We should make this do the right thing if we
|
|
2325 ** really need a clip widget!
|
|
2326 */
|
|
2327 IMAGE_INSTANCE_GTK_CLIPWIDGET (ii) = w;
|
|
2328
|
|
2329 return (Qt);
|
|
2330 }
|
|
2331
|
|
2332 static void
|
|
2333 gtk_widget_instantiate (Lisp_Object image_instance, Lisp_Object instantiator,
|
|
2334 Lisp_Object pointer_fg, Lisp_Object pointer_bg,
|
|
2335 int dest_mask, Lisp_Object domain)
|
|
2336 {
|
|
2337 call_with_suspended_errors ((lisp_fn_t) gtk_widget_instantiate_1,
|
|
2338 Qnil, Qimage,
|
|
2339 ERROR_ME_WARN, 5,
|
|
2340 image_instance, instantiator,
|
|
2341 pointer_fg,
|
|
2342 pointer_bg,
|
|
2343 domain);
|
|
2344 }
|
|
2345
|
|
2346 /* get properties of a control */
|
|
2347 static Lisp_Object
|
|
2348 gtk_widget_property (Lisp_Object image_instance, Lisp_Object prop)
|
|
2349 {
|
|
2350 /* Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance); */
|
|
2351
|
|
2352 /* get the text from a control */
|
|
2353 if (EQ (prop, Q_text))
|
|
2354 {
|
|
2355 return Qnil;
|
|
2356 }
|
|
2357 return Qunbound;
|
|
2358 }
|
|
2359
|
|
2360 #define FAKE_GTK_WIDGET_INSTANTIATOR(x) \
|
|
2361 static void \
|
|
2362 gtk_##x##_instantiate (Lisp_Object image_instance, \
|
|
2363 Lisp_Object instantiator, \
|
|
2364 Lisp_Object pointer_fg, \
|
|
2365 Lisp_Object pointer_bg, \
|
|
2366 int dest_mask, Lisp_Object domain) \
|
|
2367 { \
|
|
2368 gtk_widget_instantiate (image_instance, instantiator, pointer_fg, \
|
|
2369 pointer_bg, dest_mask, domain); \
|
|
2370 }
|
|
2371
|
|
2372 FAKE_GTK_WIDGET_INSTANTIATOR(native_layout);
|
|
2373 FAKE_GTK_WIDGET_INSTANTIATOR(button);
|
|
2374 FAKE_GTK_WIDGET_INSTANTIATOR(progress_gauge);
|
|
2375 FAKE_GTK_WIDGET_INSTANTIATOR(edit_field);
|
|
2376 FAKE_GTK_WIDGET_INSTANTIATOR(combo_box);
|
|
2377 FAKE_GTK_WIDGET_INSTANTIATOR(tab_control);
|
|
2378 FAKE_GTK_WIDGET_INSTANTIATOR(label);
|
|
2379
|
|
2380 /* Update a button's clicked state. */
|
|
2381 static void
|
|
2382 gtk_button_redisplay (Lisp_Object image_instance)
|
|
2383 {
|
|
2384 /* This function can GC if IN_REDISPLAY is false. */
|
|
2385 Lisp_Image_Instance *p = XIMAGE_INSTANCE (image_instance);
|
|
2386 GtkWidget *w = IMAGE_INSTANCE_GTK_CLIPWIDGET (p);
|
|
2387
|
|
2388 if (GTK_WIDGET_TYPE (w) == gtk_button_get_type ())
|
|
2389 {
|
|
2390 }
|
|
2391 else if (GTK_WIDGET_TYPE (w) == gtk_check_button_get_type ())
|
|
2392 {
|
|
2393 }
|
|
2394 else if (GTK_WIDGET_TYPE (w) == gtk_radio_button_get_type ())
|
|
2395 {
|
|
2396 }
|
|
2397 else
|
|
2398 {
|
|
2399 /* Unknown button type... */
|
|
2400 abort();
|
|
2401 }
|
|
2402 }
|
|
2403
|
|
2404 /* get properties of a button */
|
|
2405 static Lisp_Object
|
|
2406 gtk_button_property (Lisp_Object image_instance, Lisp_Object prop)
|
|
2407 {
|
|
2408 Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
|
|
2409
|
|
2410 /* check the state of a button */
|
|
2411 if (EQ (prop, Q_selected))
|
|
2412 {
|
|
2413 if (GTK_WIDGET_HAS_FOCUS (IMAGE_INSTANCE_SUBWINDOW_ID (ii)))
|
|
2414 return Qt;
|
|
2415 else
|
|
2416 return Qnil;
|
|
2417 }
|
|
2418 return Qunbound;
|
|
2419 }
|
|
2420
|
|
2421 /* set the properties of a progress gauge */
|
|
2422 static void
|
|
2423 gtk_progress_gauge_redisplay (Lisp_Object image_instance)
|
|
2424 {
|
|
2425 Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
|
|
2426
|
|
2427 if (IMAGE_INSTANCE_WIDGET_ITEMS_CHANGED (ii))
|
|
2428 {
|
|
2429 gfloat f;
|
|
2430 Lisp_Object val;
|
|
2431
|
|
2432 val = XGUI_ITEM (IMAGE_INSTANCE_WIDGET_PENDING_ITEMS (ii))->value;
|
|
2433 f = XFLOATINT (val);
|
|
2434
|
|
2435 gtk_progress_set_value (GTK_PROGRESS (IMAGE_INSTANCE_SUBWINDOW_ID (ii)),
|
|
2436 f);
|
|
2437 }
|
|
2438 }
|
|
2439
|
|
2440 /* Set the properties of a tab control */
|
|
2441 static void
|
|
2442 gtk_tab_control_redisplay (Lisp_Object image_instance)
|
|
2443 {
|
|
2444 /* #### Convert this to GTK baby! */
|
|
2445 Lisp_Image_Instance *ii = XIMAGE_INSTANCE (image_instance);
|
|
2446
|
|
2447 if (IMAGE_INSTANCE_WIDGET_ITEMS_CHANGED (ii) ||
|
|
2448 IMAGE_INSTANCE_WIDGET_ACTION_OCCURRED (ii))
|
|
2449 {
|
|
2450 /* If only the order has changed then simply select the first
|
|
2451 one of the pending set. This stops horrendous rebuilding -
|
|
2452 and hence flicker - of the tabs each time you click on
|
|
2453 one. */
|
|
2454 if (tab_control_order_only_changed (image_instance))
|
|
2455 {
|
|
2456 Lisp_Object rest, selected =
|
|
2457 gui_item_list_find_selected
|
|
2458 (NILP (IMAGE_INSTANCE_WIDGET_PENDING_ITEMS (ii)) ?
|
|
2459 XCDR (IMAGE_INSTANCE_WIDGET_ITEMS (ii)) :
|
|
2460 XCDR (IMAGE_INSTANCE_WIDGET_PENDING_ITEMS (ii)));
|
|
2461
|
|
2462 LIST_LOOP (rest, XCDR (IMAGE_INSTANCE_WIDGET_ITEMS (ii)))
|
|
2463 {
|
|
2464 if (gui_item_equal_sans_selected (XCAR (rest), selected, 0))
|
|
2465 {
|
|
2466 Lisp_Object old_selected =gui_item_list_find_selected
|
|
2467 (XCDR (IMAGE_INSTANCE_WIDGET_ITEMS (ii)));
|
|
2468
|
|
2469 /* Need to focus on the widget... */
|
|
2470 stderr_out ("Hey, change the tab-focus you boob...\n");
|
|
2471
|
|
2472 /* Pick up the new selected item. */
|
|
2473 XGUI_ITEM (old_selected)->selected =
|
|
2474 XGUI_ITEM (XCAR (rest))->selected;
|
|
2475 XGUI_ITEM (XCAR (rest))->selected =
|
|
2476 XGUI_ITEM (selected)->selected;
|
|
2477 /* We're not actually changing the items anymore. */
|
|
2478 IMAGE_INSTANCE_WIDGET_ITEMS_CHANGED (ii) = 0;
|
|
2479 IMAGE_INSTANCE_WIDGET_PENDING_ITEMS (ii) = Qnil;
|
|
2480 break;
|
|
2481 }
|
|
2482 }
|
|
2483 }
|
|
2484 else
|
|
2485 {
|
|
2486 /* More than just the order has changed... let's get busy! */
|
|
2487 GtkNotebook *nb = GTK_NOTEBOOK (IMAGE_INSTANCE_GTK_CLIPWIDGET (ii));
|
|
2488 guint num_pages = g_list_length (nb->children);
|
|
2489 Lisp_Object rest;
|
|
2490
|
|
2491 if (num_pages >= 0)
|
|
2492 {
|
|
2493 int i;
|
|
2494 for (i = num_pages; i >= 0; --i)
|
|
2495 {
|
|
2496 gtk_notebook_remove_page (nb, i);
|
|
2497 }
|
|
2498 }
|
|
2499
|
|
2500 LIST_LOOP (rest, XCDR (IMAGE_INSTANCE_WIDGET_ITEMS (ii)))
|
|
2501 {
|
|
2502 Lisp_Gui_Item *pgui = XGUI_ITEM (XCAR (rest));
|
|
2503 char *c_name = NULL;
|
|
2504
|
|
2505 if (!STRINGP (pgui->name))
|
|
2506 pgui->name = Feval (pgui->name);
|
|
2507
|
|
2508 CHECK_STRING (pgui->name);
|
|
2509
|
|
2510 TO_EXTERNAL_FORMAT (LISP_STRING, pgui->name,
|
|
2511 C_STRING_ALLOCA, c_name,
|
|
2512 Qctext);
|
|
2513
|
|
2514 gtk_notebook_append_page (nb,
|
|
2515 gtk_vbox_new (FALSE, 3),
|
|
2516 gtk_label_new (c_name));
|
|
2517 }
|
|
2518
|
|
2519 /* Show all the new widgets we just added... */
|
|
2520 gtk_widget_show_all (GTK_WIDGET (nb));
|
|
2521 }
|
|
2522 }
|
|
2523
|
|
2524 /* Possibly update the face. */
|
|
2525 #if 0
|
|
2526 if (IMAGE_INSTANCE_WIDGET_FACE_CHANGED (ii)
|
|
2527 ||
|
|
2528 XFRAME (IMAGE_INSTANCE_FRAME (ii))->faces_changed
|
|
2529 ||
|
|
2530 IMAGE_INSTANCE_WIDGET_ITEMS_CHANGED (ii))
|
|
2531 {
|
|
2532 update_tab_widget_face (wv, ii,
|
|
2533 IMAGE_INSTANCE_FRAME (ii));
|
|
2534 }
|
|
2535 #endif
|
|
2536 }
|
|
2537 #endif /* HAVE_WIDGETS */
|
|
2538
|
|
2539
|
|
2540 /************************************************************************/
|
|
2541 /* initialization */
|
|
2542 /************************************************************************/
|
|
2543 void
|
|
2544 syms_of_glyphs_gtk (void)
|
|
2545 {
|
|
2546 #ifdef HAVE_WIDGETS
|
563
|
2547 DEFSYMBOL (Qgtk_widget_instantiate_internal);
|
|
2548 DEFSYMBOL (Qgtk_widget_property_internal);
|
|
2549 DEFSYMBOL (Qgtk_widget_redisplay_internal);
|
|
2550 DEFSYMBOL (Qgtk_widget_set_style);
|
462
|
2551 #endif
|
|
2552 }
|
|
2553
|
|
2554 void
|
|
2555 console_type_create_glyphs_gtk (void)
|
|
2556 {
|
|
2557 /* image methods */
|
|
2558 CONSOLE_HAS_METHOD (gtk, print_image_instance);
|
|
2559 CONSOLE_HAS_METHOD (gtk, finalize_image_instance);
|
|
2560 CONSOLE_HAS_METHOD (gtk, image_instance_equal);
|
|
2561 CONSOLE_HAS_METHOD (gtk, image_instance_hash);
|
|
2562 CONSOLE_HAS_METHOD (gtk, colorize_image_instance);
|
|
2563 CONSOLE_HAS_METHOD (gtk, init_image_instance_from_eimage);
|
|
2564 CONSOLE_HAS_METHOD (gtk, locate_pixmap_file);
|
|
2565 CONSOLE_HAS_METHOD (gtk, unmap_subwindow);
|
|
2566 CONSOLE_HAS_METHOD (gtk, map_subwindow);
|
|
2567 CONSOLE_HAS_METHOD (gtk, redisplay_widget);
|
|
2568 CONSOLE_HAS_METHOD (gtk, redisplay_subwindow);
|
|
2569 }
|
|
2570
|
|
2571 void
|
|
2572 image_instantiator_format_create_glyphs_gtk (void)
|
|
2573 {
|
|
2574 IIFORMAT_VALID_CONSOLE (gtk, nothing);
|
|
2575 IIFORMAT_VALID_CONSOLE (gtk, string);
|
|
2576 #ifdef HAVE_WIDGETS
|
|
2577 IIFORMAT_VALID_CONSOLE (gtk, layout);
|
|
2578 #endif
|
|
2579 IIFORMAT_VALID_CONSOLE (gtk, formatted_string);
|
|
2580 IIFORMAT_VALID_CONSOLE (gtk, inherit);
|
|
2581 #ifdef HAVE_XPM
|
|
2582 INITIALIZE_DEVICE_IIFORMAT (gtk, xpm);
|
|
2583 IIFORMAT_HAS_DEVMETHOD (gtk, xpm, instantiate);
|
|
2584 #endif
|
|
2585 #ifdef HAVE_JPEG
|
|
2586 IIFORMAT_VALID_CONSOLE (gtk, jpeg);
|
|
2587 #endif
|
|
2588 #ifdef HAVE_TIFF
|
|
2589 IIFORMAT_VALID_CONSOLE (gtk, tiff);
|
|
2590 #endif
|
|
2591 #ifdef HAVE_PNG
|
|
2592 IIFORMAT_VALID_CONSOLE (gtk, png);
|
|
2593 #endif
|
|
2594 #ifdef HAVE_GIF
|
|
2595 IIFORMAT_VALID_CONSOLE (gtk, gif);
|
|
2596 #endif
|
|
2597
|
|
2598 INITIALIZE_DEVICE_IIFORMAT (gtk, subwindow);
|
|
2599 IIFORMAT_HAS_DEVMETHOD (gtk, subwindow, instantiate);
|
|
2600
|
|
2601 #ifdef HAVE_WIDGETS
|
|
2602 /* layout widget */
|
|
2603 INITIALIZE_DEVICE_IIFORMAT (gtk, native_layout);
|
|
2604 IIFORMAT_HAS_DEVMETHOD (gtk, native_layout, instantiate);
|
|
2605
|
|
2606 /* button widget */
|
|
2607 INITIALIZE_DEVICE_IIFORMAT (gtk, button);
|
|
2608 IIFORMAT_HAS_DEVMETHOD (gtk, button, property);
|
|
2609 IIFORMAT_HAS_DEVMETHOD (gtk, button, instantiate);
|
|
2610 IIFORMAT_HAS_DEVMETHOD (gtk, button, redisplay);
|
|
2611 /* general widget methods. */
|
|
2612 INITIALIZE_DEVICE_IIFORMAT (gtk, widget);
|
|
2613 IIFORMAT_HAS_DEVMETHOD (gtk, widget, property);
|
|
2614
|
|
2615 /* progress gauge */
|
|
2616 INITIALIZE_DEVICE_IIFORMAT (gtk, progress_gauge);
|
|
2617 IIFORMAT_HAS_DEVMETHOD (gtk, progress_gauge, redisplay);
|
|
2618 IIFORMAT_HAS_DEVMETHOD (gtk, progress_gauge, instantiate);
|
|
2619 /* text field */
|
|
2620 INITIALIZE_DEVICE_IIFORMAT (gtk, edit_field);
|
|
2621 IIFORMAT_HAS_DEVMETHOD (gtk, edit_field, instantiate);
|
|
2622 INITIALIZE_DEVICE_IIFORMAT (gtk, combo_box);
|
|
2623 IIFORMAT_HAS_DEVMETHOD (gtk, combo_box, instantiate);
|
|
2624 IIFORMAT_HAS_SHARED_DEVMETHOD (gtk, combo_box, redisplay, tab_control);
|
|
2625 /* tab control widget */
|
|
2626 INITIALIZE_DEVICE_IIFORMAT (gtk, tab_control);
|
|
2627 IIFORMAT_HAS_DEVMETHOD (gtk, tab_control, instantiate);
|
|
2628 IIFORMAT_HAS_DEVMETHOD (gtk, tab_control, redisplay);
|
|
2629 /* label */
|
|
2630 INITIALIZE_DEVICE_IIFORMAT (gtk, label);
|
|
2631 IIFORMAT_HAS_DEVMETHOD (gtk, label, instantiate);
|
|
2632 #endif
|
|
2633
|
|
2634 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (cursor_font, "cursor-font");
|
|
2635 IIFORMAT_VALID_CONSOLE (gtk, cursor_font);
|
|
2636
|
|
2637 IIFORMAT_HAS_METHOD (cursor_font, validate);
|
|
2638 IIFORMAT_HAS_METHOD (cursor_font, possible_dest_types);
|
|
2639 IIFORMAT_HAS_METHOD (cursor_font, instantiate);
|
|
2640
|
|
2641 IIFORMAT_VALID_KEYWORD (cursor_font, Q_data, check_valid_string);
|
|
2642 IIFORMAT_VALID_KEYWORD (cursor_font, Q_foreground, check_valid_string);
|
|
2643 IIFORMAT_VALID_KEYWORD (cursor_font, Q_background, check_valid_string);
|
|
2644
|
|
2645 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (font, "font");
|
|
2646 IIFORMAT_VALID_CONSOLE (gtk, font);
|
|
2647
|
|
2648 IIFORMAT_HAS_METHOD (font, validate);
|
|
2649 IIFORMAT_HAS_METHOD (font, possible_dest_types);
|
|
2650 IIFORMAT_HAS_METHOD (font, instantiate);
|
|
2651
|
|
2652 IIFORMAT_VALID_KEYWORD (font, Q_data, check_valid_string);
|
|
2653 IIFORMAT_VALID_KEYWORD (font, Q_foreground, check_valid_string);
|
|
2654 IIFORMAT_VALID_KEYWORD (font, Q_background, check_valid_string);
|
|
2655
|
|
2656 #ifdef HAVE_XPM
|
|
2657 INITIALIZE_DEVICE_IIFORMAT (gtk, xpm);
|
|
2658 IIFORMAT_HAS_DEVMETHOD (gtk, xpm, instantiate);
|
|
2659 #endif
|
|
2660
|
|
2661 #ifdef HAVE_XFACE
|
|
2662 INITIALIZE_DEVICE_IIFORMAT (gtk, xface);
|
|
2663 IIFORMAT_HAS_DEVMETHOD (gtk, xface, instantiate);
|
|
2664 #endif
|
|
2665
|
|
2666 INITIALIZE_DEVICE_IIFORMAT (gtk, xbm);
|
|
2667 IIFORMAT_HAS_DEVMETHOD (gtk, xbm, instantiate);
|
|
2668 IIFORMAT_VALID_CONSOLE (gtk, xbm);
|
|
2669
|
|
2670 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (gtk_resource, "gtk-resource");
|
|
2671 IIFORMAT_VALID_CONSOLE (gtk, gtk_resource);
|
|
2672
|
|
2673 IIFORMAT_HAS_METHOD (gtk_resource, validate);
|
|
2674 IIFORMAT_HAS_METHOD (gtk_resource, normalize);
|
|
2675 IIFORMAT_HAS_METHOD (gtk_resource, possible_dest_types);
|
|
2676 IIFORMAT_HAS_METHOD (gtk_resource, instantiate);
|
|
2677
|
|
2678 IIFORMAT_VALID_KEYWORD (gtk_resource, Q_resource_type, check_valid_resource_symbol);
|
|
2679 IIFORMAT_VALID_KEYWORD (gtk_resource, Q_resource_id, check_valid_resource_id);
|
|
2680 IIFORMAT_VALID_KEYWORD (gtk_resource, Q_file, check_valid_string);
|
|
2681
|
|
2682 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT (autodetect, "autodetect");
|
|
2683 IIFORMAT_VALID_CONSOLE (gtk, autodetect);
|
|
2684
|
|
2685 IIFORMAT_HAS_METHOD (autodetect, validate);
|
|
2686 IIFORMAT_HAS_METHOD (autodetect, normalize);
|
|
2687 IIFORMAT_HAS_METHOD (autodetect, possible_dest_types);
|
|
2688 IIFORMAT_HAS_METHOD (autodetect, instantiate);
|
|
2689
|
|
2690 IIFORMAT_VALID_KEYWORD (autodetect, Q_data, check_valid_string);
|
|
2691 }
|
|
2692
|
|
2693 void
|
|
2694 vars_of_glyphs_gtk (void)
|
|
2695 {
|
|
2696 #ifdef HAVE_XFACE
|
|
2697 Fprovide (Qxface);
|
|
2698 #endif
|
|
2699
|
|
2700 DEFVAR_LISP ("gtk-bitmap-file-path", &Vgtk_bitmap_file_path /*
|
|
2701 A list of the directories in which X bitmap files may be found.
|
|
2702 If nil, this is initialized from the "*bitmapFilePath" resource.
|
|
2703 This is used by the `make-image-instance' function (however, note that if
|
|
2704 the environment variable XBMLANGPATH is set, it is consulted first).
|
|
2705 */ );
|
|
2706 Vgtk_bitmap_file_path = Qnil;
|
|
2707 }
|
|
2708
|
|
2709 void
|
|
2710 complex_vars_of_glyphs_gtk (void)
|
|
2711 {
|
|
2712 #define BUILD_GLYPH_INST(variable, name) \
|
|
2713 Fadd_spec_to_specifier \
|
|
2714 (GLYPH_IMAGE (XGLYPH (variable)), \
|
|
2715 vector3 (Qxbm, Q_data, \
|
|
2716 list3 (make_int (name##_width), \
|
|
2717 make_int (name##_height), \
|
|
2718 make_ext_string (name##_bits, \
|
|
2719 sizeof (name##_bits), \
|
|
2720 Qbinary))), \
|
|
2721 Qglobal, Qgtk, Qnil)
|
|
2722
|
|
2723 BUILD_GLYPH_INST (Vtruncation_glyph, truncator);
|
|
2724 BUILD_GLYPH_INST (Vcontinuation_glyph, continuer);
|
|
2725 BUILD_GLYPH_INST (Vxemacs_logo, xemacs);
|
|
2726 BUILD_GLYPH_INST (Vhscroll_glyph, hscroll);
|
|
2727
|
|
2728 #undef BUILD_GLYPH_INST
|
|
2729 }
|
|
2730
|
|
2731 /* X specific crap */
|
|
2732 #include <gdk/gdkx.h>
|
|
2733 /* #### Should remove all this X specific stuff when GTK/GDK matures a
|
|
2734 bit more and provides an abstraction for it. */
|
|
2735 static int
|
|
2736 gtk_colorize_image_instance (Lisp_Object image_instance,
|
|
2737 Lisp_Object foreground, Lisp_Object background)
|
|
2738 {
|
|
2739 struct Lisp_Image_Instance *p;
|
|
2740
|
|
2741 p = XIMAGE_INSTANCE (image_instance);
|
|
2742
|
|
2743 switch (IMAGE_INSTANCE_TYPE (p))
|
|
2744 {
|
|
2745 case IMAGE_MONO_PIXMAP:
|
|
2746 IMAGE_INSTANCE_TYPE (p) = IMAGE_COLOR_PIXMAP;
|
|
2747 /* Make sure there aren't two pointers to the same mask, causing
|
|
2748 it to get freed twice. */
|
|
2749 IMAGE_INSTANCE_GTK_MASK (p) = 0;
|
|
2750 break;
|
|
2751
|
|
2752 default:
|
|
2753 return 0;
|
|
2754 }
|
|
2755
|
|
2756 {
|
|
2757 GdkWindow *draw = GET_GTK_WIDGET_WINDOW (DEVICE_GTK_APP_SHELL (XDEVICE (IMAGE_INSTANCE_DEVICE (p))));
|
|
2758 GdkPixmap *new_pxmp = gdk_pixmap_new (draw,
|
|
2759 IMAGE_INSTANCE_PIXMAP_WIDTH (p),
|
|
2760 IMAGE_INSTANCE_PIXMAP_HEIGHT (p),
|
|
2761 DEVICE_GTK_DEPTH (XDEVICE (IMAGE_INSTANCE_DEVICE (p))));
|
|
2762 GdkGCValues gcv;
|
|
2763 GdkGC *gc;
|
|
2764
|
|
2765 gcv.foreground = * COLOR_INSTANCE_GTK_COLOR (XCOLOR_INSTANCE (foreground));
|
|
2766 gcv.background = * COLOR_INSTANCE_GTK_COLOR (XCOLOR_INSTANCE (background));
|
|
2767 gc = gdk_gc_new_with_values (new_pxmp, &gcv, GDK_GC_BACKGROUND | GDK_GC_FOREGROUND);
|
|
2768
|
|
2769 XCopyPlane (GDK_WINDOW_XDISPLAY (draw),
|
|
2770 GDK_WINDOW_XWINDOW (IMAGE_INSTANCE_GTK_PIXMAP (p)),
|
|
2771 GDK_WINDOW_XWINDOW (new_pxmp),
|
|
2772 GDK_GC_XGC (gc), 0, 0,
|
|
2773 IMAGE_INSTANCE_PIXMAP_WIDTH (p),
|
|
2774 IMAGE_INSTANCE_PIXMAP_HEIGHT (p),
|
|
2775 0, 0, 1);
|
|
2776
|
|
2777 gdk_gc_destroy (gc);
|
|
2778 IMAGE_INSTANCE_GTK_PIXMAP (p) = new_pxmp;
|
|
2779 IMAGE_INSTANCE_PIXMAP_DEPTH (p) = DEVICE_GTK_DEPTH (XDEVICE (IMAGE_INSTANCE_DEVICE (p)));
|
|
2780 IMAGE_INSTANCE_PIXMAP_FG (p) = foreground;
|
|
2781 IMAGE_INSTANCE_PIXMAP_BG (p) = background;
|
|
2782 return 1;
|
|
2783 }
|
|
2784 }
|
|
2785
|