X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Finclude%2Fpaper-book.hh;h=9530c94b7076fb5a9137253adbcd8732a6900836;hb=feedaf62a490820021a83b7096a3fda1884beaf6;hp=0a18454979cf902d3512506db329aa849adedc9d;hpb=0ccace80447d10fe0f52f9f189f01d60d60202e8;p=lilypond.git diff --git a/lily/include/paper-book.hh b/lily/include/paper-book.hh index 0a18454979..9530c94b70 100644 --- a/lily/include/paper-book.hh +++ b/lily/include/paper-book.hh @@ -1,34 +1,81 @@ /* - paper-book.hh -- declare Paper_book + This file is part of LilyPond, the GNU music typesetter. - source file of the GNU LilyPond music typesetter + Copyright (C) 2004--2015 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_BOOK_HH #define PAPER_BOOK_HH -#include "lily-guile.hh" -#include "parray.hh" -#include "protected-scm.hh" +#include "std-vector.hh" +#include "smobs.hh" +#include "lily-proto.hh" -#define PAGE_LAYOUT "ps" +/** Paper_book collects headers, systems (Paper_system) and texts, and + exports them to the output backend, either as systems or as + completely formatted pages. */ -class Paper_book +class Paper_book : public Smob { public: - Array headers_; - Link_array papers_; - Array scores_; + SCM mark_smob () const; + static const char * const type_p_name_; + virtual ~Paper_book (); +private: + SCM systems_; + SCM pages_; + SCM performances_; + + void add_score_title (SCM); + SCM get_score_title (SCM); + +public: + SCM header_; + SCM header_0_; + SCM scores_; + SCM bookparts_; + Paper_book *parent_; + Output_def *paper_; Paper_book (); - Link_array *get_pages (); - SCM get_scopes (int); - Stencil* get_title (int); - void output (String); - void classic_output (String); + + Output_def *top_paper (); + + void add_score (SCM); + void add_bookpart (SCM); + void add_performance (SCM); + + SCM performances () const; + SCM systems (); + SCM pages (); + SCM get_system_specs (); + + Stencil book_title (); + Stencil score_title (SCM); + + void classic_output (SCM output_channel); + void output (SCM output_channel); + +protected: + void classic_output_aux (SCM output, + long *first_performance_number); + long output_aux (SCM output_channel, + bool is_last, + long *first_page_number, + long *first_performance_number); }; -#endif /* PAPER_BOOK_HH */ +#endif /* PAPER_BOOK_HH */