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