lilypond-1.3.16
[lilypond.git] / lily / include / clef-item.hh
blob652441278dd8f03f2120417ddaab6b26416d94ae
1 /*
2 clef-item.hh -- declare Clef_item
4 (c) 1996--1999 Han-Wen Nienhuys
5 */
7 #ifndef CLEFITEM_HH
8 #define CLEFITEM_HH
9 #include "item.hh"
11 #include "direction.hh"
14 /**
15 Set a clef in a staff.
17 properties:
19 nondefault: not set because of existence of a bar
21 octave_dir: should we print an octave symbol (8), and where? (up=1, down=-1)?
23 change: is this a change clef (smaller size)?
26 class Clef_item : public Item
28 protected:
29 virtual void do_pre_processing();
30 virtual Molecule* do_brew_molecule_p() const;
31 virtual void do_add_processing ();
32 public:
33 String symbol_;
35 VIRTUAL_COPY_CONS(Score_element);
36 Clef_item();
39 #endif // CLEFITEM_HH