]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/dispatcher.hh
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / lily / include / dispatcher.hh
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 2005 Erik Sandberg  <mandolaerik@gmail.com>
5
6   LilyPond is free software: you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation, either version 3 of the License, or
9   (at your option) any later version.
10
11   LilyPond is distributed in the hope that it will be useful,
12   but WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   GNU General Public License for more details.
15
16   You should have received a copy of the GNU General Public License
17   along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #ifndef DISPATCHER_HH
21 #define DISPATCHER_HH
22
23 #include "listener.hh"
24 #include "stream-event.hh"
25 #include "smobs.hh"
26
27 class Dispatcher : public Smob<Dispatcher>
28 {
29 public:
30   int print_smob (SCM, scm_print_state *) const;
31   SCM mark_smob () const;
32   static const char * const type_p_name_;
33   virtual ~Dispatcher ();
34 private:
35   /* Hash table. Each event-class maps to a list of listeners. */
36   SCM listeners_;
37   /* alist of dispatchers that we listen to. Each entry is a
38      (dist . priority) pair. */
39   SCM dispatchers_;
40   SCM listen_classes_;
41   void dispatch (SCM);
42   /* priority counter. Listeners with low priority receive events
43      first. */
44   int priority_count_;
45   void internal_add_listener (SCM callback, SCM event_class, int priority);
46 public:
47   Dispatcher ();
48   void broadcast (Stream_event *ev);
49   bool is_listened_class (SCM);
50   SCM listened_types ();
51   void add_listener (Listener, SCM event_class);
52   void add_listener (SCM callback, SCM event_class);
53   void remove_listener (Listener, SCM event_class);
54   void register_as_listener (Dispatcher *dist);
55   void unregister_as_listener (Dispatcher *dist);
56 };
57
58
59 #endif // DISPATCHER_HH