lilypond-0.1.11
[lilypond.git] / lily / include / general-script-def.hh
blob3788df867cbd0fddc933595376e7b05076ddd891
1 /*
2 general-script-def.hh -- declare General_script_def
4 source file of the GNU LilyPond music typesetter
6 (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
7 */
10 #ifndef GENERAL_SCRIPT_DEF_HH
11 #define GENERAL_SCRIPT_DEF_HH
13 #include "lily-proto.hh"
14 #include "input.hh"
15 #include "virtual-methods.hh"
16 #include "direction.hh"
18 /**
19 Definition of anything that is put aside staff/notes.
21 class General_script_def : public Input {
22 public:
23 VIRTUAL_COPY_CONS(General_script_def,General_script_def);
24 DECLARE_MY_RUNTIME_TYPEINFO;
25 virtual Direction staff_dir() const;
26 void print() const;
27 virtual Direction rel_stem_dir() const;
28 virtual int priority_i() const;
29 virtual bool inside_b() const;
30 virtual Atom get_atom (Paper_def* p, Direction dir_) const;
31 bool equal_b (General_script_def const&) const;
32 virtual ~General_script_def() {}
34 protected:
35 virtual bool do_equal_b (General_script_def const *) const;
36 virtual void do_print() const;
39 #endif // GENERAL_SCRIPT_DEF_HH