]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/paper-column-engraver.hh
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / lily / include / paper-column-engraver.hh
index 9274988e05072f76ecd8c55c752f62c558d94f56..a176fc48ebf6a667d894eb352f2e9e62851c52b6 100644 (file)
@@ -42,20 +42,20 @@ protected:
   virtual void initialize ();
   virtual void finalize ();
 
-  DECLARE_TRANSLATOR_LISTENER (break);
-  DECLARE_TRANSLATOR_LISTENER (label);
+  void listen_break (Stream_event *);
+  void listen_label (Stream_event *);
 
-  DECLARE_ACKNOWLEDGER (item);
-  DECLARE_ACKNOWLEDGER (note_spacing);
-  DECLARE_ACKNOWLEDGER (staff_spacing);
+  void acknowledge_item (Grob_info);
+  void acknowledge_note_spacing (Grob_info);
+  void acknowledge_staff_spacing (Grob_info);
 
   System *system_;
-  std::vector<Stream_event *> break_events_;
-  std::vector<Stream_event *> label_events_;
+  vector<Stream_event *> break_events_;
+  vector<Stream_event *> label_events_;
   int breaks_;                  // used for stat printing
   Paper_column *command_column_;
   Paper_column *musical_column_;
-  std::vector<Item *> items_;
+  vector<Item *> items_;
   bool first_;
   bool made_columns_;
   Moment last_moment_;