X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Finclude%2Fpango-font.hh;h=f57b5d5b762eb83a945c4599ec5a4338d5d7c5f5;hb=468619111ee6009098c318243e53d98cb884ef2c;hp=b39a6c57a3457735328aea4a539f5207e97c5d6b;hpb=af978acdd78dce84f3867b80695dc4622fa0cd06;p=lilypond.git diff --git a/lily/include/pango-font.hh b/lily/include/pango-font.hh index b39a6c57a3..f57b5d5b76 100644 --- a/lily/include/pango-font.hh +++ b/lily/include/pango-font.hh @@ -1,9 +1,20 @@ /* - pango-font.hh -- declare Pango_font + This file is part of LilyPond, the GNU music typesetter. - source file of the GNU LilyPond music typesetter + Copyright (C) 2004--2012 Han-Wen Nienhuys - (c) 2004--2005 Han-Wen Nienhuys + LilyPond is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + LilyPond is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with LilyPond. If not, see . */ #ifndef PANGO_FONT_HH @@ -11,13 +22,12 @@ #include "config.hh" -#if HAVE_PANGO16 +#if HAVE_PANGO_FT2 #include #include -#include "font-metric.hh" -#include "open-type-font.hh" +#include "font-metric.hh" class Pango_font : public Font_metric { @@ -27,28 +37,38 @@ class Pango_font : public Font_metric Real scale_; Real output_scale_; SCM physical_font_tab_; - Direction text_direction_; + Direction text_direction_; + public: SCM physical_font_tab () const; Pango_font (PangoFT2FontMap *, - PangoFontDescription *, - Real); + PangoFontDescription const *, + Real); ~Pango_font (); + string description_string () const; SCM font_file_name () const; - void register_font_file (String, String); - Stencil text_stencil (String) const; - Stencil pango_item_string_stencil (PangoItem const *, String) const; + void register_font_file (string, string, int); + + size_t name_to_index (string) const; + SCM get_glyph_outline (size_t signed_idx) const; + Box get_glyph_outline_bbox (size_t signed_idx) const; + Box get_unscaled_indexed_char_dimensions (size_t) const; + Box get_scaled_indexed_char_dimensions (size_t) const; + + Stencil pango_item_string_stencil (PangoGlyphItem const *) const; + virtual Stencil text_stencil (Output_def *output_state, + string text, bool music) const; virtual void derived_mark () const; }; PangoFontDescription * symbols_to_pango_font_description (SCM family, - SCM style, - SCM variant, - SCM weight, - SCM stretch); + SCM style, + SCM variant, + SCM weight, + SCM stretch); Font_metric * select_pango_font (Output_def *layout, SCM chain);