summaryrefslogtreecommitdiff
path: root/lily/text-item.cc
blob: ee10d5e873b393749176d872fc75338038ce899d (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/*
  textitem.cc -- implement Text_item

  source file of the LilyPond music typesetter

  (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
*/


#include "musical-request.hh"
#include "paper-def.hh"
#include "text-item.hh"
#include "stem.hh"
#include "molecule.hh"
#include "lookup.hh"

Text_item::Text_item(Text_def *tdef_l)
    : Staff_side(this)
{
    dir_i_ =-1;
    init(tdef_l);  
}

Text_def*
Text_item::tdef_l()
{
    return tdef_p_;
}

Text_item::~Text_item()
{
    delete tdef_p_;
}

void
Text_item::init(Text_def *tdef_l)
{
    tdef_p_ = new Text_def (*tdef_l);
}

Text_item::Text_item(Text_req* treq_l)
    : Staff_side(this)
{
    init(treq_l->tdef_p_);
    dir_i_ = treq_l->dir_i_;
    if (!dir_i_)
	dir_i_ = -1;
}

void
Text_item::set_default_index()
{
    pos_i_  = get_position_i();
}

void
Text_item::do_pre_processing()
{
    set_default_index();
}

    
Molecule*
Text_item::brew_molecule_p() const
{
    Molecule* mol_p = new Molecule(tdef_p_->create_atom(paper()));

    if(dir_i_<0 )		// should do something better anyway.
	mol_p->translate(Offset(0, -mol_p->extent().y.left ));
    mol_p->translate(Offset(0, pos_i_ * paper()->internote()));
    
    return mol_p;
}

IMPLEMENT_STATIC_NAME(Text_item);