]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/dispatcher.hh
Merge remote branch 'origin/master' into release/unstable
[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
26 class Dispatcher : public Smob<Dispatcher>
27 {
28 public:
29   int print_smob (SCM, scm_print_state *);
30   SCM mark_smob ();
31   static const char type_p_name_[];
32   virtual ~Dispatcher ();
33 private:
34   /* Hash table. Each event-class maps to a list of listeners. */
35   SCM listeners_;
36   /* alist of dispatchers that we listen to. Each entry is a
37      (dist . priority) pair. */
38   SCM dispatchers_;
39   SCM listen_classes_;
40   DECLARE_LISTENER (dispatch);
41   /* priority counter. Listeners with low priority receive events
42      first. */
43   int priority_count_;
44   void internal_add_listener (Listener, SCM event_class, int priority);
45 public:
46   Dispatcher ();
47   void broadcast (Stream_event *ev);
48   bool is_listened_class (SCM);
49   SCM listened_types ();
50   void add_listener (Listener, SCM event_class);
51   void remove_listener (Listener, SCM event_class);
52   void register_as_listener (Dispatcher *dist);
53   void unregister_as_listener (Dispatcher *dist);
54 };
55
56
57 #endif // DISPATCHER_HH