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()
32 void MapCenterObj::init ()
35 orientation=OrientUndef;
37 // FIXME this should be done in TextObj later...
38 //QFont font ("Sans Serif,16,-1,5,50,0,0,0,0,0");
39 //heading->setFont(font);
41 setDefAttr(MovedBranch);
43 frame->setFrameType (Rectangle);
46 void MapCenterObj::move (double x, double y)
52 void MapCenterObj::moveBy (double x, double y)
54 //BranchObj::moveBy(x,y);
55 move (x+absPos.x(),y+absPos.y() );
59 void MapCenterObj::moveAll (double x, double y)
62 double dx=x-absPos.x();
63 double dy=y-absPos.y();
65 // Move myself and branches
69 void MapCenterObj::moveAllBy (double dx, double dy)
77 void MapCenterObj::updateLink()
79 // set childPos to middle of MapCenterObj
81 absPos.x() + QSize(getSize() ).width()/2,
82 absPos.y() + QSize(getSize() ).height()/2);
85 for (b=branch.first(); b; b=branch.next() )
89 LinkableMapObj* MapCenterObj::findMapObj(QPoint p, LinkableMapObj *excludeLMO)
94 // Search through child branches
95 for (bo=branch.first(); bo; bo=branch.next() )
97 lmo = bo->findMapObj(p, excludeLMO);
104 // is p in MapCenter?
105 if (inBBox (p) && (this != excludeLMO) ) return this;
107 // Search float images
109 for (foi=floatimage.first(); foi; foi=floatimage.next() )
110 if (foi->inBBox(p) && (foi != excludeLMO) && foi->getParObj()!= excludeLMO) return foi;
116 QString MapCenterObj::saveToDir (const QString &tmpdir,const QString &prefix, int verbose, const QPoint &offset)
120 // save area, if not scrolled
122 attribut("x1",QString().setNum(absPos.x()-offset.x(),10)) +
123 attribut("y1",QString().setNum(absPos.y()-offset.y(),10)) +
124 attribut("x2",QString().setNum(absPos.x()+width()-offset.x(),10)) +
125 attribut("y2",QString().setNum(absPos.y()+height()-offset.y(),10));
127 s=beginElement ("mapcenter"
128 +attribut("absPosX",QString().setNum(absPos.x(),10))
129 +attribut("absPosY",QString().setNum(absPos.y(),10))
130 +attribut("frameType",frame->getFrameTypeName())
135 if (heading->getColor()!=QColor("black"))
136 a=attribut ("textColor",QColor(heading->getColor()).name() );
140 // Save flags. If verbose is set (export to xml dir), also write
141 // the flags as picture
142 s+=standardFlags->saveToDir(tmpdir+"/flags", "/standardFlag-", verbose);
143 s=s+valueElement("heading", getHeading(),a);
145 // add link to file in s
146 if (!note.isEmpty() )
151 for (bo=branch.first(); bo; bo=branch.next() )
152 s+=bo->saveToDir(tmpdir,prefix, offset);
156 for (fio=floatimage.first(); fio; fio=floatimage.next() )
157 s+=fio->saveToDir (tmpdir,prefix,offset);
161 for (xlo=xlink.first(); xlo; xlo=xlink.next() )
165 s+=endElement ("mapcenter");
169 void MapCenterObj::setVersion (const QString &s)
174 bool MapCenterObj::checkVersion ()
176 // returns true, if vym is able to read file regarding
177 // the version set with setVersion
178 QString s1=version.section (".",0,0);
179 QString s2=version.section (".",1,1);
180 QString s3=version.section (".",2,2);
182 int vv1 =QString(__VYM_VERSION__).section (".",0,0).toInt(&ok,10);
183 int vv2 =QString(__VYM_VERSION__).section (".",1,1).toInt(&ok,10);
184 int vv3 =QString(__VYM_VERSION__).section (".",2,2).toInt(&ok,10);
188 if (!s1.isEmpty() ) mv1=s1.toInt(&ok,10);
189 if (!s2.isEmpty() ) mv2=s2.toInt(&ok,10);
190 if (!s3.isEmpty() ) mv3=s3.toInt(&ok,10);
207 void MapCenterObj::setAuthor (const QString &s)
212 QString MapCenterObj::getAuthor()
217 void MapCenterObj::setComment (const QString &s)
222 QString MapCenterObj::getComment ()
227 QString MapCenterObj::getDate ()
229 return QDate::currentDate().toString ("yyyy-MM-dd");