X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Ffont-metric.cc;h=0c5c5ee5ebdab3ece210f569f27b2b766f8bf71c;hb=c6f357962a4315c2312cf402c249090bd6417d49;hp=d9ccecbc91430826aae2eb90db2fdd400ac35217;hpb=d664f5a7153ec2b1a1c4c9fba2d2174bf3140695;p=lilypond.git diff --git a/lily/font-metric.cc b/lily/font-metric.cc index d9ccecbc91..0c5c5ee5eb 100644 --- a/lily/font-metric.cc +++ b/lily/font-metric.cc @@ -1,11 +1,21 @@ /* - font-metric.cc -- implement Font_metric + This file is part of LilyPond, the GNU music typesetter. - source file of the GNU LilyPond music typesetter + Copyright (C) 1999--2009 Han-Wen Nienhuys + Mats Bengtsson (the ugly TeX parsing in text_dimension) - (c) 1999--2008 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. - Mats Bengtsson (the ugly TeX parsing in text_dimension) + 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 . */ #include "font-metric.hh" @@ -179,15 +189,15 @@ Font_metric::sub_fonts () const } Stencil -Font_metric::word_stencil (string str) const +Font_metric::word_stencil (string str, bool feta) const { - return text_stencil (str); + return text_stencil (str, feta); } Stencil -Font_metric::text_stencil (string /* str */) const +Font_metric::text_stencil (string, bool) const { - programming_error("Cannot get a text stencil from this font"); + programming_error ("Cannot get a text stencil from this font"); return Stencil (Box (), SCM_EOL); }