]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/rest.hh
* configure.in: Test for and accept lmodern if EC fonts not found.
[lilypond.git] / lily / include / rest.hh
index 67ca259f545429bcfb35fea1fe7ec6f26cfd0520..e71d12657df9485425097904833b459786bbc366 100644 (file)
@@ -1,27 +1,28 @@
 /*
-  rest.hh -- part of LilyPond
+  rest.hh -- declare Rest
 
-  (c) 1996,97 Han-Wen Nienhuys
+  source file of the GNU LilyPond music typesetter
+
+  (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
+
 #ifndef REST_HH
 #define REST_HH
-#include "item.hh"
 
-struct Rest : Item {
+#include "lily-guile.hh"
 
-    int dots;
-    int balltype;
-    
-    /// rests can be translated up and down.
-    int pos_i_;
-    /* *************** */
+class Grob;
 
-
-    Rest(Duration);
-    void do_print()const;
-NAME_MEMBERS(Rest);
-    Molecule* brew_molecule_p()const;
+class  Rest
+{
+public:
+  DECLARE_SCHEME_CALLBACK (after_line_breaking, (SCM ));
+  static bool has_interface (Grob*);
+  static String glyph_name (Grob*, int, String, bool); 
+  static SCM brew_internal_stencil (SCM, bool);
+  DECLARE_SCHEME_CALLBACK (extent_callback, (SCM,SCM));
+  DECLARE_SCHEME_CALLBACK (polyphonic_offset_callback, (SCM,SCM));
+  DECLARE_SCHEME_CALLBACK (print, (SCM ));
 };
-#endif 
-
+#endif // REST_HH