X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fall-font-metrics.cc;h=ab4f2a4ce4e3a09651b674a8f9598e2cdd6699f5;hb=5d84bfad4626892bcffd05adcced53c8a2329047;hp=d42811c0a7c096adfa1d9609fe8f9f77efa81e6a;hpb=bb8a0a5387af94dd2702877256334b160575a730;p=lilypond.git diff --git a/lily/all-font-metrics.cc b/lily/all-font-metrics.cc index d42811c0a7..ab4f2a4ce4 100644 --- a/lily/all-font-metrics.cc +++ b/lily/all-font-metrics.cc @@ -1,7 +1,7 @@ /* This file is part of LilyPond, the GNU music typesetter. - Copyright (C) 1999--2011 Han-Wen Nienhuys + Copyright (C) 1999--2015 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 @@ -28,7 +28,7 @@ #include "warn.hh" Index_to_charcode_map const * -All_font_metrics::get_index_to_charcode_map (string filename, +All_font_metrics::get_index_to_charcode_map (const string &filename, int face_index, FT_Face face) { @@ -40,11 +40,18 @@ All_font_metrics::get_index_to_charcode_map (string filename, return &filename_charcode_maps_map_[key]; } -All_font_metrics::All_font_metrics (string path) +All_font_metrics::All_font_metrics (const string &path) { - otf_dict_ = new Scheme_hash_table; +#if HAVE_PANGO_FT2 + pango_dict_ = 0; +#endif + + otf_dict_ = 0; + smobify_self (); + otf_dict_ = unsmob (Scheme_hash_table::make_smob ()); #if HAVE_PANGO_FT2 + pango_dict_ = unsmob (Scheme_hash_table::make_smob ()); PangoFontMap *pfm = pango_ft2_font_map_new (); pango_ft2_fontmap_ = PANGO_FT2_FONT_MAP (pfm); @@ -52,8 +59,6 @@ All_font_metrics::All_font_metrics (string path) pango_dpi_ = PANGO_RESOLUTION; pango_ft2_font_map_set_resolution (pango_ft2_fontmap_, pango_dpi_, pango_dpi_); - - pango_dict_ = new Scheme_hash_table; #endif search_path_.parse_path (path); @@ -61,16 +66,21 @@ All_font_metrics::All_font_metrics (string path) All_font_metrics::~All_font_metrics () { - otf_dict_->unprotect (); - #if HAVE_PANGO_FT2 - pango_dict_->unprotect (); g_object_unref (pango_ft2_fontmap_); #endif } -All_font_metrics::All_font_metrics (All_font_metrics const &) +SCM +All_font_metrics::mark_smob () const { +#if HAVE_PANGO_FT2 + if (pango_dict_) + scm_gc_mark (pango_dict_->self_scm ()); +#endif + if (otf_dict_) + return otf_dict_->self_scm (); + return SCM_UNDEFINED; } #if HAVE_PANGO_FT2 @@ -86,8 +96,7 @@ All_font_metrics::find_pango_font (PangoFontDescription const *description, SCM val; if (!pango_dict_->try_retrieve (key, &val)) { - if (be_verbose_global) - progress_indication ("\n[" + string (pango_fn)); + debug_output ("[" + string (pango_fn), true); // start on a new line Pango_font *pf = new Pango_font (pango_ft2_fontmap_, description, @@ -98,20 +107,19 @@ All_font_metrics::find_pango_font (PangoFontDescription const *description, pango_dict_->set (key, val); pf->unprotect (); - if (be_verbose_global) - progress_indication ("]"); + debug_output ("]", false); pf->description_ = scm_cons (SCM_BOOL_F, scm_from_double (1.0)); } g_free (pango_fn); - return dynamic_cast (unsmob_metrics (val)); + return unsmob (val); } #endif Open_type_font * -All_font_metrics::find_otf (string name) +All_font_metrics::find_otf (const string &name) { SCM sname = ly_symbol2scm (name.c_str ()); SCM val; @@ -124,27 +132,25 @@ All_font_metrics::find_otf (string name) if (file_name.empty ()) return 0; - if (be_verbose_global) - progress_indication ("\n[" + file_name); + debug_output ("[" + file_name, true); // start on a new line val = Open_type_font::make_otf (file_name); - if (be_verbose_global) - progress_indication ("]"); + debug_output ("]", false); - unsmob_metrics (val)->file_name_ = file_name; + unsmob (val)->file_name_ = file_name; SCM name_string = ly_string2scm (name); - unsmob_metrics (val)->description_ = scm_cons (name_string, + unsmob (val)->description_ = scm_cons (name_string, scm_from_double (1.0)); otf_dict_->set (sname, val); - unsmob_metrics (val)->unprotect (); + unsmob (val)->unprotect (); } - return dynamic_cast (unsmob_metrics (val)); + return unsmob (val); } Font_metric * -All_font_metrics::find_font (string name) +All_font_metrics::find_font (const string &name) { Font_metric *f = find_otf (name); @@ -155,5 +161,3 @@ All_font_metrics::find_font (string name) return f; } - -All_font_metrics *all_fonts_global;