]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/span-bar.hh
release: 1.0.1
[lilypond.git] / lily / include / span-bar.hh
index d181ebbc9531f9ca0f87fd279206301d6a60cc85..1aec5715141053a08e59daa4c2a0afd433b100c7 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
+  (c)  1997--1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 
 
 #include "bar.hh"
 
-class Span_bar : public Bar
+class Span_bar : public virtual Bar
 {
-    Link_array<Bar> spanning_l_arr_;
+    Link_array<Score_element> spanning_l_arr_;
 
 public:
+    Span_bar();
     DECLARE_MY_RUNTIME_TYPEINFO;
-    SCORE_ELEM_CLONE(Span_bar);
-    void add(Bar* );
-    void set( Vertical_align_element *);
+    SCORE_ELEMENT_CLONE(Span_bar);
+    virtual Span_bar* access_Span_bar ();
+    void add_bar (Bar*);
+    void set_align (Align_element *);
 
 protected:
-    virtual Interval do_width()const;
+    void evaluate_empty ();
+    virtual Interval do_width() const;
     virtual void do_pre_processing();
-    virtual void translate_y(Real y);
+    virtual void do_post_processing();
     
-    virtual void do_substitute_dependency(Score_elem*,Score_elem*);
-    virtual Molecule * brew_molecule_p()const;
-    virtual Symbol get_bar_sym(Real dy) const;
+    virtual void do_substitute_dependency (Score_element*,Score_element*);
+    virtual Molecule * brew_molecule_p() const;
+    virtual Atom get_bar_sym (Real dy) const;
 };
 
 #endif // SPAN_BAR_HH