blob: 1ae06519ac55c90f4ae61c2904788e130651699a (
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
#include "pcol.hh"
#include "pstaff.hh"
#include "debug.hh"
void
Idealspacing::print() const
{
#ifndef NPRINT
mtor << "idealspacing {" ;
mtor << "distance "<<space<< " strength " << hooke << "}\n";
#endif
}
Idealspacing::Idealspacing(const PCol * l,const PCol * r)
{
space = 0.0;
hooke = 0.0;
left = l;
right = r;
}
void
Idealspacing::OK() const
{
#ifndef NDEBUG
assert(hooke >= 0 && left && right);
#endif
}
/****************************************************************/
Interval
PCol::width() const
{
Interval w;
for (PCursor<const Item *> ic(its); ic.ok(); ic++)
w.unite(ic->width());
if (w.empty())
w.unite(Interval(0,0));
return w;
}
void
PCol::print() const
{
#ifndef NPRINT
mtor << "PCol {";
mtor << "# symbols: " << its.size() ;
if (breakable()){
mtor << "pre,post: ";
prebreak->print();
postbreak->print();
}
mtor << "extent: " << width().min << ", " << width().max << "\n";
mtor << "}\n";
#endif
}
int
PCol::compare(const PCol &, const PCol &)
{
assert(false);
return 0 ;
}
void
PCol::OK () const
{
if (prebreak || postbreak ) {
assert(prebreak&&postbreak);
assert(prebreak->daddy == this);
assert(postbreak->daddy == this);
}
}
void
PCol::set_breakable()
{
if (breakable())
return;
prebreak = new PCol(this);
postbreak = new PCol(this);
used = true;
}
bool
PCol::breakable() const
{
return prebreak||postbreak;
}
PCol::PCol(PCol *parent) {
daddy = parent;
prebreak=0;
postbreak=0;
line=0;
used = false;
}
PCol::~PCol()
{
delete prebreak;
delete postbreak;
}
void
PCol::add(const Item *i)
{
its.bottom().add(i);
used = true;
}
|