]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/lookup.hh
($(outdir)/%.pdf): add DVIPS_FLAGS. This will
[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--2004 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 "stencil.hh"
15 #include "flower-proto.hh"
16 #include "direction.hh"
17 #include "box.hh"
18
19 struct Lookup
20 {
21   static Stencil dot (Offset p, Real radius);
22   static Stencil bracket (Axis a, Interval iv, Real thick, Real protude, Real blot);
23   static Stencil accordion (SCM arg, Real interline_f, Font_metric*fm);
24   static Stencil round_filled_polygon (Array<Offset> points, Real blotdiameter);
25   static Stencil frame (Box b, Real thick, Real blot);
26   static Stencil slur (Bezier controls, Real cthick, Real thick);
27   static Stencil bezier_sandwich (Bezier top_curve, Bezier bottom_curve);
28   static Stencil beam (Real slope, Real width, Real thick, Real blot);
29   static Stencil dashed_slur (Bezier, Real thick, Real dash);
30   static Stencil blank (Box b);
31   static Stencil filled_box (Box b);
32   static Stencil round_filled_box (Box b, Real blotdiameter);
33   static Stencil repeat_slash (Real w, Real slope, Real th);
34   static Stencil horizontal_line (Interval w, Real th);
35   static Stencil triangle (Interval, Real, Real);
36 };
37
38 #endif // LOOKUP_HH