]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/lookup.hh
* input/regression/hairpin-dashed.ly: new file.
[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--2003 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 dot (Offset p, Real radius);
22   static Molecule bracket (Axis a, Interval iv, Real thick, Real protude);
23   static Molecule accordion (SCM arg, Real interline_f, Font_metric*fm);
24   static Molecule round_filled_polygon (Array<Offset> points, Real blotdiameter);
25   static Molecule frame (Box b, Real thick);
26   static Molecule slur (Bezier controls, Real cthick, Real thick);
27   static Molecule bezier_sandwich (Bezier top_curve, Bezier bottom_curve);
28   static Molecule horizontal_slope (Real width, Real slope, Real height);
29   static Molecule beam (Real slope, Real width, Real thick);
30   static Molecule dashed_slur (Bezier, Real thick, Real dash);
31   static Molecule blank (Box b);
32   static Molecule filledbox (Box b);
33   static Molecule round_filled_box (Box b, Real blotdiameter);
34   static Molecule repeat_slash (Real w, Real slope, Real th);
35   static Molecule line (Real th, Offset from, Offset to);
36   static Molecule dashed_line (Real th, Offset from, Offset to, Real, Real);
37   static Molecule horizontal_line (Interval w, Real th);
38   static Molecule triangle (Interval, Real, Real);
39 };
40
41 #endif // LOOKUP_HH