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 QGraphicsSimpleTextItem* HeadingObj::newLine(QString s)
95 QGraphicsSimpleTextItem *t=new QGraphicsSimpleTextItem (s,0,scene);
98 //t->setDefaultTextColor(color);
103 void HeadingObj::setText (QString s)
107 // remove old textlines and prepare generating new ones
108 while (!textline.isEmpty())
109 delete textline.takeFirst();
111 // prevent empty textline, so at least a small selection stays
112 // visible for this heading
113 if (s.length()==0) s=" ";
115 int i=0; // index for actual search for ws
116 int j=0; // index of last ws
117 int k=0; // index of "<br>" or similar linebreak
118 int br=0; // width of found break, e.g. for <br> it is 4
119 QRegExp re("<br.*/>");
120 re.setMinimal (true);
122 // set the text and wrap lines
125 // ok, some people wanted manual linebreaks, here we go
129 br=re.cap(0).length();
132 i=s.find (" ",i,false);
134 { // no ws found at all in s
136 textline.append (newLine(s));
141 { // no ws found in actual search
142 if (s.length()<=textwidth)
144 textline.append (newLine(s));
148 textline.append (newLine(s.left(j)));
149 s=s.mid(j+1,s.length());
154 if (i>= 0 && i<=static_cast <int> (textwidth))
155 { // there is a ws in textwidth
158 // here is a linebreak
159 textline.append (newLine(s.left(i)));
160 s=s.mid(i+br,s.length());
171 if (i>static_cast <int> (textwidth) )
174 { // a ws out of textwidth, but we have also one in
175 textline.append (newLine(s.left(j)));
176 s=s.mid(j+1,s.length());
180 { // a ws out of text, but none in
181 textline.append (newLine(s.left(i)));
182 s=s.mid(i+1,s.length());
190 setVisibility (visible);
191 move (absPos.x(),absPos.y());
195 QString HeadingObj::text ()
200 void HeadingObj::setFont (QFont f)
209 QFont HeadingObj::getFont()
215 void HeadingObj::setColor (QColor c)
220 for (int i=0; i<textline.size(); ++i)
221 //textline.at(i)->setDefaultTextColor(c);
222 textline.at(i)->setBrush(c);
226 QColor HeadingObj::getColor()
231 void HeadingObj::setVisibility (bool v)
233 MapObj::setVisibility(v);
234 for (int i=0; i<textline.size(); ++i)
236 textline.at(i)->show();
238 textline.at(i)->hide();
241 qreal HeadingObj::getHeight ()
243 return bbox.height();
246 qreal HeadingObj::getWidth()