summaryrefslogtreecommitdiff
path: root/pango/pangox.c
blob: e49d0465919154a37c051d8415d3e849978697b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
/* Pango
 * gscriptx.c: Routines for handling X fonts
 *
 * Copyright (C) 1999 Red Hat Software
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	 See the GNU
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public
 * License along with this library; if not, write to the
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 02111-1307, USA.
 */

#include <X11/Xlib.h>
#include "pangox.h"
#include <ctype.h>
#include <stdio.h>
#include <string.h>

typedef struct _PangoXFont PangoXFont;
typedef struct _PangoXCFont PangoXCFont;
typedef struct _PangoXCharsetInfo PangoXCharsetInfo;

struct _PangoXCFont {
  gchar *xlfd;
  XFontStruct *font_struct;
};

struct _PangoXCharsetInfo {
  PangoXCharset charset;
  gchar *name;
  GSList *cfonts;
};

struct _PangoXFont {
  PangoFont font;
  Display *display;

  char **fonts;
  
  GHashTable *charsets_by_name;
  PangoXCharsetInfo **charsets;

  gint n_charsets;
  gint max_charsets;
};

static XCharStruct *pango_x_get_per_char  (PangoXCFont   *cfont,
					   guint16        glyph_index);
static PangoXCFont *pango_x_find_cfont    (PangoXFont    *font,
					   PangoXCharset  charset,
					   guint16        index,
					   XCharStruct  **per_char_return);
static void         pango_x_font_destroy  (PangoFont     *font);

PangoFontClass pango_x_font_class = {
  pango_x_font_destroy
};

/**
 * pango_x_load_font:
 * @display: the X display
 * @spec:    a comma-separated list of XLFD's
 *
 * Load up a logical font based on a "fontset" style
 * text specification.
 *
 * Returns a new #PangoFont
 */
PangoFont *
pango_x_load_font (Display *display,
		   gchar    *spec)
{
  PangoXFont *result;

  g_return_val_if_fail (display != NULL, NULL);
  g_return_val_if_fail (spec != NULL, NULL);
  
  result = g_new (PangoXFont, 1);

  result->display = display;

  pango_font_init (&result->font);
  result->font.klass = &pango_x_font_class;

  result->fonts = g_strsplit(spec, ",", -1);

  result->charsets_by_name = g_hash_table_new (g_str_hash, g_str_equal);
  result->charsets = g_new (PangoXCharsetInfo *, 1);

  result->n_charsets = 0;
  result->max_charsets = 1;

  return (PangoFont *)result;
}
 
/**
 * pango_x_render:
 * @display: the X display
 * @d:       the drawable on which to draw string
 * @gc:      the graphics context
 * @glyphs:  the glyph string to draw
 * @x:       the x position of start of string
 * @y:       the y position of baseline
 *
 * Render a PangoGlyphString onto an X drawable
 */
void 
pango_x_render  (Display           *display,
		 Drawable           d,
		 GC                 gc,
		 PangoFont         *font,
		 PangoGlyphString  *glyphs,
		 gint               x, 
		 gint               y)
{
  /* Slow initial implementation. For speed, it should really
   * collect the characters into runs, and draw multiple
   * characters with each XDrawString16 call.
   */
  PangoXFont *xfont = (PangoXFont *)font;
  Font old_fid = None;
  XFontStruct *fs;
  int i;

  g_return_if_fail (display != NULL);
  g_return_if_fail (glyphs != NULL);
  
  for (i=0; i<glyphs->num_glyphs; i++)
    {
      guint16 index = PANGO_X_GLYPH_INDEX (glyphs->glyphs[i].glyph);
      guint16 charset = PANGO_X_GLYPH_CHARSET (glyphs->glyphs[i].glyph);
      PangoXCFont *cfont;
      
      XChar2b c;

      if (charset < 1 || charset > xfont->n_charsets)
	{
	  g_warning ("Glyph string contains invalid charset %d", charset);
	  continue;
	}

      cfont = pango_x_find_cfont (xfont, charset, index, NULL);
      
      if (cfont)
	{
	  c.byte1 = index / 256;
	  c.byte2 = index % 256;

	  fs = cfont->font_struct;
	  
	  if (fs->fid != old_fid)
	    {
	      XSetFont (display, gc, fs->fid);
	      old_fid = fs->fid;
	    }
	  
	  XDrawString16 (display, d, gc,
			 x + glyphs->geometry[i].x_offset / 72,
			 y + glyphs->geometry[i].y_offset / 72,
			 &c, 1);

	  x += glyphs->geometry[i].width / 72;
	}
    }
}

