]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/lookup.hh
e4ffb541b76bb812a1362358f651c8dd1fc188b1
[lilypond.git] / lily / include / lookup.hh
1 /*
2   lookup.hh -- declare Lookup
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997--2002 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   Jan Nieuwenhuizen <janneke@gnu.org>
8 */
9
10 #ifndef LOOKUP_HH
11 #define LOOKUP_HH
12
13 #include "string.hh"
14 #include "molecule.hh"
15 #include "flower-proto.hh"
16 #include "direction.hh"
17 #include "box.hh"
18
19 struct Lookup
20 {
21   static Molecule bracket (Axis a, Interval iv, Real thick, Real protude);
22   static Molecule accordion (SCM arg, Real interline_f, Font_metric*fm);
23   static Molecule frame (Box b, Real thick);
24   static Molecule slur (Bezier controls, Real cthick, Real thick);
25   static Molecule bezier_sandwich (Bezier top_curve, Bezier bottom_curve);
26   static Molecule horizontal_slope (Real width, Real slope, Real height);
27   static Molecule beam (Real slope, Real width, Real thick);
28   static Molecule dashed_slur (Bezier, Real thick, Real dash);
29   static Molecule blank (Box b);
30   static Molecule filledbox (Box b);
31   static Molecule roundfilledbox (Box b, Real blotdiameter);
32   static Molecule repeat_slash (Real w, Real slope, Real th);
33   static Molecule line (Real th, Offset from, Offset to);
34   static Molecule triangle (Interval, Real, Real);
35 };
36
37 #endif // LOOKUP_HH