]> git.donarmstrong.com Git - lilypond.git/blob - lily/stream-event-scheme.cc
Merge with master
[lilypond.git] / lily / stream-event-scheme.cc
1 /*
2   stream-event.cc -- implement Scheme bindings for Stream_event
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2006--2007 Erik Sandberg  <mandolaerik@gmail.com>
7 */
8
9 #include "stream-event.hh"
10
11 LY_DEFINE (ly_make_stream_event, "ly:make-stream-event",
12            1, 1, 0, (SCM cl, SCM proplist),
13            "Creates a stream event of class @var{cl} with the given mutable property list.\n" )
14 {
15   LY_ASSERT_TYPE (ly_is_symbol, cl, 1);
16
17   /* should be scm_list_p, but scm_list_p is expensive. */
18   LY_ASSERT_TYPE(scm_is_pair, proplist, 2);
19   
20   if (proplist == SCM_UNDEFINED)
21     proplist = SCM_EOL;
22
23   Stream_event *e = new Stream_event (cl, proplist);
24   return e->unprotect ();
25 }
26
27 LY_DEFINE (ly_event_property, "ly:event-property", 
28            2, 0, 0, (SCM sev, SCM sym),
29            "Get the property @var{sym} of stream event @var{mus}.\n"
30            "If @var{sym} is undefined, return @code{'()}.\n")
31 {
32   LY_ASSERT_SMOB (Stream_event, sev, 1);
33   LY_ASSERT_TYPE (ly_is_symbol, sym, 2);
34
35   Stream_event *e = unsmob_stream_event (sev);
36
37   return e->internal_get_property (sym);
38 }
39
40 LY_DEFINE (ly_event_set_property_x, "ly:event-set-property!",
41            3, 0, 0, (SCM ev, SCM sym, SCM val),
42            "Set property @var{sym} in event @var{ev} to @var{val}.")
43 {
44   LY_ASSERT_SMOB (Stream_event, ev, 1);
45   LY_ASSERT_TYPE (ly_is_symbol, sym, 2);
46   
47   return ly_prob_set_property_x (ev, sym, val);
48 }
49
50 LY_DEFINE (ly_event_deep_copy, "ly:event-deep-copy",
51            1, 0, 0, (SCM m),
52            "Copy @var{m} and all sub expressions of @var{m}")
53 {
54   SCM copy = m;
55   if (Stream_event *ev = unsmob_stream_event (m))
56     {
57       ev = ev->clone ();
58       copy = ev->unprotect ();
59     }
60   else if (scm_is_pair (m))
61     copy = scm_cons (ly_event_deep_copy (scm_car (m)),
62                      ly_event_deep_copy (scm_cdr (m)));
63
64   return copy;
65 }