X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Finclude%2Fpaper-system.hh;h=4fc87c7f766241a4e1a329eb6e0290506fcbcd56;hb=058370efc7e9710f149d0f444328bb1fcd7bdec1;hp=50b4b4404b5770decdbd2b7e01bb82c2744bc639;hpb=6b76fa0cfec5f88f03b8c512f1d5ef7da8f8f1ce;p=lilypond.git diff --git a/lily/include/paper-system.hh b/lily/include/paper-system.hh index 50b4b4404b..4fc87c7f76 100644 --- a/lily/include/paper-system.hh +++ b/lily/include/paper-system.hh @@ -1,14 +1,25 @@ /* - paper-system.hh -- declare Paper_system + This file is part of LilyPond, the GNU music typesetter. - source file of the GNU LilyPond music typesetter + Copyright (C) 2004--2014 Jan Nieuwenhuizen - (c) 2004 Jan Nieuwenhuizen + 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 PAPER_SYSTEM_HH #define PAPER_SYSTEM_HH -#include "stencil.hh" +#include "prob.hh" /* A formatted "system" (A block of titling also is a Paper_system) @@ -16,26 +27,9 @@ To save memory, we don't keep around the System grobs, but put the formatted content of the grob is put into a Paper_system. Page-breaking handles Paper_system objects. - - */ -class Paper_system -{ - DECLARE_SMOBS (Paper_system, ); - Stencil stencil_; - bool is_title_; -public: - Interval staff_refpoints_; - Real break_before_penalty_; - int number_; - - Paper_system (Stencil, bool); - - Stencil to_stencil () const; - SCM stencils () const; - bool is_title () const; - Real break_before_penalty () const; -}; - -DECLARE_UNSMOB (Paper_system, paper_system); +*/ +Prob *make_paper_system (SCM immutable_init); +void paper_system_set_stencil (Prob *prob, Stencil s); +SCM get_footnotes (SCM expr); #endif /* PAPER_SYSTEM_HH */