]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/staff-symbol-referencer.hh
Merge branch 'master' into lilypond/translation
[lilypond.git] / lily / include / staff-symbol-referencer.hh
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 1999--2011 Han-Wen Nienhuys <hanwen@xs4all.nl>
5
6   LilyPond is free software: you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation, either version 3 of the License, or
9   (at your option) any later version.
10
11   LilyPond is distributed in the hope that it will be useful,
12   but WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   GNU General Public License for more details.
15
16   You should have received a copy of the GNU General Public License
17   along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #ifndef STAFF_SYMBOL_REFERENCER_HH
21 #define STAFF_SYMBOL_REFERENCER_HH
22
23 #include "grob-interface.hh"
24 #include "lily-proto.hh"
25
26 /**
27    A notation object that needs access to variables of the staff (no
28    lines, leading).
29 */
30 class Staff_symbol_referencer
31 {
32 public:
33   DECLARE_GROB_INTERFACE();
34   static bool ugly_hack (Grob *);
35   static void set_position (Grob *, Real);
36   DECLARE_SCHEME_CALLBACK (callback, (SCM element));
37
38   /**
39      Leading are the lead strips between the sticks (lines) of
40      typeface. ie. leading is vertical space.
41   */
42   static Real line_thickness (Grob *);
43   static Real staff_space (Grob *);
44   static Grob *get_staff_symbol (Grob *);
45   static bool on_line (Grob *, int);
46   static bool on_staff_line (Grob *, int);
47   static int line_count (Grob *);
48   static Real get_position (Grob *);
49   static Real staff_radius (Grob *);
50   static int get_rounded_position (Grob *);
51   static Interval extent_in_staff (Grob *); 
52 };
53
54 int compare_position (Grob *const &, Grob *const &);
55 bool position_less (Grob *const &, Grob *const &);
56 #endif /* STAFF_SYMBOL_REFERENCER_HH */
57