X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Finclude%2Fduration.hh;h=959ed09e1be5edb137bb776357ddb93f4bfe22da;hb=f4abbfff5f0d985a457e15586dbcc3ae473b0dee;hp=3f352fccc2b5aa3a9c46be66639bc8e675d9ccc9;hpb=11be23f380bcb249d49269cfa6f7889c6829011f;p=lilypond.git diff --git a/lily/include/duration.hh b/lily/include/duration.hh index 3f352fccc2..959ed09e1b 100644 --- a/lily/include/duration.hh +++ b/lily/include/duration.hh @@ -1,48 +1,61 @@ /* - duration.hh -- declare Duration - - source file of the LilyPond music typesetter + This file is part of LilyPond, the GNU music typesetter. - (c) 1997--2000 Jan Nieuwenhuizen + Copyright (C) 1997--2014 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 DURATION_HH #define DURATION_HH -#include "flower-proto.hh" -#include "rational.hh" - +#include "moment.hh" /** A musical duration. - */ -struct Duration { +*/ +struct Duration +{ +public: + Duration (); - /// is the "plet factor" of this note != 1 ? - bool plet_b (); - String str () const; - void set_plet (int,int ); - void compress (Rational); - Rational length_mom () const ; - static int compare (Duration const&, Duration const&); + Duration (int, int); + Duration (Rational, bool scale); + string to_string () const; - /// Logarithm of the base duration. - int durlog_i_; - int dots_i_; + Duration compressed (Rational) const; + Rational get_length () const; + Rational factor () const { return factor_; } + int duration_log () const; + int dot_count () const; + + static int compare (Duration const &, Duration const &); - /* - JUNKME. - */ - int tuplet_iso_i_; // 2/3; 2 is not duration, maar of count! - int tuplet_type_i_; + DECLARE_SCHEME_CALLBACK (less_p, (SCM a, SCM b)); + DECLARE_SIMPLE_SMOBS (Duration); + +private: + /// Logarithm of the base duration. + int durlog_; + int dots_; + Rational factor_; }; -#include "compare.hh" -INSTANTIATE_COMPARE(Duration, Duration::compare); +INSTANTIATE_COMPARE (Duration, Duration::compare); -int compare (Array*, Array*); +extern SCM Duration_type_p_proc; #endif // DURATION_HH