]> git.donarmstrong.com Git - lilypond.git/blob - lily/clef-item.cc
release: 1.3.61
[lilypond.git] / lily / clef-item.cc
1 /*
2   clef-item.cc -- implement Clef_item
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9
10 #include "clef-item.hh"
11 #include "string.hh"
12 #include "molecule.hh"
13 #include "item.hh"
14
15 Clef_item::Clef_item (SCM s)
16   : Item (s)
17 {}
18
19
20 /*
21 FIXME: should use symbol.
22
23 FIXME: this should be schemified.
24 */
25 void
26 Clef_item::before_line_breaking ()
27 {
28   SCM style_sym =get_elt_property ("style");
29   String style;
30   if (gh_string_p (style_sym))
31     style = ly_scm2string (style_sym);
32
33   SCM glyph = get_elt_property ("glyph");
34   
35   if (gh_string_p (glyph))
36     {
37       String s = ly_scm2string (glyph);
38
39       /*
40         FIXME: should use fontsize property to set clef changes.
41        */
42       if (get_elt_property ("non-default") &&
43           break_status_dir() != RIGHT && style != "fullSizeChanges")
44         {
45           s += "_change";
46           set_elt_property ("glyph", ly_str02scm (s.ch_C()));     
47         }
48     }
49   else
50     {
51       suicide ();
52       return;
53     }
54
55   // ugh.
56   /* why not suicide? */
57   if (style == "transparent")   // UGH. JUNKME
58     {
59       set_elt_property ("molecule-callback", SCM_BOOL_T);
60       set_extent_callback (0, X_AXIS);
61     }
62 }
63
64
65