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