]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/lily-guile.hh
release: 1.3.53
[lilypond.git] / lily / include / lily-guile.hh
1 /*
2   lily-guile.hh encapsulate guile
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1998--2000 Jan Nieuwenhuizen <janneke@gnu.org>
7 */
8
9 #ifndef LILY_GUILE_HH
10 #define LILY_GUILE_HH
11
12 #include  "string.hh"
13
14 #include <guile/gh.h>
15 #include <libguile.h>
16 #include "direction.hh"
17
18 /*
19   conversion functions follow the GUILE naming convention, i.e.
20
21     A ly_B2A (B b);
22  */
23 SCM ly_str02scm (char const*c);
24 SCM ly_symbol2scm (char const *);
25 String ly_scm2string (SCM s);
26 String ly_symbol2string (SCM);
27 SCM ly_offset2scm (Offset);
28 Offset ly_scm2offset (SCM);
29
30 Interval ly_scm2interval (SCM);
31 SCM ly_interval2scm (Interval);
32
33 SCM ly_parse_scm (char const* s, int* n);
34 SCM ly_quote_scm (SCM s);
35 SCM ly_type (SCM);
36
37 /*
38   display and print newline.
39  */
40 void ly_display_scm (SCM s);
41
42 #include "array.hh"
43
44 void read_lily_scm_file (String);
45 void init_lily_guile ();
46
47 bool isdir_b (SCM s);
48
49 /*
50   these conversion functions also do a typecheck on the argument, and
51   return a default value if S has the wrong type.
52 */
53
54 Direction to_dir (SCM s);
55 bool to_boolean (SCM s);
56
57 void init_ly_protection ();
58 unsigned int ly_scm_hash (SCM s);
59
60 SCM index_cell (SCM cellp, Direction d);
61 SCM index_set_cell (SCM cellp, Direction d, SCM val);
62
63
64 /*
65   snarfing.
66  */
67 void add_scm_init_func (void (*)());
68
69 #define ADD_SCM_INIT_FUNC(name, func)\
70 class name ## _scm_initter {                    \
71 public:\
72   name ## _scm_initter ()                       \
73   {                                             \
74     add_scm_init_func (func);           \
75   }                                             \
76 } _ ## name ## _scm_initter;                    \
77 /* end define */
78
79 #endif // LILY_GUILE_HH