]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/open-type-font.hh
* lily/ttf.cc (print_trailer): use it.
[lilypond.git] / lily / include / open-type-font.hh
1 /*
2   open-type-font.hh -- declare Open_type_font
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2004--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #ifndef OPEN_TYPE_FONT_HH
10 #define OPEN_TYPE_FONT_HH
11
12 #include <map>
13 using namespace std;
14
15 #include "freetype.hh"
16 #include "font-metric.hh"
17
18 typedef map<FT_UInt, FT_ULong> Index_to_charcode_map;
19 Index_to_charcode_map make_index_to_charcode_map (FT_Face face);
20 void get_unicode_name (char*s, FT_ULong code);
21
22 class Open_type_font : public Font_metric
23 {
24   /* handle to face object */
25   FT_Face face_;
26
27   SCM lily_subfonts_;
28   SCM lily_character_table_;
29   SCM lily_global_table_;
30   SCM lily_index_to_bbox_table_;
31
32   Index_to_charcode_map index_to_charcode_map_;
33   Open_type_font (FT_Face);
34
35   DECLARE_CLASSNAME(Open_type_font);
36 public:
37   SCM get_subfonts () const;
38   SCM get_global_table () const;
39   SCM get_char_table () const;
40   SCM glyph_list () const;
41     
42   string get_otf_table (string tag) const;
43   static SCM make_otf (string);
44   string font_name () const;
45   ~Open_type_font ();
46   Offset attachment_point (string) const;
47   size_t count () const;
48   Box get_indexed_char (size_t) const;
49   size_t name_to_index (string) const;
50   //size_t glyph_name_to_charcode (string) const;
51   size_t index_to_charcode (size_t) const;
52   void derived_mark () const;
53   SCM sub_fonts () const;
54   Real design_size () const;
55 };
56
57 string get_otf_table (FT_Face face, string tag);
58 FT_Face open_ft_face (string str);
59
60 #endif /* OPEN_TYPE_FONT_HH */