3 #include "mapcenterobj.h"
4 #include "floatimageobj.h"
7 /////////////////////////////////////////////////////////////////
9 /////////////////////////////////////////////////////////////////
10 MapCenterObj::MapCenterObj() : BranchObj ()
12 // cout << "Const MapCenterObj\n";
16 MapCenterObj::MapCenterObj(QCanvas* c) : BranchObj (c)
18 // cout << "Const MapCenterObj canvas="<<c<<"\n";
22 MapCenterObj::~MapCenterObj()
24 // cout << "Destr MapCenterObj\n";
27 void MapCenterObj::clear()
33 void MapCenterObj::init ()
35 orientation=OrientUndef;
36 absPos=QPoint (canvas->width()/2, canvas->height()/2);
38 // FIXME this should be done in TextObj later...
39 QFont font ("Sans Serif,16,-1,5,50,0,0,0,0,0");
40 heading->setFont(font);
42 branch.setAutoDelete (TRUE);
43 floatimage.setAutoDelete (TRUE);
45 move (absPos.x(), absPos.y() );
51 frame->setFrameType (Rectangle);
54 void MapCenterObj::move (double x, double y)
60 void MapCenterObj::moveBy (double x, double y)
62 BranchObj::moveBy(x,y);
66 void MapCenterObj::moveAll (double x, double y)
69 double dx=x-absPos.x();
70 double dy=y-absPos.y();
72 // Move myself and branches
76 void MapCenterObj::moveAllBy (double dx, double dy)
84 void MapCenterObj::updateLink()
86 // set childPos to middle of MapCenterObj
88 absPos.x() + QSize(getSize() ).width()/2,
89 absPos.y() + QSize(getSize() ).height()/2);
92 for (b=branch.first(); b; b=branch.next() )
96 LinkableMapObj* MapCenterObj::findMapObj(QPoint p, LinkableMapObj *excludeLMO)
101 // Search through child branches
102 for (bo=branch.first(); bo; bo=branch.next() )
104 lmo = bo->findMapObj(p, excludeLMO);
111 // is p in MapCenter?
112 if (inBBox (p) && (this != excludeLMO) ) return this;
114 // Search float images
116 for (foi=floatimage.first(); foi; foi=floatimage.next() )
117 if (foi->inBBox(p) && (foi != excludeLMO) && foi->getParObj()!= excludeLMO) return foi;
123 QString MapCenterObj::saveToDir (const QString &tmpdir,const QString &prefix, int verbose, const QPoint &offset)
127 // save area, if not scrolled
129 attribut("x1",QString().setNum(absPos.x()-offset.x(),10)) +
130 attribut("y1",QString().setNum(absPos.y()-offset.y(),10)) +
131 attribut("x2",QString().setNum(absPos.x()+width()-offset.x(),10)) +
132 attribut("y2",QString().setNum(absPos.y()+height()-offset.y(),10));
134 s=beginElement ("mapcenter"
135 +attribut("absPosX",QString().setNum(absPos.x(),10))
136 +attribut("absPosY",QString().setNum(absPos.y(),10))
137 +attribut("frameType",frame->getFrameTypeName())
142 if (heading->getColor()!=QColor("black"))
143 a=attribut ("textColor",QColor(heading->getColor()).name() );
147 // Save flags. If verbose is set (export to xml dir), also write
148 // the flags as picture
149 s+=standardFlags->saveToDir(tmpdir+"/flags", "/standardFlag-", verbose);
150 s=s+valueElement("heading", getHeading(),a);
152 // Reset the counters before saving
153 FloatImageObj (canvas).resetSaveCounter();
155 // add link to file in s
156 if (!note.isEmpty() )
161 for (fio=floatimage.first(); fio; fio=floatimage.next() )
162 s+=fio->saveToDir (tmpdir,prefix);
166 for (bo=branch.first(); bo; bo=branch.next() )
167 s+=bo->saveToDir(tmpdir,prefix, offset);
170 s+=endElement ("mapcenter");
174 void MapCenterObj::setVersion (const QString &s)
179 bool MapCenterObj::checkVersion ()
181 // returns true, if vym is able to read file regarding
182 // the version set with setVersion
183 QString s1=version.section (".",0,0);
184 QString s2=version.section (".",1,1);
185 QString s3=version.section (".",2,2);
187 int vv1 =QString(__VYM_VERSION__).section (".",0,0).toInt(&ok,10);
188 int vv2 =QString(__VYM_VERSION__).section (".",1,1).toInt(&ok,10);
189 int vv3 =QString(__VYM_VERSION__).section (".",2,2).toInt(&ok,10);
193 if (!s1.isEmpty() ) mv1=s1.toInt(&ok,10);
194 if (!s2.isEmpty() ) mv2=s2.toInt(&ok,10);
195 if (!s3.isEmpty() ) mv3=s3.toInt(&ok,10);
212 void MapCenterObj::setAuthor (const QString &s)
217 QString MapCenterObj::getAuthor()
222 void MapCenterObj::setComment (const QString &s)
227 QString MapCenterObj::getComment ()
232 QString MapCenterObj::getDate ()
234 return QDate::currentDate().toString ("yyyy-MM-dd");