]> asedeno.scripts.mit.edu Git - PuTTY.git/blob - unix/gtkfont.c
Fix crash in GTK3 when unifontsel filter settings change.
[PuTTY.git] / unix / gtkfont.c
1 /*
2  * Unified font management for GTK.
3  * 
4  * PuTTY is willing to use both old-style X server-side bitmap
5  * fonts _and_ GTK2/Pango client-side fonts. This requires us to
6  * do a bit of work to wrap the two wildly different APIs into
7  * forms the rest of the code can switch between seamlessly, and
8  * also requires a custom font selector capable of handling both
9  * types of font.
10  */
11
12 #include <assert.h>
13 #include <stdlib.h>
14 #include <string.h>
15 #include <gtk/gtk.h>
16 #if !GTK_CHECK_VERSION(3,0,0)
17 #include <gdk/gdkkeysyms.h>
18 #endif
19 #ifndef NOT_X_WINDOWS
20 #include <gdk/gdkx.h>
21 #include <X11/Xlib.h>
22 #include <X11/Xutil.h>
23 #include <X11/Xatom.h>
24 #endif
25
26 #include "putty.h"
27 #include "gtkfont.h"
28 #include "gtkcompat.h"
29 #include "tree234.h"
30
31 /*
32  * Future work:
33  * 
34  *  - it would be nice to have a display of the current font name,
35  *    and in particular whether it's client- or server-side,
36  *    during the progress of the font selector.
37  */
38
39 #if !GLIB_CHECK_VERSION(1,3,7)
40 #define g_ascii_strcasecmp g_strcasecmp
41 #define g_ascii_strncasecmp g_strncasecmp
42 #endif
43
44 /*
45  * Ad-hoc vtable mechanism to allow font structures to be
46  * polymorphic.
47  * 
48  * Any instance of `unifont' used in the vtable functions will
49  * actually be the first element of a larger structure containing
50  * data specific to the subtype. This is permitted by the ISO C
51  * provision that one may safely cast between a pointer to a
52  * structure and a pointer to its first element.
53  */
54
55 #define FONTFLAG_CLIENTSIDE    0x0001
56 #define FONTFLAG_SERVERSIDE    0x0002
57 #define FONTFLAG_SERVERALIAS   0x0004
58 #define FONTFLAG_NONMONOSPACED 0x0008
59
60 #define FONTFLAG_SORT_MASK     0x0007 /* used to disambiguate font families */
61
62 typedef void (*fontsel_add_entry)(void *ctx, const char *realfontname,
63                                   const char *family, const char *charset,
64                                   const char *style, const char *stylekey,
65                                   int size, int flags,
66                                   const struct unifont_vtable *fontclass);
67
68 struct unifont_vtable {
69     /*
70      * `Methods' of the `class'.
71      */
72     unifont *(*create)(GtkWidget *widget, const char *name, int wide, int bold,
73                        int shadowoffset, int shadowalways);
74     unifont *(*create_fallback)(GtkWidget *widget, int height, int wide,
75                                 int bold, int shadowoffset, int shadowalways);
76     void (*destroy)(unifont *font);
77     int (*has_glyph)(unifont *font, wchar_t glyph);
78     void (*draw_text)(unifont_drawctx *ctx, unifont *font,
79                       int x, int y, const wchar_t *string, int len,
80                       int wide, int bold, int cellwidth);
81     void (*enum_fonts)(GtkWidget *widget,
82                        fontsel_add_entry callback, void *callback_ctx);
83     char *(*canonify_fontname)(GtkWidget *widget, const char *name, int *size,
84                                int *flags, int resolve_aliases);
85     char *(*scale_fontname)(GtkWidget *widget, const char *name, int size);
86
87     /*
88      * `Static data members' of the `class'.
89      */
90     const char *prefix;
91 };
92
93 #ifndef NOT_X_WINDOWS
94
95 /* ----------------------------------------------------------------------
96  * X11 font implementation, directly using Xlib calls. Conditioned out
97  * if X11 fonts aren't available at all (e.g. building with GTK3 for a
98  * back end other than X).
99  */
100
101 static int x11font_has_glyph(unifont *font, wchar_t glyph);
102 static void x11font_draw_text(unifont_drawctx *ctx, unifont *font,
103                               int x, int y, const wchar_t *string, int len,
104                               int wide, int bold, int cellwidth);
105 static unifont *x11font_create(GtkWidget *widget, const char *name,
106                                int wide, int bold,
107                                int shadowoffset, int shadowalways);
108 static void x11font_destroy(unifont *font);
109 static void x11font_enum_fonts(GtkWidget *widget,
110                                fontsel_add_entry callback, void *callback_ctx);
111 static char *x11font_canonify_fontname(GtkWidget *widget, const char *name,
112                                        int *size, int *flags,
113                                        int resolve_aliases);
114 static char *x11font_scale_fontname(GtkWidget *widget, const char *name,
115                                     int size);
116
117 #ifdef DRAW_TEXT_CAIRO
118 struct cairo_cached_glyph {
119     cairo_surface_t *surface;
120     unsigned char *bitmap;
121 };
122 #endif
123
124 /*
125  * Structure storing a single physical XFontStruct, plus associated
126  * data.
127  */
128 typedef struct x11font_individual {
129     /* The XFontStruct itself. */
130     XFontStruct *xfs;
131
132     /*
133      * The `allocated' flag indicates whether we've tried to fetch
134      * this subfont already (thus distinguishing xfs==NULL because we
135      * haven't tried yet from xfs==NULL because we tried and failed,
136      * so that we don't keep trying and failing subsequently).
137      */
138     int allocated;
139
140 #ifdef DRAW_TEXT_CAIRO
141     /*
142      * A cache of glyph bitmaps downloaded from the X server when
143      * we're in Cairo rendering mode. If glyphcache itself is
144      * non-NULL, then entries in [0,nglyphs) are expected to be
145      * initialised to either NULL or a bitmap pointer.
146      */
147     struct cairo_cached_glyph *glyphcache;
148     int nglyphs;
149
150     /*
151      * X server paraphernalia for actually downloading the glyphs.
152      */
153     Pixmap pixmap;
154     GC gc;
155     int pixwidth, pixheight, pixoriginx, pixoriginy;
156
157     /*
158      * Paraphernalia for loading the resulting bitmaps into Cairo.
159      */
160     int rowsize, allsize, indexflip;
161 #endif
162
163 } x11font_individual;
164
165 struct x11font {
166     struct unifont u;
167     /*
168      * Individual physical X fonts. We store a number of these, for
169      * automatically guessed bold and wide variants.
170      */
171     x11font_individual fonts[4];
172     /*
173      * `sixteen_bit' is true iff the font object is indexed by
174      * values larger than a byte. That is, this flag tells us
175      * whether we use XDrawString or XDrawString16, etc.
176      */
177     int sixteen_bit;
178     /*
179      * `variable' is true iff the font is non-fixed-pitch. This
180      * enables some code which takes greater care over character
181      * positioning during text drawing.
182      */
183     int variable;
184     /*
185      * real_charset is the charset used when translating text into the
186      * font's internal encoding inside draw_text(). This need not be
187      * the same as the public_charset provided to the client; for
188      * example, public_charset might be CS_ISO8859_1 while
189      * real_charset is CS_ISO8859_1_X11.
190      */
191     int real_charset;
192     /*
193      * Data passed in to unifont_create().
194      */
195     int wide, bold, shadowoffset, shadowalways;
196 };
197
198 static const struct unifont_vtable x11font_vtable = {
199     x11font_create,
200     NULL,                              /* no fallback fonts in X11 */
201     x11font_destroy,
202     x11font_has_glyph,
203     x11font_draw_text,
204     x11font_enum_fonts,
205     x11font_canonify_fontname,
206     x11font_scale_fontname,
207     "server",
208 };
209
210 static char *x11_guess_derived_font_name(XFontStruct *xfs, int bold, int wide)
211 {
212     Display *disp = GDK_DISPLAY_XDISPLAY(gdk_display_get_default());
213     Atom fontprop = XInternAtom(disp, "FONT", False);
214     unsigned long ret;
215     if (XGetFontProperty(xfs, fontprop, &ret)) {
216         char *name = XGetAtomName(disp, (Atom)ret);
217         if (name && name[0] == '-') {
218             const char *strings[13];
219             char *dupname, *extrafree = NULL, *ret;
220             char *p, *q;
221             int nstr;
222
223             p = q = dupname = dupstr(name); /* skip initial minus */
224             nstr = 0;
225
226             while (*p && nstr < lenof(strings)) {
227                 if (*p == '-') {
228                     *p = '\0';
229                     strings[nstr++] = p+1;
230                 }
231                 p++;
232             }
233
234             if (nstr < lenof(strings)) {
235                 sfree(dupname);
236                 return NULL;           /* XLFD was malformed */
237             }
238
239             if (bold)
240                 strings[2] = "bold";
241
242             if (wide) {
243                 /* 4 is `wideness', which obviously may have changed. */
244                 /* 5 is additional style, which may be e.g. `ja' or `ko'. */
245                 strings[4] = strings[5] = "*";
246                 strings[11] = extrafree = dupprintf("%d", 2*atoi(strings[11]));
247             }
248
249             ret = dupcat("-", strings[ 0], "-", strings[ 1], "-", strings[ 2],
250                          "-", strings[ 3], "-", strings[ 4], "-", strings[ 5],
251                          "-", strings[ 6], "-", strings[ 7], "-", strings[ 8],
252                          "-", strings[ 9], "-", strings[10], "-", strings[11],
253                          "-", strings[12], NULL);
254             sfree(extrafree);
255             sfree(dupname);
256
257             return ret;
258         }
259     }
260     return NULL;
261 }
262
263 static int x11_font_width(XFontStruct *xfs, int sixteen_bit)
264 {
265     if (sixteen_bit) {
266         XChar2b space;
267         space.byte1 = 0;
268         space.byte2 = '0';
269         return XTextWidth16(xfs, &space, 1);
270     } else {
271         return XTextWidth(xfs, "0", 1);
272     }
273 }
274
275 static int x11_font_has_glyph(XFontStruct *xfs, int byte1, int byte2)
276 {
277     int index;
278
279     /*
280      * Not to be confused with x11font_has_glyph, which is a method of
281      * the x11font 'class' and hence takes a unifont as argument. This
282      * is the low-level function which grubs about in an actual
283      * XFontStruct to see if a given glyph exists.
284      *
285      * We must do this ourselves rather than letting Xlib's
286      * XTextExtents16 do the job, because XTextExtents will helpfully
287      * substitute the font's default_char for any missing glyph and
288      * not tell us it did so, which precisely won't help us find out
289      * which glyphs _are_ missing.
290      *
291      * The man page for XQueryFont is rather confusing about how the
292      * per_char array in the XFontStruct is laid out, because it gives
293      * formulae for determining the two-byte X character code _from_
294      * an index into the per_char array. Going the other way, it's
295      * rather simpler:
296      *
297      * The valid character codes have byte1 between min_byte1 and
298      * max_byte1 inclusive, and byte2 between min_char_or_byte2 and
299      * max_char_or_byte2 inclusive. This gives a rectangle of size
300      * (max_byte2-min_byte1+1) by
301      * (max_char_or_byte2-min_char_or_byte2+1), which is precisely the
302      * rectangle encoded in the per_char array. Hence, given a
303      * character code which is valid in the sense that it falls
304      * somewhere in that rectangle, its index in per_char is given by
305      * setting
306      *
307      *   x = byte2 - min_char_or_byte2
308      *   y = byte1 - min_byte1
309      *   index = y * (max_char_or_byte2-min_char_or_byte2+1) + x
310      *
311      * If min_byte1 and min_byte2 are both zero, that's a special case
312      * which can be treated as if min_byte2 was 1 instead, i.e. the
313      * per_char array just runs from min_char_or_byte2 to
314      * max_char_or_byte2 inclusive, and byte1 should always be zero.
315      */
316
317     if (byte2 < xfs->min_char_or_byte2 || byte2 > xfs->max_char_or_byte2)
318         return FALSE;
319
320     if (xfs->min_byte1 == 0 && xfs->max_byte1 == 0) {
321         index = byte2 - xfs->min_char_or_byte2;
322     } else {
323         if (byte1 < xfs->min_byte1 || byte1 > xfs->max_byte1)
324             return FALSE;
325         index = ((byte2 - xfs->min_char_or_byte2) +
326                  ((byte1 - xfs->min_byte1) *
327                   (xfs->max_char_or_byte2 - xfs->min_char_or_byte2 + 1)));
328     }
329
330     if (!xfs->per_char)   /* per_char NULL => everything in range exists */
331         return TRUE;
332
333     return (xfs->per_char[index].ascent + xfs->per_char[index].descent > 0 ||
334             xfs->per_char[index].width > 0);
335 }
336
337 static unifont *x11font_create(GtkWidget *widget, const char *name,
338                                int wide, int bold,
339                                int shadowoffset, int shadowalways)
340 {
341     struct x11font *xfont;
342     XFontStruct *xfs;
343     Display *disp = GDK_DISPLAY_XDISPLAY(gdk_display_get_default());
344     Atom charset_registry, charset_encoding, spacing;
345     unsigned long registry_ret, encoding_ret, spacing_ret;
346     int pubcs, realcs, sixteen_bit, variable;
347     int i;
348
349     xfs = XLoadQueryFont(disp, name);
350     if (!xfs)
351         return NULL;
352
353     charset_registry = XInternAtom(disp, "CHARSET_REGISTRY", False);
354     charset_encoding = XInternAtom(disp, "CHARSET_ENCODING", False);
355
356     pubcs = realcs = CS_NONE;
357     sixteen_bit = FALSE;
358     variable = TRUE;
359
360     if (XGetFontProperty(xfs, charset_registry, &registry_ret) &&
361         XGetFontProperty(xfs, charset_encoding, &encoding_ret)) {
362         char *reg, *enc;
363         reg = XGetAtomName(disp, (Atom)registry_ret);
364         enc = XGetAtomName(disp, (Atom)encoding_ret);
365         if (reg && enc) {
366             char *encoding = dupcat(reg, "-", enc, NULL);
367             pubcs = realcs = charset_from_xenc(encoding);
368
369             /*
370              * iso10646-1 is the only wide font encoding we
371              * support. In this case, we expect clients to give us
372              * UTF-8, which this module must internally convert
373              * into 16-bit Unicode.
374              */
375             if (!strcasecmp(encoding, "iso10646-1")) {
376                 sixteen_bit = TRUE;
377                 pubcs = realcs = CS_UTF8;
378             }
379
380             /*
381              * Hack for X line-drawing characters: if the primary font
382              * is encoded as ISO-8859-1, and has valid glyphs in the
383              * low character positions, it is assumed that those
384              * glyphs are the VT100 line-drawing character set.
385              */
386             if (pubcs == CS_ISO8859_1) {
387                 int ch;
388                 for (ch = 1; ch < 32; ch++)
389                     if (!x11_font_has_glyph(xfs, 0, ch))
390                         break;
391                 if (ch == 32)
392                     realcs = CS_ISO8859_1_X11;
393             }
394
395             sfree(encoding);
396         }
397     }
398
399     spacing = XInternAtom(disp, "SPACING", False);
400     if (XGetFontProperty(xfs, spacing, &spacing_ret)) {
401         char *spc;
402         spc = XGetAtomName(disp, (Atom)spacing_ret);
403
404         if (spc && strchr("CcMm", spc[0]))
405             variable = FALSE;
406     }
407
408     xfont = snew(struct x11font);
409     xfont->u.vt = &x11font_vtable;
410     xfont->u.width = x11_font_width(xfs, sixteen_bit);
411     xfont->u.ascent = xfs->ascent;
412     xfont->u.descent = xfs->descent;
413     xfont->u.height = xfont->u.ascent + xfont->u.descent;
414     xfont->u.public_charset = pubcs;
415     xfont->u.want_fallback = TRUE;
416 #ifdef DRAW_TEXT_GDK
417     xfont->u.preferred_drawtype = DRAWTYPE_GDK;
418 #elif defined DRAW_TEXT_CAIRO
419     xfont->u.preferred_drawtype = DRAWTYPE_CAIRO;
420 #else
421 #error No drawtype available at all
422 #endif
423     xfont->real_charset = realcs;
424     xfont->sixteen_bit = sixteen_bit;
425     xfont->variable = variable;
426     xfont->wide = wide;
427     xfont->bold = bold;
428     xfont->shadowoffset = shadowoffset;
429     xfont->shadowalways = shadowalways;
430
431     for (i = 0; i < lenof(xfont->fonts); i++) {
432         xfont->fonts[i].xfs = NULL;
433         xfont->fonts[i].allocated = FALSE;
434 #ifdef DRAW_TEXT_CAIRO
435         xfont->fonts[i].glyphcache = NULL;
436         xfont->fonts[i].nglyphs = 0;
437         xfont->fonts[i].pixmap = None;
438         xfont->fonts[i].gc = None;
439 #endif
440     }
441     xfont->fonts[0].xfs = xfs;
442     xfont->fonts[0].allocated = TRUE;
443
444     return (unifont *)xfont;
445 }
446
447 static void x11font_destroy(unifont *font)
448 {
449     Display *disp = GDK_DISPLAY_XDISPLAY(gdk_display_get_default());
450     struct x11font *xfont = (struct x11font *)font;
451     int i;
452
453     for (i = 0; i < lenof(xfont->fonts); i++) {
454         if (xfont->fonts[i].xfs)
455             XFreeFont(disp, xfont->fonts[i].xfs);
456 #ifdef DRAW_TEXT_CAIRO
457         if (xfont->fonts[i].gc != None)
458             XFreeGC(disp, xfont->fonts[i].gc);
459         if (xfont->fonts[i].pixmap != None)
460             XFreePixmap(disp, xfont->fonts[i].pixmap);
461         if (xfont->fonts[i].glyphcache) {
462             int j;
463             for (j = 0; j < xfont->fonts[i].nglyphs; j++) {
464                 cairo_surface_destroy(xfont->fonts[i].glyphcache[j].surface);
465                 sfree(xfont->fonts[i].glyphcache[j].bitmap);
466             }
467             sfree(xfont->fonts[i].glyphcache);
468         }
469 #endif
470     }
471     sfree(font);
472 }
473
474 static void x11_alloc_subfont(struct x11font *xfont, int sfid)
475 {
476     Display *disp = GDK_DISPLAY_XDISPLAY(gdk_display_get_default());
477     char *derived_name = x11_guess_derived_font_name
478         (xfont->fonts[0].xfs, sfid & 1, !!(sfid & 2));
479     xfont->fonts[sfid].xfs = XLoadQueryFont(disp, derived_name);
480     xfont->fonts[sfid].allocated = TRUE;
481     sfree(derived_name);
482     /* Note that xfont->fonts[sfid].xfs may still be NULL, if XLQF failed. */
483 }
484
485 static int x11font_has_glyph(unifont *font, wchar_t glyph)
486 {
487     struct x11font *xfont = (struct x11font *)font;
488
489     if (xfont->sixteen_bit) {
490         /*
491          * This X font has 16-bit character indices, which means
492          * we can directly use our Unicode input value.
493          */
494         return x11_font_has_glyph(xfont->fonts[0].xfs,
495                                   glyph >> 8, glyph & 0xFF);
496     } else {
497         /*
498          * This X font has 8-bit indices, so we must convert to the
499          * appropriate character set.
500          */
501         char sbstring[2];
502         int sblen = wc_to_mb(xfont->real_charset, 0, &glyph, 1,
503                              sbstring, 2, "", NULL, NULL);
504         if (sblen == 0 || !sbstring[0])
505             return FALSE;              /* not even in the charset */
506
507         return x11_font_has_glyph(xfont->fonts[0].xfs, 0,
508                                   (unsigned char)sbstring[0]);
509     }
510 }
511
512 #if !GTK_CHECK_VERSION(2,0,0)
513 #define GDK_DRAWABLE_XID(d) GDK_WINDOW_XWINDOW(d) /* GTK1's name for this */
514 #elif GTK_CHECK_VERSION(3,0,0)
515 #define GDK_DRAWABLE_XID(d) GDK_WINDOW_XID(d) /* GTK3's name for this */
516 #endif
517
518 static int x11font_width_16(unifont_drawctx *ctx, x11font_individual *xfi,
519                             const void *vstring, int start, int length)
520 {
521     const XChar2b *string = (const XChar2b *)vstring;
522     return XTextWidth16(xfi->xfs, string+start, length);
523 }
524
525 static int x11font_width_8(unifont_drawctx *ctx, x11font_individual *xfi,
526                            const void *vstring, int start, int length)
527 {
528     const char *string = (const char *)vstring;
529     return XTextWidth(xfi->xfs, string+start, length);
530 }
531
532 #ifdef DRAW_TEXT_GDK
533 static void x11font_gdk_setup(unifont_drawctx *ctx, x11font_individual *xfi)
534 {
535     Display *disp = GDK_DISPLAY_XDISPLAY(gdk_display_get_default());
536     XSetFont(disp, GDK_GC_XGC(ctx->u.gdk.gc), xfi->xfs->fid);
537 }
538
539 static void x11font_gdk_draw_16(unifont_drawctx *ctx,
540                                 x11font_individual *xfi, int x, int y,
541                                 const void *vstring, int start, int length)
542 {
543     Display *disp = GDK_DISPLAY_XDISPLAY(gdk_display_get_default());
544     const XChar2b *string = (const XChar2b *)vstring;
545     XDrawString16(disp, GDK_DRAWABLE_XID(ctx->u.gdk.target),
546                   GDK_GC_XGC(ctx->u.gdk.gc), x, y, string+start, length);
547 }
548
549 static void x11font_gdk_draw_8(unifont_drawctx *ctx,
550                                x11font_individual *xfi, int x, int y,
551                                const void *vstring, int start, int length)
552 {
553     Display *disp = GDK_DISPLAY_XDISPLAY(gdk_display_get_default());
554     const char *string = (const char *)vstring;
555     XDrawString(disp, GDK_DRAWABLE_XID(ctx->u.gdk.target),
556                 GDK_GC_XGC(ctx->u.gdk.gc), x, y, string+start, length);
557 }
558 #endif
559
560 #ifdef DRAW_TEXT_CAIRO
561 static void x11font_cairo_setup(unifont_drawctx *ctx, x11font_individual *xfi)
562 {
563     if (xfi->pixmap == None) {
564         Display *disp = GDK_DISPLAY_XDISPLAY(gdk_display_get_default());
565         XGCValues gcvals;
566         GdkWindow *widgetwin = gtk_widget_get_window(ctx->u.cairo.widget);
567         int widgetscr = GDK_SCREEN_XNUMBER(gdk_window_get_screen(widgetwin));
568
569         xfi->pixwidth =
570             xfi->xfs->max_bounds.rbearing - xfi->xfs->min_bounds.lbearing;
571         xfi->pixheight =
572             xfi->xfs->max_bounds.ascent + xfi->xfs->max_bounds.descent;
573         xfi->pixoriginx = -xfi->xfs->min_bounds.lbearing;
574         xfi->pixoriginy = xfi->xfs->max_bounds.ascent;
575
576         xfi->rowsize = cairo_format_stride_for_width(CAIRO_FORMAT_A1,
577                                                      xfi->pixwidth);
578         xfi->allsize = xfi->rowsize * xfi->pixheight;
579
580         {
581             /*
582              * Test host endianness and use it to set xfi->indexflip,
583              * which is XORed into our left-shift counts in order to
584              * implement the CAIRO_FORMAT_A1 specification, in which
585              * each bitmap byte is oriented LSB-first on little-endian
586              * platforms and MSB-first on big-endian ones.
587              *
588              * This is the same technique Cairo itself uses to test
589              * endianness, so hopefully it'll work in any situation
590              * where Cairo is usable at all.
591              */
592             static const int endianness_test = 1;
593             xfi->indexflip = (*((char *) &endianness_test) == 1) ? 0 : 7;
594         }
595
596         xfi->pixmap = XCreatePixmap
597             (disp,
598              GDK_DRAWABLE_XID(gtk_widget_get_window(ctx->u.cairo.widget)),
599              xfi->pixwidth, xfi->pixheight, 1);
600         gcvals.foreground = WhitePixel(disp, widgetscr);
601         gcvals.background = BlackPixel(disp, widgetscr);
602         gcvals.font = xfi->xfs->fid;
603         xfi->gc = XCreateGC(disp, xfi->pixmap,
604                             GCForeground | GCBackground | GCFont, &gcvals);
605     }
606 }
607
608 static void x11font_cairo_cache_glyph(x11font_individual *xfi, int glyphindex)
609 {
610     XImage *image;
611     int x, y;
612     unsigned char *bitmap;
613     Display *disp = GDK_DISPLAY_XDISPLAY(gdk_display_get_default());
614
615     bitmap = snewn(xfi->allsize, unsigned char);
616     memset(bitmap, 0, xfi->allsize);
617
618     image = XGetImage(disp, xfi->pixmap, 0, 0,
619                       xfi->pixwidth, xfi->pixheight, AllPlanes, XYPixmap);
620     for (y = 0; y < xfi->pixheight; y++) {
621         for (x = 0; x < xfi->pixwidth; x++) {
622             unsigned long pixel = XGetPixel(image, x, y);
623             if (pixel) {
624                 int byteindex = y * xfi->rowsize + x/8;
625                 int bitindex = (x & 7) ^ xfi->indexflip;
626                 bitmap[byteindex] |= 1U << bitindex;
627             }
628         }
629     }
630     XDestroyImage(image);
631
632     if (xfi->nglyphs <= glyphindex) {
633         /* Round up to the next multiple of 256 on the general
634          * principle that Unicode characters come in contiguous blocks
635          * often used together */
636         int old_nglyphs = xfi->nglyphs;
637         xfi->nglyphs = (glyphindex + 0xFF) & ~0xFF;
638         xfi->glyphcache = sresize(xfi->glyphcache, xfi->nglyphs,
639                                   struct cairo_cached_glyph);
640
641         while (old_nglyphs < xfi->nglyphs) {
642             xfi->glyphcache[old_nglyphs].surface = NULL;
643             xfi->glyphcache[old_nglyphs].bitmap = NULL;
644             old_nglyphs++;
645         }
646     }
647     xfi->glyphcache[glyphindex].bitmap = bitmap;
648     xfi->glyphcache[glyphindex].surface = cairo_image_surface_create_for_data
649         (bitmap, CAIRO_FORMAT_A1, xfi->pixwidth, xfi->pixheight, xfi->rowsize);
650 }
651
652 static void x11font_cairo_draw_glyph(unifont_drawctx *ctx,
653                                      x11font_individual *xfi, int x, int y,
654                                      int glyphindex)
655 {
656     if (xfi->glyphcache[glyphindex].surface) {
657         cairo_mask_surface(ctx->u.cairo.cr,
658                            xfi->glyphcache[glyphindex].surface,
659                            x - xfi->pixoriginx, y - xfi->pixoriginy);
660     }
661 }
662
663 static void x11font_cairo_draw_16(unifont_drawctx *ctx,
664                                   x11font_individual *xfi, int x, int y,
665                                   const void *vstring, int start, int length)
666 {
667     Display *disp = GDK_DISPLAY_XDISPLAY(gdk_display_get_default());
668     const XChar2b *string = (const XChar2b *)vstring + start;
669     int i;
670     for (i = 0; i < length; i++) {
671         if (x11_font_has_glyph(xfi->xfs, string[i].byte1, string[i].byte2)) {
672             int glyphindex = (256 * (unsigned char)string[i].byte1 +
673                               (unsigned char)string[i].byte2);
674             if (glyphindex >= xfi->nglyphs ||
675                 !xfi->glyphcache[glyphindex].surface) {
676                 XDrawImageString16(disp, xfi->pixmap, xfi->gc,
677                                    xfi->pixoriginx, xfi->pixoriginy,
678                                    string+i, 1);
679                 x11font_cairo_cache_glyph(xfi, glyphindex);
680             }
681             x11font_cairo_draw_glyph(ctx, xfi, x, y, glyphindex);
682             x += XTextWidth16(xfi->xfs, string+i, 1);
683         }
684     }
685 }
686
687 static void x11font_cairo_draw_8(unifont_drawctx *ctx,
688                                  x11font_individual *xfi, int x, int y,
689                                  const void *vstring, int start, int length)
690 {
691     Display *disp = GDK_DISPLAY_XDISPLAY(gdk_display_get_default());
692     const char *string = (const char *)vstring + start;
693     int i;
694     for (i = 0; i < length; i++) {
695         if (x11_font_has_glyph(xfi->xfs, 0, string[i])) {
696             int glyphindex = (unsigned char)string[i];
697             if (glyphindex >= xfi->nglyphs ||
698                 !xfi->glyphcache[glyphindex].surface) {
699                 XDrawImageString(disp, xfi->pixmap, xfi->gc,
700                                  xfi->pixoriginx, xfi->pixoriginy,
701                                  string+i, 1);
702                 x11font_cairo_cache_glyph(xfi, glyphindex);
703             }
704             x11font_cairo_draw_glyph(ctx, xfi, x, y, glyphindex);
705             x += XTextWidth(xfi->xfs, string+i, 1);
706         }
707     }
708 }
709 #endif /* DRAW_TEXT_CAIRO */
710
711 struct x11font_drawfuncs {
712     int (*width)(unifont_drawctx *ctx, x11font_individual *xfi,
713                  const void *vstring, int start, int length);
714     void (*setup)(unifont_drawctx *ctx, x11font_individual *xfi);
715     void (*draw)(unifont_drawctx *ctx, x11font_individual *xfi, int x, int y,
716                  const void *vstring, int start, int length);
717 };
718
719 /*
720  * This array has two entries per compiled-in drawtype; of each pair,
721  * the first is for an 8-bit font and the second for 16-bit.
722  */
723 static const struct x11font_drawfuncs x11font_drawfuncs[2*DRAWTYPE_NTYPES] = {
724 #ifdef DRAW_TEXT_GDK
725     /* gdk, 8-bit */
726     {
727         x11font_width_8,
728         x11font_gdk_setup,
729         x11font_gdk_draw_8,
730     },
731     /* gdk, 16-bit */
732     {
733         x11font_width_16,
734         x11font_gdk_setup,
735         x11font_gdk_draw_16,
736     },
737 #endif
738 #ifdef DRAW_TEXT_CAIRO
739     /* cairo, 8-bit */
740     {
741         x11font_width_8,
742         x11font_cairo_setup,
743         x11font_cairo_draw_8,
744     },
745     /* [3] cairo, 16-bit */
746     {
747         x11font_width_16,
748         x11font_cairo_setup,
749         x11font_cairo_draw_16,
750     },
751 #endif
752 };
753
754 static void x11font_really_draw_text(const struct x11font_drawfuncs *dfns,
755                                      unifont_drawctx *ctx,
756                                      x11font_individual *xfi, int x, int y,
757                                      const void *string, int nchars,
758                                      int shadowoffset,
759                                      int fontvariable, int cellwidth)
760 {
761     int start = 0, step, nsteps, centre;
762
763     if (fontvariable) {
764         /*
765          * In a variable-pitch font, we draw one character at a
766          * time, and centre it in the character cell.
767          */
768         step = 1;
769         nsteps = nchars;
770         centre = TRUE;
771     } else {
772         /*
773          * In a fixed-pitch font, we can draw the whole lot in one go.
774          */
775         step = nchars;
776         nsteps = 1;
777         centre = FALSE;
778     }
779
780     dfns->setup(ctx, xfi);
781
782     while (nsteps-- > 0) {
783         int X = x;
784         if (centre)
785             X += (cellwidth - dfns->width(ctx, xfi, string, start, step)) / 2;
786
787         dfns->draw(ctx, xfi, X, y, string, start, step);
788         if (shadowoffset)
789             dfns->draw(ctx, xfi, X + shadowoffset, y, string, start, step);
790
791         x += cellwidth;
792         start += step;
793     }
794 }
795
796 static void x11font_draw_text(unifont_drawctx *ctx, unifont *font,
797                               int x, int y, const wchar_t *string, int len,
798                               int wide, int bold, int cellwidth)
799 {
800     struct x11font *xfont = (struct x11font *)font;
801     int sfid;
802     int shadowoffset = 0;
803     int mult = (wide ? 2 : 1);
804     int index = 2 * (int)ctx->type;
805
806     wide -= xfont->wide;
807     bold -= xfont->bold;
808
809     /*
810      * Decide which subfont we're using, and whether we have to
811      * use shadow bold.
812      */
813     if (xfont->shadowalways && bold) {
814         shadowoffset = xfont->shadowoffset;
815         bold = 0;
816     }
817     sfid = 2 * wide + bold;
818     if (!xfont->fonts[sfid].allocated)
819         x11_alloc_subfont(xfont, sfid);
820     if (bold && !xfont->fonts[sfid].xfs) {
821         bold = 0;
822         shadowoffset = xfont->shadowoffset;
823         sfid = 2 * wide + bold;
824         if (!xfont->fonts[sfid].allocated)
825             x11_alloc_subfont(xfont, sfid);
826     }
827
828     if (!xfont->fonts[sfid].xfs)
829         return;                        /* we've tried our best, but no luck */
830
831     if (xfont->sixteen_bit) {
832         /*
833          * This X font has 16-bit character indices, which means
834          * we can directly use our Unicode input string.
835          */
836         XChar2b *xcs;
837         int i;
838
839         xcs = snewn(len, XChar2b);
840         for (i = 0; i < len; i++) {
841             xcs[i].byte1 = string[i] >> 8;
842             xcs[i].byte2 = string[i];
843         }
844
845         x11font_really_draw_text(x11font_drawfuncs + index + 1, ctx,
846                                  &xfont->fonts[sfid], x, y,
847                                  xcs, len, shadowoffset,
848                                  xfont->variable, cellwidth * mult);
849         sfree(xcs);
850     } else {
851         /*
852          * This X font has 8-bit indices, so we must convert to the
853          * appropriate character set.
854          */
855         char *sbstring = snewn(len+1, char);
856         int sblen = wc_to_mb(xfont->real_charset, 0, string, len,
857                              sbstring, len+1, ".", NULL, NULL);
858         x11font_really_draw_text(x11font_drawfuncs + index + 0, ctx,
859                                  &xfont->fonts[sfid], x, y,
860                                  sbstring, sblen, shadowoffset,
861                                  xfont->variable, cellwidth * mult);
862         sfree(sbstring);
863     }
864 }
865
866 static void x11font_enum_fonts(GtkWidget *widget,
867                                fontsel_add_entry callback, void *callback_ctx)
868 {
869     Display *disp = GDK_DISPLAY_XDISPLAY(gdk_display_get_default());
870     char **fontnames;
871     char *tmp = NULL;
872     int nnames, i, max, tmpsize;
873
874     max = 32768;
875     while (1) {
876         fontnames = XListFonts(disp, "*", max, &nnames);
877         if (nnames >= max) {
878             XFreeFontNames(fontnames);
879             max *= 2;
880         } else
881             break;
882     }
883
884     tmpsize = 0;
885
886     for (i = 0; i < nnames; i++) {
887         if (fontnames[i][0] == '-') {
888             /*
889              * Dismember an XLFD and convert it into the format
890              * we'll be using in the font selector.
891              */
892             char *components[14];
893             char *p, *font, *style, *stylekey, *charset;
894             int j, weightkey, slantkey, setwidthkey;
895             int thistmpsize, fontsize, flags;
896
897             thistmpsize = 4 * strlen(fontnames[i]) + 256;
898             if (tmpsize < thistmpsize) {
899                 tmpsize = thistmpsize;
900                 tmp = sresize(tmp, tmpsize, char);
901             }
902             strcpy(tmp, fontnames[i]);
903
904             p = tmp;
905             for (j = 0; j < 14; j++) {
906                 if (*p)
907                     *p++ = '\0';
908                 components[j] = p;
909                 while (*p && *p != '-')
910                     p++;
911             }
912             *p++ = '\0';
913
914             /*
915              * Font name is made up of fields 0 and 1, in reverse
916              * order with parentheses. (This is what the GTK 1.2 X
917              * font selector does, and it seems to come out
918              * looking reasonably sensible.)
919              */
920             font = p;
921             p += 1 + sprintf(p, "%s (%s)", components[1], components[0]);
922
923             /*
924              * Charset is made up of fields 12 and 13.
925              */
926             charset = p;
927             p += 1 + sprintf(p, "%s-%s", components[12], components[13]);
928
929             /*
930              * Style is a mixture of quite a lot of the fields,
931              * with some strange formatting.
932              */
933             style = p;
934             p += sprintf(p, "%s", components[2][0] ? components[2] :
935                          "regular");
936             if (!g_ascii_strcasecmp(components[3], "i"))
937                 p += sprintf(p, " italic");
938             else if (!g_ascii_strcasecmp(components[3], "o"))
939                 p += sprintf(p, " oblique");
940             else if (!g_ascii_strcasecmp(components[3], "ri"))
941                 p += sprintf(p, " reverse italic");
942             else if (!g_ascii_strcasecmp(components[3], "ro"))
943                 p += sprintf(p, " reverse oblique");
944             else if (!g_ascii_strcasecmp(components[3], "ot"))
945                 p += sprintf(p, " other-slant");
946             if (components[4][0] && g_ascii_strcasecmp(components[4], "normal"))
947                 p += sprintf(p, " %s", components[4]);
948             if (!g_ascii_strcasecmp(components[10], "m"))
949                 p += sprintf(p, " [M]");
950             if (!g_ascii_strcasecmp(components[10], "c"))
951                 p += sprintf(p, " [C]");
952             if (components[5][0])
953                 p += sprintf(p, " %s", components[5]);
954
955             /*
956              * Style key is the same stuff as above, but with a
957              * couple of transformations done on it to make it
958              * sort more sensibly.
959              */
960             p++;
961             stylekey = p;
962             if (!g_ascii_strcasecmp(components[2], "medium") ||
963                 !g_ascii_strcasecmp(components[2], "regular") ||
964                 !g_ascii_strcasecmp(components[2], "normal") ||
965                 !g_ascii_strcasecmp(components[2], "book"))
966                 weightkey = 0;
967             else if (!g_ascii_strncasecmp(components[2], "demi", 4) ||
968                      !g_ascii_strncasecmp(components[2], "semi", 4))
969                 weightkey = 1;
970             else
971                 weightkey = 2;
972             if (!g_ascii_strcasecmp(components[3], "r"))
973                 slantkey = 0;
974             else if (!g_ascii_strncasecmp(components[3], "r", 1))
975                 slantkey = 2;
976             else
977                 slantkey = 1;
978             if (!g_ascii_strcasecmp(components[4], "normal"))
979                 setwidthkey = 0;
980             else
981                 setwidthkey = 1;
982
983             p += sprintf(p, "%04d%04d%s%04d%04d%s%04d%04d%s%04d%s%04d%s",
984                          weightkey,
985                          (int)strlen(components[2]), components[2],
986                          slantkey,
987                          (int)strlen(components[3]), components[3],
988                          setwidthkey,
989                          (int)strlen(components[4]), components[4],
990                          (int)strlen(components[10]), components[10],
991                          (int)strlen(components[5]), components[5]);
992
993             assert(p - tmp < thistmpsize);
994
995             /*
996              * Size is in pixels, for our application, so we
997              * derive it directly from the pixel size field,
998              * number 6.
999              */
1000             fontsize = atoi(components[6]);
1001
1002             /*
1003              * Flags: we need to know whether this is a monospaced
1004              * font, which we do by examining the spacing field
1005              * again.
1006              */
1007             flags = FONTFLAG_SERVERSIDE;
1008             if (!strchr("CcMm", components[10][0]))
1009                 flags |= FONTFLAG_NONMONOSPACED;
1010
1011             /*
1012              * Not sure why, but sometimes the X server will
1013              * deliver dummy font types in which fontsize comes
1014              * out as zero. Filter those out.
1015              */
1016             if (fontsize)
1017                 callback(callback_ctx, fontnames[i], font, charset,
1018                          style, stylekey, fontsize, flags, &x11font_vtable);
1019         } else {
1020             /*
1021              * This isn't an XLFD, so it must be an alias.
1022              * Transmit it with mostly null data.
1023              * 
1024              * It would be nice to work out if it's monospaced
1025              * here, but at the moment I can't see that being
1026              * anything but computationally hideous. Ah well.
1027              */
1028             callback(callback_ctx, fontnames[i], fontnames[i], NULL,
1029                      NULL, NULL, 0, FONTFLAG_SERVERALIAS, &x11font_vtable);
1030         }
1031     }
1032     XFreeFontNames(fontnames);
1033 }
1034
1035 static char *x11font_canonify_fontname(GtkWidget *widget, const char *name,
1036                                        int *size, int *flags,
1037                                        int resolve_aliases)
1038 {
1039     /*
1040      * When given an X11 font name to try to make sense of for a
1041      * font selector, we must attempt to load it (to see if it
1042      * exists), and then canonify it by extracting its FONT
1043      * property, which should give its full XLFD even if what we
1044      * originally had was a wildcard.
1045      * 
1046      * However, we must carefully avoid canonifying font
1047      * _aliases_, unless specifically asked to, because the font
1048      * selector treats them as worthwhile in their own right.
1049      */
1050     XFontStruct *xfs;
1051     Display *disp = GDK_DISPLAY_XDISPLAY(gdk_display_get_default());
1052     Atom fontprop, fontprop2;
1053     unsigned long ret;
1054
1055     xfs = XLoadQueryFont(disp, name);
1056
1057     if (!xfs)
1058         return NULL;                   /* didn't make sense to us, sorry */
1059
1060     fontprop = XInternAtom(disp, "FONT", False);
1061
1062     if (XGetFontProperty(xfs, fontprop, &ret)) {
1063         char *newname = XGetAtomName(disp, (Atom)ret);
1064         if (newname) {
1065             unsigned long fsize = 12;
1066
1067             fontprop2 = XInternAtom(disp, "PIXEL_SIZE", False);
1068             if (XGetFontProperty(xfs, fontprop2, &fsize) && fsize > 0) {
1069                 *size = fsize;
1070                 XFreeFont(disp, xfs);
1071                 if (flags) {
1072                     if (name[0] == '-' || resolve_aliases)
1073                         *flags = FONTFLAG_SERVERSIDE;
1074                     else
1075                         *flags = FONTFLAG_SERVERALIAS;
1076                 }
1077                 return dupstr(name[0] == '-' || resolve_aliases ?
1078                               newname : name);
1079             }
1080         }
1081     }
1082
1083     XFreeFont(disp, xfs);
1084
1085     return NULL;                       /* something went wrong */
1086 }
1087
1088 static char *x11font_scale_fontname(GtkWidget *widget, const char *name,
1089                                     int size)
1090 {
1091     return NULL;                       /* shan't */
1092 }
1093
1094 #endif /* NOT_X_WINDOWS */
1095
1096 #if GTK_CHECK_VERSION(2,0,0)
1097
1098 /* ----------------------------------------------------------------------
1099  * Pango font implementation (for GTK 2 only).
1100  */
1101
1102 #if defined PANGO_PRE_1POINT4 && !defined PANGO_PRE_1POINT6
1103 #define PANGO_PRE_1POINT6              /* make life easier for pre-1.4 folk */
1104 #endif
1105
1106 static int pangofont_has_glyph(unifont *font, wchar_t glyph);
1107 static void pangofont_draw_text(unifont_drawctx *ctx, unifont *font,
1108                                 int x, int y, const wchar_t *string, int len,
1109                                 int wide, int bold, int cellwidth);
1110 static unifont *pangofont_create(GtkWidget *widget, const char *name,
1111                                  int wide, int bold,
1112                                  int shadowoffset, int shadowalways);
1113 static unifont *pangofont_create_fallback(GtkWidget *widget, int height,
1114                                           int wide, int bold,
1115                                           int shadowoffset, int shadowalways);
1116 static void pangofont_destroy(unifont *font);
1117 static void pangofont_enum_fonts(GtkWidget *widget, fontsel_add_entry callback,
1118                                  void *callback_ctx);
1119 static char *pangofont_canonify_fontname(GtkWidget *widget, const char *name,
1120                                          int *size, int *flags,
1121                                          int resolve_aliases);
1122 static char *pangofont_scale_fontname(GtkWidget *widget, const char *name,
1123                                       int size);
1124
1125 struct pangofont {
1126     struct unifont u;
1127     /*
1128      * Pango objects.
1129      */
1130     PangoFontDescription *desc;
1131     PangoFontset *fset;
1132     /*
1133      * The containing widget.
1134      */
1135     GtkWidget *widget;
1136     /*
1137      * Data passed in to unifont_create().
1138      */
1139     int bold, shadowoffset, shadowalways;
1140 };
1141
1142 static const struct unifont_vtable pangofont_vtable = {
1143     pangofont_create,
1144     pangofont_create_fallback,
1145     pangofont_destroy,
1146     pangofont_has_glyph,
1147     pangofont_draw_text,
1148     pangofont_enum_fonts,
1149     pangofont_canonify_fontname,
1150     pangofont_scale_fontname,
1151     "client",
1152 };
1153
1154 /*
1155  * This function is used to rigorously validate a
1156  * PangoFontDescription. Later versions of Pango have a nasty
1157  * habit of accepting _any_ old string as input to
1158  * pango_font_description_from_string and returning a font
1159  * description which can actually be used to display text, even if
1160  * they have to do it by falling back to their most default font.
1161  * This is doubtless helpful in some situations, but not here,
1162  * because we need to know if a Pango font string actually _makes
1163  * sense_ in order to fall back to treating it as an X font name
1164  * if it doesn't. So we check that the font family is actually one
1165  * supported by Pango.
1166  */
1167 static int pangofont_check_desc_makes_sense(PangoContext *ctx,
1168                                             PangoFontDescription *desc)
1169 {
1170 #ifndef PANGO_PRE_1POINT6
1171     PangoFontMap *map;
1172 #endif
1173     PangoFontFamily **families;
1174     int i, nfamilies, matched;
1175
1176     /*
1177      * Ask Pango for a list of font families, and iterate through
1178      * them to see if one of them matches the family in the
1179      * PangoFontDescription.
1180      */
1181 #ifndef PANGO_PRE_1POINT6
1182     map = pango_context_get_font_map(ctx);
1183     if (!map)
1184         return FALSE;
1185     pango_font_map_list_families(map, &families, &nfamilies);
1186 #else
1187     pango_context_list_families(ctx, &families, &nfamilies);
1188 #endif
1189
1190     matched = FALSE;
1191     for (i = 0; i < nfamilies; i++) {
1192         if (!g_ascii_strcasecmp(pango_font_family_get_name(families[i]),
1193                                 pango_font_description_get_family(desc))) {
1194             matched = TRUE;
1195             break;
1196         }
1197     }
1198     g_free(families);
1199
1200     return matched;
1201 }
1202
1203 static unifont *pangofont_create_internal(GtkWidget *widget,
1204                                           PangoContext *ctx,
1205                                           PangoFontDescription *desc,
1206                                           int wide, int bold,
1207                                           int shadowoffset, int shadowalways)
1208 {
1209     struct pangofont *pfont;
1210 #ifndef PANGO_PRE_1POINT6
1211     PangoFontMap *map;
1212 #endif
1213     PangoFontset *fset;
1214     PangoFontMetrics *metrics;
1215
1216 #ifndef PANGO_PRE_1POINT6
1217     map = pango_context_get_font_map(ctx);
1218     if (!map) {
1219         pango_font_description_free(desc);
1220         return NULL;
1221     }
1222     fset = pango_font_map_load_fontset(map, ctx, desc,
1223                                        pango_context_get_language(ctx));
1224 #else
1225     fset = pango_context_load_fontset(ctx, desc,
1226                                       pango_context_get_language(ctx));
1227 #endif
1228     if (!fset) {
1229         pango_font_description_free(desc);
1230         return NULL;
1231     }
1232     metrics = pango_fontset_get_metrics(fset);
1233     if (!metrics ||
1234         pango_font_metrics_get_approximate_digit_width(metrics) == 0) {
1235         pango_font_description_free(desc);
1236         g_object_unref(fset);
1237         return NULL;
1238     }
1239
1240     pfont = snew(struct pangofont);
1241     pfont->u.vt = &pangofont_vtable;
1242     pfont->u.width =
1243         PANGO_PIXELS(pango_font_metrics_get_approximate_digit_width(metrics));
1244     pfont->u.ascent = PANGO_PIXELS(pango_font_metrics_get_ascent(metrics));
1245     pfont->u.descent = PANGO_PIXELS(pango_font_metrics_get_descent(metrics));
1246     pfont->u.height = pfont->u.ascent + pfont->u.descent;
1247     pfont->u.want_fallback = FALSE;
1248 #ifdef DRAW_TEXT_CAIRO
1249     pfont->u.preferred_drawtype = DRAWTYPE_CAIRO;
1250 #elif defined DRAW_TEXT_GDK
1251     pfont->u.preferred_drawtype = DRAWTYPE_GDK;
1252 #else
1253 #error No drawtype available at all
1254 #endif
1255     /* The Pango API is hardwired to UTF-8 */
1256     pfont->u.public_charset = CS_UTF8;
1257     pfont->desc = desc;
1258     pfont->fset = fset;
1259     pfont->widget = widget;
1260     pfont->bold = bold;
1261     pfont->shadowoffset = shadowoffset;
1262     pfont->shadowalways = shadowalways;
1263
1264     pango_font_metrics_unref(metrics);
1265
1266     return (unifont *)pfont;
1267 }
1268
1269 static unifont *pangofont_create(GtkWidget *widget, const char *name,
1270                                  int wide, int bold,
1271                                  int shadowoffset, int shadowalways)
1272 {
1273     PangoContext *ctx;
1274     PangoFontDescription *desc;
1275
1276     desc = pango_font_description_from_string(name);
1277     if (!desc)
1278         return NULL;
1279     ctx = gtk_widget_get_pango_context(widget);
1280     if (!ctx) {
1281         pango_font_description_free(desc);
1282         return NULL;
1283     }
1284     if (!pangofont_check_desc_makes_sense(ctx, desc)) {
1285         pango_font_description_free(desc);
1286         return NULL;
1287     }
1288     return pangofont_create_internal(widget, ctx, desc, wide, bold,
1289                                      shadowoffset, shadowalways);
1290 }
1291
1292 static unifont *pangofont_create_fallback(GtkWidget *widget, int height,
1293                                           int wide, int bold,
1294                                           int shadowoffset, int shadowalways)
1295 {
1296     PangoContext *ctx;
1297     PangoFontDescription *desc;
1298
1299     desc = pango_font_description_from_string("Monospace");
1300     if (!desc)
1301         return NULL;
1302     ctx = gtk_widget_get_pango_context(widget);
1303     if (!ctx) {
1304         pango_font_description_free(desc);
1305         return NULL;
1306     }
1307     pango_font_description_set_absolute_size(desc, height * PANGO_SCALE);
1308     return pangofont_create_internal(widget, ctx, desc, wide, bold,
1309                                      shadowoffset, shadowalways);
1310 }
1311
1312 static void pangofont_destroy(unifont *font)
1313 {
1314     struct pangofont *pfont = (struct pangofont *)font;
1315     pango_font_description_free(pfont->desc);
1316     g_object_unref(pfont->fset);
1317     sfree(font);
1318 }
1319
1320 static int pangofont_has_glyph(unifont *font, wchar_t glyph)
1321 {
1322     /* Pango implements font fallback, so assume it has everything */
1323     return TRUE;
1324 }
1325
1326 #ifdef DRAW_TEXT_GDK
1327 static void pango_gdk_draw_layout(unifont_drawctx *ctx,
1328                                   gint x, gint y, PangoLayout *layout)
1329 {
1330     gdk_draw_layout(ctx->u.gdk.target, ctx->u.gdk.gc, x, y, layout);
1331 }
1332 #endif
1333
1334 #ifdef DRAW_TEXT_CAIRO
1335 static void pango_cairo_draw_layout(unifont_drawctx *ctx,
1336                                     gint x, gint y, PangoLayout *layout)
1337 {
1338     cairo_move_to(ctx->u.cairo.cr, x, y);
1339     pango_cairo_show_layout(ctx->u.cairo.cr, layout);
1340 }
1341 #endif
1342
1343 static void pangofont_draw_text(unifont_drawctx *ctx, unifont *font,
1344                                 int x, int y, const wchar_t *string, int len,
1345                                 int wide, int bold, int cellwidth)
1346 {
1347     struct pangofont *pfont = (struct pangofont *)font;
1348     PangoLayout *layout;
1349     PangoRectangle rect;
1350     char *utfstring, *utfptr;
1351     int utflen;
1352     int shadowbold = FALSE;
1353     void (*draw_layout)(unifont_drawctx *ctx,
1354                         gint x, gint y, PangoLayout *layout) = NULL;
1355
1356 #ifdef DRAW_TEXT_GDK
1357     if (ctx->type == DRAWTYPE_GDK) {
1358         draw_layout = pango_gdk_draw_layout;
1359     }
1360 #endif
1361 #ifdef DRAW_TEXT_CAIRO
1362     if (ctx->type == DRAWTYPE_CAIRO) {
1363         draw_layout = pango_cairo_draw_layout;
1364     }
1365 #endif
1366
1367     if (wide)
1368         cellwidth *= 2;
1369
1370     y -= pfont->u.ascent;
1371
1372     layout = pango_layout_new(gtk_widget_get_pango_context(pfont->widget));
1373     pango_layout_set_font_description(layout, pfont->desc);
1374     if (bold > pfont->bold) {
1375         if (pfont->shadowalways)
1376             shadowbold = TRUE;
1377         else {
1378             PangoFontDescription *desc2 =
1379                 pango_font_description_copy_static(pfont->desc);
1380             pango_font_description_set_weight(desc2, PANGO_WEIGHT_BOLD);
1381             pango_layout_set_font_description(layout, desc2);
1382         }
1383     }
1384
1385     /*
1386      * Pango always expects UTF-8, so convert the input wide character
1387      * string to UTF-8.
1388      */
1389     utfstring = snewn(len*6+1, char); /* UTF-8 has max 6 bytes/char */
1390     utflen = wc_to_mb(CS_UTF8, 0, string, len,
1391                       utfstring, len*6+1, ".", NULL, NULL);
1392
1393     utfptr = utfstring;
1394     while (utflen > 0) {
1395         int clen, n;
1396
1397         /*
1398          * We want to display every character from this string in
1399          * the centre of its own character cell. In the worst case,
1400          * this requires a separate text-drawing call for each
1401          * character; but in the common case where the font is
1402          * properly fixed-width, we can draw many characters in one
1403          * go which is much faster.
1404          *
1405          * This still isn't really ideal. If you look at what
1406          * happens in the X protocol as a result of all of this, you
1407          * find - naturally enough - that each call to
1408          * gdk_draw_layout() generates a separate set of X RENDER
1409          * operations involving creating a picture, setting a clip
1410          * rectangle, doing some drawing and undoing the whole lot.
1411          * In an ideal world, we should _always_ be able to turn the
1412          * contents of this loop into a single RenderCompositeGlyphs
1413          * operation which internally specifies inter-character
1414          * deltas to get the spacing right, which would give us full
1415          * speed _even_ in the worst case of a non-fixed-width font.
1416          * However, Pango's architecture and documentation are so
1417          * unhelpful that I have no idea how if at all to persuade
1418          * them to do that.
1419          */
1420
1421         /*
1422          * Start by extracting a single UTF-8 character from the
1423          * string.
1424          */
1425         clen = 1;
1426         while (clen < utflen &&
1427                (unsigned char)utfptr[clen] >= 0x80 &&
1428                (unsigned char)utfptr[clen] < 0xC0)
1429             clen++;
1430         n = 1;
1431
1432         /*
1433          * If it's a right-to-left character, we must display it on
1434          * its own, to stop Pango helpfully re-reversing our already
1435          * reversed text.
1436          */
1437         if (!is_rtl(string[0])) {
1438
1439             /*
1440              * See if that character has the width we expect.
1441              */
1442             pango_layout_set_text(layout, utfptr, clen);
1443             pango_layout_get_pixel_extents(layout, NULL, &rect);
1444
1445             if (rect.width == cellwidth) {
1446                 /*
1447                  * Try extracting more characters, for as long as they
1448                  * stay well-behaved.
1449                  */
1450                 while (clen < utflen) {
1451                     int oldclen = clen;
1452                     clen++;                    /* skip UTF-8 introducer byte */
1453                     while (clen < utflen &&
1454                            (unsigned char)utfptr[clen] >= 0x80 &&
1455                            (unsigned char)utfptr[clen] < 0xC0)
1456                         clen++;
1457                     n++;
1458                     pango_layout_set_text(layout, utfptr, clen);
1459                     pango_layout_get_pixel_extents(layout, NULL, &rect);
1460                     if (rect.width != n * cellwidth) {
1461                         clen = oldclen;
1462                         n--;
1463                         break;
1464                     }
1465                 }
1466             }
1467         }
1468
1469         pango_layout_set_text(layout, utfptr, clen);
1470         pango_layout_get_pixel_extents(layout, NULL, &rect);
1471         
1472         draw_layout(ctx,
1473                     x + (n*cellwidth - rect.width)/2,
1474                     y + (pfont->u.height - rect.height)/2, layout);
1475         if (shadowbold)
1476             draw_layout(ctx,
1477                         x + (n*cellwidth - rect.width)/2 + pfont->shadowoffset,
1478                         y + (pfont->u.height - rect.height)/2, layout);
1479
1480         utflen -= clen;
1481         utfptr += clen;
1482         string += n;
1483         x += n * cellwidth;
1484     }
1485
1486     sfree(utfstring);
1487
1488     g_object_unref(layout);
1489 }
1490
1491 /*
1492  * Dummy size value to be used when converting a
1493  * PangoFontDescription of a scalable font to a string for
1494  * internal use.
1495  */
1496 #define PANGO_DUMMY_SIZE 12
1497
1498 static void pangofont_enum_fonts(GtkWidget *widget, fontsel_add_entry callback,
1499                                  void *callback_ctx)
1500 {
1501     PangoContext *ctx;
1502 #ifndef PANGO_PRE_1POINT6
1503     PangoFontMap *map;
1504 #endif
1505     PangoFontFamily **families;
1506     int i, nfamilies;
1507
1508     ctx = gtk_widget_get_pango_context(widget);
1509     if (!ctx)
1510         return;
1511
1512     /*
1513      * Ask Pango for a list of font families, and iterate through
1514      * them.
1515      */
1516 #ifndef PANGO_PRE_1POINT6
1517     map = pango_context_get_font_map(ctx);
1518     if (!map)
1519         return;
1520     pango_font_map_list_families(map, &families, &nfamilies);
1521 #else
1522     pango_context_list_families(ctx, &families, &nfamilies);
1523 #endif
1524     for (i = 0; i < nfamilies; i++) {
1525         PangoFontFamily *family = families[i];
1526         const char *familyname;
1527         int flags;
1528         PangoFontFace **faces;
1529         int j, nfaces;
1530
1531         /*
1532          * Set up our flags for this font family, and get the name
1533          * string.
1534          */
1535         flags = FONTFLAG_CLIENTSIDE;
1536 #ifndef PANGO_PRE_1POINT4
1537         /*
1538          * In very early versions of Pango, we can't tell
1539          * monospaced fonts from non-monospaced.
1540          */
1541         if (!pango_font_family_is_monospace(family))
1542             flags |= FONTFLAG_NONMONOSPACED;
1543 #endif
1544         familyname = pango_font_family_get_name(family);
1545
1546         /*
1547          * Go through the available font faces in this family.
1548          */
1549         pango_font_family_list_faces(family, &faces, &nfaces);
1550         for (j = 0; j < nfaces; j++) {
1551             PangoFontFace *face = faces[j];
1552             PangoFontDescription *desc;
1553             const char *facename;
1554             int *sizes;
1555             int k, nsizes, dummysize;
1556
1557             /*
1558              * Get the face name string.
1559              */
1560             facename = pango_font_face_get_face_name(face);
1561
1562             /*
1563              * Set up a font description with what we've got so
1564              * far. We'll fill in the size field manually and then
1565              * call pango_font_description_to_string() to give the
1566              * full real name of the specific font.
1567              */
1568             desc = pango_font_face_describe(face);
1569
1570             /*
1571              * See if this font has a list of specific sizes.
1572              */
1573 #ifndef PANGO_PRE_1POINT4
1574             pango_font_face_list_sizes(face, &sizes, &nsizes);
1575 #else
1576             /*
1577              * In early versions of Pango, that call wasn't
1578              * supported; we just have to assume everything is
1579              * scalable.
1580              */
1581             sizes = NULL;
1582 #endif
1583             if (!sizes) {
1584                 /*
1585                  * Write a single entry with a dummy size.
1586                  */
1587                 dummysize = PANGO_DUMMY_SIZE * PANGO_SCALE;
1588                 sizes = &dummysize;
1589                 nsizes = 1;
1590             }
1591
1592             /*
1593              * If so, go through them one by one.
1594              */
1595             for (k = 0; k < nsizes; k++) {
1596                 char *fullname;
1597                 char stylekey[128];
1598
1599                 pango_font_description_set_size(desc, sizes[k]);
1600
1601                 fullname = pango_font_description_to_string(desc);
1602
1603                 /*
1604                  * Construct the sorting key for font styles.
1605                  */
1606                 {
1607                     char *p = stylekey;
1608                     int n;
1609
1610                     n = pango_font_description_get_weight(desc);
1611                     /* Weight: normal, then lighter, then bolder */
1612                     if (n <= PANGO_WEIGHT_NORMAL)
1613                         n = PANGO_WEIGHT_NORMAL - n;
1614                     p += sprintf(p, "%4d", n);
1615
1616                     n = pango_font_description_get_style(desc);
1617                     p += sprintf(p, " %2d", n);
1618
1619                     n = pango_font_description_get_stretch(desc);
1620                     /* Stretch: closer to normal sorts earlier */
1621                     n = 2 * abs(PANGO_STRETCH_NORMAL - n) +
1622                         (n < PANGO_STRETCH_NORMAL);
1623                     p += sprintf(p, " %2d", n);
1624
1625                     n = pango_font_description_get_variant(desc);
1626                     p += sprintf(p, " %2d", n);
1627                     
1628                 }
1629
1630                 /*
1631                  * Got everything. Hand off to the callback.
1632                  * (The charset string is NULL, because only
1633                  * server-side X fonts use it.)
1634                  */
1635                 callback(callback_ctx, fullname, familyname, NULL, facename,
1636                          stylekey,
1637                          (sizes == &dummysize ? 0 : PANGO_PIXELS(sizes[k])),
1638                          flags, &pangofont_vtable);
1639
1640                 g_free(fullname);
1641             }
1642             if (sizes != &dummysize)
1643                 g_free(sizes);
1644
1645             pango_font_description_free(desc);
1646         }
1647         g_free(faces);
1648     }
1649     g_free(families);
1650 }
1651
1652 static char *pangofont_canonify_fontname(GtkWidget *widget, const char *name,
1653                                          int *size, int *flags,
1654                                          int resolve_aliases)
1655 {
1656     /*
1657      * When given a Pango font name to try to make sense of for a
1658      * font selector, we must normalise it to PANGO_DUMMY_SIZE and
1659      * extract its original size (in pixels) into the `size' field.
1660      */
1661     PangoContext *ctx;
1662 #ifndef PANGO_PRE_1POINT6
1663     PangoFontMap *map;
1664 #endif
1665     PangoFontDescription *desc;
1666     PangoFontset *fset;
1667     PangoFontMetrics *metrics;
1668     char *newname, *retname;
1669
1670     desc = pango_font_description_from_string(name);
1671     if (!desc)
1672         return NULL;
1673     ctx = gtk_widget_get_pango_context(widget);
1674     if (!ctx) {
1675         pango_font_description_free(desc);
1676         return NULL;
1677     }
1678     if (!pangofont_check_desc_makes_sense(ctx, desc)) {
1679         pango_font_description_free(desc);
1680         return NULL;
1681     }
1682 #ifndef PANGO_PRE_1POINT6
1683     map = pango_context_get_font_map(ctx);
1684     if (!map) {
1685         pango_font_description_free(desc);
1686         return NULL;
1687     }
1688     fset = pango_font_map_load_fontset(map, ctx, desc,
1689                                        pango_context_get_language(ctx));
1690 #else
1691     fset = pango_context_load_fontset(ctx, desc,
1692                                       pango_context_get_language(ctx));
1693 #endif
1694     if (!fset) {
1695         pango_font_description_free(desc);
1696         return NULL;
1697     }
1698     metrics = pango_fontset_get_metrics(fset);
1699     if (!metrics ||
1700         pango_font_metrics_get_approximate_digit_width(metrics) == 0) {
1701         pango_font_description_free(desc);
1702         g_object_unref(fset);
1703         return NULL;
1704     }
1705
1706     *size = PANGO_PIXELS(pango_font_description_get_size(desc));
1707     *flags = FONTFLAG_CLIENTSIDE;
1708     pango_font_description_set_size(desc, PANGO_DUMMY_SIZE * PANGO_SCALE);
1709     newname = pango_font_description_to_string(desc);
1710     retname = dupstr(newname);
1711     g_free(newname);
1712
1713     pango_font_metrics_unref(metrics);
1714     pango_font_description_free(desc);
1715     g_object_unref(fset);
1716
1717     return retname;
1718 }
1719
1720 static char *pangofont_scale_fontname(GtkWidget *widget, const char *name,
1721                                       int size)
1722 {
1723     PangoFontDescription *desc;
1724     char *newname, *retname;
1725
1726     desc = pango_font_description_from_string(name);
1727     if (!desc)
1728         return NULL;
1729     pango_font_description_set_size(desc, size * PANGO_SCALE);
1730     newname = pango_font_description_to_string(desc);
1731     retname = dupstr(newname);
1732     g_free(newname);
1733     pango_font_description_free(desc);
1734
1735     return retname;
1736 }
1737
1738 #endif /* GTK_CHECK_VERSION(2,0,0) */
1739
1740 /* ----------------------------------------------------------------------
1741  * Outermost functions which do the vtable dispatch.
1742  */
1743
1744 /*
1745  * Complete list of font-type subclasses. Listed in preference
1746  * order for unifont_create(). (That is, in the extremely unlikely
1747  * event that the same font name is valid as both a Pango and an
1748  * X11 font, it will be interpreted as the former in the absence
1749  * of an explicit type-disambiguating prefix.)
1750  *
1751  * The 'multifont' subclass is omitted here, as discussed above.
1752  */
1753 static const struct unifont_vtable *unifont_types[] = {
1754 #if GTK_CHECK_VERSION(2,0,0)
1755     &pangofont_vtable,
1756 #endif
1757 #ifndef NOT_X_WINDOWS
1758     &x11font_vtable,
1759 #endif
1760 };
1761
1762 /*
1763  * Function which takes a font name and processes the optional
1764  * scheme prefix. Returns the tail of the font name suitable for
1765  * passing to individual font scheme functions, and also provides
1766  * a subrange of the unifont_types[] array above.
1767  * 
1768  * The return values `start' and `end' denote a half-open interval
1769  * in unifont_types[]; that is, the correct way to iterate over
1770  * them is
1771  * 
1772  *   for (i = start; i < end; i++) {...}
1773  */
1774 static const char *unifont_do_prefix(const char *name, int *start, int *end)
1775 {
1776     int colonpos = strcspn(name, ":");
1777     int i;
1778
1779     if (name[colonpos]) {
1780         /*
1781          * There's a colon prefix on the font name. Use it to work
1782          * out which subclass to use.
1783          */
1784         for (i = 0; i < lenof(unifont_types); i++) {
1785             if (strlen(unifont_types[i]->prefix) == colonpos &&
1786                 !strncmp(unifont_types[i]->prefix, name, colonpos)) {
1787                 *start = i;
1788                 *end = i+1;
1789                 return name + colonpos + 1;
1790             }
1791         }
1792         /*
1793          * None matched, so return an empty scheme list to prevent
1794          * any scheme from being called at all.
1795          */
1796         *start = *end = 0;
1797         return name + colonpos + 1;
1798     } else {
1799         /*
1800          * No colon prefix, so just use all the subclasses.
1801          */
1802         *start = 0;
1803         *end = lenof(unifont_types);
1804         return name;
1805     }
1806 }
1807
1808 unifont *unifont_create(GtkWidget *widget, const char *name, int wide,
1809                         int bold, int shadowoffset, int shadowalways)
1810 {
1811     int i, start, end;
1812
1813     name = unifont_do_prefix(name, &start, &end);
1814
1815     for (i = start; i < end; i++) {
1816         unifont *ret = unifont_types[i]->create(widget, name, wide, bold,
1817                                                 shadowoffset, shadowalways);
1818         if (ret)
1819             return ret;
1820     }
1821     return NULL;                       /* font not found in any scheme */
1822 }
1823
1824 void unifont_destroy(unifont *font)
1825 {
1826     font->vt->destroy(font);
1827 }
1828
1829 void unifont_draw_text(unifont_drawctx *ctx, unifont *font,
1830                        int x, int y, const wchar_t *string, int len,
1831                        int wide, int bold, int cellwidth)
1832 {
1833     font->vt->draw_text(ctx, font, x, y, string, len, wide, bold, cellwidth);
1834 }
1835
1836 /* ----------------------------------------------------------------------
1837  * Multiple-font wrapper. This is a type of unifont which encapsulates
1838  * up to two other unifonts, permitting missing glyphs in the main
1839  * font to be filled in by a fallback font.
1840  *
1841  * This is a type of unifont just like the previous two, but it has a
1842  * separate constructor which is manually called by the client, so it
1843  * doesn't appear in the list of available font types enumerated by
1844  * unifont_create. This means it's not used by unifontsel either, so
1845  * it doesn't need to support any methods except draw_text and
1846  * destroy.
1847  */
1848
1849 static void multifont_draw_text(unifont_drawctx *ctx, unifont *font,
1850                                 int x, int y, const wchar_t *string, int len,
1851                                 int wide, int bold, int cellwidth);
1852 static void multifont_destroy(unifont *font);
1853
1854 struct multifont {
1855     struct unifont u;
1856     unifont *main;
1857     unifont *fallback;
1858 };
1859
1860 static const struct unifont_vtable multifont_vtable = {
1861     NULL,                             /* creation is done specially */
1862     NULL,
1863     multifont_destroy,
1864     NULL,
1865     multifont_draw_text,
1866     NULL,
1867     NULL,
1868     NULL,
1869     "client",
1870 };
1871
1872 unifont *multifont_create(GtkWidget *widget, const char *name,
1873                           int wide, int bold,
1874                           int shadowoffset, int shadowalways)
1875 {
1876     int i;
1877     unifont *font, *fallback;
1878     struct multifont *mfont;
1879
1880     font = unifont_create(widget, name, wide, bold,
1881                           shadowoffset, shadowalways);
1882     if (!font)
1883         return NULL;
1884
1885     fallback = NULL;
1886     if (font->want_fallback) {
1887         for (i = 0; i < lenof(unifont_types); i++) {
1888             if (unifont_types[i]->create_fallback) {
1889                 fallback = unifont_types[i]->create_fallback
1890                     (widget, font->height, wide, bold,
1891                      shadowoffset, shadowalways);
1892                 if (fallback)
1893                     break;
1894             }
1895         }
1896     }
1897
1898     /*
1899      * Construct our multifont. Public members are all copied from the
1900      * primary font we're wrapping.
1901      */
1902     mfont = snew(struct multifont);
1903     mfont->u.vt = &multifont_vtable;
1904     mfont->u.width = font->width;
1905     mfont->u.ascent = font->ascent;
1906     mfont->u.descent = font->descent;
1907     mfont->u.height = font->height;
1908     mfont->u.public_charset = font->public_charset;
1909     mfont->u.want_fallback = FALSE; /* shouldn't be needed, but just in case */
1910     mfont->u.preferred_drawtype = font->preferred_drawtype;
1911     mfont->main = font;
1912     mfont->fallback = fallback;
1913
1914     return (unifont *)mfont;
1915 }
1916
1917 static void multifont_destroy(unifont *font)
1918 {
1919     struct multifont *mfont = (struct multifont *)font;
1920     unifont_destroy(mfont->main);
1921     if (mfont->fallback)
1922         unifont_destroy(mfont->fallback);
1923     sfree(font);
1924 }
1925
1926 static void multifont_draw_text(unifont_drawctx *ctx, unifont *font, int x,
1927                                 int y, const wchar_t *string, int len,
1928                                 int wide, int bold, int cellwidth)
1929 {
1930     struct multifont *mfont = (struct multifont *)font;
1931     unifont *f;
1932     int ok, i;
1933
1934     while (len > 0) {
1935         /*
1936          * Find a maximal sequence of characters which are, or are
1937          * not, supported by our main font.
1938          */
1939         ok = mfont->main->vt->has_glyph(mfont->main, string[0]);
1940         for (i = 1;
1941              i < len &&
1942              !mfont->main->vt->has_glyph(mfont->main, string[i]) == !ok;
1943              i++);
1944
1945         /*
1946          * Now display it.
1947          */
1948         f = ok ? mfont->main : mfont->fallback;
1949         if (f)
1950             unifont_draw_text(ctx, f, x, y, string, i, wide, bold, cellwidth);
1951         string += i;
1952         len -= i;
1953         x += i * cellwidth;
1954     }
1955 }
1956
1957 #if GTK_CHECK_VERSION(2,0,0)
1958
1959 /* ----------------------------------------------------------------------
1960  * Implementation of a unified font selector. Used on GTK 2 only;
1961  * for GTK 1 we still use the standard font selector.
1962  */
1963
1964 typedef struct fontinfo fontinfo;
1965
1966 typedef struct unifontsel_internal {
1967     /* This must be the structure's first element, for cross-casting */
1968     unifontsel u;
1969     GtkListStore *family_model, *style_model, *size_model;
1970     GtkWidget *family_list, *style_list, *size_entry, *size_list;
1971     GtkWidget *filter_buttons[4];
1972     int n_filter_buttons;
1973     GtkWidget *preview_area;
1974 #ifndef NO_BACKING_PIXMAPS
1975     GdkPixmap *preview_pixmap;
1976 #endif
1977     int preview_width, preview_height;
1978     GdkColor preview_fg, preview_bg;
1979     int filter_flags;
1980     tree234 *fonts_by_realname, *fonts_by_selorder;
1981     fontinfo *selected;
1982     int selsize, intendedsize;
1983     int inhibit_response;  /* inhibit callbacks when we change GUI controls */
1984 } unifontsel_internal;
1985
1986 /*
1987  * The structure held in the tree234s. All the string members are
1988  * part of the same allocated area, so don't need freeing
1989  * separately.
1990  */
1991 struct fontinfo {
1992     char *realname;
1993     char *family, *charset, *style, *stylekey;
1994     int size, flags;
1995     /*
1996      * Fallback sorting key, to permit multiple identical entries
1997      * to exist in the selorder tree.
1998      */
1999     int index;
2000     /*
2001      * Indices mapping fontinfo structures to indices in the list
2002      * boxes. sizeindex is irrelevant if the font is scalable
2003      * (size==0).
2004      */
2005     int familyindex, styleindex, sizeindex;
2006     /*
2007      * The class of font.
2008      */
2009     const struct unifont_vtable *fontclass;
2010 };
2011
2012 struct fontinfo_realname_find {
2013     const char *realname;
2014     int flags;
2015 };
2016
2017 static int strnullcasecmp(const char *a, const char *b)
2018 {
2019     int i;
2020
2021     /*
2022      * If exactly one of the inputs is NULL, it compares before
2023      * the other one.
2024      */
2025     if ((i = (!b) - (!a)) != 0)
2026         return i;
2027
2028     /*
2029      * NULL compares equal.
2030      */
2031     if (!a)
2032         return 0;
2033
2034     /*
2035      * Otherwise, ordinary strcasecmp.
2036      */
2037     return g_ascii_strcasecmp(a, b);
2038 }
2039
2040 static int fontinfo_realname_compare(void *av, void *bv)
2041 {
2042     fontinfo *a = (fontinfo *)av;
2043     fontinfo *b = (fontinfo *)bv;
2044     int i;
2045
2046     if ((i = strnullcasecmp(a->realname, b->realname)) != 0)
2047         return i;
2048     if ((a->flags & FONTFLAG_SORT_MASK) != (b->flags & FONTFLAG_SORT_MASK))
2049         return ((a->flags & FONTFLAG_SORT_MASK) <
2050                 (b->flags & FONTFLAG_SORT_MASK) ? -1 : +1);
2051     return 0;
2052 }
2053
2054 static int fontinfo_realname_find(void *av, void *bv)
2055 {
2056     struct fontinfo_realname_find *a = (struct fontinfo_realname_find *)av;
2057     fontinfo *b = (fontinfo *)bv;
2058     int i;
2059
2060     if ((i = strnullcasecmp(a->realname, b->realname)) != 0)
2061         return i;
2062     if ((a->flags & FONTFLAG_SORT_MASK) != (b->flags & FONTFLAG_SORT_MASK))
2063         return ((a->flags & FONTFLAG_SORT_MASK) <
2064                 (b->flags & FONTFLAG_SORT_MASK) ? -1 : +1);
2065     return 0;
2066 }
2067
2068 static int fontinfo_selorder_compare(void *av, void *bv)
2069 {
2070     fontinfo *a = (fontinfo *)av;
2071     fontinfo *b = (fontinfo *)bv;
2072     int i;
2073     if ((i = strnullcasecmp(a->family, b->family)) != 0)
2074         return i;
2075     /*
2076      * Font class comes immediately after family, so that fonts
2077      * from different classes with the same family
2078      */
2079     if ((a->flags & FONTFLAG_SORT_MASK) != (b->flags & FONTFLAG_SORT_MASK))
2080         return ((a->flags & FONTFLAG_SORT_MASK) <
2081                 (b->flags & FONTFLAG_SORT_MASK) ? -1 : +1);
2082     if ((i = strnullcasecmp(a->charset, b->charset)) != 0)
2083         return i;
2084     if ((i = strnullcasecmp(a->stylekey, b->stylekey)) != 0)
2085         return i;
2086     if ((i = strnullcasecmp(a->style, b->style)) != 0)
2087         return i;
2088     if (a->size != b->size)
2089         return (a->size < b->size ? -1 : +1);
2090     if (a->index != b->index)
2091         return (a->index < b->index ? -1 : +1);
2092     return 0;
2093 }
2094
2095 static void unifontsel_deselect(unifontsel_internal *fs)
2096 {
2097     fs->selected = NULL;
2098     gtk_list_store_clear(fs->style_model);
2099     gtk_list_store_clear(fs->size_model);
2100     gtk_widget_set_sensitive(fs->u.ok_button, FALSE);
2101     gtk_widget_set_sensitive(fs->size_entry, FALSE);
2102 }
2103
2104 static void unifontsel_setup_familylist(unifontsel_internal *fs)
2105 {
2106     GtkTreeIter iter;
2107     int i, listindex, minpos = -1, maxpos = -1;
2108     char *currfamily = NULL;
2109     int currflags = -1;
2110     fontinfo *info;
2111
2112     fs->inhibit_response = TRUE;
2113
2114     gtk_list_store_clear(fs->family_model);
2115     listindex = 0;
2116
2117     /*
2118      * Search through the font tree for anything matching our
2119      * current filter criteria. When we find one, add its font
2120      * name to the list box.
2121      */
2122     for (i = 0 ;; i++) {
2123         info = (fontinfo *)index234(fs->fonts_by_selorder, i);
2124         /*
2125          * info may be NULL if we've just run off the end of the
2126          * tree. We must still do a processing pass in that
2127          * situation, in case we had an unfinished font record in
2128          * progress.
2129          */
2130         if (info && (info->flags &~ fs->filter_flags)) {
2131             info->familyindex = -1;
2132             continue;                  /* we're filtering out this font */
2133         }
2134         if (!info || strnullcasecmp(currfamily, info->family) ||
2135             currflags != (info->flags & FONTFLAG_SORT_MASK)) {
2136             /*
2137              * We've either finished a family, or started a new
2138              * one, or both.
2139              */
2140             if (currfamily) {
2141                 gtk_list_store_append(fs->family_model, &iter);
2142                 gtk_list_store_set(fs->family_model, &iter,
2143                                    0, currfamily, 1, minpos, 2, maxpos+1, -1);
2144                 listindex++;
2145             }
2146             if (info) {
2147                 minpos = i;
2148                 currfamily = info->family;
2149                 currflags = info->flags & FONTFLAG_SORT_MASK;
2150             }
2151         }
2152         if (!info)
2153             break;                     /* now we're done */
2154         info->familyindex = listindex;
2155         maxpos = i;
2156     }
2157
2158     /*
2159      * If we've just filtered out the previously selected font,
2160      * deselect it thoroughly.
2161      */
2162     if (fs->selected && fs->selected->familyindex < 0)
2163         unifontsel_deselect(fs);
2164
2165     fs->inhibit_response = FALSE;
2166 }
2167
2168 static void unifontsel_setup_stylelist(unifontsel_internal *fs,
2169                                        int start, int end)
2170 {
2171     GtkTreeIter iter;
2172     int i, listindex, minpos = -1, maxpos = -1, started = FALSE;
2173     char *currcs = NULL, *currstyle = NULL;
2174     fontinfo *info;
2175
2176     gtk_list_store_clear(fs->style_model);
2177     listindex = 0;
2178     started = FALSE;
2179
2180     /*
2181      * Search through the font tree for anything matching our
2182      * current filter criteria. When we find one, add its charset
2183      * and/or style name to the list box.
2184      */
2185     for (i = start; i <= end; i++) {
2186         if (i == end)
2187             info = NULL;
2188         else
2189             info = (fontinfo *)index234(fs->fonts_by_selorder, i);
2190         /*
2191          * info may be NULL if we've just run off the end of the
2192          * relevant data. We must still do a processing pass in
2193          * that situation, in case we had an unfinished font
2194          * record in progress.
2195          */
2196         if (info && (info->flags &~ fs->filter_flags)) {
2197             info->styleindex = -1;
2198             continue;                  /* we're filtering out this font */
2199         }
2200         if (!info || !started || strnullcasecmp(currcs, info->charset) ||
2201              strnullcasecmp(currstyle, info->style)) {
2202             /*
2203              * We've either finished a style/charset, or started a
2204              * new one, or both.
2205              */
2206             started = TRUE;
2207             if (currstyle) {
2208                 gtk_list_store_append(fs->style_model, &iter);
2209                 gtk_list_store_set(fs->style_model, &iter,
2210                                    0, currstyle, 1, minpos, 2, maxpos+1,
2211                                    3, TRUE, -1);
2212                 listindex++;
2213             }
2214             if (info) {
2215                 minpos = i;
2216                 if (info->charset && strnullcasecmp(currcs, info->charset)) {
2217                     gtk_list_store_append(fs->style_model, &iter);
2218                     gtk_list_store_set(fs->style_model, &iter,
2219                                        0, info->charset, 1, -1, 2, -1,
2220                                        3, FALSE, -1);
2221                     listindex++;
2222                 }
2223                 currcs = info->charset;
2224                 currstyle = info->style;
2225             }
2226         }
2227         if (!info)
2228             break;                     /* now we're done */
2229         info->styleindex = listindex;
2230         maxpos = i;
2231     }
2232 }
2233
2234 static const int unifontsel_default_sizes[] = { 10, 12, 14, 16, 20, 24, 32 };
2235
2236 static void unifontsel_setup_sizelist(unifontsel_internal *fs,
2237                                       int start, int end)
2238 {
2239     GtkTreeIter iter;
2240     int i, listindex;
2241     char sizetext[40];
2242     fontinfo *info;
2243
2244     gtk_list_store_clear(fs->size_model);
2245     listindex = 0;
2246
2247     /*
2248      * Search through the font tree for anything matching our
2249      * current filter criteria. When we find one, add its font
2250      * name to the list box.
2251      */
2252     for (i = start; i < end; i++) {
2253         info = (fontinfo *)index234(fs->fonts_by_selorder, i);
2254         if (info->flags &~ fs->filter_flags) {
2255             info->sizeindex = -1;
2256             continue;                  /* we're filtering out this font */
2257         }
2258         if (info->size) {
2259             sprintf(sizetext, "%d", info->size);
2260             info->sizeindex = listindex;
2261             gtk_list_store_append(fs->size_model, &iter);
2262             gtk_list_store_set(fs->size_model, &iter,
2263                                0, sizetext, 1, i, 2, info->size, -1);
2264             listindex++;
2265         } else {
2266             int j;
2267
2268             assert(i == start);
2269             assert(i+1 == end);
2270
2271             for (j = 0; j < lenof(unifontsel_default_sizes); j++) {
2272                 sprintf(sizetext, "%d", unifontsel_default_sizes[j]);
2273                 gtk_list_store_append(fs->size_model, &iter);
2274                 gtk_list_store_set(fs->size_model, &iter, 0, sizetext, 1, i,
2275                                    2, unifontsel_default_sizes[j], -1);
2276                 listindex++;
2277             }
2278         }
2279     }
2280 }
2281
2282 static void unifontsel_set_filter_buttons(unifontsel_internal *fs)
2283 {
2284     int i;
2285
2286     for (i = 0; i < fs->n_filter_buttons; i++) {
2287         int flagbit = GPOINTER_TO_INT(g_object_get_data
2288                                       (G_OBJECT(fs->filter_buttons[i]),
2289                                        "user-data"));
2290         gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(fs->filter_buttons[i]),
2291                                      !!(fs->filter_flags & flagbit));
2292     }
2293 }
2294
2295 static void unifontsel_draw_preview_text_inner(unifont_drawctx *dctx,
2296                                                unifontsel_internal *fs)
2297 {
2298     unifont *font;
2299     char *sizename = NULL;
2300     fontinfo *info = fs->selected;
2301
2302     if (info) {
2303         sizename = info->fontclass->scale_fontname
2304             (GTK_WIDGET(fs->u.window), info->realname, fs->selsize);
2305         font = info->fontclass->create(GTK_WIDGET(fs->u.window),
2306                                        sizename ? sizename : info->realname,
2307                                        FALSE, FALSE, 0, 0);
2308     } else
2309         font = NULL;
2310
2311     if (font) {
2312 #ifdef DRAW_TEXT_GDK
2313         if (dctx->type == DRAWTYPE_GDK) {
2314             gdk_gc_set_foreground(dctx->u.gdk.gc, &fs->preview_bg);
2315             gdk_draw_rectangle(dctx->u.gdk.target, dctx->u.gdk.gc, 1, 0, 0,
2316                                fs->preview_width, fs->preview_height);
2317             gdk_gc_set_foreground(dctx->u.gdk.gc, &fs->preview_fg);
2318         }
2319 #endif
2320 #ifdef DRAW_TEXT_CAIRO
2321         if (dctx->type == DRAWTYPE_CAIRO) {
2322             cairo_set_source_rgb(dctx->u.cairo.cr,
2323                                  fs->preview_bg.red / 65535.0,
2324                                  fs->preview_bg.green / 65535.0,
2325                                  fs->preview_bg.blue / 65535.0);
2326             cairo_paint(dctx->u.cairo.cr);
2327             cairo_set_source_rgb(dctx->u.cairo.cr,
2328                                  fs->preview_fg.red / 65535.0,
2329                                  fs->preview_fg.green / 65535.0,
2330                                  fs->preview_fg.blue / 65535.0);
2331         }
2332 #endif
2333
2334         /*
2335          * The pangram used here is rather carefully
2336          * constructed: it contains a sequence of very narrow
2337          * letters (`jil') and a pair of adjacent very wide
2338          * letters (`wm').
2339          *
2340          * If the user selects a proportional font, it will be
2341          * coerced into fixed-width character cells when used
2342          * in the actual terminal window. We therefore display
2343          * it the same way in the preview pane, so as to show
2344          * it the way it will actually be displayed - and we
2345          * deliberately pick a pangram which will show the
2346          * resulting miskerning at its worst.
2347          *
2348          * We aren't trying to sell people these fonts; we're
2349          * trying to let them make an informed choice. Better
2350          * that they find out the problems with using
2351          * proportional fonts in terminal windows here than
2352          * that they go to the effort of selecting their font
2353          * and _then_ realise it was a mistake.
2354          */
2355         info->fontclass->draw_text(dctx, font,
2356                                    0, font->ascent,
2357                                    L"bankrupt jilted showmen quiz convex fogey",
2358                                    41, FALSE, FALSE, font->width);
2359         info->fontclass->draw_text(dctx, font,
2360                                    0, font->ascent + font->height,
2361                                    L"BANKRUPT JILTED SHOWMEN QUIZ CONVEX FOGEY",
2362                                    41, FALSE, FALSE, font->width);
2363         /*
2364          * The ordering of punctuation here is also selected
2365          * with some specific aims in mind. I put ` and '
2366          * together because some software (and people) still
2367          * use them as matched quotes no matter what Unicode
2368          * might say on the matter, so people can quickly
2369          * check whether they look silly in a candidate font.
2370          * The sequence #_@ is there to let people judge the
2371          * suitability of the underscore as an effectively
2372          * alphabetic character (since that's how it's often
2373          * used in practice, at least by programmers).
2374          */
2375         info->fontclass->draw_text(dctx, font,
2376                                    0, font->ascent + font->height * 2,
2377                                    L"0123456789!?,.:;<>()[]{}\\/`'\"+*-=~#_@|%&^$",
2378                                    42, FALSE, FALSE, font->width);
2379
2380         info->fontclass->destroy(font);
2381     }
2382
2383     sfree(sizename);
2384 }
2385
2386 static void unifontsel_draw_preview_text(unifontsel_internal *fs)
2387 {
2388     unifont_drawctx dctx;
2389     GdkWindow *target;
2390
2391 #ifndef NO_BACKING_PIXMAPS
2392     target = fs->preview_pixmap;
2393 #else
2394     target = gtk_widget_get_window(fs->preview_area);
2395 #endif
2396     if (!target) /* we may be called when we haven't created everything yet */
2397         return;
2398
2399     dctx.type = DRAWTYPE_DEFAULT;
2400 #ifdef DRAW_TEXT_GDK
2401     if (dctx.type == DRAWTYPE_GDK) {
2402         dctx.u.gdk.target = target;
2403         dctx.u.gdk.gc = gdk_gc_new(target);
2404     }
2405 #endif
2406 #ifdef DRAW_TEXT_CAIRO
2407     if (dctx.type == DRAWTYPE_CAIRO) {
2408         dctx.u.cairo.widget = GTK_WIDGET(fs->preview_area);
2409         dctx.u.cairo.cr = gdk_cairo_create(target);
2410     }
2411 #endif
2412
2413     unifontsel_draw_preview_text_inner(&dctx, fs);
2414
2415 #ifdef DRAW_TEXT_GDK
2416     if (dctx.type == DRAWTYPE_GDK) {
2417         gdk_gc_unref(dctx.u.gdk.gc);
2418     }
2419 #endif
2420 #ifdef DRAW_TEXT_CAIRO
2421     if (dctx.type == DRAWTYPE_CAIRO) {
2422         cairo_destroy(dctx.u.cairo.cr);
2423     }
2424 #endif
2425
2426     gdk_window_invalidate_rect(gtk_widget_get_window(fs->preview_area),
2427                                NULL, FALSE);
2428 }
2429
2430 static void unifontsel_select_font(unifontsel_internal *fs,
2431                                    fontinfo *info, int size, int leftlist,
2432                                    int size_is_explicit)
2433 {
2434     int index;
2435     int minval, maxval;
2436     gboolean success;
2437     GtkTreePath *treepath;
2438     GtkTreeIter iter;
2439
2440     fs->inhibit_response = TRUE;
2441
2442     fs->selected = info;
2443     fs->selsize = size;
2444     if (size_is_explicit)
2445         fs->intendedsize = size;
2446
2447     gtk_widget_set_sensitive(fs->u.ok_button, TRUE);
2448
2449     /*
2450      * Find the index of this fontinfo in the selorder list. 
2451      */
2452     index = -1;
2453     findpos234(fs->fonts_by_selorder, info, NULL, &index);
2454     assert(index >= 0);
2455
2456     /*
2457      * Adjust the font selector flags and redo the font family
2458      * list box, if necessary.
2459      */
2460     if (leftlist <= 0 &&
2461         (fs->filter_flags | info->flags) != fs->filter_flags) {
2462         fs->filter_flags |= info->flags;
2463         unifontsel_set_filter_buttons(fs);
2464         unifontsel_setup_familylist(fs);
2465     }
2466
2467     /*
2468      * Find the appropriate family name and select it in the list.
2469      */
2470     assert(info->familyindex >= 0);
2471     treepath = gtk_tree_path_new_from_indices(info->familyindex, -1);
2472     gtk_tree_selection_select_path
2473         (gtk_tree_view_get_selection(GTK_TREE_VIEW(fs->family_list)),
2474          treepath);
2475     gtk_tree_view_scroll_to_cell(GTK_TREE_VIEW(fs->family_list),
2476                                  treepath, NULL, FALSE, 0.0, 0.0);
2477     success = gtk_tree_model_get_iter(GTK_TREE_MODEL(fs->family_model),
2478                                       &iter, treepath);
2479     assert(success);
2480     gtk_tree_path_free(treepath);
2481
2482     /*
2483      * Now set up the font style list.
2484      */
2485     gtk_tree_model_get(GTK_TREE_MODEL(fs->family_model), &iter,
2486                        1, &minval, 2, &maxval, -1);
2487     if (leftlist <= 1)
2488         unifontsel_setup_stylelist(fs, minval, maxval);
2489
2490     /*
2491      * Find the appropriate style name and select it in the list.
2492      */
2493     if (info->style) {
2494         assert(info->styleindex >= 0);
2495         treepath = gtk_tree_path_new_from_indices(info->styleindex, -1);
2496         gtk_tree_selection_select_path
2497             (gtk_tree_view_get_selection(GTK_TREE_VIEW(fs->style_list)),
2498              treepath);
2499         gtk_tree_view_scroll_to_cell(GTK_TREE_VIEW(fs->style_list),
2500                                      treepath, NULL, FALSE, 0.0, 0.0);
2501         gtk_tree_model_get_iter(GTK_TREE_MODEL(fs->style_model),
2502                                 &iter, treepath);
2503         gtk_tree_path_free(treepath);
2504
2505         /*
2506          * And set up the size list.
2507          */
2508         gtk_tree_model_get(GTK_TREE_MODEL(fs->style_model), &iter,
2509                            1, &minval, 2, &maxval, -1);
2510         if (leftlist <= 2)
2511             unifontsel_setup_sizelist(fs, minval, maxval);
2512
2513         /*
2514          * Find the appropriate size, and select it in the list.
2515          */
2516         if (info->size) {
2517             assert(info->sizeindex >= 0);
2518             treepath = gtk_tree_path_new_from_indices(info->sizeindex, -1);
2519             gtk_tree_selection_select_path
2520                 (gtk_tree_view_get_selection(GTK_TREE_VIEW(fs->size_list)),
2521                  treepath);
2522             gtk_tree_view_scroll_to_cell(GTK_TREE_VIEW(fs->size_list),
2523                                          treepath, NULL, FALSE, 0.0, 0.0);
2524             gtk_tree_path_free(treepath);
2525             size = info->size;
2526         } else {
2527             int j;
2528             for (j = 0; j < lenof(unifontsel_default_sizes); j++)
2529                 if (unifontsel_default_sizes[j] == size) {
2530                     treepath = gtk_tree_path_new_from_indices(j, -1);
2531                     gtk_tree_view_set_cursor(GTK_TREE_VIEW(fs->size_list),
2532                                              treepath, NULL, FALSE);
2533                     gtk_tree_view_scroll_to_cell(GTK_TREE_VIEW(fs->size_list),
2534                                                  treepath, NULL, FALSE, 0.0,
2535                                                  0.0);
2536                     gtk_tree_path_free(treepath);
2537                 }
2538         }
2539
2540         /*
2541          * And set up the font size text entry box.
2542          */
2543         {
2544             char sizetext[40];
2545             sprintf(sizetext, "%d", size);
2546             gtk_entry_set_text(GTK_ENTRY(fs->size_entry), sizetext);
2547         }
2548     } else {
2549         if (leftlist <= 2)
2550             unifontsel_setup_sizelist(fs, 0, 0);
2551         gtk_entry_set_text(GTK_ENTRY(fs->size_entry), "");
2552     }
2553
2554     /*
2555      * Grey out the font size edit box if we're not using a
2556      * scalable font.
2557      */
2558     gtk_editable_set_editable(GTK_EDITABLE(fs->size_entry),
2559                               fs->selected->size == 0);
2560     gtk_widget_set_sensitive(fs->size_entry, fs->selected->size == 0);
2561
2562     unifontsel_draw_preview_text(fs);
2563
2564     fs->inhibit_response = FALSE;
2565 }
2566
2567 static void unifontsel_button_toggled(GtkToggleButton *tb, gpointer data)
2568 {
2569     unifontsel_internal *fs = (unifontsel_internal *)data;
2570     int newstate = gtk_toggle_button_get_active(tb);
2571     int newflags;
2572     int flagbit = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(tb),
2573                                                     "user-data"));
2574
2575     if (newstate)
2576         newflags = fs->filter_flags | flagbit;
2577     else
2578         newflags = fs->filter_flags & ~flagbit;
2579
2580     if (fs->filter_flags != newflags) {
2581         fs->filter_flags = newflags;
2582         unifontsel_setup_familylist(fs);
2583     }
2584 }
2585
2586 static void unifontsel_add_entry(void *ctx, const char *realfontname,
2587                                  const char *family, const char *charset,
2588                                  const char *style, const char *stylekey,
2589                                  int size, int flags,
2590                                  const struct unifont_vtable *fontclass)
2591 {
2592     unifontsel_internal *fs = (unifontsel_internal *)ctx;
2593     fontinfo *info;
2594     int totalsize;
2595     char *p;
2596
2597     totalsize = sizeof(fontinfo) + strlen(realfontname) +
2598         (family ? strlen(family) : 0) + (charset ? strlen(charset) : 0) +
2599         (style ? strlen(style) : 0) + (stylekey ? strlen(stylekey) : 0) + 10;
2600     info = (fontinfo *)smalloc(totalsize);
2601     info->fontclass = fontclass;
2602     p = (char *)info + sizeof(fontinfo);
2603     info->realname = p;
2604     strcpy(p, realfontname);
2605     p += 1+strlen(p);
2606     if (family) {
2607         info->family = p;
2608         strcpy(p, family);
2609         p += 1+strlen(p);
2610     } else
2611         info->family = NULL;
2612     if (charset) {
2613         info->charset = p;
2614         strcpy(p, charset);
2615         p += 1+strlen(p);
2616     } else
2617         info->charset = NULL;
2618     if (style) {
2619         info->style = p;
2620         strcpy(p, style);
2621         p += 1+strlen(p);
2622     } else
2623         info->style = NULL;
2624     if (stylekey) {
2625         info->stylekey = p;
2626         strcpy(p, stylekey);
2627         p += 1+strlen(p);
2628     } else
2629         info->stylekey = NULL;
2630     assert(p - (char *)info <= totalsize);
2631     info->size = size;
2632     info->flags = flags;
2633     info->index = count234(fs->fonts_by_selorder);
2634
2635     /*
2636      * It's just conceivable that a misbehaving font enumerator
2637      * might tell us about the same font real name more than once,
2638      * in which case we should silently drop the new one.
2639      */
2640     if (add234(fs->fonts_by_realname, info) != info) {
2641         sfree(info);
2642         return;
2643     }
2644     /*
2645      * However, we should never get a duplicate key in the
2646      * selorder tree, because the index field carefully
2647      * disambiguates otherwise identical records.
2648      */
2649     add234(fs->fonts_by_selorder, info);
2650 }
2651
2652 static fontinfo *update_for_intended_size(unifontsel_internal *fs,
2653                                           fontinfo *info)
2654 {
2655     fontinfo info2, *below, *above;
2656     int pos;
2657
2658     /*
2659      * Copy the info structure. This doesn't copy its dynamic
2660      * string fields, but that's unimportant because all we're
2661      * going to do is to adjust the size field and use it in one
2662      * tree search.
2663      */
2664     info2 = *info;
2665     info2.size = fs->intendedsize;
2666
2667     /*
2668      * Search in the tree to find the fontinfo structure which
2669      * best approximates the size the user last requested.
2670      */
2671     below = findrelpos234(fs->fonts_by_selorder, &info2, NULL,
2672                           REL234_LE, &pos);
2673     if (!below)
2674         pos = -1;
2675     above = index234(fs->fonts_by_selorder, pos+1);
2676
2677     /*
2678      * See if we've found it exactly, which is an easy special
2679      * case. If we have, it'll be in `below' and not `above',
2680      * because we did a REL234_LE rather than REL234_LT search.
2681      */
2682     if (below && !fontinfo_selorder_compare(&info2, below))
2683         return below;
2684
2685     /*
2686      * Now we've either found two suitable fonts, one smaller and
2687      * one larger, or we're at one or other extreme end of the
2688      * scale. Find out which, by NULLing out either of below and
2689      * above if it differs from this one in any respect but size
2690      * (and the disambiguating index field). Bear in mind, also,
2691      * that either one might _already_ be NULL if we're at the
2692      * extreme ends of the font list.
2693      */
2694     if (below) {
2695         info2.size = below->size;
2696         info2.index = below->index;
2697         if (fontinfo_selorder_compare(&info2, below))
2698             below = NULL;
2699     }
2700     if (above) {
2701         info2.size = above->size;
2702         info2.index = above->index;
2703         if (fontinfo_selorder_compare(&info2, above))
2704             above = NULL;
2705     }
2706
2707     /*
2708      * Now return whichever of above and below is non-NULL, if
2709      * that's unambiguous.
2710      */
2711     if (!above)
2712         return below;
2713     if (!below)
2714         return above;
2715
2716     /*
2717      * And now we really do have to make a choice about whether to
2718      * round up or down. We'll do it by rounding to nearest,
2719      * breaking ties by rounding up.
2720      */
2721     if (above->size - fs->intendedsize <= fs->intendedsize - below->size)
2722         return above;
2723     else
2724         return below;
2725 }
2726
2727 static void family_changed(GtkTreeSelection *treeselection, gpointer data)
2728 {
2729     unifontsel_internal *fs = (unifontsel_internal *)data;
2730     GtkTreeModel *treemodel;
2731     GtkTreeIter treeiter;
2732     int minval;
2733     fontinfo *info;
2734
2735     if (fs->inhibit_response)          /* we made this change ourselves */
2736         return;
2737
2738     if (!gtk_tree_selection_get_selected(treeselection, &treemodel, &treeiter))
2739         return;
2740
2741     gtk_tree_model_get(treemodel, &treeiter, 1, &minval, -1);
2742     info = (fontinfo *)index234(fs->fonts_by_selorder, minval);
2743     info = update_for_intended_size(fs, info);
2744     if (!info)
2745         return; /* _shouldn't_ happen unless font list is completely funted */
2746     if (!info->size)
2747         fs->selsize = fs->intendedsize;   /* font is scalable */
2748     unifontsel_select_font(fs, info, info->size ? info->size : fs->selsize,
2749                            1, FALSE);
2750 }
2751
2752 static void style_changed(GtkTreeSelection *treeselection, gpointer data)
2753 {
2754     unifontsel_internal *fs = (unifontsel_internal *)data;
2755     GtkTreeModel *treemodel;
2756     GtkTreeIter treeiter;
2757     int minval;
2758     fontinfo *info;
2759
2760     if (fs->inhibit_response)          /* we made this change ourselves */
2761         return;
2762
2763     if (!gtk_tree_selection_get_selected(treeselection, &treemodel, &treeiter))
2764         return;
2765
2766     gtk_tree_model_get(treemodel, &treeiter, 1, &minval, -1);
2767     if (minval < 0)
2768         return;                    /* somehow a charset heading got clicked */
2769     info = (fontinfo *)index234(fs->fonts_by_selorder, minval);
2770     info = update_for_intended_size(fs, info);
2771     if (!info)
2772         return; /* _shouldn't_ happen unless font list is completely funted */
2773     if (!info->size)
2774         fs->selsize = fs->intendedsize;   /* font is scalable */
2775     unifontsel_select_font(fs, info, info->size ? info->size : fs->selsize,
2776                            2, FALSE);
2777 }
2778
2779 static void size_changed(GtkTreeSelection *treeselection, gpointer data)
2780 {
2781     unifontsel_internal *fs = (unifontsel_internal *)data;
2782     GtkTreeModel *treemodel;
2783     GtkTreeIter treeiter;
2784     int minval, size;
2785     fontinfo *info;
2786
2787     if (fs->inhibit_response)          /* we made this change ourselves */
2788         return;
2789
2790     if (!gtk_tree_selection_get_selected(treeselection, &treemodel, &treeiter))
2791         return;
2792
2793     gtk_tree_model_get(treemodel, &treeiter, 1, &minval, 2, &size, -1);
2794     info = (fontinfo *)index234(fs->fonts_by_selorder, minval);
2795     unifontsel_select_font(fs, info, info->size ? info->size : size, 3, TRUE);
2796 }
2797
2798 static void size_entry_changed(GtkEditable *ed, gpointer data)
2799 {
2800     unifontsel_internal *fs = (unifontsel_internal *)data;
2801     const char *text;
2802     int size;
2803
2804     if (fs->inhibit_response)          /* we made this change ourselves */
2805         return;
2806
2807     text = gtk_entry_get_text(GTK_ENTRY(ed));
2808     size = atoi(text);
2809
2810     if (size > 0) {
2811         assert(fs->selected->size == 0);
2812         unifontsel_select_font(fs, fs->selected, size, 3, TRUE);
2813     }
2814 }
2815
2816 static void alias_resolve(GtkTreeView *treeview, GtkTreePath *path,
2817                           GtkTreeViewColumn *column, gpointer data)
2818 {
2819     unifontsel_internal *fs = (unifontsel_internal *)data;
2820     GtkTreeIter iter;
2821     int minval, newsize;
2822     fontinfo *info, *newinfo;
2823     char *newname;
2824
2825     if (fs->inhibit_response)          /* we made this change ourselves */
2826         return;
2827
2828     gtk_tree_model_get_iter(GTK_TREE_MODEL(fs->family_model), &iter, path);
2829     gtk_tree_model_get(GTK_TREE_MODEL(fs->family_model), &iter, 1,&minval, -1);
2830     info = (fontinfo *)index234(fs->fonts_by_selorder, minval);
2831     if (info) {
2832         int flags;
2833         struct fontinfo_realname_find f;
2834
2835         newname = info->fontclass->canonify_fontname
2836             (GTK_WIDGET(fs->u.window), info->realname, &newsize, &flags, TRUE);
2837
2838         f.realname = newname;
2839         f.flags = flags;
2840         newinfo = find234(fs->fonts_by_realname, &f, fontinfo_realname_find);
2841
2842         sfree(newname);
2843         if (!newinfo)
2844             return;                    /* font name not in our index */
2845         if (newinfo == info)
2846             return;   /* didn't change under canonification => not an alias */
2847         unifontsel_select_font(fs, newinfo,
2848                                newinfo->size ? newinfo->size : newsize,
2849                                1, TRUE);
2850     }
2851 }
2852
2853 #if GTK_CHECK_VERSION(3,0,0)
2854 static gint unifontsel_draw_area(GtkWidget *widget, cairo_t *cr, gpointer data)
2855 {
2856     unifontsel_internal *fs = (unifontsel_internal *)data;
2857     unifont_drawctx dctx;
2858
2859     dctx.type = DRAWTYPE_CAIRO;
2860     dctx.u.cairo.widget = widget;
2861     dctx.u.cairo.cr = cr;
2862     unifontsel_draw_preview_text_inner(&dctx, fs);
2863
2864     return TRUE;
2865 }
2866 #else
2867 static gint unifontsel_expose_area(GtkWidget *widget, GdkEventExpose *event,
2868                                    gpointer data)
2869 {
2870     unifontsel_internal *fs = (unifontsel_internal *)data;
2871
2872 #ifndef NO_BACKING_PIXMAPS
2873     if (fs->preview_pixmap) {
2874         gdk_draw_pixmap(gtk_widget_get_window(widget),
2875                         (gtk_widget_get_style(widget)->fg_gc
2876                          [gtk_widget_get_state(widget)]),
2877                         fs->preview_pixmap,
2878                         event->area.x, event->area.y,
2879                         event->area.x, event->area.y,
2880                         event->area.width, event->area.height);
2881     }
2882 #else
2883     unifontsel_draw_preview_text(fs);
2884 #endif
2885
2886     return TRUE;
2887 }
2888 #endif
2889
2890 static gint unifontsel_configure_area(GtkWidget *widget,
2891                                       GdkEventConfigure *event, gpointer data)
2892 {
2893 #ifndef NO_BACKING_PIXMAPS
2894     unifontsel_internal *fs = (unifontsel_internal *)data;
2895     int ox, oy, nx, ny, x, y;
2896
2897     /*
2898      * Enlarge the pixmap, but never shrink it.
2899      */
2900     ox = fs->preview_width;
2901     oy = fs->preview_height;
2902     x = event->width;
2903     y = event->height;
2904     if (x > ox || y > oy) {
2905         if (fs->preview_pixmap)
2906             gdk_pixmap_unref(fs->preview_pixmap);
2907         
2908         nx = (x > ox ? x : ox);
2909         ny = (y > oy ? y : oy);
2910         fs->preview_pixmap = gdk_pixmap_new(gtk_widget_get_window(widget),
2911                                             nx, ny, -1);
2912         fs->preview_width = nx;
2913         fs->preview_height = ny;
2914
2915         unifontsel_draw_preview_text(fs);
2916     }
2917 #endif
2918
2919     gdk_window_invalidate_rect(gtk_widget_get_window(widget), NULL, FALSE);
2920
2921     return TRUE;
2922 }
2923
2924 static void get_label_text_dimensions(const char *text,
2925                                       int *width, int *height)
2926 {
2927     /*
2928      * Determine the dimensions of a piece of text in the standard
2929      * font used in GTK interface elements like labels. We do this by
2930      * instantiating an actual GtkLabel, and then querying its size.
2931      *
2932      * But GTK2 and GTK3 require us to query the size completely
2933      * differently. I'm sure there ought to be an easier approach than
2934      * the way I'm doing this in GTK3, too!
2935      */
2936     GtkWidget *label = gtk_label_new(text);
2937
2938 #if GTK_CHECK_VERSION(3,0,0)
2939     PangoLayout *layout = gtk_label_get_layout(GTK_LABEL(label));
2940     PangoRectangle logrect;
2941     pango_layout_get_extents(layout, NULL, &logrect);
2942     *width = logrect.width / PANGO_SCALE;
2943     *height = logrect.height / PANGO_SCALE;
2944 #else
2945     GtkRequisition req;
2946     gtk_widget_size_request(label, &req);
2947     *width = req.width;
2948     *height = req.height;
2949 #endif
2950
2951     g_object_ref_sink(G_OBJECT(label));
2952 #if GTK_CHECK_VERSION(2,10,0)
2953     g_object_unref(label);
2954 #endif
2955 }
2956
2957 unifontsel *unifontsel_new(const char *wintitle)
2958 {
2959     unifontsel_internal *fs = snew(unifontsel_internal);
2960     GtkWidget *table, *label, *w, *ww, *scroll;
2961     GtkListStore *model;
2962     GtkTreeViewColumn *column;
2963     int lists_height, preview_height, font_width, style_width, size_width;
2964     int i;
2965
2966     fs->inhibit_response = FALSE;
2967     fs->selected = NULL;
2968
2969     {
2970         int width, height;
2971
2972         /*
2973          * Invent some magic size constants.
2974          */
2975         get_label_text_dimensions("Quite Long Font Name (Foundry)",
2976                                   &width, &height);
2977         font_width = width;
2978         lists_height = 14 * height;
2979         preview_height = 5 * height;
2980
2981         get_label_text_dimensions("Italic Extra Condensed", &width, &height);
2982         style_width = width;
2983
2984         get_label_text_dimensions("48000", &width, &height);
2985         size_width = width;
2986     }
2987
2988     /*
2989      * Create the dialog box and initialise the user-visible
2990      * fields in the returned structure.
2991      */
2992     fs->u.user_data = NULL;
2993     fs->u.window = GTK_WINDOW(gtk_dialog_new());
2994     gtk_window_set_title(fs->u.window, wintitle);
2995     fs->u.cancel_button = gtk_dialog_add_button
2996         (GTK_DIALOG(fs->u.window), GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL);
2997     fs->u.ok_button = gtk_dialog_add_button
2998         (GTK_DIALOG(fs->u.window), GTK_STOCK_OK, GTK_RESPONSE_OK);
2999     gtk_widget_grab_default(fs->u.ok_button);
3000
3001     /*
3002      * Now set up the internal fields, including in particular all
3003      * the controls that actually allow the user to select fonts.
3004      */
3005     table = gtk_table_new(8, 3, FALSE);
3006     gtk_widget_show(table);
3007     gtk_table_set_col_spacings(GTK_TABLE(table), 8);
3008 #if GTK_CHECK_VERSION(2,4,0)
3009     /* GtkAlignment seems to be the simplest way to put padding round things */
3010     w = gtk_alignment_new(0, 0, 1, 1);
3011     gtk_alignment_set_padding(GTK_ALIGNMENT(w), 8, 8, 8, 8);
3012     gtk_container_add(GTK_CONTAINER(w), table);
3013     gtk_widget_show(w);
3014 #else
3015     w = table;
3016 #endif
3017     gtk_box_pack_start(GTK_BOX(gtk_dialog_get_content_area
3018                                (GTK_DIALOG(fs->u.window))),
3019                        w, TRUE, TRUE, 0);
3020
3021     label = gtk_label_new_with_mnemonic("_Font:");
3022     gtk_widget_show(label);
3023     gtk_misc_set_alignment(GTK_MISC(label), 0.0, 0.0);
3024     gtk_table_attach(GTK_TABLE(table), label, 0, 1, 0, 1, GTK_FILL, 0, 0, 0);
3025
3026     /*
3027      * The Font list box displays only a string, but additionally
3028      * stores two integers which give the limits within the
3029      * tree234 of the font entries covered by this list entry.
3030      */
3031     model = gtk_list_store_new(3, G_TYPE_STRING, G_TYPE_INT, G_TYPE_INT);
3032     w = gtk_tree_view_new_with_model(GTK_TREE_MODEL(model));
3033     gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(w), FALSE);
3034     gtk_label_set_mnemonic_widget(GTK_LABEL(label), w);
3035     gtk_widget_show(w);
3036     column = gtk_tree_view_column_new_with_attributes
3037         ("Font", gtk_cell_renderer_text_new(),
3038          "text", 0, (char *)NULL);
3039     gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_AUTOSIZE);
3040     gtk_tree_view_append_column(GTK_TREE_VIEW(w), column);
3041     g_signal_connect(G_OBJECT(gtk_tree_view_get_selection(GTK_TREE_VIEW(w))),
3042                      "changed", G_CALLBACK(family_changed), fs);
3043     g_signal_connect(G_OBJECT(w), "row-activated",
3044                      G_CALLBACK(alias_resolve), fs);
3045
3046     scroll = gtk_scrolled_window_new(NULL, NULL);
3047     gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(scroll),
3048                                         GTK_SHADOW_IN);
3049     gtk_container_add(GTK_CONTAINER(scroll), w);
3050     gtk_widget_show(scroll);
3051     gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scroll),
3052                                    GTK_POLICY_AUTOMATIC, GTK_POLICY_ALWAYS);
3053     gtk_widget_set_size_request(scroll, font_width, lists_height);
3054     gtk_table_attach(GTK_TABLE(table), scroll, 0, 1, 1, 3, GTK_FILL,
3055                      GTK_EXPAND | GTK_FILL, 0, 0);
3056     fs->family_model = model;
3057     fs->family_list = w;
3058
3059     label = gtk_label_new_with_mnemonic("_Style:");
3060     gtk_widget_show(label);
3061     gtk_misc_set_alignment(GTK_MISC(label), 0.0, 0.0);
3062     gtk_table_attach(GTK_TABLE(table), label, 1, 2, 0, 1, GTK_FILL, 0, 0, 0);
3063
3064     /*
3065      * The Style list box can contain insensitive elements
3066      * (character set headings for server-side fonts), so we add
3067      * an extra column to the list store to hold that information.
3068      */
3069     model = gtk_list_store_new(4, G_TYPE_STRING, G_TYPE_INT, G_TYPE_INT,
3070                                G_TYPE_BOOLEAN);
3071     w = gtk_tree_view_new_with_model(GTK_TREE_MODEL(model));
3072     gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(w), FALSE);
3073     gtk_label_set_mnemonic_widget(GTK_LABEL(label), w);
3074     gtk_widget_show(w);
3075     column = gtk_tree_view_column_new_with_attributes
3076         ("Style", gtk_cell_renderer_text_new(),
3077          "text", 0, "sensitive", 3, (char *)NULL);
3078     gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_AUTOSIZE);
3079     gtk_tree_view_append_column(GTK_TREE_VIEW(w), column);
3080     g_signal_connect(G_OBJECT(gtk_tree_view_get_selection(GTK_TREE_VIEW(w))),
3081                      "changed", G_CALLBACK(style_changed), fs);
3082
3083     scroll = gtk_scrolled_window_new(NULL, NULL);
3084     gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(scroll),
3085                                         GTK_SHADOW_IN);
3086     gtk_container_add(GTK_CONTAINER(scroll), w);
3087     gtk_widget_show(scroll);
3088     gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scroll),
3089                                    GTK_POLICY_AUTOMATIC, GTK_POLICY_ALWAYS);
3090     gtk_widget_set_size_request(scroll, style_width, lists_height);
3091     gtk_table_attach(GTK_TABLE(table), scroll, 1, 2, 1, 3, GTK_FILL,
3092                      GTK_EXPAND | GTK_FILL, 0, 0);
3093     fs->style_model = model;
3094     fs->style_list = w;
3095
3096     label = gtk_label_new_with_mnemonic("Si_ze:");
3097     gtk_widget_show(label);
3098     gtk_misc_set_alignment(GTK_MISC(label), 0.0, 0.0);
3099     gtk_table_attach(GTK_TABLE(table), label, 2, 3, 0, 1, GTK_FILL, 0, 0, 0);
3100
3101     /*
3102      * The Size label attaches primarily to a text input box so
3103      * that the user can select a size of their choice. The list
3104      * of available sizes is secondary.
3105      */
3106     fs->size_entry = w = gtk_entry_new();
3107     gtk_label_set_mnemonic_widget(GTK_LABEL(label), w);
3108     gtk_widget_set_size_request(w, size_width, -1);
3109     gtk_widget_show(w);
3110     gtk_table_attach(GTK_TABLE(table), w, 2, 3, 1, 2, GTK_FILL, 0, 0, 0);
3111     g_signal_connect(G_OBJECT(w), "changed", G_CALLBACK(size_entry_changed),
3112                      fs);
3113
3114     model = gtk_list_store_new(3, G_TYPE_STRING, G_TYPE_INT, G_TYPE_INT);
3115     w = gtk_tree_view_new_with_model(GTK_TREE_MODEL(model));
3116     gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(w), FALSE);
3117     gtk_widget_show(w);
3118     column = gtk_tree_view_column_new_with_attributes
3119         ("Size", gtk_cell_renderer_text_new(),
3120          "text", 0, (char *)NULL);
3121     gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_AUTOSIZE);
3122     gtk_tree_view_append_column(GTK_TREE_VIEW(w), column);
3123     g_signal_connect(G_OBJECT(gtk_tree_view_get_selection(GTK_TREE_VIEW(w))),
3124                      "changed", G_CALLBACK(size_changed), fs);
3125
3126     scroll = gtk_scrolled_window_new(NULL, NULL);
3127     gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(scroll),
3128                                         GTK_SHADOW_IN);
3129     gtk_container_add(GTK_CONTAINER(scroll), w);
3130     gtk_widget_show(scroll);
3131     gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scroll),
3132                                    GTK_POLICY_AUTOMATIC, GTK_POLICY_ALWAYS);
3133     gtk_table_attach(GTK_TABLE(table), scroll, 2, 3, 2, 3, GTK_FILL,
3134                      GTK_EXPAND | GTK_FILL, 0, 0);
3135     fs->size_model = model;
3136     fs->size_list = w;
3137
3138     /*
3139      * Preview widget.
3140      */
3141     fs->preview_area = gtk_drawing_area_new();
3142 #ifndef NO_BACKING_PIXMAPS
3143     fs->preview_pixmap = NULL;
3144 #endif
3145     fs->preview_width = 0;
3146     fs->preview_height = 0;
3147     fs->preview_fg.pixel = fs->preview_bg.pixel = 0;
3148     fs->preview_fg.red = fs->preview_fg.green = fs->preview_fg.blue = 0x0000;
3149     fs->preview_bg.red = fs->preview_bg.green = fs->preview_bg.blue = 0xFFFF;
3150 #if !GTK_CHECK_VERSION(3,0,0)
3151     gdk_colormap_alloc_color(gdk_colormap_get_system(), &fs->preview_fg,
3152                              FALSE, FALSE);
3153     gdk_colormap_alloc_color(gdk_colormap_get_system(), &fs->preview_bg,
3154                              FALSE, FALSE);
3155 #endif
3156 #if GTK_CHECK_VERSION(3,0,0)
3157     g_signal_connect(G_OBJECT(fs->preview_area), "draw",
3158                      G_CALLBACK(unifontsel_draw_area), fs);
3159 #else
3160     g_signal_connect(G_OBJECT(fs->preview_area), "expose_event",
3161                      G_CALLBACK(unifontsel_expose_area), fs);
3162 #endif
3163     g_signal_connect(G_OBJECT(fs->preview_area), "configure_event",
3164                      G_CALLBACK(unifontsel_configure_area), fs);
3165     gtk_widget_set_size_request(fs->preview_area, 1, preview_height);
3166     gtk_widget_show(fs->preview_area);
3167     ww = fs->preview_area;
3168     w = gtk_frame_new(NULL);
3169     gtk_container_add(GTK_CONTAINER(w), ww);
3170     gtk_widget_show(w);
3171 #if GTK_CHECK_VERSION(2,4,0)
3172     ww = w;
3173     /* GtkAlignment seems to be the simplest way to put padding round things */
3174     w = gtk_alignment_new(0, 0, 1, 1);
3175     gtk_alignment_set_padding(GTK_ALIGNMENT(w), 8, 8, 8, 8);
3176     gtk_container_add(GTK_CONTAINER(w), ww);
3177     gtk_widget_show(w);
3178 #endif
3179     ww = w;
3180     w = gtk_frame_new("Preview of font");
3181     gtk_container_add(GTK_CONTAINER(w), ww);
3182     gtk_widget_show(w);
3183     gtk_table_attach(GTK_TABLE(table), w, 0, 3, 3, 4,
3184                      GTK_EXPAND | GTK_FILL, GTK_EXPAND | GTK_FILL, 0, 8);
3185
3186     /*
3187      * We only provide the checkboxes for client- and server-side
3188      * fonts if we have the X11 back end available, because that's the
3189      * only situation in which more than one class of font is
3190      * available anyway.
3191      */
3192     fs->n_filter_buttons = 0;
3193 #ifndef NOT_X_WINDOWS
3194     w = gtk_check_button_new_with_label("Show client-side fonts");
3195     g_object_set_data(G_OBJECT(w), "user-data",
3196                       GINT_TO_POINTER(FONTFLAG_CLIENTSIDE));
3197     g_signal_connect(G_OBJECT(w), "toggled",
3198                      G_CALLBACK(unifontsel_button_toggled), fs);
3199     gtk_widget_show(w);
3200     fs->filter_buttons[fs->n_filter_buttons++] = w;
3201     gtk_table_attach(GTK_TABLE(table), w, 0, 3, 4, 5, GTK_FILL, 0, 0, 0);
3202     w = gtk_check_button_new_with_label("Show server-side fonts");
3203     g_object_set_data(G_OBJECT(w), "user-data",
3204                       GINT_TO_POINTER(FONTFLAG_SERVERSIDE));
3205     g_signal_connect(G_OBJECT(w), "toggled",
3206                      G_CALLBACK(unifontsel_button_toggled), fs);
3207     gtk_widget_show(w);
3208     fs->filter_buttons[fs->n_filter_buttons++] = w;
3209     gtk_table_attach(GTK_TABLE(table), w, 0, 3, 5, 6, GTK_FILL, 0, 0, 0);
3210     w = gtk_check_button_new_with_label("Show server-side font aliases");
3211     g_object_set_data(G_OBJECT(w), "user-data",
3212                       GINT_TO_POINTER(FONTFLAG_SERVERALIAS));
3213     g_signal_connect(G_OBJECT(w), "toggled",
3214                      G_CALLBACK(unifontsel_button_toggled), fs);
3215     gtk_widget_show(w);
3216     fs->filter_buttons[fs->n_filter_buttons++] = w;
3217     gtk_table_attach(GTK_TABLE(table), w, 0, 3, 6, 7, GTK_FILL, 0, 0, 0);
3218 #endif
3219     w = gtk_check_button_new_with_label("Show non-monospaced fonts");
3220     g_object_set_data(G_OBJECT(w), "user-data",
3221                       GINT_TO_POINTER(FONTFLAG_NONMONOSPACED));
3222     g_signal_connect(G_OBJECT(w), "toggled",
3223                      G_CALLBACK(unifontsel_button_toggled), fs);
3224     gtk_widget_show(w);
3225     fs->filter_buttons[fs->n_filter_buttons++] = w;
3226     gtk_table_attach(GTK_TABLE(table), w, 0, 3, 7, 8, GTK_FILL, 0, 0, 0);
3227
3228     assert(fs->n_filter_buttons <= lenof(fs->filter_buttons));
3229     fs->filter_flags = FONTFLAG_CLIENTSIDE | FONTFLAG_SERVERSIDE |
3230         FONTFLAG_SERVERALIAS;
3231     unifontsel_set_filter_buttons(fs);
3232
3233     /*
3234      * Go and find all the font names, and set up our master font
3235      * list.
3236      */
3237     fs->fonts_by_realname = newtree234(fontinfo_realname_compare);
3238     fs->fonts_by_selorder = newtree234(fontinfo_selorder_compare);
3239     for (i = 0; i < lenof(unifont_types); i++)
3240         unifont_types[i]->enum_fonts(GTK_WIDGET(fs->u.window),
3241                                      unifontsel_add_entry, fs);
3242
3243     /*
3244      * And set up the initial font names list.
3245      */
3246     unifontsel_setup_familylist(fs);
3247
3248     fs->selsize = fs->intendedsize = 13;   /* random default */
3249     gtk_widget_set_sensitive(fs->u.ok_button, FALSE);
3250
3251     return (unifontsel *)fs;
3252 }
3253
3254 void unifontsel_destroy(unifontsel *fontsel)
3255 {
3256     unifontsel_internal *fs = (unifontsel_internal *)fontsel;
3257     fontinfo *info;
3258
3259 #ifndef NO_BACKING_PIXMAPS
3260     if (fs->preview_pixmap)
3261         gdk_pixmap_unref(fs->preview_pixmap);
3262 #endif
3263
3264     freetree234(fs->fonts_by_selorder);
3265     while ((info = delpos234(fs->fonts_by_realname, 0)) != NULL)
3266         sfree(info);
3267     freetree234(fs->fonts_by_realname);
3268
3269     gtk_widget_destroy(GTK_WIDGET(fs->u.window));
3270     sfree(fs);
3271 }
3272
3273 void unifontsel_set_name(unifontsel *fontsel, const char *fontname)
3274 {
3275     unifontsel_internal *fs = (unifontsel_internal *)fontsel;
3276     int i, start, end, size, flags;
3277     const char *fontname2 = NULL;
3278     fontinfo *info;
3279
3280     /*
3281      * Provide a default if given an empty or null font name.
3282      */
3283     if (!fontname || !*fontname)
3284         fontname = "server:fixed";
3285
3286     /*
3287      * Call the canonify_fontname function.
3288      */
3289     fontname = unifont_do_prefix(fontname, &start, &end);
3290     for (i = start; i < end; i++) {
3291         fontname2 = unifont_types[i]->canonify_fontname
3292             (GTK_WIDGET(fs->u.window), fontname, &size, &flags, FALSE);
3293         if (fontname2)
3294             break;
3295     }
3296     if (i == end)
3297         return;                        /* font name not recognised */
3298
3299     /*
3300      * Now look up the canonified font name in our index.
3301      */
3302     {
3303         struct fontinfo_realname_find f;
3304         f.realname = fontname2;
3305         f.flags = flags;
3306         info = find234(fs->fonts_by_realname, &f, fontinfo_realname_find);
3307     }
3308
3309     /*
3310      * If we've found the font, and its size field is either
3311      * correct or zero (the latter indicating a scalable font),
3312      * then we're done. Otherwise, try looking up the original
3313      * font name instead.
3314      */
3315     if (!info || (info->size != size && info->size != 0)) {
3316         struct fontinfo_realname_find f;
3317         f.realname = fontname;
3318         f.flags = flags;
3319
3320         info = find234(fs->fonts_by_realname, &f, fontinfo_realname_find);
3321         if (!info || info->size != size)
3322             return;                    /* font name not in our index */
3323     }
3324
3325     /*
3326      * Now we've got a fontinfo structure and a font size, so we
3327      * know everything we need to fill in all the fields in the
3328      * dialog.
3329      */
3330     unifontsel_select_font(fs, info, size, 0, TRUE);
3331 }
3332
3333 char *unifontsel_get_name(unifontsel *fontsel)
3334 {
3335     unifontsel_internal *fs = (unifontsel_internal *)fontsel;
3336     char *name;
3337
3338     if (!fs->selected)
3339         return NULL;
3340
3341     if (fs->selected->size == 0) {
3342         name = fs->selected->fontclass->scale_fontname
3343             (GTK_WIDGET(fs->u.window), fs->selected->realname, fs->selsize);
3344         if (name) {
3345             char *ret = dupcat(fs->selected->fontclass->prefix, ":",
3346                                name, NULL);
3347             sfree(name);
3348             return ret;
3349         }
3350     }
3351
3352     return dupcat(fs->selected->fontclass->prefix, ":",
3353                   fs->selected->realname, NULL);
3354 }
3355
3356 #endif /* GTK_CHECK_VERSION(2,0,0) */