]> git.donarmstrong.com Git - lilypond.git/blob - lily/pango-font.cc
* lily/pango-font.cc (pango_item_string_stencil): bugfix: don't
[lilypond.git] / lily / pango-font.cc
1 /*
2   pango-font.cc --  implement Pango_font
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2004--2005 Han-Wen Nienhuys <hanwen@xs4all.nl>
7
8 */
9
10
11 #define PANGO_ENABLE_BACKEND // ugh, why necessary?
12
13 #include <pango/pangoft2.h>
14
15 #include "main.hh"
16 #include "lookup.hh"
17 #include "dimensions.hh"
18 #include "pango-font.hh"
19 #include "warn.hh"
20
21 #if HAVE_PANGO_FT2
22 #include "stencil.hh" 
23
24
25 Pango_font::Pango_font (PangoFT2FontMap *fontmap,
26                         Direction dir,
27                         PangoFontDescription *description,
28                         Real output_scale)
29 {
30   physical_font_tab_ = scm_c_make_hash_table (11);
31   PangoDirection pango_dir = (dir == RIGHT)
32     ? PANGO_DIRECTION_LTR
33     : PANGO_DIRECTION_RTL;
34   context_ =
35     pango_ft2_get_context (PANGO_RESOLUTION, PANGO_RESOLUTION);
36
37   pango_description_ = pango_font_description_copy (description);
38   //  context_ = pango_ft2_font_map_create_context (fontmap);  
39   attribute_list_= pango_attr_list_new();
40
41   
42   /*
43     urgh. I don't understand this. Why isn't this 1/(scale *
44     resolution * output_scale)
45
46     --hwn
47    */
48   scale_ = INCH_TO_BP / (Real (PANGO_SCALE) * Real (PANGO_RESOLUTION) * output_scale);
49
50   /*
51     ugh. Should make this configurable.
52   */
53   pango_context_set_language (context_, pango_language_from_string ("en_US"));
54   pango_context_set_base_dir (context_, pango_dir);
55   pango_context_set_font_description (context_, description);
56 }
57
58 Pango_font::~Pango_font ()
59 {
60   pango_font_description_free (pango_description_);
61   g_object_unref (context_);
62   pango_attr_list_unref (attribute_list_);
63 }
64
65 void
66 Pango_font::register_font_file (String filename, String ps_name) 
67 {
68   scm_hash_set_x (physical_font_tab_,
69                   scm_makfrom0str (ps_name.to_str0()),
70                   scm_makfrom0str (filename.to_str0()));
71 }
72
73 void
74 Pango_font::derived_mark () const
75 {
76   scm_gc_mark (physical_font_tab_);
77 }
78
79 Stencil
80 Pango_font::pango_item_string_stencil (PangoItem *item, String str, Real dx) const
81 {      
82   const int GLYPH_NAME_LEN = 256;
83   char glyph_name[GLYPH_NAME_LEN];
84   PangoAnalysis *pa = &(item->analysis);
85   PangoGlyphString *pgs = pango_glyph_string_new ();
86
87   pango_shape (str.to_str0 () + item->offset,
88                item->length, pa, pgs);
89
90   PangoRectangle logical_rect;
91   PangoRectangle ink_rect;
92   pango_glyph_string_extents (pgs, pa->font, &ink_rect, &logical_rect);
93       
94   PangoFcFont *fcfont = G_TYPE_CHECK_INSTANCE_CAST(pa->font,
95                                                    PANGO_TYPE_FC_FONT,
96                                                    PangoFcFont);
97       
98   FT_Face ftface = pango_fc_font_lock_face (fcfont);
99   Box b (Interval (PANGO_LBEARING(ink_rect),
100                    PANGO_RBEARING(ink_rect)),
101          Interval (-PANGO_DESCENT(ink_rect),
102                    PANGO_ASCENT(ink_rect)));
103              
104   b.scale (scale_);
105
106   SCM glyph_exprs = SCM_EOL;
107   SCM *tail = &glyph_exprs;
108   for (int i = 0; i < pgs->num_glyphs; i++)
109     {
110       PangoGlyphInfo *pgi = pgs->glyphs + i;
111           
112       PangoGlyph pg = pgi->glyph;
113       PangoGlyphGeometry ggeo = pgi->geometry;
114
115       FT_Get_Glyph_Name (ftface, pg, glyph_name, GLYPH_NAME_LEN);
116       *tail = scm_cons (scm_list_3 (scm_from_double (ggeo.x_offset * scale_ + dx),
117                                     scm_from_double (ggeo.y_offset * scale_),
118                                     scm_makfrom0str (glyph_name)),
119                         SCM_EOL);
120       dx = 0.0;
121       tail = SCM_CDRLOC (*tail);
122     }
123
124   PangoFontDescription *descr = pango_font_describe (pa->font);
125   Real size = pango_font_description_get_size (descr)
126     /  (Real (PANGO_SCALE));
127       
128   FcPattern *fcpat = fcfont->font_pattern;
129   char *filename = 0;
130   FcPatternGetString(fcpat, FC_FILE, 0, (FcChar8 **) &filename);
131   char const *ps_name = FT_Get_Postscript_Name (ftface);
132
133   if (ps_name)
134     {
135       ((Pango_font *) this)->register_font_file (filename, ps_name);
136       pango_fc_font_unlock_face (fcfont);
137       
138       SCM expr = scm_list_4 (ly_symbol2scm ("glyph-string"),
139                              scm_makfrom0str (ps_name),
140                              scm_from_double (size),
141                              ly_quote_scm (glyph_exprs));
142
143       return Stencil (b, expr);
144     }
145   else
146     {
147       warning (_ ("FreeType face has no PostScript font name."));      
148       return Stencil();
149     }
150 }
151
152 SCM
153 Pango_font::physical_font_tab () const
154 {
155   return physical_font_tab_;
156 }
157
158
159 Stencil
160
161 Pango_font::text_stencil (String str) const
162 {
163   GList *items = pango_itemize (context_,
164                                 str.to_str0 (),
165                                 0, str.length (), attribute_list_,
166                                 NULL);
167   
168   GList *ptr = items;
169   Stencil dest;
170   Real x = 0.0;
171   while (ptr)
172     {
173       PangoItem *item = (PangoItem*) ptr->data;
174
175       Stencil item_stencil = pango_item_string_stencil (item, str, x);
176
177       x = item_stencil.extent (X_AXIS)[RIGHT];
178       
179       dest.add_stencil (item_stencil);
180       
181       ptr = ptr->next;      
182     }
183
184   /*
185     UGH. Should have flags per output format signifying supported
186     options.
187    */
188   if (output_backend_global != "ps"
189       && output_backend_global != "eps")
190     {
191       /*
192         For Pango based backends, we take a shortcut.
193        */
194       SCM exp
195         = scm_list_3 (ly_symbol2scm ("utf8-string"),
196                       scm_makfrom0str (pango_font_description_to_string (pango_description_)),
197                       scm_makfrom0str (str.to_str0 ()));
198
199
200       Box b (Interval (0, 0), Interval (0, 0));
201       b.unite (dest.extent_box ());
202       return Stencil (b, exp);
203     }
204   
205 #if 0
206   // check extents.
207   if (!dest.extent_box ()[X_AXIS].is_empty ())
208     {
209       Stencil frame = Lookup::frame (dest.extent_box(), 0.1, 0.1);
210       dest.add_stencil (frame);
211     }
212 #endif
213
214   return dest;
215 }
216
217
218 SCM 
219 Pango_font::font_file_name () const
220 {
221   return SCM_BOOL_F;
222 }
223
224
225 #endif
226