From: fred Date: Sun, 24 Mar 2002 19:52:02 +0000 (+0000) Subject: lilypond-0.0.50 X-Git-Tag: release/1.5.59~4218 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=81e5f3a5ef9ea5033e2c1c95598fe8fb8865e289;p=lilypond.git lilypond-0.0.50 --- diff --git a/input/midi.ly b/input/midi.ly deleted file mode 100644 index 8207361f55..0000000000 --- a/input/midi.ly +++ /dev/null @@ -1,28 +0,0 @@ -% midi.ly -% test source for lilypond-s midi output - -melodie = \melodic{ - \clef\violin - \meter{ 2/4 } - c c | g g | a a | g2 - f f | e e | d d8.( e16 | )c2 | % :| - -} - -begeleiding = \melodic{ - \clef\bass - \meter{ 2/4 } - \octave{'c} - c c' | e' c' | f' c' | e' c' - d' b | c' a | f g | c2 | - -} - -\score{ - \staff{ melodie } - \staff{ begeleiding } - \midi{ - \tempo 4:120 - } -} - diff --git a/lily/include/headreg.hh b/lily/include/headreg.hh deleted file mode 100644 index eaa2d6f9d7..0000000000 --- a/lily/include/headreg.hh +++ /dev/null @@ -1,28 +0,0 @@ -/* - headreg.hh -- part of LilyPond - - (c) 1997 Han-Wen Nienhuys -*/ - - -#ifndef HEADREG_HH -#define HEADREG_HH -#include "register.hh" - -struct Notehead_register : Request_register { - Item* note_p_; - Rhythmic_req * note_req_l_; - int dir_i_; - - /* *************** */ - Notehead_register(); - virtual bool try_request(Request *req_l) ; - virtual void process_requests(); - virtual void pre_move_processing(); - virtual void post_move_processing(); - void set_feature(Features); - NAME_MEMBERS(Notehead_register); -}; - - -#endif // HEADREG_HH diff --git a/lily/include/rest.hh b/lily/include/rest.hh deleted file mode 100644 index 90e5f518a3..0000000000 --- a/lily/include/rest.hh +++ /dev/null @@ -1,29 +0,0 @@ -/* - rest.hh -- part of LilyPond - - (c) 1996,97 Han-Wen Nienhuys -*/ - -#ifndef REST_HH -#define REST_HH -#include "item.hh" - -/** typeset a Rest. A "vanilla" item. - */ -struct Rest : Item { - - int dots; - int balltype; - - /// rests can be translated up and down. - int pos_i_; - /* *************** */ - - - Rest(Duration); - void do_print()const; -NAME_MEMBERS(Rest); - Molecule* brew_molecule_p()const; -}; -#endif - diff --git a/lily/rest.cc b/lily/rest.cc deleted file mode 100644 index 3e582511e9..0000000000 --- a/lily/rest.cc +++ /dev/null @@ -1,54 +0,0 @@ -/* - rest.cc -- implement Rest - - source file of the LilyPond music typesetter - - (c) 1997 Han-Wen Nienhuys -*/ -#include "duration.hh" -#include "rest.hh" -#include "dimen.hh" -#include "debug.hh" -#include "paper-def.hh" -#include "lookup.hh" -#include "molecule.hh" -#include "rest.hh" - -Rest::Rest(Duration d) -{ - balltype = d.type_i_; - dots = d.dots_i_; - pos_i_ = 0; -} - - -IMPLEMENT_STATIC_NAME(Rest); - -void -Rest::do_print()const -{ -#ifndef NPRINT - mtor << "Rest "<lookup_l()->rest(balltype); - - Molecule *m = new Molecule(Atom(s)); - if (dots) { - Symbol d =p->lookup_l()->dots(dots); - Molecule dm; - dm.add(Atom(d)); - m->add_right(dm); - } - m->translate(Offset(0,pos_i_ * paper()->internote())); - return m; -} -