]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-1.1.35
authorfred <fred>
Tue, 26 Mar 2002 22:06:17 +0000 (22:06 +0000)
committerfred <fred>
Tue, 26 Mar 2002 22:06:17 +0000 (22:06 +0000)
lily/include/staff-sym.hh [deleted file]
lily/priority-halign-engraver.cc [deleted file]
lily/template7.cc [deleted file]

diff --git a/lily/include/staff-sym.hh b/lily/include/staff-sym.hh
deleted file mode 100644 (file)
index eeafd6d..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
-  staffsym.hh -- declare Staff_symbol
-
-  source file of the GNU LilyPond music typesetter
-
-  (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
-*/
-
-
-#ifndef STAFFSYM_HH
-#define STAFFSYM_HH
-#include "spanner.hh"
-
-/**
-  This spanner draws the lines of a pstaff.
-  The bottom line is position 0.
-  */
-class Staff_symbol : public Spanner
-{
-public:
-  /// this many lines.
-  int no_lines_i_;
-  Real interline_f_;
-
-  
-  Staff_symbol ();
-  Real inter_note_f() const;
-  int steps_i() const;
-protected:
-  VIRTUAL_COPY_CONS(Score_element);
-  virtual Interval do_height () const;
-  virtual Molecule* do_brew_molecule_p() const;
-  virtual void do_print() const;
-};
-#endif // STAFFSYM_HH
diff --git a/lily/priority-halign-engraver.cc b/lily/priority-halign-engraver.cc
deleted file mode 100644 (file)
index 3f19e66..0000000
+++ /dev/null
@@ -1,50 +0,0 @@
-/*
-  score-halign-reg.cc -- implement Priority_horizontal_align_engraver
-
-  source file of the GNU LilyPond music typesetter
-
-  (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
-*/
-
-#include "bar.hh"
-#include "break-align-item.hh"
-#include "priority-halign-engraver.hh"
-#include "score-priority-engraver.hh"
-
-Priority_horizontal_align_engraver::Priority_horizontal_align_engraver()
-{
-  halign_p_ =0;
-}
-
-void
-Priority_horizontal_align_engraver::do_pre_move_processing()
-{
-  if (halign_p_) 
-    {
-      typeset_element (halign_p_);
-      halign_p_ =0;
-    }
-}
-
-void
-Priority_horizontal_align_engraver::acknowledge_element (Score_element_info i)
-{
-  Engraver* reg = i.origin_grav_l_arr_[0];
-  if (dynamic_cast<Score_priority_engraver *> (reg))
-    {
-      if (!halign_p_) 
-       {
-         halign_p_ = new Break_align_item;
-         halign_p_->breakable_b_ = true;
-         announce_element (Score_element_info (halign_p_,0));
-       }
-      Item * it = dynamic_cast <Item *> (i.elem_l_);
-      if (it->break_priority_i_ == 0)
-       halign_p_->center_l_ = it;
-
-      halign_p_->add_item (it, it->break_priority_i_);
-    }
-}
-
-
-ADD_THIS_TRANSLATOR(Priority_horizontal_align_engraver);
diff --git a/lily/template7.cc b/lily/template7.cc
deleted file mode 100644 (file)
index d7d5740..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-#/*
-  template7.cc -- instantiate Request_column
-
-  source file of the GNU LilyPond music typesetter
-
-  (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
-*/
-
-#include "proto.hh"
-#include "cursor.tcc"
-#include "pcursor.tcc"
-#include "plist.hh"
-#include "plist.tcc"
-
-#include "music-list.hh"
-
-POINTERLIST_INSTANTIATE(Music);
-