]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/script-column.hh
* Documentation/user/refman.itely: Compile fix for \mark #'(music ...).
[lilypond.git] / lily / include / script-column.hh
index f6adf9ffcbe6c20a6200c129c6688aa516afa3ef..ff0ed55bc6cd043480df252952f618bb4562d3f4 100644 (file)
@@ -1,33 +1,28 @@
-/*
-  script-column.hh -- declare Script_column
+/*   
+  g-script-column.hh -- declare Script_column
+  
+  source file of the GNU LilyPond music typesetter
+  
+  (c) 1999--2002 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  
+ */
 
-  source file of the LilyPond music typesetter
+#ifndef Script_COLUMN_HH
+#define Script_COLUMN_HH
 
-  (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
-*/
+#include "lily-guile.hh"
+#include "lily-proto.hh"
 
+class Script_column
+{
+public:
+  static void add_staff_sided (Grob*, Item*);
+  DECLARE_SCHEME_CALLBACK (before_line_breaking, (SCM ));
+    static bool has_interface (Grob*);
 
-#ifndef SCRIPT_COLUMN_HH
-#define SCRIPT_COLUMN_HH
+};
 
-#include "item.hh"
 
-/** a struct for treating a group of noteheads (noteheads, stem
-  (chord) and scripts ) as a single entity.  */
-class Script_column : public Item {
-protected:
-    virtual Interval do_height()const;
-    virtual Interval do_width()const;
-    virtual void do_print() const ;
-    virtual void do_pre_processing();
-public:
-    Array<Script *> script_l_arr_;
-    Array<Item *> support_l_arr_;
-    
-    NAME_MEMBERS(Script_column);
-    virtual void translate(Offset);
-    void add(Script *);
-    void add_support(Item*);
-};
+#endif /* Script_COLUMN_HH */
+
 
-#endif // SCRIPT_COLUMN_HH