]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/bar.hh
patch::: 1.3.62.hwn1
[lilypond.git] / lily / include / bar.hh
index eecc32f51fb0bc1c98ee583a6607bc0154f9dabc..92c03f20d87315213a08479af22c0ae6ddb230d5 100644 (file)
@@ -1,24 +1,31 @@
 /*
   bar.hh -- part of GNU LilyPond
 
-  (c) 1996,97 Han-Wen Nienhuys
+  (c) 1996--2000 Han-Wen Nienhuys
 */
 
 #ifndef BAR_HH
 #define BAR_HH
 #include "item.hh"
+
 /**
-  TODO: connections with pre and postbreak
+  A vertical bar.
  */
 class Bar:public Item {
 public:
-    String type;
-    
-    NAME_MEMBERS();
-    Bar(String type);
-private:
-    void do_print() const;
-    Molecule*brew_molecule_p()const;
+  VIRTUAL_COPY_CONS(Score_element);
+  Bar(SCM);
+
+  Molecule compound_barline (String, Real height) const;
+  Molecule simple_barline (Real wid, Real height) const;      
+  static SCM brew_molecule (SCM);
+  
+
+public:
+  SCM member_before_line_breaking ();
+  static SCM before_line_breaking (SCM);
+
+  virtual Real get_bar_size () const;
 };
 #endif // BAR_HH