/**
 * pango_x_glyph_extents:
 * @glyph:    the glyph to measure
 * @lbearing: left bearing of glyph (result)
 * @rbearing: right bearing of glyph (result)
 * @width:    width of glyph (result)
 * @ascent:   ascent of glyph (result)
 * @descent:  descent of glyph (result)
 * @logical_ascent: The vertical distance from the baseline to the
 *                  bottom of the line above.
 * @logical_descent: The vertical distance from the baseline to the
 *                   top of the line below.
 *
 * Compute the measurements of a single glyph in pixels.
 */
void 
pango_x_glyph_extents (PangoFont       *font,
		       PangoGlyphIndex  glyph,
		       gint            *lbearing, 
		       gint            *rbearing,
		       gint            *width, 
		       gint            *ascent, 
		       gint            *descent,
		       gint            *logical_ascent,
		       gint            *logical_descent)
{
  PangoXFont *xfont = (PangoXFont *)font;
  PangoXCFont *cfont;

  XCharStruct *cs;

  guint16 index = PANGO_X_GLYPH_INDEX (glyph);
  guint16 charset = PANGO_X_GLYPH_CHARSET (glyph);
      
  if (charset < 1 || charset > xfont->n_charsets)
    {
      g_warning ("Glyph string contains invalid charset %d\n", charset);
      return;
    }

  cfont = pango_x_find_cfont (xfont, charset, index, &cs);

  if (cfont)
    {
      if (lbearing)
	*lbearing = cs->lbearing;
      if (rbearing)
	*rbearing = cs->rbearing;
      if (width)
	*width = cs->width;
      if (ascent)
	*ascent = cs->ascent;
      if (descent)
	*descent = cs->descent;
      if (logical_ascent)
	*logical_ascent = cfont->font_struct->ascent;
      if (logical_descent)
	*logical_descent = cfont->font_struct->descent;
    }
  else
    {
      if (lbearing)
	*lbearing = 0;
      if (rbearing)
	*rbearing = 0;
      if (width)
	*width = 0;
      if (ascent)
	*ascent = 0;
      if (descent)
	*descent = 0;
      if (logical_ascent)
	*logical_ascent = 0;
      if (logical_descent)
	*logical_descent = 0;
    }
}

/**
 * pango_x_extents:
 * @glyphs:   the glyph string to measure
 * @lbearing: left bearing of string (result)
 * @rbearing: right bearing of string (result)
 * @width:    width of string (result)
 * @ascent:   ascent of string (result)
 * @descent:  descent of string (result)
 * @logical_ascent: The vertical distance from the baseline to the
 *                  bottom of the line above.
 * @logical_descent: The vertical distance from the baseline to the
 *                   top of the line below.
 *
 * Compute the measurements of a glyph string in pixels.
 * The number of parameters here is clunky - it might be
 * nicer to use structures as in XmbTextExtents.
 */
void 
pango_x_extents (PangoFont        *font,
		 PangoGlyphString *glyphs,
		 gint             *lbearing, 
		 gint             *rbearing,
		 gint             *width, 
		 gint             *ascent, 
		 gint             *descent,
		 gint             *logical_ascent,
		 gint             *logical_descent)
{
  PangoXFont *xfont = (PangoXFont *)font;

  int i;

  int t_lbearing = 0;
  int t_rbearing = 0;
  int t_ascent = 0;
  int t_descent = 0;
  int t_logical_ascent = 0;
  int t_logical_descent = 0;
  int t_width = 0;

  g_return_if_fail (font != NULL);
  g_return_if_fail (glyphs != NULL);
  
  for (i=0; i<glyphs->num_glyphs; i++)
    {
      XCharStruct *cs;
      
      guint16 index = PANGO_X_GLYPH_INDEX (glyphs->glyphs[i].glyph);
      guint16 charset = PANGO_X_GLYPH_CHARSET (glyphs->glyphs[i].glyph);
      
      PangoGlyphGeometry *geometry = &glyphs->geometry[i];
      PangoXCFont *cfont = pango_x_find_cfont (xfont, charset, index, &cs);

      if (cfont)
	{
	  if (i == 0)
	    {
	      t_lbearing = cs->lbearing - geometry->x_offset / 72;
	      t_rbearing = cs->rbearing + geometry->x_offset / 72;
	      t_ascent = cs->ascent + geometry->y_offset / 72;
	      t_descent = cs->descent - geometry->y_offset / 72;

	      t_logical_ascent = cfont->font_struct->ascent + geometry->y_offset / 72;
	      t_logical_descent = cfont->font_struct->descent - geometry->y_offset / 72;
	    }
	  else
	    {
	      t_lbearing = MAX (t_lbearing,
				cs->lbearing - geometry->x_offset / 72 - t_width);
	      t_rbearing = MAX (t_rbearing,
				t_width + cs->rbearing + geometry->x_offset / 72);
	      t_ascent = MAX (t_ascent, cs->ascent + geometry->y_offset / 72);
	      t_descent = MAX (t_descent, cs->descent - geometry->y_offset / 72);
	      t_logical_ascent = MAX (t_logical_ascent, cfont->font_struct->ascent + geometry->y_offset / 72);
	      t_logical_descent = MAX (t_logical_descent, cfont->font_struct->descent - geometry->y_offset / 72);
	    }
	}
      
      t_width += geometry->width / 72;
    }

  if (lbearing)
    *lbearing = t_lbearing;
  if (rbearing)
    *rbearing = t_rbearing;
  if (width)
    *width = t_width;
  if (ascent)
    *ascent = t_ascent;
  if (descent)
    *descent = t_descent;
  if (logical_ascent)
    *logical_ascent = t_logical_ascent;
  if (logical_descent)
    *logical_descent = t_logical_descent;
}

