X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Foutput-def.cc;h=b6a83212c162baef798e76f89bbd1c1868642045;hb=4b595e2d9a057fb202b75407e4e6b8f6ba9beeb2;hp=0e29b23fb1933b2fa41bf24fdf79a69cc0c03f26;hpb=4908afe216a92f70fd6f8c8cd0db8a6aa0a10ec1;p=lilypond.git diff --git a/lily/output-def.cc b/lily/output-def.cc index 0e29b23fb1..b6a83212c1 100644 --- a/lily/output-def.cc +++ b/lily/output-def.cc @@ -1,9 +1,20 @@ /* - music-output-def.cc -- implement Output_def + This file is part of LilyPond, the GNU music typesetter. - source file of the GNU LilyPond music typesetter + Copyright (C) 1997--2015 Han-Wen Nienhuys - (c) 1997--2009 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 . */ #include "output-def.hh" @@ -18,7 +29,6 @@ #include "scm-hash.hh" #include "warn.hh" -#include "ly-smobs.icc" #include "program-option.hh" @@ -31,17 +41,18 @@ Output_def::Output_def () smobify_self (); - scope_ = ly_make_anonymous_module (false); + scope_ = ly_make_module (false); } Output_def::Output_def (Output_def const &s) + : Smob () { scope_ = SCM_EOL; parent_ = 0; smobify_self (); input_origin_ = s.input_origin_; - scope_ = ly_make_anonymous_module (false); + scope_ = ly_make_module (false); if (ly_is_module (s.scope_)) ly_module_copy (scope_, s.scope_); } @@ -50,26 +61,22 @@ Output_def::~Output_def () { } -IMPLEMENT_SMOBS (Output_def); -IMPLEMENT_DEFAULT_EQUAL_P (Output_def); SCM -Output_def::mark_smob (SCM m) +Output_def::mark_smob () { - Output_def *mo = (Output_def*) SCM_CELL_WORD_1 (m); - /* FIXME: why is this necessary? all paper_ should be protected by themselves. */ - if (mo->parent_) - scm_gc_mark (mo->parent_->self_scm ()); + if (parent_) + scm_gc_mark (parent_->self_scm ()); - return mo->scope_; + return scope_; } void assign_context_def (Output_def * m, SCM transdef) { - Context_def *tp = unsmob_context_def (transdef); + Context_def *tp = Context_def::unsmob (transdef); assert (tp); if (tp) @@ -83,16 +90,15 @@ assign_context_def (Output_def * m, SCM transdef) SCM find_context_def (Output_def const *m, SCM name) { - Context_def *cd = unsmob_context_def (m->lookup_variable (name)); + Context_def *cd = Context_def::unsmob (m->lookup_variable (name)); return cd ? cd->self_scm () : SCM_EOL; } int -Output_def::print_smob (SCM s, SCM p, scm_print_state *) +Output_def::print_smob (SCM p, scm_print_state *) { - Output_def * def = unsmob_output_def (s); scm_puts ("#< ", p); - scm_puts (def->class_name (), p); + scm_puts (class_name (), p); scm_puts (">", p); return 1; } @@ -118,7 +124,7 @@ Output_def::lookup_variable (SCM sym) const } SCM -Output_def::c_variable (string s) const +Output_def::c_variable (const string &s) const { return lookup_variable (ly_symbol2scm (s.c_str ())); } @@ -248,5 +254,3 @@ line_dimensions_int (Output_def *def, int n) : def->get_dimension (ly_symbol2scm ("indent")); return Interval (ind, lw); } - -