]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/stream-event.hh
4e1688f6f466a7fa3436b3ebfd082f67845f1181
[lilypond.git] / lily / include / stream-event.hh
1 /*
2   stream-event.hh -- declare Stream_event
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2005-2006 Erik Sandberg <mandolaerik@gmail.com>
7 */
8
9 #ifndef STREAM_EVENT_HH
10 #define STREAM_EVENT_HH
11
12 #include "lily-proto.hh"
13 #include "smobs.hh"
14 #include "prob.hh"
15
16 class Stream_event : public Prob
17 {
18 public:
19   Stream_event ();
20   VIRTUAL_COPY_CONSTRUCTOR (Stream_event, Stream_event);
21   // todo: remove unneeded constructors
22   Stream_event (SCM event_class, SCM mutable_props=SCM_EOL);
23   Stream_event (SCM class_name, Input *);
24   Stream_event (Stream_event *ev);
25
26   Input *origin () const;
27   void set_spot (Input *i);
28   bool internal_in_event_class (SCM class_name);
29
30   DECLARE_SCHEME_CALLBACK (undump, (SCM));
31   DECLARE_SCHEME_CALLBACK (dump, (SCM));
32
33 };
34
35 #define in_event_class(class_name) internal_in_event_class (ly_symbol2scm (class_name))
36
37 Stream_event *unsmob_stream_event (SCM);
38 DECLARE_TYPE_P (Stream_event);
39
40 #endif /* STREAM_EVENT_HH */