]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/bar.hh
patch::: 1.3.62.hwn1
[lilypond.git] / lily / include / bar.hh
index ee3ae12af8a89732f75157074b7e15e8503951bd..92c03f20d87315213a08479af22c0ae6ddb230d5 100644 (file)
@@ -1,30 +1,31 @@
 /*
   bar.hh -- part of GNU LilyPond
 
-  (c) 1996--1999 Han-Wen Nienhuys
+  (c) 1996--2000 Han-Wen Nienhuys
 */
 
 #ifndef BAR_HH
 #define BAR_HH
 #include "item.hh"
+
 /**
   A vertical bar.
  */
 class Bar:public Item {
 public:
-  String type_str_;
-  bool at_line_start_b_;
+  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);
   
-  VIRTUAL_COPY_CONS(Score_element);
-  Bar ();
 
-protected:
-  virtual void do_pre_processing ();
-  virtual Molecule* do_brew_molecule_p () const;
+public:
+  SCM member_before_line_breaking ();
+  static SCM before_line_breaking (SCM);
 
-private:
-  void do_print () const;
+  virtual Real get_bar_size () const;
 };
 #endif // BAR_HH