]> asedeno.scripts.mit.edu Git - PuTTY.git/blob - unix/gtkfont.c
Aha, _that's_ why there was some unexplained space on the RHS of the
[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 #include <gdk/gdkkeysyms.h>
17 #include <gdk/gdkx.h>
18 #include <X11/Xlib.h>
19 #include <X11/Xutil.h>
20 #include <X11/Xatom.h>
21
22 #include "putty.h"
23 #include "gtkfont.h"
24 #include "tree234.h"
25
26 /*
27  * Future work:
28  * 
29  *  - all the GDK font functions used in the x11font subclass are
30  *    deprecated, so one day they may go away. When this happens -
31  *    or before, if I'm feeling proactive - it oughtn't to be too
32  *    difficult in principle to convert the whole thing to use
33  *    actual Xlib font calls.
34  * 
35  *  - it would be nice if we could move the processing of
36  *    underline and VT100 double width into this module, so that
37  *    instead of using the ghastly pixmap-stretching technique
38  *    everywhere we could tell the Pango backend to scale its
39  *    fonts to double size properly and at full resolution.
40  *    However, this requires me to learn how to make Pango stretch
41  *    text to an arbitrary aspect ratio (for double-width only
42  *    text, which perversely is harder than DW+DH), and right now
43  *    I haven't the energy.
44  */
45
46 /*
47  * Ad-hoc vtable mechanism to allow font structures to be
48  * polymorphic.
49  * 
50  * Any instance of `unifont' used in the vtable functions will
51  * actually be the first element of a larger structure containing
52  * data specific to the subtype. This is permitted by the ISO C
53  * provision that one may safely cast between a pointer to a
54  * structure and a pointer to its first element.
55  */
56
57 #define FONTFLAG_CLIENTSIDE    0x0001
58 #define FONTFLAG_SERVERSIDE    0x0002
59 #define FONTFLAG_SERVERALIAS   0x0004
60 #define FONTFLAG_NONMONOSPACED 0x0008
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     void (*destroy)(unifont *font);
75     void (*draw_text)(GdkDrawable *target, GdkGC *gc, unifont *font,
76                       int x, int y, const char *string, int len, int wide,
77                       int bold, int cellwidth);
78     void (*enum_fonts)(GtkWidget *widget,
79                        fontsel_add_entry callback, void *callback_ctx);
80     char *(*canonify_fontname)(GtkWidget *widget, const char *name, int *size,
81                                int resolve_aliases);
82     char *(*scale_fontname)(GtkWidget *widget, const char *name, int size);
83
84     /*
85      * `Static data members' of the `class'.
86      */
87     const char *prefix;
88 };
89
90 /* ----------------------------------------------------------------------
91  * GDK-based X11 font implementation.
92  */
93
94 static void x11font_draw_text(GdkDrawable *target, GdkGC *gc, unifont *font,
95                               int x, int y, const char *string, int len,
96                               int wide, int bold, int cellwidth);
97 static unifont *x11font_create(GtkWidget *widget, const char *name,
98                                int wide, int bold,
99                                int shadowoffset, int shadowalways);
100 static void x11font_destroy(unifont *font);
101 static void x11font_enum_fonts(GtkWidget *widget,
102                                fontsel_add_entry callback, void *callback_ctx);
103 static char *x11font_canonify_fontname(GtkWidget *widget, const char *name,
104                                        int *size, int resolve_aliases);
105 static char *x11font_scale_fontname(GtkWidget *widget, const char *name,
106                                     int size);
107
108 struct x11font {
109     struct unifont u;
110     /*
111      * Actual font objects. We store a number of these, for
112      * automatically guessed bold and wide variants.
113      * 
114      * The parallel array `allocated' indicates whether we've
115      * tried to fetch a subfont already (thus distinguishing NULL
116      * because we haven't tried yet from NULL because we tried and
117      * failed, so that we don't keep trying and failing
118      * subsequently).
119      */
120     GdkFont *fonts[4];
121     int allocated[4];
122     /*
123      * `sixteen_bit' is true iff the font object is indexed by
124      * values larger than a byte. That is, this flag tells us
125      * whether we use gdk_draw_text_wc() or gdk_draw_text().
126      */
127     int sixteen_bit;
128     /*
129      * `variable' is true iff the font is non-fixed-pitch. This
130      * enables some code which takes greater care over character
131      * positioning during text drawing.
132      */
133     int variable;
134     /*
135      * Data passed in to unifont_create().
136      */
137     int wide, bold, shadowoffset, shadowalways;
138 };
139
140 static const struct unifont_vtable x11font_vtable = {
141     x11font_create,
142     x11font_destroy,
143     x11font_draw_text,
144     x11font_enum_fonts,
145     x11font_canonify_fontname,
146     x11font_scale_fontname,
147     "server"
148 };
149
150 char *x11_guess_derived_font_name(GdkFont *font, int bold, int wide)
151 {
152     XFontStruct *xfs = GDK_FONT_XFONT(font);
153     Display *disp = GDK_FONT_XDISPLAY(font);
154     Atom fontprop = XInternAtom(disp, "FONT", False);
155     unsigned long ret;
156     if (XGetFontProperty(xfs, fontprop, &ret)) {
157         char *name = XGetAtomName(disp, (Atom)ret);
158         if (name && name[0] == '-') {
159             char *strings[13];
160             char *dupname, *extrafree = NULL, *ret;
161             char *p, *q;
162             int nstr;
163
164             p = q = dupname = dupstr(name); /* skip initial minus */
165             nstr = 0;
166
167             while (*p && nstr < lenof(strings)) {
168                 if (*p == '-') {
169                     *p = '\0';
170                     strings[nstr++] = p+1;
171                 }
172                 p++;
173             }
174
175             if (nstr < lenof(strings))
176                 return NULL;           /* XLFD was malformed */
177
178             if (bold)
179                 strings[2] = "bold";
180
181             if (wide) {
182                 /* 4 is `wideness', which obviously may have changed. */
183                 /* 5 is additional style, which may be e.g. `ja' or `ko'. */
184                 strings[4] = strings[5] = "*";
185                 strings[11] = extrafree = dupprintf("%d", 2*atoi(strings[11]));
186             }
187
188             ret = dupcat("-", strings[ 0], "-", strings[ 1], "-", strings[ 2],
189                          "-", strings[ 3], "-", strings[ 4], "-", strings[ 5],
190                          "-", strings[ 6], "-", strings[ 7], "-", strings[ 8],
191                          "-", strings[ 9], "-", strings[10], "-", strings[11],
192                          "-", strings[12], NULL);
193             sfree(extrafree);
194             sfree(dupname);
195
196             return ret;
197         }
198     }
199     return NULL;
200 }
201
202 static int x11_font_width(GdkFont *font, int sixteen_bit)
203 {
204     if (sixteen_bit) {
205         XChar2b space;
206         space.byte1 = 0;
207         space.byte2 = '0';
208         return gdk_text_width(font, (const gchar *)&space, 2);
209     } else {
210         return gdk_char_width(font, '0');
211     }
212 }
213
214 static unifont *x11font_create(GtkWidget *widget, const char *name,
215                                int wide, int bold,
216                                int shadowoffset, int shadowalways)
217 {
218     struct x11font *xfont;
219     GdkFont *font;
220     XFontStruct *xfs;
221     Display *disp;
222     Atom charset_registry, charset_encoding, spacing;
223     unsigned long registry_ret, encoding_ret, spacing_ret;
224     int pubcs, realcs, sixteen_bit, variable;
225     int i;
226
227     font = gdk_font_load(name);
228     if (!font)
229         return NULL;
230
231     xfs = GDK_FONT_XFONT(font);
232     disp = GDK_FONT_XDISPLAY(font);
233
234     charset_registry = XInternAtom(disp, "CHARSET_REGISTRY", False);
235     charset_encoding = XInternAtom(disp, "CHARSET_ENCODING", False);
236
237     pubcs = realcs = CS_NONE;
238     sixteen_bit = FALSE;
239     variable = TRUE;
240
241     if (XGetFontProperty(xfs, charset_registry, &registry_ret) &&
242         XGetFontProperty(xfs, charset_encoding, &encoding_ret)) {
243         char *reg, *enc;
244         reg = XGetAtomName(disp, (Atom)registry_ret);
245         enc = XGetAtomName(disp, (Atom)encoding_ret);
246         if (reg && enc) {
247             char *encoding = dupcat(reg, "-", enc, NULL);
248             pubcs = realcs = charset_from_xenc(encoding);
249
250             /*
251              * iso10646-1 is the only wide font encoding we
252              * support. In this case, we expect clients to give us
253              * UTF-8, which this module must internally convert
254              * into 16-bit Unicode.
255              */
256             if (!strcasecmp(encoding, "iso10646-1")) {
257                 sixteen_bit = TRUE;
258                 pubcs = realcs = CS_UTF8;
259             }
260
261             /*
262              * Hack for X line-drawing characters: if the primary
263              * font is encoded as ISO-8859-1, and has valid glyphs
264              * in the first 32 char positions, it is assumed that
265              * those glyphs are the VT100 line-drawing character
266              * set.
267              * 
268              * Actually, we'll hack even harder by only checking
269              * position 0x19 (vertical line, VT100 linedrawing
270              * `x'). Then we can check it easily by seeing if the
271              * ascent and descent differ.
272              */
273             if (pubcs == CS_ISO8859_1) {
274                 int lb, rb, wid, asc, desc;
275                 gchar text[2];
276
277                 text[1] = '\0';
278                 text[0] = '\x12';
279                 gdk_string_extents(font, text, &lb, &rb, &wid, &asc, &desc);
280                 if (asc != desc)
281                     realcs = CS_ISO8859_1_X11;
282             }
283
284             sfree(encoding);
285         }
286     }
287
288     spacing = XInternAtom(disp, "SPACING", False);
289     if (XGetFontProperty(xfs, spacing, &spacing_ret)) {
290         char *spc;
291         spc = XGetAtomName(disp, (Atom)spacing_ret);
292
293         if (spc && strchr("CcMm", spc[0]))
294             variable = FALSE;
295     }
296
297     xfont = snew(struct x11font);
298     xfont->u.vt = &x11font_vtable;
299     xfont->u.width = x11_font_width(font, sixteen_bit);
300     xfont->u.ascent = font->ascent;
301     xfont->u.descent = font->descent;
302     xfont->u.height = xfont->u.ascent + xfont->u.descent;
303     xfont->u.public_charset = pubcs;
304     xfont->u.real_charset = realcs;
305     xfont->fonts[0] = font;
306     xfont->allocated[0] = TRUE;
307     xfont->sixteen_bit = sixteen_bit;
308     xfont->variable = variable;
309     xfont->wide = wide;
310     xfont->bold = bold;
311     xfont->shadowoffset = shadowoffset;
312     xfont->shadowalways = shadowalways;
313
314     for (i = 1; i < lenof(xfont->fonts); i++) {
315         xfont->fonts[i] = NULL;
316         xfont->allocated[i] = FALSE;
317     }
318
319     return (unifont *)xfont;
320 }
321
322 static void x11font_destroy(unifont *font)
323 {
324     struct x11font *xfont = (struct x11font *)font;
325     int i;
326
327     for (i = 0; i < lenof(xfont->fonts); i++)
328         if (xfont->fonts[i])
329             gdk_font_unref(xfont->fonts[i]);
330     sfree(font);
331 }
332
333 static void x11_alloc_subfont(struct x11font *xfont, int sfid)
334 {
335     char *derived_name = x11_guess_derived_font_name
336         (xfont->fonts[0], sfid & 1, !!(sfid & 2));
337     xfont->fonts[sfid] = gdk_font_load(derived_name);   /* may be NULL */
338     xfont->allocated[sfid] = TRUE;
339     sfree(derived_name);
340 }
341
342 static void x11font_really_draw_text(GdkDrawable *target, GdkFont *font,
343                                      GdkGC *gc, int x, int y,
344                                      const gchar *string, int clen, int nchars,
345                                      int shadowbold, int shadowoffset,
346                                      int fontvariable, int cellwidth)
347 {
348     int step = clen * nchars, nsteps = 1, centre = FALSE;
349
350     if (fontvariable) {
351         /*
352          * In a variable-pitch font, we draw one character at a
353          * time, and centre it in the character cell.
354          */
355         step = clen;
356         nsteps = nchars;
357         centre = TRUE;
358     }
359
360     while (nsteps-- > 0) {
361         int X = x;
362         if (centre)
363             X += (cellwidth - gdk_text_width(font, string, step)) / 2;
364
365         gdk_draw_text(target, font, gc, X, y, string, step);
366         if (shadowbold)
367             gdk_draw_text(target, font, gc, X + shadowoffset, y, string, step);
368
369         x += cellwidth;
370         string += step;
371     }
372 }
373
374 static void x11font_draw_text(GdkDrawable *target, GdkGC *gc, unifont *font,
375                               int x, int y, const char *string, int len,
376                               int wide, int bold, int cellwidth)
377 {
378     struct x11font *xfont = (struct x11font *)font;
379     int sfid;
380     int shadowbold = FALSE;
381     int mult = (wide ? 2 : 1);
382
383     wide -= xfont->wide;
384     bold -= xfont->bold;
385
386     /*
387      * Decide which subfont we're using, and whether we have to
388      * use shadow bold.
389      */
390     if (xfont->shadowalways && bold) {
391         shadowbold = TRUE;
392         bold = 0;
393     }
394     sfid = 2 * wide + bold;
395     if (!xfont->allocated[sfid])
396         x11_alloc_subfont(xfont, sfid);
397     if (bold && !xfont->fonts[sfid]) {
398         bold = 0;
399         shadowbold = TRUE;
400         sfid = 2 * wide + bold;
401         if (!xfont->allocated[sfid])
402             x11_alloc_subfont(xfont, sfid);
403     }
404
405     if (!xfont->fonts[sfid])
406         return;                        /* we've tried our best, but no luck */
407
408     if (xfont->sixteen_bit) {
409         /*
410          * This X font has 16-bit character indices, which means
411          * we expect our string to have been passed in UTF-8.
412          */
413         XChar2b *xcs;
414         wchar_t *wcs;
415         int nchars, maxchars, i;
416
417         /*
418          * Convert the input string to wide-character Unicode.
419          */
420         maxchars = 0;
421         for (i = 0; i < len; i++)
422             if ((unsigned char)string[i] <= 0x7F ||
423                 (unsigned char)string[i] >= 0xC0)
424                 maxchars++;
425         wcs = snewn(maxchars+1, wchar_t);
426         nchars = charset_to_unicode((char **)&string, &len, wcs, maxchars,
427                                     CS_UTF8, NULL, NULL, 0);
428         assert(nchars <= maxchars);
429         wcs[nchars] = L'\0';
430
431         xcs = snewn(nchars, XChar2b);
432         for (i = 0; i < nchars; i++) {
433             xcs[i].byte1 = wcs[i] >> 8;
434             xcs[i].byte2 = wcs[i];
435         }
436
437         x11font_really_draw_text(target, xfont->fonts[sfid], gc, x, y,
438                                  (gchar *)xcs, 2, nchars,
439                                  shadowbold, xfont->shadowoffset,
440                                  xfont->variable, cellwidth * mult);
441         sfree(xcs);
442         sfree(wcs);
443     } else {
444         x11font_really_draw_text(target, xfont->fonts[sfid], gc, x, y,
445                                  string, 1, len,
446                                  shadowbold, xfont->shadowoffset,
447                                  xfont->variable, cellwidth * mult);
448     }
449 }
450
451 static void x11font_enum_fonts(GtkWidget *widget,
452                                fontsel_add_entry callback, void *callback_ctx)
453 {
454     char **fontnames;
455     char *tmp = NULL;
456     int nnames, i, max, tmpsize;
457
458     max = 32768;
459     while (1) {
460         fontnames = XListFonts(GDK_DISPLAY(), "*", max, &nnames);
461         if (nnames >= max) {
462             XFreeFontNames(fontnames);
463             max *= 2;
464         } else
465             break;
466     }
467
468     tmpsize = 0;
469
470     for (i = 0; i < nnames; i++) {
471         if (fontnames[i][0] == '-') {
472             /*
473              * Dismember an XLFD and convert it into the format
474              * we'll be using in the font selector.
475              */
476             char *components[14];
477             char *p, *font, *style, *stylekey, *charset;
478             int j, weightkey, slantkey, setwidthkey;
479             int thistmpsize, fontsize, flags;
480
481             thistmpsize = 4 * strlen(fontnames[i]) + 256;
482             if (tmpsize < thistmpsize) {
483                 tmpsize = thistmpsize;
484                 tmp = sresize(tmp, tmpsize, char);
485             }
486             strcpy(tmp, fontnames[i]);
487
488             p = tmp;
489             for (j = 0; j < 14; j++) {
490                 if (*p)
491                     *p++ = '\0';
492                 components[j] = p;
493                 while (*p && *p != '-')
494                     p++;
495             }
496             *p++ = '\0';
497
498             /*
499              * Font name is made up of fields 0 and 1, in reverse
500              * order with parentheses. (This is what the GTK 1.2 X
501              * font selector does, and it seems to come out
502              * looking reasonably sensible.)
503              */
504             font = p;
505             p += 1 + sprintf(p, "%s (%s)", components[1], components[0]);
506
507             /*
508              * Charset is made up of fields 12 and 13.
509              */
510             charset = p;
511             p += 1 + sprintf(p, "%s-%s", components[12], components[13]);
512
513             /*
514              * Style is a mixture of quite a lot of the fields,
515              * with some strange formatting.
516              */
517             style = p;
518             p += sprintf(p, "%s", components[2][0] ? components[2] :
519                          "regular");
520             if (!g_strcasecmp(components[3], "i"))
521                 p += sprintf(p, " italic");
522             else if (!g_strcasecmp(components[3], "o"))
523                 p += sprintf(p, " oblique");
524             else if (!g_strcasecmp(components[3], "ri"))
525                 p += sprintf(p, " reverse italic");
526             else if (!g_strcasecmp(components[3], "ro"))
527                 p += sprintf(p, " reverse oblique");
528             else if (!g_strcasecmp(components[3], "ot"))
529                 p += sprintf(p, " other-slant");
530             if (components[4][0] && g_strcasecmp(components[4], "normal"))
531                 p += sprintf(p, " %s", components[4]);
532             if (!g_strcasecmp(components[10], "m"))
533                 p += sprintf(p, " [M]");
534             if (!g_strcasecmp(components[10], "c"))
535                 p += sprintf(p, " [C]");
536             if (components[5][0])
537                 p += sprintf(p, " %s", components[5]);
538
539             /*
540              * Style key is the same stuff as above, but with a
541              * couple of transformations done on it to make it
542              * sort more sensibly.
543              */
544             p++;
545             stylekey = p;
546             if (!g_strcasecmp(components[2], "medium") ||
547                 !g_strcasecmp(components[2], "regular") ||
548                 !g_strcasecmp(components[2], "normal") ||
549                 !g_strcasecmp(components[2], "book"))
550                 weightkey = 0;
551             else if (!g_strncasecmp(components[2], "demi", 4) ||
552                      !g_strncasecmp(components[2], "semi", 4))
553                 weightkey = 1;
554             else
555                 weightkey = 2;
556             if (!g_strcasecmp(components[3], "r"))
557                 slantkey = 0;
558             else if (!g_strncasecmp(components[3], "r", 1))
559                 slantkey = 2;
560             else
561                 slantkey = 1;
562             if (!g_strcasecmp(components[4], "normal"))
563                 setwidthkey = 0;
564             else
565                 setwidthkey = 1;
566
567             p += sprintf(p, "%04d%04d%s%04d%04d%s%04d%04d%s%04d%s%04d%s",
568                          weightkey,
569                          strlen(components[2]), components[2],
570                          slantkey,
571                          strlen(components[3]), components[3],
572                          setwidthkey,
573                          strlen(components[4]), components[4],
574                          strlen(components[10]), components[10],
575                          strlen(components[5]), components[5]);
576
577             assert(p - tmp < thistmpsize);
578
579             /*
580              * Size is in pixels, for our application, so we
581              * derive it directly from the pixel size field,
582              * number 6.
583              */
584             fontsize = atoi(components[6]);
585
586             /*
587              * Flags: we need to know whether this is a monospaced
588              * font, which we do by examining the spacing field
589              * again.
590              */
591             flags = FONTFLAG_SERVERSIDE;
592             if (!strchr("CcMm", components[10][0]))
593                 flags |= FONTFLAG_NONMONOSPACED;
594
595             /*
596              * Not sure why, but sometimes the X server will
597              * deliver dummy font types in which fontsize comes
598              * out as zero. Filter those out.
599              */
600             if (fontsize)
601                 callback(callback_ctx, fontnames[i], font, charset,
602                          style, stylekey, fontsize, flags, &x11font_vtable);
603         } else {
604             /*
605              * This isn't an XLFD, so it must be an alias.
606              * Transmit it with mostly null data.
607              * 
608              * It would be nice to work out if it's monospaced
609              * here, but at the moment I can't see that being
610              * anything but computationally hideous. Ah well.
611              */
612             callback(callback_ctx, fontnames[i], fontnames[i], NULL,
613                      NULL, NULL, 0, FONTFLAG_SERVERALIAS, &x11font_vtable);
614         }
615     }
616     XFreeFontNames(fontnames);
617 }
618
619 static char *x11font_canonify_fontname(GtkWidget *widget, const char *name,
620                                        int *size, int resolve_aliases)
621 {
622     /*
623      * When given an X11 font name to try to make sense of for a
624      * font selector, we must attempt to load it (to see if it
625      * exists), and then canonify it by extracting its FONT
626      * property, which should give its full XLFD even if what we
627      * originally had was a wildcard.
628      * 
629      * However, we must carefully avoid canonifying font
630      * _aliases_, unless specifically asked to, because the font
631      * selector treats them as worthwhile in their own right.
632      */
633     GdkFont *font = gdk_font_load(name);
634     XFontStruct *xfs;
635     Display *disp;
636     Atom fontprop, fontprop2;
637     unsigned long ret;
638
639     if (!font)
640         return NULL;                   /* didn't make sense to us, sorry */
641
642     gdk_font_ref(font);
643
644     xfs = GDK_FONT_XFONT(font);
645     disp = GDK_FONT_XDISPLAY(font);
646     fontprop = XInternAtom(disp, "FONT", False);
647
648     if (XGetFontProperty(xfs, fontprop, &ret)) {
649         char *newname = XGetAtomName(disp, (Atom)ret);
650         if (newname) {
651             unsigned long fsize = 12;
652
653             fontprop2 = XInternAtom(disp, "PIXEL_SIZE", False);
654             if (XGetFontProperty(xfs, fontprop2, &fsize) && fsize > 0) {
655                 *size = fsize;
656                 gdk_font_unref(font);
657                 return dupstr(name[0] == '-' || resolve_aliases ?
658                               newname : name);
659             }
660         }
661     }
662
663     gdk_font_unref(font);
664     return NULL;                       /* something went wrong */
665 }
666
667 static char *x11font_scale_fontname(GtkWidget *widget, const char *name,
668                                     int size)
669 {
670     return NULL;                       /* shan't */
671 }
672
673 /* ----------------------------------------------------------------------
674  * Pango font implementation.
675  */
676
677 static void pangofont_draw_text(GdkDrawable *target, GdkGC *gc, unifont *font,
678                                 int x, int y, const char *string, int len,
679                                 int wide, int bold, int cellwidth);
680 static unifont *pangofont_create(GtkWidget *widget, const char *name,
681                                  int wide, int bold,
682                                  int shadowoffset, int shadowalways);
683 static void pangofont_destroy(unifont *font);
684 static void pangofont_enum_fonts(GtkWidget *widget, fontsel_add_entry callback,
685                                  void *callback_ctx);
686 static char *pangofont_canonify_fontname(GtkWidget *widget, const char *name,
687                                          int *size, int resolve_aliases);
688 static char *pangofont_scale_fontname(GtkWidget *widget, const char *name,
689                                       int size);
690
691 struct pangofont {
692     struct unifont u;
693     /*
694      * Pango objects.
695      */
696     PangoFontDescription *desc;
697     PangoFontset *fset;
698     /*
699      * The containing widget.
700      */
701     GtkWidget *widget;
702     /*
703      * Data passed in to unifont_create().
704      */
705     int bold, shadowoffset, shadowalways;
706 };
707
708 static const struct unifont_vtable pangofont_vtable = {
709     pangofont_create,
710     pangofont_destroy,
711     pangofont_draw_text,
712     pangofont_enum_fonts,
713     pangofont_canonify_fontname,
714     pangofont_scale_fontname,
715     "client"
716 };
717
718 static unifont *pangofont_create(GtkWidget *widget, const char *name,
719                                  int wide, int bold,
720                                  int shadowoffset, int shadowalways)
721 {
722     struct pangofont *pfont;
723     PangoContext *ctx;
724 #ifndef PANGO_PRE_1POINT6
725     PangoFontMap *map;
726 #endif
727     PangoFontDescription *desc;
728     PangoFontset *fset;
729     PangoFontMetrics *metrics;
730
731     desc = pango_font_description_from_string(name);
732     if (!desc)
733         return NULL;
734     ctx = gtk_widget_get_pango_context(widget);
735     if (!ctx) {
736         pango_font_description_free(desc);
737         return NULL;
738     }
739 #ifndef PANGO_PRE_1POINT6
740     map = pango_context_get_font_map(ctx);
741     if (!map) {
742         pango_font_description_free(desc);
743         return NULL;
744     }
745     fset = pango_font_map_load_fontset(map, ctx, desc,
746                                        pango_context_get_language(ctx));
747 #else
748     fset = pango_context_load_fontset(ctx, desc,
749                                       pango_context_get_language(ctx));
750 #endif
751     if (!fset) {
752         pango_font_description_free(desc);
753         return NULL;
754     }
755     metrics = pango_fontset_get_metrics(fset);
756     if (!metrics ||
757         pango_font_metrics_get_approximate_digit_width(metrics) == 0) {
758         pango_font_description_free(desc);
759         g_object_unref(fset);
760         return NULL;
761     }
762
763     pfont = snew(struct pangofont);
764     pfont->u.vt = &pangofont_vtable;
765     pfont->u.width =
766         PANGO_PIXELS(pango_font_metrics_get_approximate_digit_width(metrics));
767     pfont->u.ascent = PANGO_PIXELS(pango_font_metrics_get_ascent(metrics));
768     pfont->u.descent = PANGO_PIXELS(pango_font_metrics_get_descent(metrics));
769     pfont->u.height = pfont->u.ascent + pfont->u.descent;
770     /* The Pango API is hardwired to UTF-8 */
771     pfont->u.public_charset = CS_UTF8;
772     pfont->u.real_charset = CS_UTF8;
773     pfont->desc = desc;
774     pfont->fset = fset;
775     pfont->widget = widget;
776     pfont->bold = bold;
777     pfont->shadowoffset = shadowoffset;
778     pfont->shadowalways = shadowalways;
779
780     pango_font_metrics_unref(metrics);
781
782     return (unifont *)pfont;
783 }
784
785 static void pangofont_destroy(unifont *font)
786 {
787     struct pangofont *pfont = (struct pangofont *)font;
788     pango_font_description_free(pfont->desc);
789     g_object_unref(pfont->fset);
790     sfree(font);
791 }
792
793 static void pangofont_draw_text(GdkDrawable *target, GdkGC *gc, unifont *font,
794                                 int x, int y, const char *string, int len,
795                                 int wide, int bold, int cellwidth)
796 {
797     struct pangofont *pfont = (struct pangofont *)font;
798     PangoLayout *layout;
799     PangoRectangle rect;
800     int shadowbold = FALSE;
801
802     if (wide)
803         cellwidth *= 2;
804
805     y -= pfont->u.ascent;
806
807     layout = pango_layout_new(gtk_widget_get_pango_context(pfont->widget));
808     pango_layout_set_font_description(layout, pfont->desc);
809     if (bold > pfont->bold) {
810         if (pfont->shadowalways)
811             shadowbold = TRUE;
812         else {
813             PangoFontDescription *desc2 =
814                 pango_font_description_copy_static(pfont->desc);
815             pango_font_description_set_weight(desc2, PANGO_WEIGHT_BOLD);
816             pango_layout_set_font_description(layout, desc2);
817         }
818     }
819
820     while (len > 0) {
821         int clen;
822
823         /*
824          * Extract a single UTF-8 character from the string.
825          */
826         clen = 1;
827         while (clen < len &&
828                (unsigned char)string[clen] >= 0x80 &&
829                (unsigned char)string[clen] < 0xC0)
830             clen++;
831
832         pango_layout_set_text(layout, string, clen);
833         pango_layout_get_pixel_extents(layout, NULL, &rect);
834         gdk_draw_layout(target, gc, x + (cellwidth - rect.width)/2,
835                         y + (pfont->u.height - rect.height)/2, layout);
836         if (shadowbold)
837             gdk_draw_layout(target, gc, x + (cellwidth - rect.width)/2 + pfont->shadowoffset,
838                             y + (pfont->u.height - rect.height)/2, layout);
839
840         len -= clen;
841         string += clen;
842         x += cellwidth;
843     }
844
845     g_object_unref(layout);
846 }
847
848 /*
849  * Dummy size value to be used when converting a
850  * PangoFontDescription of a scalable font to a string for
851  * internal use.
852  */
853 #define PANGO_DUMMY_SIZE 12
854
855 static void pangofont_enum_fonts(GtkWidget *widget, fontsel_add_entry callback,
856                                  void *callback_ctx)
857 {
858     PangoContext *ctx;
859 #ifndef PANGO_PRE_1POINT6
860     PangoFontMap *map;
861 #endif
862     PangoFontFamily **families;
863     int i, nfamilies;
864
865     ctx = gtk_widget_get_pango_context(widget);
866     if (!ctx)
867         return;
868
869     /*
870      * Ask Pango for a list of font families, and iterate through
871      * them.
872      */
873 #ifndef PANGO_PRE_1POINT6
874     map = pango_context_get_font_map(ctx);
875     if (!map)
876         return;
877     pango_font_map_list_families(map, &families, &nfamilies);
878 #else
879     pango_context_list_families(ctx, &families, &nfamilies);
880 #endif
881     for (i = 0; i < nfamilies; i++) {
882         PangoFontFamily *family = families[i];
883         const char *familyname;
884         int flags;
885         PangoFontFace **faces;
886         int j, nfaces;
887
888         /*
889          * Set up our flags for this font family, and get the name
890          * string.
891          */
892         flags = FONTFLAG_CLIENTSIDE;
893 #ifndef PANGO_PRE_1POINT4
894         /*
895          * In very early versions of Pango, we can't tell
896          * monospaced fonts from non-monospaced.
897          */
898         if (!pango_font_family_is_monospace(family))
899             flags |= FONTFLAG_NONMONOSPACED;
900 #endif
901         familyname = pango_font_family_get_name(family);
902
903         /*
904          * Go through the available font faces in this family.
905          */
906         pango_font_family_list_faces(family, &faces, &nfaces);
907         for (j = 0; j < nfaces; j++) {
908             PangoFontFace *face = faces[j];
909             PangoFontDescription *desc;
910             const char *facename;
911             int *sizes;
912             int k, nsizes, dummysize;
913
914             /*
915              * Get the face name string.
916              */
917             facename = pango_font_face_get_face_name(face);
918
919             /*
920              * Set up a font description with what we've got so
921              * far. We'll fill in the size field manually and then
922              * call pango_font_description_to_string() to give the
923              * full real name of the specific font.
924              */
925             desc = pango_font_face_describe(face);
926
927             /*
928              * See if this font has a list of specific sizes.
929              */
930 #ifndef PANGO_PRE_1POINT4
931             pango_font_face_list_sizes(face, &sizes, &nsizes);
932 #else
933             /*
934              * In early versions of Pango, that call wasn't
935              * supported; we just have to assume everything is
936              * scalable.
937              */
938             sizes = NULL;
939 #endif
940             if (!sizes) {
941                 /*
942                  * Write a single entry with a dummy size.
943                  */
944                 dummysize = PANGO_DUMMY_SIZE * PANGO_SCALE;
945                 sizes = &dummysize;
946                 nsizes = 1;
947             }
948
949             /*
950              * If so, go through them one by one.
951              */
952             for (k = 0; k < nsizes; k++) {
953                 char *fullname;
954                 char stylekey[128];
955
956                 pango_font_description_set_size(desc, sizes[k]);
957
958                 fullname = pango_font_description_to_string(desc);
959
960                 /*
961                  * Construct the sorting key for font styles.
962                  */
963                 {
964                     char *p = stylekey;
965                     int n;
966
967                     n = pango_font_description_get_weight(desc);
968                     /* Weight: normal, then lighter, then bolder */
969                     if (n <= PANGO_WEIGHT_NORMAL)
970                         n = PANGO_WEIGHT_NORMAL - n;
971                     p += sprintf(p, "%4d", n);
972
973                     n = pango_font_description_get_style(desc);
974                     p += sprintf(p, " %2d", n);
975
976                     n = pango_font_description_get_stretch(desc);
977                     /* Stretch: closer to normal sorts earlier */
978                     n = 2 * abs(PANGO_STRETCH_NORMAL - n) +
979                         (n < PANGO_STRETCH_NORMAL);
980                     p += sprintf(p, " %2d", n);
981
982                     n = pango_font_description_get_variant(desc);
983                     p += sprintf(p, " %2d", n);
984                     
985                 }
986
987                 /*
988                  * Got everything. Hand off to the callback.
989                  * (The charset string is NULL, because only
990                  * server-side X fonts use it.)
991                  */
992                 callback(callback_ctx, fullname, familyname, NULL, facename,
993                          stylekey,
994                          (sizes == &dummysize ? 0 : PANGO_PIXELS(sizes[k])),
995                          flags, &pangofont_vtable);
996
997                 g_free(fullname);
998             }
999             if (sizes != &dummysize)
1000                 g_free(sizes);
1001
1002             pango_font_description_free(desc);
1003         }
1004         g_free(faces);
1005     }
1006     g_free(families);
1007 }
1008
1009 static char *pangofont_canonify_fontname(GtkWidget *widget, const char *name,
1010                                          int *size, int resolve_aliases)
1011 {
1012     /*
1013      * When given a Pango font name to try to make sense of for a
1014      * font selector, we must normalise it to PANGO_DUMMY_SIZE and
1015      * extract its original size (in pixels) into the `size' field.
1016      */
1017     PangoContext *ctx;
1018 #ifndef PANGO_PRE_1POINT6
1019     PangoFontMap *map;
1020 #endif
1021     PangoFontDescription *desc;
1022     PangoFontset *fset;
1023     PangoFontMetrics *metrics;
1024     char *newname, *retname;
1025
1026     desc = pango_font_description_from_string(name);
1027     if (!desc)
1028         return NULL;
1029     ctx = gtk_widget_get_pango_context(widget);
1030     if (!ctx) {
1031         pango_font_description_free(desc);
1032         return NULL;
1033     }
1034 #ifndef PANGO_PRE_1POINT6
1035     map = pango_context_get_font_map(ctx);
1036     if (!map) {
1037         pango_font_description_free(desc);
1038         return NULL;
1039     }
1040     fset = pango_font_map_load_fontset(map, ctx, desc,
1041                                        pango_context_get_language(ctx));
1042 #else
1043     fset = pango_context_load_fontset(ctx, desc,
1044                                       pango_context_get_language(ctx));
1045 #endif
1046     if (!fset) {
1047         pango_font_description_free(desc);
1048         return NULL;
1049     }
1050     metrics = pango_fontset_get_metrics(fset);
1051     if (!metrics ||
1052         pango_font_metrics_get_approximate_digit_width(metrics) == 0) {
1053         pango_font_description_free(desc);
1054         g_object_unref(fset);
1055         return NULL;
1056     }
1057
1058     *size = PANGO_PIXELS(pango_font_description_get_size(desc));
1059     pango_font_description_set_size(desc, PANGO_DUMMY_SIZE * PANGO_SCALE);
1060     newname = pango_font_description_to_string(desc);
1061     retname = dupstr(newname);
1062     g_free(newname);
1063
1064     pango_font_metrics_unref(metrics);
1065     pango_font_description_free(desc);
1066     g_object_unref(fset);
1067
1068     return retname;
1069 }
1070
1071 static char *pangofont_scale_fontname(GtkWidget *widget, const char *name,
1072                                       int size)
1073 {
1074     PangoFontDescription *desc;
1075     char *newname, *retname;
1076
1077     desc = pango_font_description_from_string(name);
1078     if (!desc)
1079         return NULL;
1080     pango_font_description_set_size(desc, size * PANGO_SCALE);
1081     newname = pango_font_description_to_string(desc);
1082     retname = dupstr(newname);
1083     g_free(newname);
1084     pango_font_description_free(desc);
1085
1086     return retname;
1087 }
1088
1089 /* ----------------------------------------------------------------------
1090  * Outermost functions which do the vtable dispatch.
1091  */
1092
1093 /*
1094  * Complete list of font-type subclasses. Listed in preference
1095  * order for unifont_create(). (That is, in the extremely unlikely
1096  * event that the same font name is valid as both a Pango and an
1097  * X11 font, it will be interpreted as the former in the absence
1098  * of an explicit type-disambiguating prefix.)
1099  */
1100 static const struct unifont_vtable *unifont_types[] = {
1101     &pangofont_vtable,
1102     &x11font_vtable,
1103 };
1104
1105 /*
1106  * Function which takes a font name and processes the optional
1107  * scheme prefix. Returns the tail of the font name suitable for
1108  * passing to individual font scheme functions, and also provides
1109  * a subrange of the unifont_types[] array above.
1110  * 
1111  * The return values `start' and `end' denote a half-open interval
1112  * in unifont_types[]; that is, the correct way to iterate over
1113  * them is
1114  * 
1115  *   for (i = start; i < end; i++) {...}
1116  */
1117 static const char *unifont_do_prefix(const char *name, int *start, int *end)
1118 {
1119     int colonpos = strcspn(name, ":");
1120     int i;
1121
1122     if (name[colonpos]) {
1123         /*
1124          * There's a colon prefix on the font name. Use it to work
1125          * out which subclass to use.
1126          */
1127         for (i = 0; i < lenof(unifont_types); i++) {
1128             if (strlen(unifont_types[i]->prefix) == colonpos &&
1129                 !strncmp(unifont_types[i]->prefix, name, colonpos)) {
1130                 *start = i;
1131                 *end = i+1;
1132                 return name + colonpos + 1;
1133             }
1134         }
1135         /*
1136          * None matched, so return an empty scheme list to prevent
1137          * any scheme from being called at all.
1138          */
1139         *start = *end = 0;
1140         return name + colonpos + 1;
1141     } else {
1142         /*
1143          * No colon prefix, so just use all the subclasses.
1144          */
1145         *start = 0;
1146         *end = lenof(unifont_types);
1147         return name;
1148     }
1149 }
1150
1151 unifont *unifont_create(GtkWidget *widget, const char *name, int wide,
1152                         int bold, int shadowoffset, int shadowalways)
1153 {
1154     int i, start, end;
1155
1156     name = unifont_do_prefix(name, &start, &end);
1157
1158     for (i = start; i < end; i++) {
1159         unifont *ret = unifont_types[i]->create(widget, name, wide, bold,
1160                                                 shadowoffset, shadowalways);
1161         if (ret)
1162             return ret;
1163     }
1164     return NULL;                       /* font not found in any scheme */
1165 }
1166
1167 void unifont_destroy(unifont *font)
1168 {
1169     font->vt->destroy(font);
1170 }
1171
1172 void unifont_draw_text(GdkDrawable *target, GdkGC *gc, unifont *font,
1173                        int x, int y, const char *string, int len,
1174                        int wide, int bold, int cellwidth)
1175 {
1176     font->vt->draw_text(target, gc, font, x, y, string, len,
1177                         wide, bold, cellwidth);
1178 }
1179
1180 /* ----------------------------------------------------------------------
1181  * Implementation of a unified font selector.
1182  */
1183
1184 typedef struct fontinfo fontinfo;
1185
1186 typedef struct unifontsel_internal {
1187     /* This must be the structure's first element, for cross-casting */
1188     unifontsel u;
1189     GtkListStore *family_model, *style_model, *size_model;
1190     GtkWidget *family_list, *style_list, *size_entry, *size_list;
1191     GtkWidget *filter_buttons[4];
1192     GtkWidget *preview_area;
1193     GdkPixmap *preview_pixmap;
1194     int preview_width, preview_height;
1195     GdkColor preview_fg, preview_bg;
1196     int filter_flags;
1197     tree234 *fonts_by_realname, *fonts_by_selorder;
1198     fontinfo *selected;
1199     int selsize, intendedsize;
1200     int inhibit_response;  /* inhibit callbacks when we change GUI controls */
1201 } unifontsel_internal;
1202
1203 /*
1204  * The structure held in the tree234s. All the string members are
1205  * part of the same allocated area, so don't need freeing
1206  * separately.
1207  */
1208 struct fontinfo {
1209     char *realname;
1210     char *family, *charset, *style, *stylekey;
1211     int size, flags;
1212     /*
1213      * Fallback sorting key, to permit multiple identical entries
1214      * to exist in the selorder tree.
1215      */
1216     int index;
1217     /*
1218      * Indices mapping fontinfo structures to indices in the list
1219      * boxes. sizeindex is irrelevant if the font is scalable
1220      * (size==0).
1221      */
1222     int familyindex, styleindex, sizeindex;
1223     /*
1224      * The class of font.
1225      */
1226     const struct unifont_vtable *fontclass;
1227 };
1228
1229 static int fontinfo_realname_compare(void *av, void *bv)
1230 {
1231     fontinfo *a = (fontinfo *)av;
1232     fontinfo *b = (fontinfo *)bv;
1233     return g_strcasecmp(a->realname, b->realname);
1234 }
1235
1236 static int fontinfo_realname_find(void *av, void *bv)
1237 {
1238     const char *a = (const char *)av;
1239     fontinfo *b = (fontinfo *)bv;
1240     return g_strcasecmp(a, b->realname);
1241 }
1242
1243 static int strnullcasecmp(const char *a, const char *b)
1244 {
1245     int i;
1246
1247     /*
1248      * If exactly one of the inputs is NULL, it compares before
1249      * the other one.
1250      */
1251     if ((i = (!b) - (!a)) != 0)
1252         return i;
1253
1254     /*
1255      * NULL compares equal.
1256      */
1257     if (!a)
1258         return 0;
1259
1260     /*
1261      * Otherwise, ordinary strcasecmp.
1262      */
1263     return g_strcasecmp(a, b);
1264 }
1265
1266 static int fontinfo_selorder_compare(void *av, void *bv)
1267 {
1268     fontinfo *a = (fontinfo *)av;
1269     fontinfo *b = (fontinfo *)bv;
1270     int i;
1271     if ((i = strnullcasecmp(a->family, b->family)) != 0)
1272         return i;
1273     if ((i = strnullcasecmp(a->charset, b->charset)) != 0)
1274         return i;
1275     if ((i = strnullcasecmp(a->stylekey, b->stylekey)) != 0)
1276         return i;
1277     if ((i = strnullcasecmp(a->style, b->style)) != 0)
1278         return i;
1279     if (a->size != b->size)
1280         return (a->size < b->size ? -1 : +1);
1281     if (a->index != b->index)
1282         return (a->index < b->index ? -1 : +1);
1283     return 0;
1284 }
1285
1286 static void unifontsel_setup_familylist(unifontsel_internal *fs)
1287 {
1288     GtkTreeIter iter;
1289     int i, listindex, minpos = -1, maxpos = -1;
1290     char *currfamily = NULL;
1291     fontinfo *info;
1292
1293     gtk_list_store_clear(fs->family_model);
1294     listindex = 0;
1295
1296     /*
1297      * Search through the font tree for anything matching our
1298      * current filter criteria. When we find one, add its font
1299      * name to the list box.
1300      */
1301     for (i = 0 ;; i++) {
1302         info = (fontinfo *)index234(fs->fonts_by_selorder, i);
1303         /*
1304          * info may be NULL if we've just run off the end of the
1305          * tree. We must still do a processing pass in that
1306          * situation, in case we had an unfinished font record in
1307          * progress.
1308          */
1309         if (info && (info->flags &~ fs->filter_flags)) {
1310             info->familyindex = -1;
1311             continue;                  /* we're filtering out this font */
1312         }
1313         if (!info || strnullcasecmp(currfamily, info->family)) {
1314             /*
1315              * We've either finished a family, or started a new
1316              * one, or both.
1317              */
1318             if (currfamily) {
1319                 gtk_list_store_append(fs->family_model, &iter);
1320                 gtk_list_store_set(fs->family_model, &iter,
1321                                    0, currfamily, 1, minpos, 2, maxpos+1, -1);
1322                 listindex++;
1323             }
1324             if (info) {
1325                 minpos = i;
1326                 currfamily = info->family;
1327             }
1328         }
1329         if (!info)
1330             break;                     /* now we're done */
1331         info->familyindex = listindex;
1332         maxpos = i;
1333     }
1334 }
1335
1336 static void unifontsel_setup_stylelist(unifontsel_internal *fs,
1337                                        int start, int end)
1338 {
1339     GtkTreeIter iter;
1340     int i, listindex, minpos = -1, maxpos = -1, started = FALSE;
1341     char *currcs = NULL, *currstyle = NULL;
1342     fontinfo *info;
1343
1344     gtk_list_store_clear(fs->style_model);
1345     listindex = 0;
1346     started = FALSE;
1347
1348     /*
1349      * Search through the font tree for anything matching our
1350      * current filter criteria. When we find one, add its charset
1351      * and/or style name to the list box.
1352      */
1353     for (i = start; i <= end; i++) {
1354         if (i == end)
1355             info = NULL;
1356         else
1357             info = (fontinfo *)index234(fs->fonts_by_selorder, i);
1358         /*
1359          * info may be NULL if we've just run off the end of the
1360          * relevant data. We must still do a processing pass in
1361          * that situation, in case we had an unfinished font
1362          * record in progress.
1363          */
1364         if (info && (info->flags &~ fs->filter_flags)) {
1365             info->styleindex = -1;
1366             continue;                  /* we're filtering out this font */
1367         }
1368         if (!info || !started || strnullcasecmp(currcs, info->charset) ||
1369              strnullcasecmp(currstyle, info->style)) {
1370             /*
1371              * We've either finished a style/charset, or started a
1372              * new one, or both.
1373              */
1374             started = TRUE;
1375             if (currstyle) {
1376                 gtk_list_store_append(fs->style_model, &iter);
1377                 gtk_list_store_set(fs->style_model, &iter,
1378                                    0, currstyle, 1, minpos, 2, maxpos+1,
1379                                    3, TRUE, -1);
1380                 listindex++;
1381             }
1382             if (info) {
1383                 minpos = i;
1384                 if (info->charset && strnullcasecmp(currcs, info->charset)) {
1385                     gtk_list_store_append(fs->style_model, &iter);
1386                     gtk_list_store_set(fs->style_model, &iter,
1387                                        0, info->charset, 1, -1, 2, -1,
1388                                        3, FALSE, -1);
1389                     listindex++;
1390                 }
1391                 currcs = info->charset;
1392                 currstyle = info->style;
1393             }
1394         }
1395         if (!info)
1396             break;                     /* now we're done */
1397         info->styleindex = listindex;
1398         maxpos = i;
1399     }
1400 }
1401
1402 static const int unifontsel_default_sizes[] = { 10, 12, 14, 16, 20, 24, 32 };
1403
1404 static void unifontsel_setup_sizelist(unifontsel_internal *fs,
1405                                       int start, int end)
1406 {
1407     GtkTreeIter iter;
1408     int i, listindex;
1409     char sizetext[40];
1410     fontinfo *info;
1411
1412     gtk_list_store_clear(fs->size_model);
1413     listindex = 0;
1414
1415     /*
1416      * Search through the font tree for anything matching our
1417      * current filter criteria. When we find one, add its font
1418      * name to the list box.
1419      */
1420     for (i = start; i < end; i++) {
1421         info = (fontinfo *)index234(fs->fonts_by_selorder, i);
1422         if (info->flags &~ fs->filter_flags) {
1423             info->sizeindex = -1;
1424             continue;                  /* we're filtering out this font */
1425         }
1426         if (info->size) {
1427             sprintf(sizetext, "%d", info->size);
1428             info->sizeindex = listindex;
1429             gtk_list_store_append(fs->size_model, &iter);
1430             gtk_list_store_set(fs->size_model, &iter,
1431                                0, sizetext, 1, i, 2, info->size, -1);
1432             listindex++;
1433         } else {
1434             int j;
1435
1436             assert(i == start);
1437             assert(i+1 == end);
1438
1439             for (j = 0; j < lenof(unifontsel_default_sizes); j++) {
1440                 sprintf(sizetext, "%d", unifontsel_default_sizes[j]);
1441                 gtk_list_store_append(fs->size_model, &iter);
1442                 gtk_list_store_set(fs->size_model, &iter, 0, sizetext, 1, i,
1443                                    2, unifontsel_default_sizes[j], -1);
1444                 listindex++;
1445             }
1446         }
1447     }
1448 }
1449
1450 static void unifontsel_set_filter_buttons(unifontsel_internal *fs)
1451 {
1452     int i;
1453
1454     for (i = 0; i < lenof(fs->filter_buttons); i++) {
1455         int flagbit = GPOINTER_TO_INT(gtk_object_get_data
1456                                       (GTK_OBJECT(fs->filter_buttons[i]),
1457                                        "user-data"));
1458         gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(fs->filter_buttons[i]),
1459                                      !!(fs->filter_flags & flagbit));
1460     }
1461 }
1462
1463 static void unifontsel_draw_preview_text(unifontsel_internal *fs)
1464 {
1465     unifont *font;
1466     char *sizename = NULL;
1467     fontinfo *info = fs->selected;
1468
1469     if (info) {
1470         sizename = info->fontclass->scale_fontname
1471             (GTK_WIDGET(fs->u.window), info->realname, fs->selsize);
1472         font = info->fontclass->create(GTK_WIDGET(fs->u.window),
1473                                        sizename ? sizename : info->realname,
1474                                        FALSE, FALSE, 0, 0);
1475     } else
1476         font = NULL;
1477
1478     if (fs->preview_pixmap) {
1479         GdkGC *gc = gdk_gc_new(fs->preview_pixmap);
1480         gdk_gc_set_foreground(gc, &fs->preview_bg);
1481         gdk_draw_rectangle(fs->preview_pixmap, gc, 1, 0, 0,
1482                            fs->preview_width, fs->preview_height);
1483         gdk_gc_set_foreground(gc, &fs->preview_fg);
1484         if (font) {
1485             /*
1486              * The pangram used here is rather carefully
1487              * constructed: it contains a sequence of very narrow
1488              * letters (`jil') and a pair of adjacent very wide
1489              * letters (`wm').
1490              *
1491              * If the user selects a proportional font, it will be
1492              * coerced into fixed-width character cells when used
1493              * in the actual terminal window. We therefore display
1494              * it the same way in the preview pane, so as to show
1495              * it the way it will actually be displayed - and we
1496              * deliberately pick a pangram which will show the
1497              * resulting miskerning at its worst.
1498              *
1499              * We aren't trying to sell people these fonts; we're
1500              * trying to let them make an informed choice. Better
1501              * that they find out the problems with using
1502              * proportional fonts in terminal windows here than
1503              * that they go to the effort of selecting their font
1504              * and _then_ realise it was a mistake.
1505              */
1506             info->fontclass->draw_text(fs->preview_pixmap, gc, font,
1507                                        0, font->ascent,
1508                                        "bankrupt jilted showmen quiz convex fogey",
1509                                        41, FALSE, FALSE, font->width);
1510             info->fontclass->draw_text(fs->preview_pixmap, gc, font,
1511                                        0, font->ascent + font->height,
1512                                        "BANKRUPT JILTED SHOWMEN QUIZ CONVEX FOGEY",
1513                                        41, FALSE, FALSE, font->width);
1514             /*
1515              * The ordering of punctuation here is also selected
1516              * with some specific aims in mind. I put ` and '
1517              * together because some software (and people) still
1518              * use them as matched quotes no matter what Unicode
1519              * might say on the matter, so people can quickly
1520              * check whether they look silly in a candidate font.
1521              * The sequence #_@ is there to let people judge the
1522              * suitability of the underscore as an effectively
1523              * alphabetic character (since that's how it's often
1524              * used in practice, at least by programmers).
1525              */
1526             info->fontclass->draw_text(fs->preview_pixmap, gc, font,
1527                                        0, font->ascent + font->height * 2,
1528                                        "0123456789!?,.:;<>()[]{}\\/`'\"+*-=~#_@|%&^$",
1529                                        42, FALSE, FALSE, font->width);
1530         }
1531         gdk_gc_unref(gc);
1532         gdk_window_invalidate_rect(fs->preview_area->window, NULL, FALSE);
1533     }
1534     if (font)
1535         info->fontclass->destroy(font);
1536
1537     sfree(sizename);
1538 }
1539
1540 static void unifontsel_select_font(unifontsel_internal *fs,
1541                                    fontinfo *info, int size, int leftlist,
1542                                    int size_is_explicit)
1543 {
1544     int index;
1545     int minval, maxval;
1546     GtkTreePath *treepath;
1547     GtkTreeIter iter;
1548
1549     fs->inhibit_response = TRUE;
1550
1551     fs->selected = info;
1552     fs->selsize = size;
1553     if (size_is_explicit)
1554         fs->intendedsize = size;
1555
1556     gtk_widget_set_sensitive(fs->u.ok_button, TRUE);
1557
1558     /*
1559      * Find the index of this fontinfo in the selorder list. 
1560      */
1561     index = -1;
1562     findpos234(fs->fonts_by_selorder, info, NULL, &index);
1563     assert(index >= 0);
1564
1565     /*
1566      * Adjust the font selector flags and redo the font family
1567      * list box, if necessary.
1568      */
1569     if (leftlist <= 0 &&
1570         (fs->filter_flags | info->flags) != fs->filter_flags) {
1571         fs->filter_flags |= info->flags;
1572         unifontsel_set_filter_buttons(fs);
1573         unifontsel_setup_familylist(fs);
1574     }
1575
1576     /*
1577      * Find the appropriate family name and select it in the list.
1578      */
1579     assert(info->familyindex >= 0);
1580     treepath = gtk_tree_path_new_from_indices(info->familyindex, -1);
1581     gtk_tree_selection_select_path
1582         (gtk_tree_view_get_selection(GTK_TREE_VIEW(fs->family_list)),
1583          treepath);
1584     gtk_tree_view_scroll_to_cell(GTK_TREE_VIEW(fs->family_list),
1585                                  treepath, NULL, FALSE, 0.0, 0.0);
1586     gtk_tree_model_get_iter(GTK_TREE_MODEL(fs->family_model), &iter, treepath);
1587     gtk_tree_path_free(treepath);
1588
1589     /*
1590      * Now set up the font style list.
1591      */
1592     gtk_tree_model_get(GTK_TREE_MODEL(fs->family_model), &iter,
1593                        1, &minval, 2, &maxval, -1);
1594     if (leftlist <= 1)
1595         unifontsel_setup_stylelist(fs, minval, maxval);
1596
1597     /*
1598      * Find the appropriate style name and select it in the list.
1599      */
1600     if (info->style) {
1601         assert(info->styleindex >= 0);
1602         treepath = gtk_tree_path_new_from_indices(info->styleindex, -1);
1603         gtk_tree_selection_select_path
1604             (gtk_tree_view_get_selection(GTK_TREE_VIEW(fs->style_list)),
1605              treepath);
1606         gtk_tree_view_scroll_to_cell(GTK_TREE_VIEW(fs->style_list),
1607                                      treepath, NULL, FALSE, 0.0, 0.0);
1608         gtk_tree_model_get_iter(GTK_TREE_MODEL(fs->style_model),
1609                                 &iter, treepath);
1610         gtk_tree_path_free(treepath);
1611
1612         /*
1613          * And set up the size list.
1614          */
1615         gtk_tree_model_get(GTK_TREE_MODEL(fs->style_model), &iter,
1616                            1, &minval, 2, &maxval, -1);
1617         if (leftlist <= 2)
1618             unifontsel_setup_sizelist(fs, minval, maxval);
1619
1620         /*
1621          * Find the appropriate size, and select it in the list.
1622          */
1623         if (info->size) {
1624             assert(info->sizeindex >= 0);
1625             treepath = gtk_tree_path_new_from_indices(info->sizeindex, -1);
1626             gtk_tree_selection_select_path
1627                 (gtk_tree_view_get_selection(GTK_TREE_VIEW(fs->size_list)),
1628                  treepath);
1629             gtk_tree_view_scroll_to_cell(GTK_TREE_VIEW(fs->size_list),
1630                                          treepath, NULL, FALSE, 0.0, 0.0);
1631             gtk_tree_path_free(treepath);
1632             size = info->size;
1633         } else {
1634             int j;
1635             for (j = 0; j < lenof(unifontsel_default_sizes); j++)
1636                 if (unifontsel_default_sizes[j] == size) {
1637                     treepath = gtk_tree_path_new_from_indices(j, -1);
1638                     gtk_tree_view_set_cursor(GTK_TREE_VIEW(fs->size_list),
1639                                              treepath, NULL, FALSE);
1640                     gtk_tree_view_scroll_to_cell(GTK_TREE_VIEW(fs->size_list),
1641                                                  treepath, NULL, FALSE, 0.0,
1642                                                  0.0);
1643                     gtk_tree_path_free(treepath);
1644                 }
1645         }
1646
1647         /*
1648          * And set up the font size text entry box.
1649          */
1650         {
1651             char sizetext[40];
1652             sprintf(sizetext, "%d", size);
1653             gtk_entry_set_text(GTK_ENTRY(fs->size_entry), sizetext);
1654         }
1655     } else {
1656         if (leftlist <= 2)
1657             unifontsel_setup_sizelist(fs, 0, 0);
1658         gtk_entry_set_text(GTK_ENTRY(fs->size_entry), "");
1659     }
1660
1661     /*
1662      * Grey out the font size edit box if we're not using a
1663      * scalable font.
1664      */
1665     gtk_entry_set_editable(GTK_ENTRY(fs->size_entry), fs->selected->size == 0);
1666     gtk_widget_set_sensitive(fs->size_entry, fs->selected->size == 0);
1667
1668     unifontsel_draw_preview_text(fs);
1669
1670     fs->inhibit_response = FALSE;
1671 }
1672
1673 static void unifontsel_button_toggled(GtkToggleButton *tb, gpointer data)
1674 {
1675     unifontsel_internal *fs = (unifontsel_internal *)data;
1676     int newstate = gtk_toggle_button_get_active(tb);
1677     int newflags;
1678     int flagbit = GPOINTER_TO_INT(gtk_object_get_data(GTK_OBJECT(tb),
1679                                                       "user-data"));
1680
1681     if (newstate)
1682         newflags = fs->filter_flags | flagbit;
1683     else
1684         newflags = fs->filter_flags & ~flagbit;
1685
1686     if (fs->filter_flags != newflags) {
1687         fs->filter_flags = newflags;
1688         unifontsel_setup_familylist(fs);
1689     }
1690 }
1691
1692 static void unifontsel_add_entry(void *ctx, const char *realfontname,
1693                                  const char *family, const char *charset,
1694                                  const char *style, const char *stylekey,
1695                                  int size, int flags,
1696                                  const struct unifont_vtable *fontclass)
1697 {
1698     unifontsel_internal *fs = (unifontsel_internal *)ctx;
1699     fontinfo *info;
1700     int totalsize;
1701     char *p;
1702
1703     totalsize = sizeof(fontinfo) + strlen(realfontname) +
1704         (family ? strlen(family) : 0) + (charset ? strlen(charset) : 0) +
1705         (style ? strlen(style) : 0) + (stylekey ? strlen(stylekey) : 0) + 10;
1706     info = (fontinfo *)smalloc(totalsize);
1707     info->fontclass = fontclass;
1708     p = (char *)info + sizeof(fontinfo);
1709     info->realname = p;
1710     strcpy(p, realfontname);
1711     p += 1+strlen(p);
1712     if (family) {
1713         info->family = p;
1714         strcpy(p, family);
1715         p += 1+strlen(p);
1716     } else
1717         info->family = NULL;
1718     if (charset) {
1719         info->charset = p;
1720         strcpy(p, charset);
1721         p += 1+strlen(p);
1722     } else
1723         info->charset = NULL;
1724     if (style) {
1725         info->style = p;
1726         strcpy(p, style);
1727         p += 1+strlen(p);
1728     } else
1729         info->style = NULL;
1730     if (stylekey) {
1731         info->stylekey = p;
1732         strcpy(p, stylekey);
1733         p += 1+strlen(p);
1734     } else
1735         info->stylekey = NULL;
1736     assert(p - (char *)info <= totalsize);
1737     info->size = size;
1738     info->flags = flags;
1739     info->index = count234(fs->fonts_by_selorder);
1740
1741     /*
1742      * It's just conceivable that a misbehaving font enumerator
1743      * might tell us about the same font real name more than once,
1744      * in which case we should silently drop the new one.
1745      */
1746     if (add234(fs->fonts_by_realname, info) != info) {
1747         sfree(info);
1748         return;
1749     }
1750     /*
1751      * However, we should never get a duplicate key in the
1752      * selorder tree, because the index field carefully
1753      * disambiguates otherwise identical records.
1754      */
1755     add234(fs->fonts_by_selorder, info);
1756 }
1757
1758 static fontinfo *update_for_intended_size(unifontsel_internal *fs,
1759                                           fontinfo *info)
1760 {
1761     fontinfo info2, *below, *above;
1762     int pos;
1763
1764     /*
1765      * Copy the info structure. This doesn't copy its dynamic
1766      * string fields, but that's unimportant because all we're
1767      * going to do is to adjust the size field and use it in one
1768      * tree search.
1769      */
1770     info2 = *info;
1771     info2.size = fs->intendedsize;
1772
1773     /*
1774      * Search in the tree to find the fontinfo structure which
1775      * best approximates the size the user last requested.
1776      */
1777     below = findrelpos234(fs->fonts_by_selorder, &info2, NULL,
1778                           REL234_LE, &pos);
1779     above = index234(fs->fonts_by_selorder, pos+1);
1780
1781     /*
1782      * See if we've found it exactly, which is an easy special
1783      * case. If we have, it'll be in `below' and not `above',
1784      * because we did a REL234_LE rather than REL234_LT search.
1785      */
1786     if (!fontinfo_selorder_compare(&info2, below))
1787         return below;
1788
1789     /*
1790      * Now we've either found two suitable fonts, one smaller and
1791      * one larger, or we're at one or other extreme end of the
1792      * scale. Find out which, by NULLing out either of below and
1793      * above if it differs from this one in any respect but size
1794      * (and the disambiguating index field). Bear in mind, also,
1795      * that either one might _already_ be NULL if we're at the
1796      * extreme ends of the font list.
1797      */
1798     if (below) {
1799         info2.size = below->size;
1800         info2.index = below->index;
1801         if (fontinfo_selorder_compare(&info2, below))
1802             below = NULL;
1803     }
1804     if (above) {
1805         info2.size = above->size;
1806         info2.index = above->index;
1807         if (fontinfo_selorder_compare(&info2, above))
1808             above = NULL;
1809     }
1810
1811     /*
1812      * Now return whichever of above and below is non-NULL, if
1813      * that's unambiguous.
1814      */
1815     if (!above)
1816         return below;
1817     if (!below)
1818         return above;
1819
1820     /*
1821      * And now we really do have to make a choice about whether to
1822      * round up or down. We'll do it by rounding to nearest,
1823      * breaking ties by rounding up.
1824      */
1825     if (above->size - fs->intendedsize <= fs->intendedsize - below->size)
1826         return above;
1827     else
1828         return below;
1829 }
1830
1831 static void family_changed(GtkTreeSelection *treeselection, gpointer data)
1832 {
1833     unifontsel_internal *fs = (unifontsel_internal *)data;
1834     GtkTreeModel *treemodel;
1835     GtkTreeIter treeiter;
1836     int minval;
1837     fontinfo *info;
1838
1839     if (fs->inhibit_response)          /* we made this change ourselves */
1840         return;
1841
1842     if (!gtk_tree_selection_get_selected(treeselection, &treemodel, &treeiter))
1843         return;
1844
1845     gtk_tree_model_get(treemodel, &treeiter, 1, &minval, -1);
1846     info = (fontinfo *)index234(fs->fonts_by_selorder, minval);
1847     info = update_for_intended_size(fs, info);
1848     if (!info)
1849         return; /* _shouldn't_ happen unless font list is completely funted */
1850     if (!info->size)
1851         fs->selsize = fs->intendedsize;   /* font is scalable */
1852     unifontsel_select_font(fs, info, info->size ? info->size : fs->selsize,
1853                            1, FALSE);
1854 }
1855
1856 static void style_changed(GtkTreeSelection *treeselection, gpointer data)
1857 {
1858     unifontsel_internal *fs = (unifontsel_internal *)data;
1859     GtkTreeModel *treemodel;
1860     GtkTreeIter treeiter;
1861     int minval;
1862     fontinfo *info;
1863
1864     if (fs->inhibit_response)          /* we made this change ourselves */
1865         return;
1866
1867     if (!gtk_tree_selection_get_selected(treeselection, &treemodel, &treeiter))
1868         return;
1869
1870     gtk_tree_model_get(treemodel, &treeiter, 1, &minval, -1);
1871     if (minval < 0)
1872         return;                    /* somehow a charset heading got clicked */
1873     info = (fontinfo *)index234(fs->fonts_by_selorder, minval);
1874     info = update_for_intended_size(fs, info);
1875     if (!info)
1876         return; /* _shouldn't_ happen unless font list is completely funted */
1877     if (!info->size)
1878         fs->selsize = fs->intendedsize;   /* font is scalable */
1879     unifontsel_select_font(fs, info, info->size ? info->size : fs->selsize,
1880                            2, FALSE);
1881 }
1882
1883 static void size_changed(GtkTreeSelection *treeselection, gpointer data)
1884 {
1885     unifontsel_internal *fs = (unifontsel_internal *)data;
1886     GtkTreeModel *treemodel;
1887     GtkTreeIter treeiter;
1888     int minval, size;
1889     fontinfo *info;
1890
1891     if (fs->inhibit_response)          /* we made this change ourselves */
1892         return;
1893
1894     if (!gtk_tree_selection_get_selected(treeselection, &treemodel, &treeiter))
1895         return;
1896
1897     gtk_tree_model_get(treemodel, &treeiter, 1, &minval, 2, &size, -1);
1898     info = (fontinfo *)index234(fs->fonts_by_selorder, minval);
1899     unifontsel_select_font(fs, info, info->size ? info->size : size, 3, TRUE);
1900 }
1901
1902 static void size_entry_changed(GtkEditable *ed, gpointer data)
1903 {
1904     unifontsel_internal *fs = (unifontsel_internal *)data;
1905     const char *text;
1906     int size;
1907
1908     if (fs->inhibit_response)          /* we made this change ourselves */
1909         return;
1910
1911     text = gtk_entry_get_text(GTK_ENTRY(ed));
1912     size = atoi(text);
1913
1914     if (size > 0) {
1915         assert(fs->selected->size == 0);
1916         unifontsel_select_font(fs, fs->selected, size, 3, TRUE);
1917     }
1918 }
1919
1920 static void alias_resolve(GtkTreeView *treeview, GtkTreePath *path,
1921                           GtkTreeViewColumn *column, gpointer data)
1922 {
1923     unifontsel_internal *fs = (unifontsel_internal *)data;
1924     GtkTreeIter iter;
1925     int minval, newsize;
1926     fontinfo *info, *newinfo;
1927     char *newname;
1928
1929     if (fs->inhibit_response)          /* we made this change ourselves */
1930         return;
1931
1932     gtk_tree_model_get_iter(GTK_TREE_MODEL(fs->family_model), &iter, path);
1933     gtk_tree_model_get(GTK_TREE_MODEL(fs->family_model), &iter, 1,&minval, -1);
1934     info = (fontinfo *)index234(fs->fonts_by_selorder, minval);
1935     if (info) {
1936         newname = info->fontclass->canonify_fontname
1937             (GTK_WIDGET(fs->u.window), info->realname, &newsize, TRUE);
1938         newinfo = find234(fs->fonts_by_realname, (char *)newname,
1939                           fontinfo_realname_find);
1940         sfree(newname);
1941         if (!newinfo)
1942             return;                    /* font name not in our index */
1943         if (newinfo == info)
1944             return;   /* didn't change under canonification => not an alias */
1945         unifontsel_select_font(fs, newinfo,
1946                                newinfo->size ? newinfo->size : newsize,
1947                                1, TRUE);
1948     }
1949 }
1950
1951 static gint unifontsel_expose_area(GtkWidget *widget, GdkEventExpose *event,
1952                                    gpointer data)
1953 {
1954     unifontsel_internal *fs = (unifontsel_internal *)data;
1955
1956     if (fs->preview_pixmap) {
1957         gdk_draw_pixmap(widget->window,
1958                         widget->style->fg_gc[GTK_WIDGET_STATE(widget)],
1959                         fs->preview_pixmap,
1960                         event->area.x, event->area.y,
1961                         event->area.x, event->area.y,
1962                         event->area.width, event->area.height);
1963     }
1964     return TRUE;
1965 }
1966
1967 static gint unifontsel_configure_area(GtkWidget *widget,
1968                                       GdkEventConfigure *event, gpointer data)
1969 {
1970     unifontsel_internal *fs = (unifontsel_internal *)data;
1971     int ox, oy, nx, ny, x, y;
1972
1973     /*
1974      * Enlarge the pixmap, but never shrink it.
1975      */
1976     ox = fs->preview_width;
1977     oy = fs->preview_height;
1978     x = event->width;
1979     y = event->height;
1980     if (x > ox || y > oy) {
1981         if (fs->preview_pixmap)
1982             gdk_pixmap_unref(fs->preview_pixmap);
1983         
1984         nx = (x > ox ? x : ox);
1985         ny = (y > oy ? y : oy);
1986         fs->preview_pixmap = gdk_pixmap_new(widget->window, nx, ny, -1);
1987         fs->preview_width = nx;
1988         fs->preview_height = ny;
1989
1990         unifontsel_draw_preview_text(fs);
1991     }
1992
1993     gdk_window_invalidate_rect(widget->window, NULL, FALSE);
1994
1995     return TRUE;
1996 }
1997
1998 unifontsel *unifontsel_new(const char *wintitle)
1999 {
2000     unifontsel_internal *fs = snew(unifontsel_internal);
2001     GtkWidget *table, *label, *w, *ww, *scroll;
2002     GtkListStore *model;
2003     GtkTreeViewColumn *column;
2004     int lists_height, preview_height, font_width, style_width, size_width;
2005     int i;
2006
2007     fs->inhibit_response = FALSE;
2008
2009     {
2010         /*
2011          * Invent some magic size constants.
2012          */
2013         GtkRequisition req;
2014         label = gtk_label_new("Quite Long Font Name (Foundry)");
2015         gtk_widget_size_request(label, &req);
2016         font_width = req.width;
2017         lists_height = 14 * req.height;
2018         preview_height = 5 * req.height;
2019         gtk_label_set_text(GTK_LABEL(label), "Italic Extra Condensed");
2020         gtk_widget_size_request(label, &req);
2021         style_width = req.width;
2022         gtk_label_set_text(GTK_LABEL(label), "48000");
2023         gtk_widget_size_request(label, &req);
2024         size_width = req.width;
2025 #if GTK_CHECK_VERSION(2,10,0)
2026         g_object_ref_sink(label);
2027         g_object_unref(label);
2028 #else
2029         gtk_object_sink(GTK_OBJECT(label));
2030 #endif
2031     }
2032
2033     /*
2034      * Create the dialog box and initialise the user-visible
2035      * fields in the returned structure.
2036      */
2037     fs->u.user_data = NULL;
2038     fs->u.window = GTK_WINDOW(gtk_dialog_new());
2039     gtk_window_set_title(fs->u.window, wintitle);
2040     fs->u.cancel_button = gtk_dialog_add_button
2041         (GTK_DIALOG(fs->u.window), GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL);
2042     fs->u.ok_button = gtk_dialog_add_button
2043         (GTK_DIALOG(fs->u.window), GTK_STOCK_OK, GTK_RESPONSE_OK);
2044     gtk_widget_grab_default(fs->u.ok_button);
2045
2046     /*
2047      * Now set up the internal fields, including in particular all
2048      * the controls that actually allow the user to select fonts.
2049      */
2050     table = gtk_table_new(8, 3, FALSE);
2051     gtk_widget_show(table);
2052     gtk_table_set_col_spacings(GTK_TABLE(table), 8);
2053     /* GtkAlignment seems to be the simplest way to put padding round things */
2054     w = gtk_alignment_new(0, 0, 1, 1);
2055     gtk_alignment_set_padding(GTK_ALIGNMENT(w), 8, 8, 8, 8);
2056     gtk_container_add(GTK_CONTAINER(w), table);
2057     gtk_widget_show(w);
2058     gtk_box_pack_start(GTK_BOX(GTK_DIALOG(fs->u.window)->vbox),
2059                        w, TRUE, TRUE, 0);
2060
2061     label = gtk_label_new_with_mnemonic("_Font:");
2062     gtk_widget_show(label);
2063     gtk_misc_set_alignment(GTK_MISC(label), 0.0, 0.0);
2064     gtk_table_attach(GTK_TABLE(table), label, 0, 1, 0, 1, GTK_FILL, 0, 0, 0);
2065
2066     /*
2067      * The Font list box displays only a string, but additionally
2068      * stores two integers which give the limits within the
2069      * tree234 of the font entries covered by this list entry.
2070      */
2071     model = gtk_list_store_new(3, G_TYPE_STRING, G_TYPE_INT, G_TYPE_INT);
2072     w = gtk_tree_view_new_with_model(GTK_TREE_MODEL(model));
2073     gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(w), FALSE);
2074     gtk_label_set_mnemonic_widget(GTK_LABEL(label), w);
2075     gtk_widget_show(w);
2076     column = gtk_tree_view_column_new_with_attributes
2077         ("Font", gtk_cell_renderer_text_new(),
2078          "text", 0, (char *)NULL);
2079     gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_AUTOSIZE);
2080     gtk_tree_view_append_column(GTK_TREE_VIEW(w), column);
2081     g_signal_connect(G_OBJECT(gtk_tree_view_get_selection(GTK_TREE_VIEW(w))),
2082                      "changed", G_CALLBACK(family_changed), fs);
2083     g_signal_connect(G_OBJECT(w), "row-activated",
2084                      G_CALLBACK(alias_resolve), fs);
2085
2086     scroll = gtk_scrolled_window_new(NULL, NULL);
2087     gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(scroll),
2088                                         GTK_SHADOW_IN);
2089     gtk_container_add(GTK_CONTAINER(scroll), w);
2090     gtk_widget_show(scroll);
2091     gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scroll),
2092                                    GTK_POLICY_AUTOMATIC, GTK_POLICY_ALWAYS);
2093     gtk_widget_set_size_request(scroll, font_width, lists_height);
2094     gtk_table_attach(GTK_TABLE(table), scroll, 0, 1, 1, 3, GTK_FILL,
2095                      GTK_EXPAND | GTK_FILL, 0, 0);
2096     fs->family_model = model;
2097     fs->family_list = w;
2098
2099     label = gtk_label_new_with_mnemonic("_Style:");
2100     gtk_widget_show(label);
2101     gtk_misc_set_alignment(GTK_MISC(label), 0.0, 0.0);
2102     gtk_table_attach(GTK_TABLE(table), label, 1, 2, 0, 1, GTK_FILL, 0, 0, 0);
2103
2104     /*
2105      * The Style list box can contain insensitive elements
2106      * (character set headings for server-side fonts), so we add
2107      * an extra column to the list store to hold that information.
2108      */
2109     model = gtk_list_store_new(4, G_TYPE_STRING, G_TYPE_INT, G_TYPE_INT,
2110                                G_TYPE_BOOLEAN);
2111     w = gtk_tree_view_new_with_model(GTK_TREE_MODEL(model));
2112     gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(w), FALSE);
2113     gtk_label_set_mnemonic_widget(GTK_LABEL(label), w);
2114     gtk_widget_show(w);
2115     column = gtk_tree_view_column_new_with_attributes
2116         ("Style", gtk_cell_renderer_text_new(),
2117          "text", 0, "sensitive", 3, (char *)NULL);
2118     gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_AUTOSIZE);
2119     gtk_tree_view_append_column(GTK_TREE_VIEW(w), column);
2120     g_signal_connect(G_OBJECT(gtk_tree_view_get_selection(GTK_TREE_VIEW(w))),
2121                      "changed", G_CALLBACK(style_changed), fs);
2122
2123     scroll = gtk_scrolled_window_new(NULL, NULL);
2124     gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(scroll),
2125                                         GTK_SHADOW_IN);
2126     gtk_container_add(GTK_CONTAINER(scroll), w);
2127     gtk_widget_show(scroll);
2128     gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scroll),
2129                                    GTK_POLICY_AUTOMATIC, GTK_POLICY_ALWAYS);
2130     gtk_widget_set_size_request(scroll, style_width, lists_height);
2131     gtk_table_attach(GTK_TABLE(table), scroll, 1, 2, 1, 3, GTK_FILL,
2132                      GTK_EXPAND | GTK_FILL, 0, 0);
2133     fs->style_model = model;
2134     fs->style_list = w;
2135
2136     label = gtk_label_new_with_mnemonic("Si_ze:");
2137     gtk_widget_show(label);
2138     gtk_misc_set_alignment(GTK_MISC(label), 0.0, 0.0);
2139     gtk_table_attach(GTK_TABLE(table), label, 2, 3, 0, 1, GTK_FILL, 0, 0, 0);
2140
2141     /*
2142      * The Size label attaches primarily to a text input box so
2143      * that the user can select a size of their choice. The list
2144      * of available sizes is secondary.
2145      */
2146     fs->size_entry = w = gtk_entry_new();
2147     gtk_label_set_mnemonic_widget(GTK_LABEL(label), w);
2148     gtk_widget_set_size_request(w, size_width, -1);
2149     gtk_widget_show(w);
2150     gtk_table_attach(GTK_TABLE(table), w, 2, 3, 1, 2, GTK_FILL, 0, 0, 0);
2151     g_signal_connect(G_OBJECT(w), "changed", G_CALLBACK(size_entry_changed),
2152                      fs);
2153
2154     model = gtk_list_store_new(3, G_TYPE_STRING, G_TYPE_INT, G_TYPE_INT);
2155     w = gtk_tree_view_new_with_model(GTK_TREE_MODEL(model));
2156     gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(w), FALSE);
2157     gtk_widget_show(w);
2158     column = gtk_tree_view_column_new_with_attributes
2159         ("Size", gtk_cell_renderer_text_new(),
2160          "text", 0, (char *)NULL);
2161     gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_AUTOSIZE);
2162     gtk_tree_view_append_column(GTK_TREE_VIEW(w), column);
2163     g_signal_connect(G_OBJECT(gtk_tree_view_get_selection(GTK_TREE_VIEW(w))),
2164                      "changed", G_CALLBACK(size_changed), fs);
2165
2166     scroll = gtk_scrolled_window_new(NULL, NULL);
2167     gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(scroll),
2168                                         GTK_SHADOW_IN);
2169     gtk_container_add(GTK_CONTAINER(scroll), w);
2170     gtk_widget_show(scroll);
2171     gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scroll),
2172                                    GTK_POLICY_AUTOMATIC, GTK_POLICY_ALWAYS);
2173     gtk_table_attach(GTK_TABLE(table), scroll, 2, 3, 2, 3, GTK_FILL,
2174                      GTK_EXPAND | GTK_FILL, 0, 0);
2175     fs->size_model = model;
2176     fs->size_list = w;
2177
2178     /*
2179      * Preview widget.
2180      */
2181     fs->preview_area = gtk_drawing_area_new();
2182     fs->preview_pixmap = NULL;
2183     fs->preview_width = 0;
2184     fs->preview_height = 0;
2185     fs->preview_fg.pixel = fs->preview_bg.pixel = 0;
2186     fs->preview_fg.red = fs->preview_fg.green = fs->preview_fg.blue = 0x0000;
2187     fs->preview_bg.red = fs->preview_bg.green = fs->preview_bg.blue = 0xFFFF;
2188     gdk_colormap_alloc_color(gdk_colormap_get_system(), &fs->preview_fg,
2189                              FALSE, FALSE);
2190     gdk_colormap_alloc_color(gdk_colormap_get_system(), &fs->preview_bg,
2191                              FALSE, FALSE);
2192     gtk_signal_connect(GTK_OBJECT(fs->preview_area), "expose_event",
2193                        GTK_SIGNAL_FUNC(unifontsel_expose_area), fs);
2194     gtk_signal_connect(GTK_OBJECT(fs->preview_area), "configure_event",
2195                        GTK_SIGNAL_FUNC(unifontsel_configure_area), fs);
2196     gtk_widget_set_size_request(fs->preview_area, 1, preview_height);
2197     gtk_widget_show(fs->preview_area);
2198     ww = fs->preview_area;
2199     w = gtk_frame_new(NULL);
2200     gtk_container_add(GTK_CONTAINER(w), ww);
2201     gtk_widget_show(w);
2202     ww = w;
2203     /* GtkAlignment seems to be the simplest way to put padding round things */
2204     w = gtk_alignment_new(0, 0, 1, 1);
2205     gtk_alignment_set_padding(GTK_ALIGNMENT(w), 8, 8, 8, 8);
2206     gtk_container_add(GTK_CONTAINER(w), ww);
2207     gtk_widget_show(w);
2208     ww = w;
2209     w = gtk_frame_new("Preview of font");
2210     gtk_container_add(GTK_CONTAINER(w), ww);
2211     gtk_widget_show(w);
2212     gtk_table_attach(GTK_TABLE(table), w, 0, 3, 3, 4,
2213                      GTK_EXPAND | GTK_FILL, GTK_EXPAND | GTK_FILL, 0, 8);
2214
2215     i = 0;
2216     w = gtk_check_button_new_with_label("Show client-side fonts");
2217     gtk_object_set_data(GTK_OBJECT(w), "user-data",
2218                         GINT_TO_POINTER(FONTFLAG_CLIENTSIDE));
2219     gtk_signal_connect(GTK_OBJECT(w), "toggled",
2220                        GTK_SIGNAL_FUNC(unifontsel_button_toggled), fs);
2221     gtk_widget_show(w);
2222     fs->filter_buttons[i++] = w;
2223     gtk_table_attach(GTK_TABLE(table), w, 0, 3, 4, 5, GTK_FILL, 0, 0, 0);
2224     w = gtk_check_button_new_with_label("Show server-side fonts");
2225     gtk_object_set_data(GTK_OBJECT(w), "user-data",
2226                         GINT_TO_POINTER(FONTFLAG_SERVERSIDE));
2227     gtk_signal_connect(GTK_OBJECT(w), "toggled",
2228                        GTK_SIGNAL_FUNC(unifontsel_button_toggled), fs);
2229     gtk_widget_show(w);
2230     fs->filter_buttons[i++] = w;
2231     gtk_table_attach(GTK_TABLE(table), w, 0, 3, 5, 6, GTK_FILL, 0, 0, 0);
2232     w = gtk_check_button_new_with_label("Show server-side font aliases");
2233     gtk_object_set_data(GTK_OBJECT(w), "user-data",
2234                         GINT_TO_POINTER(FONTFLAG_SERVERALIAS));
2235     gtk_signal_connect(GTK_OBJECT(w), "toggled",
2236                        GTK_SIGNAL_FUNC(unifontsel_button_toggled), fs);
2237     gtk_widget_show(w);
2238     fs->filter_buttons[i++] = w;
2239     gtk_table_attach(GTK_TABLE(table), w, 0, 3, 6, 7, GTK_FILL, 0, 0, 0);
2240     w = gtk_check_button_new_with_label("Show non-monospaced fonts");
2241     gtk_object_set_data(GTK_OBJECT(w), "user-data",
2242                         GINT_TO_POINTER(FONTFLAG_NONMONOSPACED));
2243     gtk_signal_connect(GTK_OBJECT(w), "toggled",
2244                        GTK_SIGNAL_FUNC(unifontsel_button_toggled), fs);
2245     gtk_widget_show(w);
2246     fs->filter_buttons[i++] = w;
2247     gtk_table_attach(GTK_TABLE(table), w, 0, 3, 7, 8, GTK_FILL, 0, 0, 0);
2248
2249     assert(i == lenof(fs->filter_buttons));
2250     fs->filter_flags = FONTFLAG_CLIENTSIDE | FONTFLAG_SERVERSIDE;
2251     unifontsel_set_filter_buttons(fs);
2252
2253     /*
2254      * Go and find all the font names, and set up our master font
2255      * list.
2256      */
2257     fs->fonts_by_realname = newtree234(fontinfo_realname_compare);
2258     fs->fonts_by_selorder = newtree234(fontinfo_selorder_compare);
2259     for (i = 0; i < lenof(unifont_types); i++)
2260         unifont_types[i]->enum_fonts(GTK_WIDGET(fs->u.window),
2261                                      unifontsel_add_entry, fs);
2262
2263     /*
2264      * And set up the initial font names list.
2265      */
2266     unifontsel_setup_familylist(fs);
2267
2268     fs->selected = NULL;
2269     fs->selsize = fs->intendedsize = 13;   /* random default */
2270     gtk_widget_set_sensitive(fs->u.ok_button, FALSE);
2271
2272     return (unifontsel *)fs;
2273 }
2274
2275 void unifontsel_destroy(unifontsel *fontsel)
2276 {
2277     unifontsel_internal *fs = (unifontsel_internal *)fontsel;
2278     fontinfo *info;
2279
2280     if (fs->preview_pixmap)
2281         gdk_pixmap_unref(fs->preview_pixmap);
2282
2283     freetree234(fs->fonts_by_selorder);
2284     while ((info = delpos234(fs->fonts_by_realname, 0)) != NULL)
2285         sfree(info);
2286     freetree234(fs->fonts_by_realname);
2287
2288     gtk_widget_destroy(GTK_WIDGET(fs->u.window));
2289     sfree(fs);
2290 }
2291
2292 void unifontsel_set_name(unifontsel *fontsel, const char *fontname)
2293 {
2294     unifontsel_internal *fs = (unifontsel_internal *)fontsel;
2295     int i, start, end, size;
2296     const char *fontname2 = NULL;
2297     fontinfo *info;
2298
2299     /*
2300      * Provide a default if given an empty or null font name.
2301      */
2302     if (!fontname || !*fontname)
2303         fontname = "fixed";   /* Pango zealots might prefer "Monospace 12" */
2304
2305     /*
2306      * Call the canonify_fontname function.
2307      */
2308     fontname = unifont_do_prefix(fontname, &start, &end);
2309     for (i = start; i < end; i++) {
2310         fontname2 = unifont_types[i]->canonify_fontname
2311             (GTK_WIDGET(fs->u.window), fontname, &size, FALSE);
2312         if (fontname2)
2313             break;
2314     }
2315     if (i == end)
2316         return;                        /* font name not recognised */
2317
2318     /*
2319      * Now look up the canonified font name in our index.
2320      */
2321     info = find234(fs->fonts_by_realname, (char *)fontname2,
2322                    fontinfo_realname_find);
2323
2324     /*
2325      * If we've found the font, and its size field is either
2326      * correct or zero (the latter indicating a scalable font),
2327      * then we're done. Otherwise, try looking up the original
2328      * font name instead.
2329      */
2330     if (!info || (info->size != size && info->size != 0)) {
2331         info = find234(fs->fonts_by_realname, (char *)fontname,
2332                        fontinfo_realname_find);
2333         if (!info || info->size != size)
2334             return;                    /* font name not in our index */
2335     }
2336
2337     /*
2338      * Now we've got a fontinfo structure and a font size, so we
2339      * know everything we need to fill in all the fields in the
2340      * dialog.
2341      */
2342     unifontsel_select_font(fs, info, size, 0, TRUE);
2343 }
2344
2345 char *unifontsel_get_name(unifontsel *fontsel)
2346 {
2347     unifontsel_internal *fs = (unifontsel_internal *)fontsel;
2348     char *name;
2349
2350     if (!fs->selected)
2351         return NULL;
2352
2353     if (fs->selected->size == 0) {
2354         name = fs->selected->fontclass->scale_fontname
2355             (GTK_WIDGET(fs->u.window), fs->selected->realname, fs->selsize);
2356         if (name)
2357             return name;
2358     }
2359
2360     return dupstr(fs->selected->realname);
2361 }