]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/clef-item.hh
release: 1.3.62
[lilypond.git] / lily / include / clef-item.hh
1 /*
2   clef-item.hh -- declare Clef_item
3
4   (c) 1996--2000 Han-Wen Nienhuys
5 */
6
7 #ifndef CLEFITEM_HH
8 #define CLEFITEM_HH
9 #include "item.hh"
10
11 #include "direction.hh"
12
13
14 /**
15   Set a clef in a staff.
16
17   properties:
18
19   non-default -- not set because of existence of a bar?
20
21   change -- is this a change clef (smaller size)?
22
23   glyph -- a string determining what glyph is typeset
24   
25  */
26 class Clef_item : public Item
27 {
28 public:
29   SCM member_before_line_breaking ();
30   static SCM before_line_breaking (SCM);
31
32   VIRTUAL_COPY_CONS(Score_element);
33   Clef_item (SCM);
34 };
35
36 #endif // CLEFITEM_HH
37
38