From: fred Date: Tue, 26 Mar 2002 23:57:50 +0000 (+0000) Subject: lilypond-1.3.61 X-Git-Tag: release/1.5.59~1212 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=70a92ffb0578806518bed5929a97150661d34409;p=lilypond.git lilypond-1.3.61 --- diff --git a/lily/include/hyphen-engraver.hh b/lily/include/hyphen-engraver.hh deleted file mode 100644 index 160b9e2673..0000000000 --- a/lily/include/hyphen-engraver.hh +++ /dev/null @@ -1,48 +0,0 @@ -/* - hyphen-engraver.hh -- declare Hyphen_engraver - - source file of the GNU LilyPond music typesetter - - (c) 1999 Glen Prideaux -*/ - -#ifndef HYPHEN_ENGRAVER_HH -#define HYPHEN_ENGRAVER_HH - -#include "engraver.hh" -#include "drul-array.hh" -#include "hyphen-spanner.hh" -#include "pqueue.hh" - - -/** - Generate an centred hyphen. Should make a Hyphen_spanner that - typesets a nice centred hyphen of varying length depending on the - gap between syllables. - - We remember the last Text_item that come across. When we get a - request, we create the spanner, and attach the left point to the - last lyrics, and the right point to any lyrics we receive by - then. */ -class Hyphen_engraver : public Engraver -{ - Text_item * last_lyric_l_; - Text_item * current_lyric_l_; - Hyphen_req* req_l_; - Hyphen_spanner* hyphen_spanner_p_; -public: - Hyphen_engraver (); - VIRTUAL_COPY_CONS (Translator); - -protected: - virtual void acknowledge_element (Score_element_info); - virtual void do_removal_processing(); - virtual void do_process_music(); - virtual bool do_try_music (Music*); - virtual void do_pre_move_processing(); - virtual void do_post_move_processing (); -private: - -}; - -#endif // HYPHEN_ENGRAVER_HH diff --git a/lily/include/sustain-pedal.hh b/lily/include/sustain-pedal.hh deleted file mode 100644 index fe1a314746..0000000000 --- a/lily/include/sustain-pedal.hh +++ /dev/null @@ -1,45 +0,0 @@ -/* - sustain-pedal.hh -- declare - - source file of the GNU LilyPond music typesetter - - (c) 2000 Han-Wen Nienhuys - - */ - -#ifndef SUSTAIN_PEDAL_HH -#define SUSTAIN_PEDAL_HH - -#include "item.hh" - - -/* - Urg. - This is almost text - Problem is: - * we have no kerning - * symbols are at wrong place in font - - - - Properties: - - glyph -- text string (TODO: make one large glyph of the Ped symbol, removes need for do_brew_molecule ()) - -*/ - -class Sustain_pedal : public Item -{ -public: - static SCM scheme_molecule (SCM); - - VIRTUAL_COPY_CONS (Score_element); - Sustain_pedal (SCM); -protected: - // Molecule do_brew_molecule () const; - virtual void after_line_breaking (); -}; - - -#endif /* SUSTAIN_PEDAL_HH */ - diff --git a/ly/scales.ly b/ly/scales.ly deleted file mode 100644 index 873f58313b..0000000000 --- a/ly/scales.ly +++ /dev/null @@ -1,32 +0,0 @@ - - -major = #'( - (0 . 0) - (1 . 0) - (2 . 0) - (3 . 0) - (4 . 0) - (5 . 0) - (6 . 0) - - ) -minor = #'( - (0 . 0) - (1 . 0) - (2 . -1) - (3 . 0) - (4 . 0) - (5 . -1) - (6 . -1) - ) - - -%{ OUTDATED: someone please fix these -ionian = 0 -locrian = 1 -aeolian = 3 -mixolydian = 5 -lydian = 7 -phrygian = 8 -dorian = 10 -%}