]> asedeno.scripts.mit.edu Git - PuTTY.git/blob - unix/gtkfont.c
GTK3 port: condition out all uses of GdkColormap.
[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     gtk_list_store_clear(fs->family_model);
2113     listindex = 0;
2114
2115     /*
2116      * Search through the font tree for anything matching our
2117      * current filter criteria. When we find one, add its font
2118      * name to the list box.
2119      */
2120     for (i = 0 ;; i++) {
2121         info = (fontinfo *)index234(fs->fonts_by_selorder, i);
2122         /*
2123          * info may be NULL if we've just run off the end of the
2124          * tree. We must still do a processing pass in that
2125          * situation, in case we had an unfinished font record in
2126          * progress.
2127          */
2128         if (info && (info->flags &~ fs->filter_flags)) {
2129             info->familyindex = -1;
2130             continue;                  /* we're filtering out this font */
2131         }
2132         if (!info || strnullcasecmp(currfamily, info->family) ||
2133             currflags != (info->flags & FONTFLAG_SORT_MASK)) {
2134             /*
2135              * We've either finished a family, or started a new
2136              * one, or both.
2137              */
2138             if (currfamily) {
2139                 gtk_list_store_append(fs->family_model, &iter);
2140                 gtk_list_store_set(fs->family_model, &iter,
2141                                    0, currfamily, 1, minpos, 2, maxpos+1, -1);
2142                 listindex++;
2143             }
2144             if (info) {
2145                 minpos = i;
2146                 currfamily = info->family;
2147                 currflags = info->flags & FONTFLAG_SORT_MASK;
2148             }
2149         }
2150         if (!info)
2151             break;                     /* now we're done */
2152         info->familyindex = listindex;
2153         maxpos = i;
2154     }
2155
2156     /*
2157      * If we've just filtered out the previously selected font,
2158      * deselect it thoroughly.
2159      */
2160     if (fs->selected && fs->selected->familyindex < 0)
2161         unifontsel_deselect(fs);
2162 }
2163
2164 static void unifontsel_setup_stylelist(unifontsel_internal *fs,
2165                                        int start, int end)
2166 {
2167     GtkTreeIter iter;
2168     int i, listindex, minpos = -1, maxpos = -1, started = FALSE;
2169     char *currcs = NULL, *currstyle = NULL;
2170     fontinfo *info;
2171
2172     gtk_list_store_clear(fs->style_model);
2173     listindex = 0;
2174     started = FALSE;
2175
2176     /*
2177      * Search through the font tree for anything matching our
2178      * current filter criteria. When we find one, add its charset
2179      * and/or style name to the list box.
2180      */
2181     for (i = start; i <= end; i++) {
2182         if (i == end)
2183             info = NULL;
2184         else
2185             info = (fontinfo *)index234(fs->fonts_by_selorder, i);
2186         /*
2187          * info may be NULL if we've just run off the end of the
2188          * relevant data. We must still do a processing pass in
2189          * that situation, in case we had an unfinished font
2190          * record in progress.
2191          */
2192         if (info && (info->flags &~ fs->filter_flags)) {
2193             info->styleindex = -1;
2194             continue;                  /* we're filtering out this font */
2195         }
2196         if (!info || !started || strnullcasecmp(currcs, info->charset) ||
2197              strnullcasecmp(currstyle, info->style)) {
2198             /*
2199              * We've either finished a style/charset, or started a
2200              * new one, or both.
2201              */
2202             started = TRUE;
2203             if (currstyle) {
2204                 gtk_list_store_append(fs->style_model, &iter);
2205                 gtk_list_store_set(fs->style_model, &iter,
2206                                    0, currstyle, 1, minpos, 2, maxpos+1,
2207                                    3, TRUE, -1);
2208                 listindex++;
2209             }
2210             if (info) {
2211                 minpos = i;
2212                 if (info->charset && strnullcasecmp(currcs, info->charset)) {
2213                     gtk_list_store_append(fs->style_model, &iter);
2214                     gtk_list_store_set(fs->style_model, &iter,
2215                                        0, info->charset, 1, -1, 2, -1,
2216                                        3, FALSE, -1);
2217                     listindex++;
2218                 }
2219                 currcs = info->charset;
2220                 currstyle = info->style;
2221             }
2222         }
2223         if (!info)
2224             break;                     /* now we're done */
2225         info->styleindex = listindex;
2226         maxpos = i;
2227     }
2228 }
2229
2230 static const int unifontsel_default_sizes[] = { 10, 12, 14, 16, 20, 24, 32 };
2231
2232 static void unifontsel_setup_sizelist(unifontsel_internal *fs,
2233                                       int start, int end)
2234 {
2235     GtkTreeIter iter;
2236     int i, listindex;
2237     char sizetext[40];
2238     fontinfo *info;
2239
2240     gtk_list_store_clear(fs->size_model);
2241     listindex = 0;
2242
2243     /*
2244      * Search through the font tree for anything matching our
2245      * current filter criteria. When we find one, add its font
2246      * name to the list box.
2247      */
2248     for (i = start; i < end; i++) {
2249         info = (fontinfo *)index234(fs->fonts_by_selorder, i);
2250         if (info->flags &~ fs->filter_flags) {
2251             info->sizeindex = -1;
2252             continue;                  /* we're filtering out this font */
2253         }
2254         if (info->size) {
2255             sprintf(sizetext, "%d", info->size);
2256             info->sizeindex = listindex;
2257             gtk_list_store_append(fs->size_model, &iter);
2258             gtk_list_store_set(fs->size_model, &iter,
2259                                0, sizetext, 1, i, 2, info->size, -1);
2260             listindex++;
2261         } else {
2262             int j;
2263
2264             assert(i == start);
2265             assert(i+1 == end);
2266
2267             for (j = 0; j < lenof(unifontsel_default_sizes); j++) {
2268                 sprintf(sizetext, "%d", unifontsel_default_sizes[j]);
2269                 gtk_list_store_append(fs->size_model, &iter);
2270                 gtk_list_store_set(fs->size_model, &iter, 0, sizetext, 1, i,
2271                                    2, unifontsel_default_sizes[j], -1);
2272                 listindex++;
2273             }
2274         }
2275     }
2276 }
2277
2278 static void unifontsel_set_filter_buttons(unifontsel_internal *fs)
2279 {
2280     int i;
2281
2282     for (i = 0; i < fs->n_filter_buttons; i++) {
2283         int flagbit = GPOINTER_TO_INT(g_object_get_data
2284                                       (G_OBJECT(fs->filter_buttons[i]),
2285                                        "user-data"));
2286         gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(fs->filter_buttons[i]),
2287                                      !!(fs->filter_flags & flagbit));
2288     }
2289 }
2290
2291 static void unifontsel_draw_preview_text_inner(unifont_drawctx *dctx,
2292                                                unifontsel_internal *fs)
2293 {
2294     unifont *font;
2295     char *sizename = NULL;
2296     fontinfo *info = fs->selected;
2297
2298     if (info) {
2299         sizename = info->fontclass->scale_fontname
2300             (GTK_WIDGET(fs->u.window), info->realname, fs->selsize);
2301         font = info->fontclass->create(GTK_WIDGET(fs->u.window),
2302                                        sizename ? sizename : info->realname,
2303                                        FALSE, FALSE, 0, 0);
2304     } else
2305         font = NULL;
2306
2307     if (font) {
2308 #ifdef DRAW_TEXT_GDK
2309         if (dctx->type == DRAWTYPE_GDK) {
2310             gdk_gc_set_foreground(dctx->u.gdk.gc, &fs->preview_bg);
2311             gdk_draw_rectangle(dctx->u.gdk.target, dctx->u.gdk.gc, 1, 0, 0,
2312                                fs->preview_width, fs->preview_height);
2313             gdk_gc_set_foreground(dctx->u.gdk.gc, &fs->preview_fg);
2314         }
2315 #endif
2316 #ifdef DRAW_TEXT_CAIRO
2317         if (dctx->type == DRAWTYPE_CAIRO) {
2318             cairo_set_source_rgb(dctx->u.cairo.cr,
2319                                  fs->preview_bg.red / 65535.0,
2320                                  fs->preview_bg.green / 65535.0,
2321                                  fs->preview_bg.blue / 65535.0);
2322             cairo_paint(dctx->u.cairo.cr);
2323             cairo_set_source_rgb(dctx->u.cairo.cr,
2324                                  fs->preview_fg.red / 65535.0,
2325                                  fs->preview_fg.green / 65535.0,
2326                                  fs->preview_fg.blue / 65535.0);
2327         }
2328 #endif
2329
2330         /*
2331          * The pangram used here is rather carefully
2332          * constructed: it contains a sequence of very narrow
2333          * letters (`jil') and a pair of adjacent very wide
2334          * letters (`wm').
2335          *
2336          * If the user selects a proportional font, it will be
2337          * coerced into fixed-width character cells when used
2338          * in the actual terminal window. We therefore display
2339          * it the same way in the preview pane, so as to show
2340          * it the way it will actually be displayed - and we
2341          * deliberately pick a pangram which will show the
2342          * resulting miskerning at its worst.
2343          *
2344          * We aren't trying to sell people these fonts; we're
2345          * trying to let them make an informed choice. Better
2346          * that they find out the problems with using
2347          * proportional fonts in terminal windows here than
2348          * that they go to the effort of selecting their font
2349          * and _then_ realise it was a mistake.
2350          */
2351         info->fontclass->draw_text(dctx, font,
2352                                    0, font->ascent,
2353                                    L"bankrupt jilted showmen quiz convex fogey",
2354                                    41, FALSE, FALSE, font->width);
2355         info->fontclass->draw_text(dctx, font,
2356                                    0, font->ascent + font->height,
2357                                    L"BANKRUPT JILTED SHOWMEN QUIZ CONVEX FOGEY",
2358                                    41, FALSE, FALSE, font->width);
2359         /*
2360          * The ordering of punctuation here is also selected
2361          * with some specific aims in mind. I put ` and '
2362          * together because some software (and people) still
2363          * use them as matched quotes no matter what Unicode
2364          * might say on the matter, so people can quickly
2365          * check whether they look silly in a candidate font.
2366          * The sequence #_@ is there to let people judge the
2367          * suitability of the underscore as an effectively
2368          * alphabetic character (since that's how it's often
2369          * used in practice, at least by programmers).
2370          */
2371         info->fontclass->draw_text(dctx, font,
2372                                    0, font->ascent + font->height * 2,
2373                                    L"0123456789!?,.:;<>()[]{}\\/`'\"+*-=~#_@|%&^$",
2374                                    42, FALSE, FALSE, font->width);
2375
2376         info->fontclass->destroy(font);
2377     }
2378
2379     sfree(sizename);
2380 }
2381
2382 static void unifontsel_draw_preview_text(unifontsel_internal *fs)
2383 {
2384     unifont_drawctx dctx;
2385     GdkWindow *target;
2386
2387 #ifndef NO_BACKING_PIXMAPS
2388     target = fs->preview_pixmap;
2389 #else
2390     target = gtk_widget_get_window(fs->preview_area);
2391 #endif
2392     if (!target) /* we may be called when we haven't created everything yet */
2393         return;
2394
2395     dctx.type = DRAWTYPE_DEFAULT;
2396 #ifdef DRAW_TEXT_GDK
2397     if (dctx.type == DRAWTYPE_GDK) {
2398         dctx.u.gdk.target = target;
2399         dctx.u.gdk.gc = gdk_gc_new(target);
2400     }
2401 #endif
2402 #ifdef DRAW_TEXT_CAIRO
2403     if (dctx.type == DRAWTYPE_CAIRO) {
2404         dctx.u.cairo.widget = GTK_WIDGET(fs->preview_area);
2405         dctx.u.cairo.cr = gdk_cairo_create(target);
2406     }
2407 #endif
2408
2409     unifontsel_draw_preview_text_inner(&dctx, fs);
2410
2411 #ifdef DRAW_TEXT_GDK
2412     if (dctx.type == DRAWTYPE_GDK) {
2413         gdk_gc_unref(dctx.u.gdk.gc);
2414     }
2415 #endif
2416 #ifdef DRAW_TEXT_CAIRO
2417     if (dctx.type == DRAWTYPE_CAIRO) {
2418         cairo_destroy(dctx.u.cairo.cr);
2419     }
2420 #endif
2421
2422     gdk_window_invalidate_rect(gtk_widget_get_window(fs->preview_area),
2423                                NULL, FALSE);
2424 }
2425
2426 static void unifontsel_select_font(unifontsel_internal *fs,
2427                                    fontinfo *info, int size, int leftlist,
2428                                    int size_is_explicit)
2429 {
2430     int index;
2431     int minval, maxval;
2432     GtkTreePath *treepath;
2433     GtkTreeIter iter;
2434
2435     fs->inhibit_response = TRUE;
2436
2437     fs->selected = info;
2438     fs->selsize = size;
2439     if (size_is_explicit)
2440         fs->intendedsize = size;
2441
2442     gtk_widget_set_sensitive(fs->u.ok_button, TRUE);
2443
2444     /*
2445      * Find the index of this fontinfo in the selorder list. 
2446      */
2447     index = -1;
2448     findpos234(fs->fonts_by_selorder, info, NULL, &index);
2449     assert(index >= 0);
2450
2451     /*
2452      * Adjust the font selector flags and redo the font family
2453      * list box, if necessary.
2454      */
2455     if (leftlist <= 0 &&
2456         (fs->filter_flags | info->flags) != fs->filter_flags) {
2457         fs->filter_flags |= info->flags;
2458         unifontsel_set_filter_buttons(fs);
2459         unifontsel_setup_familylist(fs);
2460     }
2461
2462     /*
2463      * Find the appropriate family name and select it in the list.
2464      */
2465     assert(info->familyindex >= 0);
2466     treepath = gtk_tree_path_new_from_indices(info->familyindex, -1);
2467     gtk_tree_selection_select_path
2468         (gtk_tree_view_get_selection(GTK_TREE_VIEW(fs->family_list)),
2469          treepath);
2470     gtk_tree_view_scroll_to_cell(GTK_TREE_VIEW(fs->family_list),
2471                                  treepath, NULL, FALSE, 0.0, 0.0);
2472     gtk_tree_model_get_iter(GTK_TREE_MODEL(fs->family_model), &iter, treepath);
2473     gtk_tree_path_free(treepath);
2474
2475     /*
2476      * Now set up the font style list.
2477      */
2478     gtk_tree_model_get(GTK_TREE_MODEL(fs->family_model), &iter,
2479                        1, &minval, 2, &maxval, -1);
2480     if (leftlist <= 1)
2481         unifontsel_setup_stylelist(fs, minval, maxval);
2482
2483     /*
2484      * Find the appropriate style name and select it in the list.
2485      */
2486     if (info->style) {
2487         assert(info->styleindex >= 0);
2488         treepath = gtk_tree_path_new_from_indices(info->styleindex, -1);
2489         gtk_tree_selection_select_path
2490             (gtk_tree_view_get_selection(GTK_TREE_VIEW(fs->style_list)),
2491              treepath);
2492         gtk_tree_view_scroll_to_cell(GTK_TREE_VIEW(fs->style_list),
2493                                      treepath, NULL, FALSE, 0.0, 0.0);
2494         gtk_tree_model_get_iter(GTK_TREE_MODEL(fs->style_model),
2495                                 &iter, treepath);
2496         gtk_tree_path_free(treepath);
2497
2498         /*
2499          * And set up the size list.
2500          */
2501         gtk_tree_model_get(GTK_TREE_MODEL(fs->style_model), &iter,
2502                            1, &minval, 2, &maxval, -1);
2503         if (leftlist <= 2)
2504             unifontsel_setup_sizelist(fs, minval, maxval);
2505
2506         /*
2507          * Find the appropriate size, and select it in the list.
2508          */
2509         if (info->size) {
2510             assert(info->sizeindex >= 0);
2511             treepath = gtk_tree_path_new_from_indices(info->sizeindex, -1);
2512             gtk_tree_selection_select_path
2513                 (gtk_tree_view_get_selection(GTK_TREE_VIEW(fs->size_list)),
2514                  treepath);
2515             gtk_tree_view_scroll_to_cell(GTK_TREE_VIEW(fs->size_list),
2516                                          treepath, NULL, FALSE, 0.0, 0.0);
2517             gtk_tree_path_free(treepath);
2518             size = info->size;
2519         } else {
2520             int j;
2521             for (j = 0; j < lenof(unifontsel_default_sizes); j++)
2522                 if (unifontsel_default_sizes[j] == size) {
2523                     treepath = gtk_tree_path_new_from_indices(j, -1);
2524                     gtk_tree_view_set_cursor(GTK_TREE_VIEW(fs->size_list),
2525                                              treepath, NULL, FALSE);
2526                     gtk_tree_view_scroll_to_cell(GTK_TREE_VIEW(fs->size_list),
2527                                                  treepath, NULL, FALSE, 0.0,
2528                                                  0.0);
2529                     gtk_tree_path_free(treepath);
2530                 }
2531         }
2532
2533         /*
2534          * And set up the font size text entry box.
2535          */
2536         {
2537             char sizetext[40];
2538             sprintf(sizetext, "%d", size);
2539             gtk_entry_set_text(GTK_ENTRY(fs->size_entry), sizetext);
2540         }
2541     } else {
2542         if (leftlist <= 2)
2543             unifontsel_setup_sizelist(fs, 0, 0);
2544         gtk_entry_set_text(GTK_ENTRY(fs->size_entry), "");
2545     }
2546
2547     /*
2548      * Grey out the font size edit box if we're not using a
2549      * scalable font.
2550      */
2551     gtk_editable_set_editable(GTK_EDITABLE(fs->size_entry),
2552                               fs->selected->size == 0);
2553     gtk_widget_set_sensitive(fs->size_entry, fs->selected->size == 0);
2554
2555     unifontsel_draw_preview_text(fs);
2556
2557     fs->inhibit_response = FALSE;
2558 }
2559
2560 static void unifontsel_button_toggled(GtkToggleButton *tb, gpointer data)
2561 {
2562     unifontsel_internal *fs = (unifontsel_internal *)data;
2563     int newstate = gtk_toggle_button_get_active(tb);
2564     int newflags;
2565     int flagbit = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(tb),
2566                                                     "user-data"));
2567
2568     if (newstate)
2569         newflags = fs->filter_flags | flagbit;
2570     else
2571         newflags = fs->filter_flags & ~flagbit;
2572
2573     if (fs->filter_flags != newflags) {
2574         fs->filter_flags = newflags;
2575         unifontsel_setup_familylist(fs);
2576     }
2577 }
2578
2579 static void unifontsel_add_entry(void *ctx, const char *realfontname,
2580                                  const char *family, const char *charset,
2581                                  const char *style, const char *stylekey,
2582                                  int size, int flags,
2583                                  const struct unifont_vtable *fontclass)
2584 {
2585     unifontsel_internal *fs = (unifontsel_internal *)ctx;
2586     fontinfo *info;
2587     int totalsize;
2588     char *p;
2589
2590     totalsize = sizeof(fontinfo) + strlen(realfontname) +
2591         (family ? strlen(family) : 0) + (charset ? strlen(charset) : 0) +
2592         (style ? strlen(style) : 0) + (stylekey ? strlen(stylekey) : 0) + 10;
2593     info = (fontinfo *)smalloc(totalsize);
2594     info->fontclass = fontclass;
2595     p = (char *)info + sizeof(fontinfo);
2596     info->realname = p;
2597     strcpy(p, realfontname);
2598     p += 1+strlen(p);
2599     if (family) {
2600         info->family = p;
2601         strcpy(p, family);
2602         p += 1+strlen(p);
2603     } else
2604         info->family = NULL;
2605     if (charset) {
2606         info->charset = p;
2607         strcpy(p, charset);
2608         p += 1+strlen(p);
2609     } else
2610         info->charset = NULL;
2611     if (style) {
2612         info->style = p;
2613         strcpy(p, style);
2614         p += 1+strlen(p);
2615     } else
2616         info->style = NULL;
2617     if (stylekey) {
2618         info->stylekey = p;
2619         strcpy(p, stylekey);
2620         p += 1+strlen(p);
2621     } else
2622         info->stylekey = NULL;
2623     assert(p - (char *)info <= totalsize);
2624     info->size = size;
2625     info->flags = flags;
2626     info->index = count234(fs->fonts_by_selorder);
2627
2628     /*
2629      * It's just conceivable that a misbehaving font enumerator
2630      * might tell us about the same font real name more than once,
2631      * in which case we should silently drop the new one.
2632      */
2633     if (add234(fs->fonts_by_realname, info) != info) {
2634         sfree(info);
2635         return;
2636     }
2637     /*
2638      * However, we should never get a duplicate key in the
2639      * selorder tree, because the index field carefully
2640      * disambiguates otherwise identical records.
2641      */
2642     add234(fs->fonts_by_selorder, info);
2643 }
2644
2645 static fontinfo *update_for_intended_size(unifontsel_internal *fs,
2646                                           fontinfo *info)
2647 {
2648     fontinfo info2, *below, *above;
2649     int pos;
2650
2651     /*
2652      * Copy the info structure. This doesn't copy its dynamic
2653      * string fields, but that's unimportant because all we're
2654      * going to do is to adjust the size field and use it in one
2655      * tree search.
2656      */
2657     info2 = *info;
2658     info2.size = fs->intendedsize;
2659
2660     /*
2661      * Search in the tree to find the fontinfo structure which
2662      * best approximates the size the user last requested.
2663      */
2664     below = findrelpos234(fs->fonts_by_selorder, &info2, NULL,
2665                           REL234_LE, &pos);
2666     if (!below)
2667         pos = -1;
2668     above = index234(fs->fonts_by_selorder, pos+1);
2669
2670     /*
2671      * See if we've found it exactly, which is an easy special
2672      * case. If we have, it'll be in `below' and not `above',
2673      * because we did a REL234_LE rather than REL234_LT search.
2674      */
2675     if (below && !fontinfo_selorder_compare(&info2, below))
2676         return below;
2677
2678     /*
2679      * Now we've either found two suitable fonts, one smaller and
2680      * one larger, or we're at one or other extreme end of the
2681      * scale. Find out which, by NULLing out either of below and
2682      * above if it differs from this one in any respect but size
2683      * (and the disambiguating index field). Bear in mind, also,
2684      * that either one might _already_ be NULL if we're at the
2685      * extreme ends of the font list.
2686      */
2687     if (below) {
2688         info2.size = below->size;
2689         info2.index = below->index;
2690         if (fontinfo_selorder_compare(&info2, below))
2691             below = NULL;
2692     }
2693     if (above) {
2694         info2.size = above->size;
2695         info2.index = above->index;
2696         if (fontinfo_selorder_compare(&info2, above))
2697             above = NULL;
2698     }
2699
2700     /*
2701      * Now return whichever of above and below is non-NULL, if
2702      * that's unambiguous.
2703      */
2704     if (!above)
2705         return below;
2706     if (!below)
2707         return above;
2708
2709     /*
2710      * And now we really do have to make a choice about whether to
2711      * round up or down. We'll do it by rounding to nearest,
2712      * breaking ties by rounding up.
2713      */
2714     if (above->size - fs->intendedsize <= fs->intendedsize - below->size)
2715         return above;
2716     else
2717         return below;
2718 }
2719
2720 static void family_changed(GtkTreeSelection *treeselection, gpointer data)
2721 {
2722     unifontsel_internal *fs = (unifontsel_internal *)data;
2723     GtkTreeModel *treemodel;
2724     GtkTreeIter treeiter;
2725     int minval;
2726     fontinfo *info;
2727
2728     if (fs->inhibit_response)          /* we made this change ourselves */
2729         return;
2730
2731     if (!gtk_tree_selection_get_selected(treeselection, &treemodel, &treeiter))
2732         return;
2733
2734     gtk_tree_model_get(treemodel, &treeiter, 1, &minval, -1);
2735     info = (fontinfo *)index234(fs->fonts_by_selorder, minval);
2736     info = update_for_intended_size(fs, info);
2737     if (!info)
2738         return; /* _shouldn't_ happen unless font list is completely funted */
2739     if (!info->size)
2740         fs->selsize = fs->intendedsize;   /* font is scalable */
2741     unifontsel_select_font(fs, info, info->size ? info->size : fs->selsize,
2742                            1, FALSE);
2743 }
2744
2745 static void style_changed(GtkTreeSelection *treeselection, gpointer data)
2746 {
2747     unifontsel_internal *fs = (unifontsel_internal *)data;
2748     GtkTreeModel *treemodel;
2749     GtkTreeIter treeiter;
2750     int minval;
2751     fontinfo *info;
2752
2753     if (fs->inhibit_response)          /* we made this change ourselves */
2754         return;
2755
2756     if (!gtk_tree_selection_get_selected(treeselection, &treemodel, &treeiter))
2757         return;
2758
2759     gtk_tree_model_get(treemodel, &treeiter, 1, &minval, -1);
2760     if (minval < 0)
2761         return;                    /* somehow a charset heading got clicked */
2762     info = (fontinfo *)index234(fs->fonts_by_selorder, minval);
2763     info = update_for_intended_size(fs, info);
2764     if (!info)
2765         return; /* _shouldn't_ happen unless font list is completely funted */
2766     if (!info->size)
2767         fs->selsize = fs->intendedsize;   /* font is scalable */
2768     unifontsel_select_font(fs, info, info->size ? info->size : fs->selsize,
2769                            2, FALSE);
2770 }
2771
2772 static void size_changed(GtkTreeSelection *treeselection, gpointer data)
2773 {
2774     unifontsel_internal *fs = (unifontsel_internal *)data;
2775     GtkTreeModel *treemodel;
2776     GtkTreeIter treeiter;
2777     int minval, size;
2778     fontinfo *info;
2779
2780     if (fs->inhibit_response)          /* we made this change ourselves */
2781         return;
2782
2783     if (!gtk_tree_selection_get_selected(treeselection, &treemodel, &treeiter))
2784         return;
2785
2786     gtk_tree_model_get(treemodel, &treeiter, 1, &minval, 2, &size, -1);
2787     info = (fontinfo *)index234(fs->fonts_by_selorder, minval);
2788     unifontsel_select_font(fs, info, info->size ? info->size : size, 3, TRUE);
2789 }
2790
2791 static void size_entry_changed(GtkEditable *ed, gpointer data)
2792 {
2793     unifontsel_internal *fs = (unifontsel_internal *)data;
2794     const char *text;
2795     int size;
2796
2797     if (fs->inhibit_response)          /* we made this change ourselves */
2798         return;
2799
2800     text = gtk_entry_get_text(GTK_ENTRY(ed));
2801     size = atoi(text);
2802
2803     if (size > 0) {
2804         assert(fs->selected->size == 0);
2805         unifontsel_select_font(fs, fs->selected, size, 3, TRUE);
2806     }
2807 }
2808
2809 static void alias_resolve(GtkTreeView *treeview, GtkTreePath *path,
2810                           GtkTreeViewColumn *column, gpointer data)
2811 {
2812     unifontsel_internal *fs = (unifontsel_internal *)data;
2813     GtkTreeIter iter;
2814     int minval, newsize;
2815     fontinfo *info, *newinfo;
2816     char *newname;
2817
2818     if (fs->inhibit_response)          /* we made this change ourselves */
2819         return;
2820
2821     gtk_tree_model_get_iter(GTK_TREE_MODEL(fs->family_model), &iter, path);
2822     gtk_tree_model_get(GTK_TREE_MODEL(fs->family_model), &iter, 1,&minval, -1);
2823     info = (fontinfo *)index234(fs->fonts_by_selorder, minval);
2824     if (info) {
2825         int flags;
2826         struct fontinfo_realname_find f;
2827
2828         newname = info->fontclass->canonify_fontname
2829             (GTK_WIDGET(fs->u.window), info->realname, &newsize, &flags, TRUE);
2830
2831         f.realname = newname;
2832         f.flags = flags;
2833         newinfo = find234(fs->fonts_by_realname, &f, fontinfo_realname_find);
2834
2835         sfree(newname);
2836         if (!newinfo)
2837             return;                    /* font name not in our index */
2838         if (newinfo == info)
2839             return;   /* didn't change under canonification => not an alias */
2840         unifontsel_select_font(fs, newinfo,
2841                                newinfo->size ? newinfo->size : newsize,
2842                                1, TRUE);
2843     }
2844 }
2845
2846 #if GTK_CHECK_VERSION(3,0,0)
2847 static gint unifontsel_draw_area(GtkWidget *widget, cairo_t *cr, gpointer data)
2848 {
2849     unifontsel_internal *fs = (unifontsel_internal *)data;
2850     unifont_drawctx dctx;
2851
2852     dctx.type = DRAWTYPE_CAIRO;
2853     dctx.u.cairo.widget = widget;
2854     dctx.u.cairo.cr = cr;
2855     unifontsel_draw_preview_text_inner(&dctx, fs);
2856
2857     return TRUE;
2858 }
2859 #else
2860 static gint unifontsel_expose_area(GtkWidget *widget, GdkEventExpose *event,
2861                                    gpointer data)
2862 {
2863     unifontsel_internal *fs = (unifontsel_internal *)data;
2864
2865 #ifndef NO_BACKING_PIXMAPS
2866     if (fs->preview_pixmap) {
2867         gdk_draw_pixmap(gtk_widget_get_window(widget),
2868                         (gtk_widget_get_style(widget)->fg_gc
2869                          [gtk_widget_get_state(widget)]),
2870                         fs->preview_pixmap,
2871                         event->area.x, event->area.y,
2872                         event->area.x, event->area.y,
2873                         event->area.width, event->area.height);
2874     }
2875 #else
2876     unifontsel_draw_preview_text(fs);
2877 #endif
2878
2879     return TRUE;
2880 }
2881 #endif
2882
2883 static gint unifontsel_configure_area(GtkWidget *widget,
2884                                       GdkEventConfigure *event, gpointer data)
2885 {
2886 #ifndef NO_BACKING_PIXMAPS
2887     unifontsel_internal *fs = (unifontsel_internal *)data;
2888     int ox, oy, nx, ny, x, y;
2889
2890     /*
2891      * Enlarge the pixmap, but never shrink it.
2892      */
2893     ox = fs->preview_width;
2894     oy = fs->preview_height;
2895     x = event->width;
2896     y = event->height;
2897     if (x > ox || y > oy) {
2898         if (fs->preview_pixmap)
2899             gdk_pixmap_unref(fs->preview_pixmap);
2900         
2901         nx = (x > ox ? x : ox);
2902         ny = (y > oy ? y : oy);
2903         fs->preview_pixmap = gdk_pixmap_new(gtk_widget_get_window(widget),
2904                                             nx, ny, -1);
2905         fs->preview_width = nx;
2906         fs->preview_height = ny;
2907
2908         unifontsel_draw_preview_text(fs);
2909     }
2910 #endif
2911
2912     gdk_window_invalidate_rect(gtk_widget_get_window(widget), NULL, FALSE);
2913
2914     return TRUE;
2915 }
2916
2917 unifontsel *unifontsel_new(const char *wintitle)
2918 {
2919     unifontsel_internal *fs = snew(unifontsel_internal);
2920     GtkWidget *table, *label, *w, *ww, *scroll;
2921     GtkListStore *model;
2922     GtkTreeViewColumn *column;
2923     int lists_height, preview_height, font_width, style_width, size_width;
2924     int i;
2925
2926     fs->inhibit_response = FALSE;
2927     fs->selected = NULL;
2928
2929     {
2930         /*
2931          * Invent some magic size constants.
2932          */
2933         GtkRequisition req;
2934         label = gtk_label_new("Quite Long Font Name (Foundry)");
2935         gtk_widget_size_request(label, &req);
2936         font_width = req.width;
2937         lists_height = 14 * req.height;
2938         preview_height = 5 * req.height;
2939         gtk_label_set_text(GTK_LABEL(label), "Italic Extra Condensed");
2940         gtk_widget_size_request(label, &req);
2941         style_width = req.width;
2942         gtk_label_set_text(GTK_LABEL(label), "48000");
2943         gtk_widget_size_request(label, &req);
2944         size_width = req.width;
2945         g_object_ref_sink(G_OBJECT(label));
2946 #if GTK_CHECK_VERSION(2,10,0)
2947         g_object_unref(label);
2948 #endif
2949     }
2950
2951     /*
2952      * Create the dialog box and initialise the user-visible
2953      * fields in the returned structure.
2954      */
2955     fs->u.user_data = NULL;
2956     fs->u.window = GTK_WINDOW(gtk_dialog_new());
2957     gtk_window_set_title(fs->u.window, wintitle);
2958     fs->u.cancel_button = gtk_dialog_add_button
2959         (GTK_DIALOG(fs->u.window), GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL);
2960     fs->u.ok_button = gtk_dialog_add_button
2961         (GTK_DIALOG(fs->u.window), GTK_STOCK_OK, GTK_RESPONSE_OK);
2962     gtk_widget_grab_default(fs->u.ok_button);
2963
2964     /*
2965      * Now set up the internal fields, including in particular all
2966      * the controls that actually allow the user to select fonts.
2967      */
2968     table = gtk_table_new(8, 3, FALSE);
2969     gtk_widget_show(table);
2970     gtk_table_set_col_spacings(GTK_TABLE(table), 8);
2971 #if GTK_CHECK_VERSION(2,4,0)
2972     /* GtkAlignment seems to be the simplest way to put padding round things */
2973     w = gtk_alignment_new(0, 0, 1, 1);
2974     gtk_alignment_set_padding(GTK_ALIGNMENT(w), 8, 8, 8, 8);
2975     gtk_container_add(GTK_CONTAINER(w), table);
2976     gtk_widget_show(w);
2977 #else
2978     w = table;
2979 #endif
2980     gtk_box_pack_start(GTK_BOX(gtk_dialog_get_content_area
2981                                (GTK_DIALOG(fs->u.window))),
2982                        w, TRUE, TRUE, 0);
2983
2984     label = gtk_label_new_with_mnemonic("_Font:");
2985     gtk_widget_show(label);
2986     gtk_misc_set_alignment(GTK_MISC(label), 0.0, 0.0);
2987     gtk_table_attach(GTK_TABLE(table), label, 0, 1, 0, 1, GTK_FILL, 0, 0, 0);
2988
2989     /*
2990      * The Font list box displays only a string, but additionally
2991      * stores two integers which give the limits within the
2992      * tree234 of the font entries covered by this list entry.
2993      */
2994     model = gtk_list_store_new(3, G_TYPE_STRING, G_TYPE_INT, G_TYPE_INT);
2995     w = gtk_tree_view_new_with_model(GTK_TREE_MODEL(model));
2996     gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(w), FALSE);
2997     gtk_label_set_mnemonic_widget(GTK_LABEL(label), w);
2998     gtk_widget_show(w);
2999     column = gtk_tree_view_column_new_with_attributes
3000         ("Font", gtk_cell_renderer_text_new(),
3001          "text", 0, (char *)NULL);
3002     gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_AUTOSIZE);
3003     gtk_tree_view_append_column(GTK_TREE_VIEW(w), column);
3004     g_signal_connect(G_OBJECT(gtk_tree_view_get_selection(GTK_TREE_VIEW(w))),
3005                      "changed", G_CALLBACK(family_changed), fs);
3006     g_signal_connect(G_OBJECT(w), "row-activated",
3007                      G_CALLBACK(alias_resolve), fs);
3008
3009     scroll = gtk_scrolled_window_new(NULL, NULL);
3010     gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(scroll),
3011                                         GTK_SHADOW_IN);
3012     gtk_container_add(GTK_CONTAINER(scroll), w);
3013     gtk_widget_show(scroll);
3014     gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scroll),
3015                                    GTK_POLICY_AUTOMATIC, GTK_POLICY_ALWAYS);
3016     gtk_widget_set_size_request(scroll, font_width, lists_height);
3017     gtk_table_attach(GTK_TABLE(table), scroll, 0, 1, 1, 3, GTK_FILL,
3018                      GTK_EXPAND | GTK_FILL, 0, 0);
3019     fs->family_model = model;
3020     fs->family_list = w;
3021
3022     label = gtk_label_new_with_mnemonic("_Style:");
3023     gtk_widget_show(label);
3024     gtk_misc_set_alignment(GTK_MISC(label), 0.0, 0.0);
3025     gtk_table_attach(GTK_TABLE(table), label, 1, 2, 0, 1, GTK_FILL, 0, 0, 0);
3026
3027     /*
3028      * The Style list box can contain insensitive elements
3029      * (character set headings for server-side fonts), so we add
3030      * an extra column to the list store to hold that information.
3031      */
3032     model = gtk_list_store_new(4, G_TYPE_STRING, G_TYPE_INT, G_TYPE_INT,
3033                                G_TYPE_BOOLEAN);
3034     w = gtk_tree_view_new_with_model(GTK_TREE_MODEL(model));
3035     gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(w), FALSE);
3036     gtk_label_set_mnemonic_widget(GTK_LABEL(label), w);
3037     gtk_widget_show(w);
3038     column = gtk_tree_view_column_new_with_attributes
3039         ("Style", gtk_cell_renderer_text_new(),
3040          "text", 0, "sensitive", 3, (char *)NULL);
3041     gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_AUTOSIZE);
3042     gtk_tree_view_append_column(GTK_TREE_VIEW(w), column);
3043     g_signal_connect(G_OBJECT(gtk_tree_view_get_selection(GTK_TREE_VIEW(w))),
3044                      "changed", G_CALLBACK(style_changed), 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, style_width, lists_height);
3054     gtk_table_attach(GTK_TABLE(table), scroll, 1, 2, 1, 3, GTK_FILL,
3055                      GTK_EXPAND | GTK_FILL, 0, 0);
3056     fs->style_model = model;
3057     fs->style_list = w;
3058
3059     label = gtk_label_new_with_mnemonic("Si_ze:");
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, 2, 3, 0, 1, GTK_FILL, 0, 0, 0);
3063
3064     /*
3065      * The Size label attaches primarily to a text input box so
3066      * that the user can select a size of their choice. The list
3067      * of available sizes is secondary.
3068      */
3069     fs->size_entry = w = gtk_entry_new();
3070     gtk_label_set_mnemonic_widget(GTK_LABEL(label), w);
3071     gtk_widget_set_size_request(w, size_width, -1);
3072     gtk_widget_show(w);
3073     gtk_table_attach(GTK_TABLE(table), w, 2, 3, 1, 2, GTK_FILL, 0, 0, 0);
3074     g_signal_connect(G_OBJECT(w), "changed", G_CALLBACK(size_entry_changed),
3075                      fs);
3076
3077     model = gtk_list_store_new(3, G_TYPE_STRING, G_TYPE_INT, G_TYPE_INT);
3078     w = gtk_tree_view_new_with_model(GTK_TREE_MODEL(model));
3079     gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(w), FALSE);
3080     gtk_widget_show(w);
3081     column = gtk_tree_view_column_new_with_attributes
3082         ("Size", gtk_cell_renderer_text_new(),
3083          "text", 0, (char *)NULL);
3084     gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_AUTOSIZE);
3085     gtk_tree_view_append_column(GTK_TREE_VIEW(w), column);
3086     g_signal_connect(G_OBJECT(gtk_tree_view_get_selection(GTK_TREE_VIEW(w))),
3087                      "changed", G_CALLBACK(size_changed), fs);
3088
3089     scroll = gtk_scrolled_window_new(NULL, NULL);
3090     gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(scroll),
3091                                         GTK_SHADOW_IN);
3092     gtk_container_add(GTK_CONTAINER(scroll), w);
3093     gtk_widget_show(scroll);
3094     gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scroll),
3095                                    GTK_POLICY_AUTOMATIC, GTK_POLICY_ALWAYS);
3096     gtk_table_attach(GTK_TABLE(table), scroll, 2, 3, 2, 3, GTK_FILL,
3097                      GTK_EXPAND | GTK_FILL, 0, 0);
3098     fs->size_model = model;
3099     fs->size_list = w;
3100
3101     /*
3102      * Preview widget.
3103      */
3104     fs->preview_area = gtk_drawing_area_new();
3105 #ifndef NO_BACKING_PIXMAPS
3106     fs->preview_pixmap = NULL;
3107 #endif
3108     fs->preview_width = 0;
3109     fs->preview_height = 0;
3110     fs->preview_fg.pixel = fs->preview_bg.pixel = 0;
3111     fs->preview_fg.red = fs->preview_fg.green = fs->preview_fg.blue = 0x0000;
3112     fs->preview_bg.red = fs->preview_bg.green = fs->preview_bg.blue = 0xFFFF;
3113 #if !GTK_CHECK_VERSION(3,0,0)
3114     gdk_colormap_alloc_color(gdk_colormap_get_system(), &fs->preview_fg,
3115                              FALSE, FALSE);
3116     gdk_colormap_alloc_color(gdk_colormap_get_system(), &fs->preview_bg,
3117                              FALSE, FALSE);
3118 #endif
3119 #if GTK_CHECK_VERSION(3,0,0)
3120     g_signal_connect(G_OBJECT(fs->preview_area), "draw",
3121                      G_CALLBACK(unifontsel_draw_area), fs);
3122 #else
3123     g_signal_connect(G_OBJECT(fs->preview_area), "expose_event",
3124                      G_CALLBACK(unifontsel_expose_area), fs);
3125 #endif
3126     g_signal_connect(G_OBJECT(fs->preview_area), "configure_event",
3127                      G_CALLBACK(unifontsel_configure_area), fs);
3128     gtk_widget_set_size_request(fs->preview_area, 1, preview_height);
3129     gtk_widget_show(fs->preview_area);
3130     ww = fs->preview_area;
3131     w = gtk_frame_new(NULL);
3132     gtk_container_add(GTK_CONTAINER(w), ww);
3133     gtk_widget_show(w);
3134 #if GTK_CHECK_VERSION(2,4,0)
3135     ww = w;
3136     /* GtkAlignment seems to be the simplest way to put padding round things */
3137     w = gtk_alignment_new(0, 0, 1, 1);
3138     gtk_alignment_set_padding(GTK_ALIGNMENT(w), 8, 8, 8, 8);
3139     gtk_container_add(GTK_CONTAINER(w), ww);
3140     gtk_widget_show(w);
3141 #endif
3142     ww = w;
3143     w = gtk_frame_new("Preview of font");
3144     gtk_container_add(GTK_CONTAINER(w), ww);
3145     gtk_widget_show(w);
3146     gtk_table_attach(GTK_TABLE(table), w, 0, 3, 3, 4,
3147                      GTK_EXPAND | GTK_FILL, GTK_EXPAND | GTK_FILL, 0, 8);
3148
3149     /*
3150      * We only provide the checkboxes for client- and server-side
3151      * fonts if we have the X11 back end available, because that's the
3152      * only situation in which more than one class of font is
3153      * available anyway.
3154      */
3155     fs->n_filter_buttons = 0;
3156 #ifndef NOT_X_WINDOWS
3157     w = gtk_check_button_new_with_label("Show client-side fonts");
3158     g_object_set_data(G_OBJECT(w), "user-data",
3159                       GINT_TO_POINTER(FONTFLAG_CLIENTSIDE));
3160     g_signal_connect(G_OBJECT(w), "toggled",
3161                      G_CALLBACK(unifontsel_button_toggled), fs);
3162     gtk_widget_show(w);
3163     fs->filter_buttons[fs->n_filter_buttons++] = w;
3164     gtk_table_attach(GTK_TABLE(table), w, 0, 3, 4, 5, GTK_FILL, 0, 0, 0);
3165     w = gtk_check_button_new_with_label("Show server-side fonts");
3166     g_object_set_data(G_OBJECT(w), "user-data",
3167                       GINT_TO_POINTER(FONTFLAG_SERVERSIDE));
3168     g_signal_connect(G_OBJECT(w), "toggled",
3169                      G_CALLBACK(unifontsel_button_toggled), fs);
3170     gtk_widget_show(w);
3171     fs->filter_buttons[fs->n_filter_buttons++] = w;
3172     gtk_table_attach(GTK_TABLE(table), w, 0, 3, 5, 6, GTK_FILL, 0, 0, 0);
3173     w = gtk_check_button_new_with_label("Show server-side font aliases");
3174     g_object_set_data(G_OBJECT(w), "user-data",
3175                       GINT_TO_POINTER(FONTFLAG_SERVERALIAS));
3176     g_signal_connect(G_OBJECT(w), "toggled",
3177                      G_CALLBACK(unifontsel_button_toggled), fs);
3178     gtk_widget_show(w);
3179     fs->filter_buttons[fs->n_filter_buttons++] = w;
3180     gtk_table_attach(GTK_TABLE(table), w, 0, 3, 6, 7, GTK_FILL, 0, 0, 0);
3181 #endif
3182     w = gtk_check_button_new_with_label("Show non-monospaced fonts");
3183     g_object_set_data(G_OBJECT(w), "user-data",
3184                       GINT_TO_POINTER(FONTFLAG_NONMONOSPACED));
3185     g_signal_connect(G_OBJECT(w), "toggled",
3186                      G_CALLBACK(unifontsel_button_toggled), fs);
3187     gtk_widget_show(w);
3188     fs->filter_buttons[fs->n_filter_buttons++] = w;
3189     gtk_table_attach(GTK_TABLE(table), w, 0, 3, 7, 8, GTK_FILL, 0, 0, 0);
3190
3191     assert(fs->n_filter_buttons <= lenof(fs->filter_buttons));
3192     fs->filter_flags = FONTFLAG_CLIENTSIDE | FONTFLAG_SERVERSIDE |
3193         FONTFLAG_SERVERALIAS;
3194     unifontsel_set_filter_buttons(fs);
3195
3196     /*
3197      * Go and find all the font names, and set up our master font
3198      * list.
3199      */
3200     fs->fonts_by_realname = newtree234(fontinfo_realname_compare);
3201     fs->fonts_by_selorder = newtree234(fontinfo_selorder_compare);
3202     for (i = 0; i < lenof(unifont_types); i++)
3203         unifont_types[i]->enum_fonts(GTK_WIDGET(fs->u.window),
3204                                      unifontsel_add_entry, fs);
3205
3206     /*
3207      * And set up the initial font names list.
3208      */
3209     unifontsel_setup_familylist(fs);
3210
3211     fs->selsize = fs->intendedsize = 13;   /* random default */
3212     gtk_widget_set_sensitive(fs->u.ok_button, FALSE);
3213
3214     return (unifontsel *)fs;
3215 }
3216
3217 void unifontsel_destroy(unifontsel *fontsel)
3218 {
3219     unifontsel_internal *fs = (unifontsel_internal *)fontsel;
3220     fontinfo *info;
3221
3222 #ifndef NO_BACKING_PIXMAPS
3223     if (fs->preview_pixmap)
3224         gdk_pixmap_unref(fs->preview_pixmap);
3225 #endif
3226
3227     freetree234(fs->fonts_by_selorder);
3228     while ((info = delpos234(fs->fonts_by_realname, 0)) != NULL)
3229         sfree(info);
3230     freetree234(fs->fonts_by_realname);
3231
3232     gtk_widget_destroy(GTK_WIDGET(fs->u.window));
3233     sfree(fs);
3234 }
3235
3236 void unifontsel_set_name(unifontsel *fontsel, const char *fontname)
3237 {
3238     unifontsel_internal *fs = (unifontsel_internal *)fontsel;
3239     int i, start, end, size, flags;
3240     const char *fontname2 = NULL;
3241     fontinfo *info;
3242
3243     /*
3244      * Provide a default if given an empty or null font name.
3245      */
3246     if (!fontname || !*fontname)
3247         fontname = "server:fixed";
3248
3249     /*
3250      * Call the canonify_fontname function.
3251      */
3252     fontname = unifont_do_prefix(fontname, &start, &end);
3253     for (i = start; i < end; i++) {
3254         fontname2 = unifont_types[i]->canonify_fontname
3255             (GTK_WIDGET(fs->u.window), fontname, &size, &flags, FALSE);
3256         if (fontname2)
3257             break;
3258     }
3259     if (i == end)
3260         return;                        /* font name not recognised */
3261
3262     /*
3263      * Now look up the canonified font name in our index.
3264      */
3265     {
3266         struct fontinfo_realname_find f;
3267         f.realname = fontname2;
3268         f.flags = flags;
3269         info = find234(fs->fonts_by_realname, &f, fontinfo_realname_find);
3270     }
3271
3272     /*
3273      * If we've found the font, and its size field is either
3274      * correct or zero (the latter indicating a scalable font),
3275      * then we're done. Otherwise, try looking up the original
3276      * font name instead.
3277      */
3278     if (!info || (info->size != size && info->size != 0)) {
3279         struct fontinfo_realname_find f;
3280         f.realname = fontname;
3281         f.flags = flags;
3282
3283         info = find234(fs->fonts_by_realname, &f, fontinfo_realname_find);
3284         if (!info || info->size != size)
3285             return;                    /* font name not in our index */
3286     }
3287
3288     /*
3289      * Now we've got a fontinfo structure and a font size, so we
3290      * know everything we need to fill in all the fields in the
3291      * dialog.
3292      */
3293     unifontsel_select_font(fs, info, size, 0, TRUE);
3294 }
3295
3296 char *unifontsel_get_name(unifontsel *fontsel)
3297 {
3298     unifontsel_internal *fs = (unifontsel_internal *)fontsel;
3299     char *name;
3300
3301     if (!fs->selected)
3302         return NULL;
3303
3304     if (fs->selected->size == 0) {
3305         name = fs->selected->fontclass->scale_fontname
3306             (GTK_WIDGET(fs->u.window), fs->selected->realname, fs->selsize);
3307         if (name) {
3308             char *ret = dupcat(fs->selected->fontclass->prefix, ":",
3309                                name, NULL);
3310             sfree(name);
3311             return ret;
3312         }
3313     }
3314
3315     return dupcat(fs->selected->fontclass->prefix, ":",
3316                   fs->selected->realname, NULL);
3317 }
3318
3319 #endif /* GTK_CHECK_VERSION(2,0,0) */