Removed some FIXMEs. Added translations
1 #include "headingobj.h"
4 /////////////////////////////////////////////////////////////////
6 /////////////////////////////////////////////////////////////////
7 HeadingObj::HeadingObj() : MapObj()
9 // cout << "Const HeadingObj ()\n";
13 HeadingObj::HeadingObj(QGraphicsScene *s) :MapObj(s)
15 // cout << "Const HeadingObj (s)\n";
19 HeadingObj::~HeadingObj()
21 // cout << "Destr. HeadingObj "<<heading.ascii()<<endl;
22 while (!textline.isEmpty())
23 delete textline.takeFirst();
26 void HeadingObj::init()
29 color=QColor ("black");
34 void HeadingObj::copy(HeadingObj *other)
37 textwidth=other->textwidth;
40 setText (other->text() );
43 void HeadingObj::move(double x, double y)
47 qreal h; // height of a textline
48 qreal ho; // offset of height while drawing all lines
50 if (!textline.isEmpty() )
51 h=textline.first()->boundingRect().height();
55 for (int i=0; i<textline.size(); ++i)
57 textline.at(i)->setPos(x,y+ho);
63 void HeadingObj::moveBy(double x, double y)
65 move (x+absPos.x(),y+absPos.y() );
68 void HeadingObj::positionBBox()
70 bbox.setX (absPos.x());
71 bbox.setY (absPos.y());
74 void HeadingObj::calcBBoxSize()
78 // Using Backspace an empty heading might easily be created, then there
79 // would be textline.first()==NULL This can be worked around by the following, but
80 // then no selection would be visible, thus we prevent it in ::setText()
81 if (!textline.isEmpty() )
83 for (int i=0; i<textline.size(); ++i)
85 h+=textline.at(i)->boundingRect().height();
86 if (w<textline.at(i)->boundingRect().width() )
87 w=textline.at(i)->boundingRect().width();
90 bbox.setSize (QSizeF(w,h));
93 QGraphicsTextItem* HeadingObj::newLine(QString s)
95 QGraphicsTextItem *t=scene->addText("");
98 t->setDefaultTextColor(color);
100 //t->setTextFlags(Qt::AlignLeft);
105 void HeadingObj::setText (QString s)
109 // remove old textlines and prepare generating new ones
110 while (!textline.isEmpty())
111 delete textline.takeFirst();
113 // prevent empty textline, so at least a small selection stays
114 // visible for this heading
115 if (s.length()==0) s=" ";
117 int i=0; // index for actual search for ws
118 int j=0; // index of last ws
119 int k=0; // index of "<br>" or similar linebreak
120 int br=0; // width of found break, e.g. for <br> it is 4
121 QRegExp re("<br.*/>");
122 re.setMinimal (true);
124 // set the text and wrap lines
127 // ok, some people wanted manual linebreaks, here we go
131 br=re.cap(0).length();
134 i=s.find (" ",i,false);
136 { // no ws found at all in s
138 textline.append (newLine(s));
143 { // no ws found in actual search
144 if (s.length()<=textwidth)
146 textline.append (newLine(s));
150 textline.append (newLine(s.left(j)));
151 s=s.mid(j+1,s.length());
156 if (i>= 0 && i<=static_cast <int> (textwidth))
157 { // there is a ws in textwidth
160 // here is a linebreak
161 textline.append (newLine(s.left(i)));
162 s=s.mid(i+br,s.length());
173 if (i>static_cast <int> (textwidth) )
176 { // a ws out of textwidth, but we have also one in
177 textline.append (newLine(s.left(j)));
178 s=s.mid(j+1,s.length());
182 { // a ws out of text, but none in
183 textline.append (newLine(s.left(i)));
184 s=s.mid(i+1,s.length());
192 setVisibility (visible);
193 move (absPos.x(),absPos.y());
197 QString HeadingObj::text ()
202 void HeadingObj::setFont (QFont f)
211 QFont HeadingObj::getFont()
217 void HeadingObj::setColor (QColor c)
222 for (int i=0; i<textline.size(); ++i)
223 textline.at(i)->setDefaultTextColor(c);
227 QColor HeadingObj::getColor()
232 void HeadingObj::setVisibility (bool v)
234 MapObj::setVisibility(v);
235 for (int i=0; i<textline.size(); ++i)
237 textline.at(i)->show();
239 textline.at(i)->hide();
242 qreal HeadingObj::getHeight ()
244 return bbox.height();
247 qreal HeadingObj::getWidth()