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