]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/script-column.hh
* scm/chords-ignatzek.scm: new file.
[lilypond.git] / lily / include / script-column.hh
index 74ba090bad69189bd5548f9cc937dd12e2160321..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>
+  
+ */
+
+#ifndef Script_COLUMN_HH
+#define Script_COLUMN_HH
 
-  (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.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 "axis-group-item.hh"
 
-/** a struct for treating a group of noteheads (noteheads, stem
-  (chord) and scripts) as a single entity.  */
-class Script_column : public Axis_group_item {
+#endif /* Script_COLUMN_HH */
 
-protected:
-  virtual void do_print() const;
-  virtual void do_substitute_element_pointer (Score_element*, Score_element*);
-  virtual void do_pre_processing() ;
-public:
-  Link_array<Script> script_l_arr_;
-  Link_array<Item> support_l_arr_;
-    
-   
-  virtual void add_script (Script *);
-  void add_support (Item*);
-  Script_column ();
-};
 
-#endif // SCRIPT_COLUMN_HH