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(s);
98 t->setDefaultTextColor(color);
102 void HeadingObj::setText (QString s)
106 // remove old textlines and prepare generating new ones
107 while (!textline.isEmpty())
108 delete textline.takeFirst();
110 // prevent empty textline, so at least a small selection stays
111 // visible for this heading
112 if (s.length()==0) s=" ";
114 int i=0; // index for actual search for ws
115 int j=0; // index of last ws
116 int k=0; // index of "<br>" or similar linebreak
117 int br=0; // width of found break, e.g. for <br> it is 4
118 QRegExp re("<br.*/>");
119 re.setMinimal (true);
121 // set the text and wrap lines
124 // ok, some people wanted manual linebreaks, here we go
128 br=re.cap(0).length();
131 i=s.find (" ",i,false);
133 { // no ws found at all in s
135 textline.append (newLine(s));
140 { // no ws found in actual search
141 if (s.length()<=textwidth)
143 textline.append (newLine(s));
147 textline.append (newLine(s.left(j)));
148 s=s.mid(j+1,s.length());
153 if (i>= 0 && i<=static_cast <int> (textwidth))
154 { // there is a ws in textwidth
157 // here is a linebreak
158 textline.append (newLine(s.left(i)));
159 s=s.mid(i+br,s.length());
170 if (i>static_cast <int> (textwidth) )
173 { // a ws out of textwidth, but we have also one in
174 textline.append (newLine(s.left(j)));
175 s=s.mid(j+1,s.length());
179 { // a ws out of text, but none in
180 textline.append (newLine(s.left(i)));
181 s=s.mid(i+1,s.length());
189 setVisibility (visible);
190 move (absPos.x(),absPos.y());
194 QString HeadingObj::text ()
199 void HeadingObj::setFont (QFont f)
208 QFont HeadingObj::getFont()
214 void HeadingObj::setColor (QColor c)
219 for (int i=0; i<textline.size(); ++i)
220 textline.at(i)->setDefaultTextColor(c);
224 QColor HeadingObj::getColor()
229 void HeadingObj::setVisibility (bool v)
231 MapObj::setVisibility(v);
232 for (int i=0; i<textline.size(); ++i)
234 textline.at(i)->show();
236 textline.at(i)->hide();
239 qreal HeadingObj::getHeight ()
241 return bbox.height();
244 qreal HeadingObj::getWidth()