/* Compare the tail of a to b */
static gboolean
match_end (char *a, char *b)
{
  size_t len_a = strlen (a);
  size_t len_b = strlen (b);

  if (len_b > len_a)
    return FALSE;
  else
    return (strcmp (a + len_a - len_b, b) == 0);
}

/* Substitute in a charset into an XLFD. Return the
 * (g_malloc'd) new name, or NULL if the XLFD cannot
 * match the charset
 */
static gchar *
name_for_charset (char *xlfd, char *charset)
{
  char *p;
  char *dash_charset = g_strconcat ("-", charset, NULL);
  char *result = NULL;
  gint ndashes = 0;

  for (p = xlfd; *p; p++)
    if (*p == '-')
      ndashes++;
  
  if (ndashes == 14) /* Complete XLFD */
    {
      if (match_end (xlfd, "-*-*"))
	{
	  result = g_malloc (strlen (xlfd) - 4 + strlen (dash_charset) + 1);
	  strncpy (result, xlfd, strlen (xlfd) - 4);
	  strcpy (result + strlen (xlfd) - 4, dash_charset);
	}
      if (match_end (xlfd, dash_charset))
	result = g_strdup (xlfd);
    }
  else if (ndashes == 13)
    {
      if (match_end (xlfd, "-*"))
	{
	  result = g_malloc (strlen (xlfd) - 2 + strlen (dash_charset) + 1);
	  strncpy (result, xlfd, strlen (xlfd) - 2);
	  strcpy (result + strlen (xlfd) - 2, dash_charset);
	}
      if (match_end (xlfd, dash_charset))
	result = g_strdup (xlfd);
    }
  else
    {
      if (match_end (xlfd, "*"))
	{
	  result = g_malloc (strlen (xlfd) + strlen (dash_charset) + 1);
	  strcpy (result, xlfd);
	  strcpy (result + strlen (xlfd), dash_charset);
	}
      if (match_end (xlfd, dash_charset))
	result = g_strdup (xlfd);
    }

  g_free (dash_charset);
  return result;
}

/**
 * pango_x_find_charset:
 * @font: a #PangoFont
 * @charset: string name of charset
 * 
 * Look up the character set ID for a character set in the given font.
 * If a character set ID has not yet been assigned, a new ID will be assigned.
 * 
 * Return value: Character ID for character set, if there is a match in this
 *               font, otherwise 0.
 **/
PangoXCharset
pango_x_find_charset (PangoFont *font,
		      gchar     *charset)
{
  PangoXFont *xfont = (PangoXFont *)font;
  PangoXCharsetInfo *info;
  int i;

  g_return_val_if_fail (font != NULL, 0);
  g_return_val_if_fail (charset != NULL, 0);

  info = g_hash_table_lookup (xfont->charsets_by_name, charset);

  if (!info)
    {
      info = g_new (PangoXCharsetInfo, 1);

      info->cfonts = NULL;

      for (i = 0; xfont->fonts[i]; i++)
	{
	  char *xlfd = name_for_charset (xfont->fonts[i], charset);

	  if (xlfd)
	    {
	      int count;
	      char **names = XListFonts (xfont->display, xlfd, 1, &count);
	      if (count > 0)
		{
		  PangoXCFont *cfont = g_new (PangoXCFont, 1);

		  cfont->xlfd = g_strdup (names[0]);
		  cfont->font_struct = NULL;

		  info->cfonts = g_slist_append (info->cfonts, cfont);
		}

	      XFreeFontNames (names);
	      g_free (xlfd);
	    }
	}

      if (info->cfonts)
	{
	  info->name = g_strdup (charset);
	  g_hash_table_insert (xfont->charsets_by_name, info->name, info);

	  xfont->n_charsets++;

	  if (xfont->n_charsets > xfont->max_charsets)
	    {
	      xfont->max_charsets *= 2;
	      xfont->charsets = g_renew (PangoXCharsetInfo *, xfont->charsets, xfont->max_charsets);
	    }
	  
	  info->charset = xfont->n_charsets;
	  xfont->charsets[xfont->n_charsets - 1] = info;
	}
      else
	{
	  g_free (info);
	  info = NULL;
	}
    }

  if (info)
    return info->charset;
  else
    return 0;
}

