]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/axis-group-interface.hh
Fix some bugs in the dynamic engraver and PostScript backend
[lilypond.git] / lily / include / axis-group-interface.hh
index 62b65810782134e04e5337b95de2019bea6abcaf..94e1a256d9dc0da75e9bb47e24bfb4372cbbce5b 100644 (file)
@@ -1,32 +1,33 @@
-/*   
+/*
   axis-group-interface.hh -- declare Axis_group_interface
-  
+
   source file of the GNU LilyPond music typesetter
-  
-  (c) 2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
-  
- */
+
+  (c) 2000--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
+*/
 
 #ifndef AXIS_GROUP_INTERFACE_HH
 #define AXIS_GROUP_INTERFACE_HH
 
-#include "group-interface.hh"
+#include "std-vector.hh"
+#include "lily-proto.hh"
+#include "lily-guile.hh"
 
 /**
-
-*/
-struct Axis_group_interface 
+ */
+struct Axis_group_interface
 {
-  DECLARE_SCHEME_CALLBACK(group_extent_callback, (SCM smob, SCM axis));
-  static Interval relative_group_extent (Axis, Score_element * common, SCM list);
-
-  static void add_element (Score_element* me, Score_element*);
-  static void set_axes (Score_element*,Axis,Axis);
-  static bool axis_b (Score_element*,Axis);
-  static Link_array<Score_element> get_children (Score_element*);
-  static bool has_interface (Score_element*);
-  static void set_interface (Score_element*);
-  
+  static SCM generic_group_extent (Grob *me, Axis a);
+  DECLARE_SCHEME_CALLBACK (width, (SCM smob));
+  DECLARE_SCHEME_CALLBACK (height, (SCM smob));
+  static Interval relative_group_extent (vector<Grob*> const &list,
+                                        Grob *common, Axis);
+
+  static void add_element (Grob *me, Grob *);
+  static void set_axes (Grob *, Axis, Axis);
+  static bool has_axis (Grob *, Axis);
+  static void get_children (Grob *, vector<Grob*> *);
+  static bool has_interface (Grob *);
 };
 
 #endif /* AXIS_GROUP_INTERFACE_HH */