]> git.donarmstrong.com Git - lilypond.git/blob - molecule.hh
6f63be3ba9cef03c0d9cb94436b460ae65ca4bcc
[lilypond.git] / molecule.hh
1 #ifndef MOLECULE_HH
2 #define MOLECULE_HH
3
4 #include "list.hh"
5 #include "boxes.hh"
6 #include "item.hh"
7
8 /// a symbol which can be translated, and freely copied
9 struct Atom {
10     Offset off;
11     const Symbol * sym;
12
13     void translate(Offset o) {
14         off += o;
15     }
16     
17     /// how big is #this#?
18     Box extent() const;
19     Atom(const Symbol*s) {
20         sym=s;
21     }
22     String TeXstring() const;
23 };
24
25 /// a group of #Atom#s
26 struct Molecule : Output {
27     List<Atom> ats;
28
29     Molecule() { }
30     Molecule(Atom a) { ats.bottom().add(a); }
31     //    Molecule(Molecule const&src);
32     void add_right(const Molecule &m);
33     void add_left(const Molecule &m);
34     void add_top(const Molecule &m);
35     void add_bot(const Molecule &m);
36     void add(Molecule const &m);
37     void translate(Offset);
38
39     /// how big is #this#? 
40     Box extent() const;
41
42     String TeXstring() const;
43 };
44 /** a group of individually translated symbols. You can add molecules
45     to the top, to the right, etc.  */
46 #endif