]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/bar.hh
Parser: Remove all trailing whitespace (to make diffs easier in the future)
[lilypond.git] / lily / include / bar.hh
index e884883fa77be20c6ae68c0c12065693a4306123..8fbe6797df51b6e88e5a48b78612150da632b830 100644 (file)
@@ -1,24 +1,41 @@
 /*
-  bar.hh -- part of GNU LilyPond
+  This file is part of LilyPond, the GNU music typesetter.
 
-  (c) 1996--1999 Han-Wen Nienhuys
+  Copyright (C) 1996--2010 Han-Wen Nienhuys
+
+  LilyPond is free software: you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation, either version 3 of the License, or
+  (at your option) any later version.
+
+  LilyPond is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+
+  You should have received a copy of the GNU General Public License
+  along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef BAR_HH
 #define BAR_HH
-#include "item.hh"
+
+#include "lily-proto.hh"
+#include "grob-interface.hh"
 
 /**
-  A vertical bar.
- */
-class Bar:public Item {
+   A vertical bar.
+*/
+class Bar
+{
 public:
-  VIRTUAL_COPY_CONS(Score_element);
-  Bar();
-protected:
-  virtual void do_pre_processing ();
-  virtual Molecule* do_brew_molecule_p () const;
-  virtual Real get_bar_size () const;
+  DECLARE_GROB_INTERFACE();
+
+  static Stencil compound_barline (Grob *, string, Real height);
+  static Stencil simple_barline (Grob *, Real wid, Real height);
+  DECLARE_SCHEME_CALLBACK (get_staff_bar_size, (SCM));
+  DECLARE_SCHEME_CALLBACK (print, (SCM));
+  DECLARE_SCHEME_CALLBACK (before_line_breaking, (SCM));
 };
 #endif // BAR_HH