]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/pango-font.hh
ad559551d1fe9d6a7919c3da9d6841e70e07fde1
[lilypond.git] / lily / include / pango-font.hh
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 2004--2012 Han-Wen Nienhuys <hanwen@xs4all.nl>
5
6   LilyPond is free software: you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation, either version 3 of the License, or
9   (at your option) any later version.
10
11   LilyPond is distributed in the hope that it will be useful,
12   but WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   GNU General Public License for more details.
15
16   You should have received a copy of the GNU General Public License
17   along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #ifndef PANGO_FONT_HH
21 #define PANGO_FONT_HH
22
23 #include "config.hh"
24
25 #if HAVE_PANGO_FT2
26
27 #include <pango/pango.h>
28 #include <pango/pangoft2.h>
29
30 #include "font-metric.hh"
31
32 class Pango_font : public Font_metric
33 {
34   PangoContext *context_;
35   PangoFontDescription *pango_description_;
36   PangoAttrList *attribute_list_;
37   Real scale_;
38   Real output_scale_;
39   SCM physical_font_tab_;
40   Direction text_direction_;
41
42 public:
43   SCM physical_font_tab () const;
44   Pango_font (PangoFT2FontMap *,
45               PangoFontDescription const *,
46               Real);
47   ~Pango_font ();
48
49   string description_string () const;
50   SCM font_file_name () const;
51   void register_font_file (const string &filename, const string &ps_name, int face_index);
52
53   size_t name_to_index (string) const;
54   SCM get_glyph_outline (size_t signed_idx) const;
55   Box get_glyph_outline_bbox (size_t signed_idx) const;
56   Box get_unscaled_indexed_char_dimensions (size_t) const;
57   Box get_scaled_indexed_char_dimensions (size_t) const;
58
59   Stencil pango_item_string_stencil (PangoGlyphItem const *) const;
60
61   virtual Stencil text_stencil (Output_def *output_state,
62                                 const string &text, bool music) const;
63   virtual void derived_mark () const;
64 };
65
66 PangoFontDescription *
67 symbols_to_pango_font_description (SCM family,
68                                    SCM style,
69                                    SCM variant,
70                                    SCM weight,
71                                    SCM stretch);
72
73 Font_metric *
74 select_pango_font (Output_def *layout, SCM chain);
75
76 const int PANGO_RESOLUTION = 1200;
77 PangoFontDescription *properties_to_pango_description (SCM chain, Real text_size);
78
79 #endif /* HAVE_PANGO16 */
80 #endif /* PANGO_FONT_HH */
81