]> git.donarmstrong.com Git - lilypond.git/blob - lily/pango-font.cc
* lily/parser.yy (assignment_id): allow LYRICS_STRING as
[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   pango_context_set_language (context_, pango_language_from_string ("en_US"));
51   pango_context_set_base_dir (context_, pango_dir);
52   pango_context_set_font_description (context_, description);
53 }
54
55 Pango_font::~Pango_font ()
56 {
57   pango_font_description_free (pango_description_);
58   g_object_unref (context_);
59   pango_attr_list_unref (attribute_list_);
60 }
61
62 void
63 Pango_font::register_font_file (String filename, String ps_name) 
64 {
65   scm_hash_set_x (physical_font_tab_,
66                   scm_makfrom0str (ps_name.to_str0()),
67                   scm_makfrom0str (filename.to_str0()));
68 }
69
70 void
71 Pango_font::derived_mark () const
72 {
73   scm_gc_mark (physical_font_tab_);
74 }
75
76 Stencil
77 Pango_font::pango_item_string_stencil (PangoItem *item, String str, Real dx) const
78 {      
79   const int GLYPH_NAME_LEN = 256;
80   char glyph_name[GLYPH_NAME_LEN];
81   PangoAnalysis *pa = &(item->analysis);
82   PangoGlyphString *pgs = pango_glyph_string_new ();
83
84   pango_shape (str.to_str0 () + item->offset,
85                item->length, pa, pgs);
86
87   PangoRectangle logical_rect;
88   PangoRectangle ink_rect;
89   pango_glyph_string_extents (pgs, pa->font, &ink_rect, &logical_rect);
90       
91   PangoFcFont *fcfont = G_TYPE_CHECK_INSTANCE_CAST(pa->font,
92                                                    PANGO_TYPE_FC_FONT,
93                                                    PangoFcFont);
94       
95   FT_Face ftface = pango_fc_font_lock_face (fcfont);
96   Box b (Interval (PANGO_LBEARING(ink_rect),
97                    PANGO_RBEARING(ink_rect)),
98          Interval (-PANGO_DESCENT(ink_rect),
99                    PANGO_ASCENT(ink_rect)));
100              
101   b.scale (scale_);
102
103   SCM glyph_exprs = SCM_EOL;
104   SCM *tail = &glyph_exprs;
105   for (int i = 0; i < pgs->num_glyphs; i++)
106     {
107       PangoGlyphInfo *pgi = pgs->glyphs + i;
108           
109       PangoGlyph pg = pgi->glyph;
110       PangoGlyphGeometry ggeo = pgi->geometry;
111
112       FT_Get_Glyph_Name (ftface, pg, glyph_name, GLYPH_NAME_LEN);
113       *tail = scm_cons (scm_list_3 (scm_from_double (ggeo.x_offset * scale_ + dx),
114                                     scm_from_double (ggeo.y_offset * scale_),
115                                     scm_makfrom0str (glyph_name)),
116                         SCM_EOL);
117       dx = 0.0;
118       tail = SCM_CDRLOC (*tail);
119     }
120
121   PangoFontDescription *descr = pango_font_describe (pa->font);
122   Real size = pango_font_description_get_size (descr)
123     /  (Real (PANGO_SCALE));
124       
125   FcPattern *fcpat = fcfont->font_pattern;
126   char *filename = 0;
127   FcPatternGetString(fcpat, FC_FILE, 0, (FcChar8 **) &filename);
128   char const *ps_name = FT_Get_Postscript_Name (ftface);
129
130   if (ps_name)
131     {
132       ((Pango_font *) this)->register_font_file (filename, ps_name);
133       pango_fc_font_unlock_face (fcfont);
134       
135       SCM expr = scm_list_4 (ly_symbol2scm ("glyph-string"),
136                              scm_makfrom0str (ps_name),
137                              scm_from_double (size),
138                              ly_quote_scm (glyph_exprs));
139
140       return Stencil (b, expr);
141     }
142   else
143     {
144       warning (_ ("FreeType face has no PostScript font name."));      
145       return Stencil();
146     }
147 }
148
149 SCM
150 Pango_font::physical_font_tab () const
151 {
152   return physical_font_tab_;
153 }
154
155
156 Stencil
157
158 Pango_font::text_stencil (String str) const
159 {
160   GList *items = pango_itemize (context_,
161                                 str.to_str0 (),
162                                 0, str.length (), attribute_list_,
163                                 NULL);
164   
165   GList *ptr = items;
166   Stencil dest;
167   Real x = 0.0;
168   while (ptr)
169     {
170       PangoItem *item = (PangoItem*) ptr->data;
171
172       Stencil item_stencil = pango_item_string_stencil (item, str, x);
173
174       x = item_stencil.extent (X_AXIS)[RIGHT];
175       
176       dest.add_stencil (item_stencil);
177       
178       ptr = ptr->next;      
179     }
180
181   /*
182     UGH. Should have flags per output format signifying supported
183     options.
184    */
185   if (output_backend_global != "ps"
186       && output_backend_global != "eps")
187     {
188       /*
189         For Pango based backends, we take a shortcut.
190        */
191       SCM exp
192         = scm_list_3 (ly_symbol2scm ("utf8-string"),
193                       scm_makfrom0str (pango_font_description_to_string (pango_description_)),
194                       scm_makfrom0str (str.to_str0 ()));
195
196
197       Box b (Interval (0, 0), Interval (0, 0));
198       b.unite (dest.extent_box ());
199       return Stencil (b, exp);
200     }
201   
202 #if 0
203   // check extents.
204   if (!dest.extent_box ()[X_AXIS].is_empty ())
205     {
206       Stencil frame = Lookup::frame (dest.extent_box(), 0.1, 0.1);
207       dest.add_stencil (frame);
208     }
209 #endif
210
211   return dest;
212 }
213
214
215 SCM 
216 Pango_font::font_file_name () const
217 {
218   return SCM_BOOL_F;
219 }
220
221
222 #endif
223