]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/scheme-engraver.hh
resolve merge
[lilypond.git] / lily / include / scheme-engraver.hh
diff --git a/lily/include/scheme-engraver.hh b/lily/include/scheme-engraver.hh
new file mode 100644 (file)
index 0000000..9ae0591
--- /dev/null
@@ -0,0 +1,79 @@
+/* 
+  scheme-engraver.hh -- declare Scheme_engraver
+  
+  source file of the GNU LilyPond music typesetter
+  
+  Copyright (c) 2009--2011 Han-Wen Nienhuys <hanwen@lilypond.org>
+
+  LilyPond is free software: you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation, either version 3 of the License, or
+  (at your option) any later version.
+
+  LilyPond is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+
+  You should have received a copy of the GNU General Public License
+  along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.  
+  
+*/
+
+#ifndef SCHEME_ENGRAVER_HH
+#define SCHEME_ENGRAVER_HH
+
+#include "engraver.hh"
+
+class Scheme_engraver : public Engraver {
+public:
+  void init_from_scheme (SCM definition);
+  TRANSLATOR_DECLARATIONS_NO_LISTENER (Scheme_engraver);
+  
+  static Listener get_listener (void *generic_arg, SCM event);
+  
+protected:
+  ~Scheme_engraver ();
+  
+  void stop_translation_timestep ();
+  void start_translation_timestep ();
+  void process_music ();
+  void process_acknowledged ();
+
+  virtual void initialize ();
+  virtual void finalize ();
+  virtual void derived_mark () const;
+  virtual translator_listener_record *get_listener_list () const;
+  virtual bool must_be_last () const;
+
+private:
+  void acknowledge_grob_by_hash (Grob_info info, SCM iface_function_hash);
+  void init_acknowledgers (SCM alist, SCM *hash);
+
+  DECLARE_ACKNOWLEDGER (grob);
+  DECLARE_END_ACKNOWLEDGER (grob);
+
+  bool must_be_last_;
+  
+  SCM acknowledge_grob_function_;
+  SCM stop_translation_timestep_function_;
+  SCM start_translation_timestep_function_;
+  SCM process_music_function_;
+  SCM process_acknowledged_function_;
+  SCM initialize_function_;
+  SCM finalize_function_;
+
+  // hashq table of interface-symbol -> scheme-function
+  SCM interface_acknowledger_hash_;
+  SCM interface_end_acknowledger_hash_;
+
+  // Alist of listened-symbol . scheme-function
+  SCM listeners_alist_;
+
+  // We dont use this, but need it for the documentation boilerplate.
+  static translator_listener_record *listener_list_;
+  translator_listener_record *per_instance_listeners_;
+};
+
+#endif /* SCHEME_ENGRAVER_HH */
+