gboolean
pango_x_has_glyph (PangoFont       *font,
		   PangoGlyphIndex  glyph)
{
  PangoXFont *xfont = (PangoXFont *)font;
  
  guint16 index, charset;
  
  g_return_val_if_fail (font != NULL, FALSE);
  
  index = PANGO_X_GLYPH_INDEX (glyph);
  charset = PANGO_X_GLYPH_CHARSET (glyph);

  if (charset < 1 || charset > xfont->n_charsets)
    {
      g_warning ("Glyph string contains invalid charset %d", charset);
      return FALSE;
    }
  
  return (pango_x_find_cfont (xfont, charset, index, NULL) != NULL);
}

static void
pango_x_font_destroy (PangoFont *font)
{
  PangoXFont *xfont = (PangoXFont *)font;
  int i;

  g_hash_table_destroy (xfont->charsets_by_name);

  for (i=0; i<xfont->n_charsets; i++)
    {
      GSList *cfonts = xfont->charsets[i]->cfonts;

      while (cfonts)
	{
	  PangoXCFont *cfont = cfonts->data;

	  g_free (cfont->xlfd);
	  if (cfont->font_struct)
	    XFreeFont (xfont->display, cfont->font_struct);

	  g_free (cfont);
	  
	  cfonts = cfonts->next;
	}

      g_slist_free (xfont->charsets[i]->cfonts);

      g_free (xfont->charsets[i]->name);
      g_free (xfont->charsets[i]);
    }

  g_free (xfont->charsets);

  g_strfreev (xfont->fonts);
  g_free (font);
}

/* Utility functions */

static XCharStruct *
pango_x_get_per_char (PangoXCFont *cfont, guint16 glyph_index)
{
  guint8 byte1;
  guint8 byte2;
  
  XFontStruct *fs = cfont->font_struct;
  int index;

  byte1 = glyph_index / 256;
  byte2 = glyph_index % 256;
  
  if ((fs->min_byte1 == 0) && (fs->min_byte1 == 0))
    {
      if (byte2 < fs->min_char_or_byte2 || byte2 > fs->max_char_or_byte2)
	return NULL;
      
      index = byte2 - fs->min_char_or_byte2;
    }
  else
    {
      if (byte1 < fs->min_byte1 || byte1 > fs->max_byte1 ||
	  byte2 < fs->min_char_or_byte2 || byte2 > fs->max_char_or_byte2)
	return NULL;
      
      index = ((byte1 - fs->min_byte1) *
	       (fs->max_char_or_byte2 - fs->min_char_or_byte2 + 1)) +
	byte2 - fs->min_char_or_byte2;
    }
  
  if (fs->per_char)
    return &fs->per_char[index];
  else
    return &fs->min_bounds;
}

static PangoXCFont *
pango_x_find_cfont (PangoXFont *font, PangoXCharset charset, guint16 index, XCharStruct **per_char_return)
{
  GSList *cfonts = font->charsets[charset - 1]->cfonts;
  
  while (cfonts)
    {
      XCharStruct *per_char;
      PangoXCFont *cfont = cfonts->data;
      
      if (!cfont->font_struct)
	{
	  cfont->font_struct = XLoadQueryFont (font->display, cfont->xlfd);
	  if (!cfont->font_struct)
	    g_error ("Error loading font '%s'\n", cfont->xlfd);
	}

      per_char = pango_x_get_per_char (cfont, index);

      if (per_char && per_char->width != 0)
	{
	  if (per_char_return)
	    *per_char_return = per_char;
	  
	  return cfont;
	}
	  
      cfonts = cfonts->next;
    }

  if (per_char_return)
    *per_char_return = NULL;
  
  return NULL;
}