(editor-command-template-alist): Use char iso
[lilypond/patrick.git] / lily / include / lookup.hh
blobb4aab56817f67670471b91d0aac46af06cf494f2
1 /*
2 lookup.hh -- declare Lookup
4 source file of the GNU LilyPond music typesetter
6 (c) 1997--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 Jan Nieuwenhuizen <janneke@gnu.org>
8 */
10 #ifndef LOOKUP_HH
11 #define LOOKUP_HH
13 #include "stencil.hh"
15 struct Lookup
17 static Stencil dot (Offset p, Real radius);
18 static Stencil bracket (Axis a, Interval iv, Real thick, Real protude, Real blot);
19 static Stencil accordion (SCM arg, Real interline_f, Font_metric *fm);
20 static Stencil round_filled_polygon (Array<Offset> points, Real blotdiameter);
21 static Stencil frame (Box b, Real thick, Real blot);
22 static Stencil slur (Bezier controls, Real cthick, Real thick);
23 static Stencil bezier_sandwich (Bezier top_curve, Bezier bottom_curve);
24 static Stencil beam (Real slope, Real width, Real thick, Real blot);
25 static Stencil dashed_slur (Bezier, Real thick, Real dash_period, Real dash_fraction);
26 static Stencil blank (Box b);
27 static Stencil filled_box (Box b);
28 static Stencil round_filled_box (Box b, Real blotdiameter);
29 static Stencil repeat_slash (Real w, Real slope, Real th);
30 static Stencil horizontal_line (Interval w, Real th);
31 static Stencil triangle (Interval, Real, Real);
34 #endif // LOOKUP_HH