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