]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/pango-font.hh
* stepmake/aclocal.m4 (STEPMAKE_PANGO_FT2): Define HAVE_PANGO16 too.
[lilypond.git] / lily / include / pango-font.hh
1 /*
2   pango-font.hh -- declare 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 #ifndef PANGO_FONT_HH
10 #define PANGO_FONT_HH
11
12 #include "config.hh"
13
14 #if HAVE_PANGO16
15
16 #include <pango/pango.h>
17 #include <pango/pangoft2.h>
18 #include "font-metric.hh"
19
20 #include "open-type-font.hh"
21
22 class Pango_font : public Font_metric
23 {
24   PangoContext *context_;
25   PangoFontDescription *pango_description_;
26   PangoAttrList *attribute_list_;
27   Real scale_;
28   SCM physical_font_tab_;
29
30 public:
31   SCM physical_font_tab () const;
32   Pango_font (PangoFT2FontMap *,
33               Direction leftright,
34               PangoFontDescription *,
35               Real);
36   ~Pango_font ();
37
38   SCM font_file_name () const;
39   void register_font_file (String, String);
40   Stencil text_stencil (String) const;
41   Stencil pango_item_string_stencil (PangoItem *, String, Real) const;
42
43   virtual void derived_mark () const;
44 };
45
46 PangoFontDescription *
47 symbols_to_pango_font_description (SCM family,
48                                    SCM style,
49                                    SCM variant,
50                                    SCM weight,
51                                    SCM stretch);
52
53 Font_metric *
54 select_pango_font (Output_def *layout, SCM chain);
55
56 const int PANGO_RESOLUTION = 1200;
57 PangoFontDescription *properties_to_pango_description (SCM chain, Real text_size);
58
59 #endif /* HAVE_PANGO16 */
60 #endif /* PANGO_FONT_HH */
61