3 #include <qmessagebox.h>
5 #include <qstylesheet.h>
10 #include "linkablemapobj.h"
14 static BranchObj *lastBranch;
15 static FloatObj *lastFloat;
16 static LinkableMapObj *lastLMO;
18 extern Settings settings;
20 mapBuilderHandler::mapBuilderHandler() {}
22 mapBuilderHandler::~mapBuilderHandler() {}
24 QString mapBuilderHandler::errorProtocol() { return errorProt; }
26 bool mapBuilderHandler::startDocument()
30 laststate = StateInit;
38 QString mapBuilderHandler::parseHREF(QString href)
40 QString type=href.section(":",0,0);
41 QString path=href.section(":",1,1);
42 if (!tmpDir.endsWith("/"))
43 return tmpDir + "/" + path;
48 bool mapBuilderHandler::startElement ( const QString&, const QString&,
49 const QString& eName, const QXmlAttributes& atts )
52 //cout << "startElement <"<<eName<<"> state="<<state <<" laststate="<<laststate<<" loadMode="<<loadMode<<endl;
53 if ( state == StateInit && (eName == "vymmap") )
56 if (!atts.value( "version").isEmpty() )
58 mc->setVersion(atts.value( "version" ));
59 if (!mc->checkVersion())
60 QMessageBox::warning( 0, "Warning: Version Problem" ,
61 "<h3>Map is newer than VYM</h3>"
62 "<p>The map you are just trying to load was "
63 "saved using vym " +atts.value("version")+". "
64 "The version of this vym is " __VYM_VERSION
65 ". If you run into problems after pressing "
66 "the ok-button below, updating vym should help.");
71 if (!atts.value( "author").isEmpty() )
73 mc->setAuthor(atts.value( "author" ) );
75 if (!atts.value( "comment").isEmpty() )
77 mc->setComment (atts.value( "comment" ) );
79 if (!atts.value( "backgroundColor").isEmpty() )
81 col.setNamedColor(atts.value("backgroundColor"));
82 mc->getCanvas()->setBackgroundColor(col);
84 if (!atts.value( "linkColorHint").isEmpty() )
86 if (atts.value("linkColorHint")=="HeadingColor")
87 me->setLinkColorHint(HeadingColor);
89 me->setLinkColorHint(DefaultColor);
91 if (!atts.value( "linkStyle").isEmpty() )
93 QString s=atts.value("linkStyle");
95 me->setLinkStyle(StyleLine);
97 if (s=="StyleParabel")
98 me->setLinkStyle(StyleParabel);
100 if (s=="StylePolyLine")
101 me->setLinkStyle(StylePolyLine);
103 me->setLinkStyle(StylePolyParabel);
105 if (!atts.value( "linkColor").isEmpty() )
107 col.setNamedColor(atts.value("linkColor"));
108 me->setLinkColor(col);
110 if (!atts.value( "defXLinkColor").isEmpty() )
112 col.setNamedColor(atts.value("defXLinkColor"));
113 me->setDefXLinkColor(col);
115 if (!atts.value( "defXLinkWidth").isEmpty() )
117 me->setDefXLinkWidth(atts.value("defXLinkWidth").toInt ());
120 } else if ( eName == "select" && state == StateMap )
122 state=StateMapSelect;
123 } else if ( eName == "setting" && state == StateMap )
125 state=StateMapSetting;
126 if (loadMode==NewMap)
127 readSettingAttr (atts);
128 } else if ( eName == "mapcenter" && state == StateMap )
130 state=StateMapCenter;
131 if (loadMode==NewMap)
133 // Really use the found mapcenter as MCO in a new map
134 lastBranch=mc; // avoid empty pointer
137 // Treat the found mapcenter as a branch
138 // in an existing map
139 LinkableMapObj* lmo=me->getSelection();
140 if (lmo && (typeid(*lmo) == typeid(BranchObj) )
141 || (typeid(*lmo) == typeid(MapCenterObj) ) )
143 lastBranch=(BranchObj*)lmo;
144 if (loadMode==ImportAdd)
146 lastBranch->addBranch();
147 lastBranch=lastBranch->getLastBranch();
153 readBranchAttr (atts);
154 } else if ( (eName == "standardflag" ||eName == "standardFlag") && state == StateMapCenter)
156 state=StateMapCenterStandardFlag;
157 } else if ( eName == "heading" && state == StateMapCenter)
159 state=StateMapCenterHeading;
160 if (!atts.value( "textColor").isEmpty() )
162 col.setNamedColor(atts.value("textColor"));
163 lastBranch->setColor(col ,false );
165 } else if ( eName == "note" && state == StateMapCenter)
166 { // only for backward compatibility (<1.4.6). Use htmlnote now.
167 state=StateMapCenterNote;
168 if (!readNoteAttr (atts) ) return false;
169 } else if ( eName == "htmlnote" && state == StateMapCenter)
173 } else if ( eName == "floatimage" && state == StateMapCenter )
175 state=StateMapCenterFloatImage;
176 lastBranch->addFloatImage();
177 lastFloat=lastBranch->getLastFloatImage();
178 if (!readFloatImageAttr(atts)) return false;
179 } else if ( (eName == "branch"||eName=="floatimage") && state == StateMap)
181 // This is used in vymparts, which have no mapcenter!
183 LinkableMapObj* lmo=me->getSelection();
186 // If a vym part is _loaded_ (not imported),
187 // selection==lmo==NULL
188 // Treat it like ImportAdd then...
192 if (lmo && (typeid(*lmo) == typeid(BranchObj) )
193 || (typeid(*lmo) == typeid(MapCenterObj) ) )
195 lastBranch=(BranchObj*)(lmo);
199 if (loadMode==ImportAdd)
201 lastBranch->addBranch();
202 lastBranch=lastBranch->getLastBranch();
207 readBranchAttr (atts);
208 } else if (eName=="floatimage")
210 state=StateFloatImage;
211 lastBranch->addFloatImage();
212 lastFloat=lastBranch->getLastFloatImage();
213 if (!readFloatImageAttr(atts)) return false;
216 } else if ( eName == "branch" && state == StateMapCenter)
220 lastBranch->addBranch();
221 lastBranch=lastBranch->getLastBranch();
222 readBranchAttr (atts);
223 } else if ( (eName=="standardflag" ||eName == "standardFlag") && state == StateBranch)
225 state=StateBranchStandardFlag;
226 } else if ( eName == "heading" && state == StateBranch)
228 state=StateBranchHeading;
229 if (!atts.value( "textColor").isEmpty() )
231 col.setNamedColor(atts.value("textColor"));
232 lastBranch->setColor(col ,false );
234 } else if ( eName == "note" && state == StateBranch)
236 state=StateBranchNote;
237 if (!readNoteAttr (atts) ) return false;
238 } else if ( eName == "htmlnote" && state == StateBranch)
243 if (!atts.value( "fonthint").isEmpty() )
244 no.setFontHint(atts.value ("fonthint") );
245 } else if ( eName == "floatimage" && state == StateBranch )
247 state=StateBranchFloatImage;
248 lastBranch->addFloatImage();
249 lastFloat=lastBranch->getLastFloatImage();
250 if (!readFloatImageAttr(atts)) return false;
251 } else if ( eName == "xlink" && state == StateBranch )
253 state=StateBranchXLink;
254 if (!readXLinkAttr (atts)) return false;
255 } else if ( eName == "branch" && state == StateBranch )
257 lastBranch->addBranch();
258 lastBranch=lastBranch->getLastBranch();
260 readBranchAttr (atts);
261 } else if ( eName == "html" && state == StateHtmlNote )
267 } else if ( state == StateHtml )
269 // accept all while in html mode,
274 return false; // Error
278 bool mapBuilderHandler::endElement ( const QString&, const QString&, const QString &eName)
280 // cout << "endElement </"<<eName<<"> state="<<state <<" laststate="<<laststate<<endl;
283 case StateMapSelect: state=StateMap; return true;
284 case StateMapSetting: state=StateMap; return true;
285 case StateMapCenter: state=StateMap; return true;
286 case StateMapCenterStandardFlag: state=StateMapCenter; return true;
287 case StateMapCenterHeading: state=StateMapCenter; return true;
288 case StateMapCenterNote: state=StateMapCenter; return true;
289 case StateMapCenterFloatImage: state=StateMapCenter; return true;
290 case StateFloatImage: state=StateMap; return true;
302 state=StateMapCenter;
304 lastBranch=(BranchObj*)(lastBranch->getParObj());
306 case StateBranchStandardFlag: state=StateBranch; return true;
307 case StateBranchHeading: state=StateBranch; return true;
308 case StateBranchNote: state=StateBranch; return true;
309 case StateBranchFloatImage: state=StateBranch; return true;
310 case StateBranchXLink: state=StateBranch; return true;
311 case StateHtmlNote: state=laststate; return true;
313 htmldata+="</"+eName+">";
317 htmldata.replace ("<br></br>","<br />");
318 no.setNote (htmldata);
319 lastBranch->setNote (no);
325 case StateMap: state=StateInit; return true;
327 // even for HTML includes, this should never be reached
332 bool mapBuilderHandler::characters ( const QString& ch)
334 //cout << "characters \""<<ch<<"\" state="<<state <<" laststate="<<laststate<<endl;
336 QString ch_org=quotemeta (ch);
337 QString ch_simplified=ch.simplifyWhiteSpace();
338 if ( ch_simplified.isEmpty() ) return true;
342 case StateInit: break;
343 case StateMap: break;
345 me->select(ch_simplified);
347 case StateMapSetting:break;
348 case StateMapCenter: break;
349 case StateMapCenterStandardFlag:
350 lastBranch->activateStandardFlag(ch_simplified);
352 case StateMapCenterHeading:
353 lastBranch->setHeading(ch_simplified);
355 case StateMapCenterNote:
356 lastBranch->setNote(ch_simplified);
358 case StateBranch: break;
359 case StateBranchStandardFlag:
360 lastBranch->activateStandardFlag(ch_simplified);
362 case StateBranchHeading:
363 lastBranch->setHeading(ch_simplified);
365 case StateBranchNote:
366 lastBranch->setNote(ch_simplified);
368 case StateBranchFloatImage: break;
369 case StateHtmlNote: break;
379 QString mapBuilderHandler::errorString()
381 return "the document is not in the VYM file format";
384 bool mapBuilderHandler::fatalError( const QXmlParseException& exception )
386 errorProt += QString( "fatal parsing error: %1 in line %2, column %3\n")
387 .arg( exception.message() )
388 .arg( exception.lineNumber() )
389 .arg( exception.columnNumber() );
390 /* FIXME Testing only
391 errorProt += exception.publicId ()+"\n";
392 errorProt += exception.systemId()+"\n";
394 // Try to read the bogus line
397 if (loadStringFromDisk (,s))
402 return QXmlDefaultHandler::fatalError( exception );
405 void mapBuilderHandler::setMapEditor (MapEditor* e)
408 mc=me->getMapCenter();
411 void mapBuilderHandler::setTmpDir (QString tp)
416 void mapBuilderHandler::setLoadMode (const LoadMode &lm)
421 bool mapBuilderHandler::readBranchAttr (const QXmlAttributes& a)
424 if (!readLinkAttr(a)) return false;
428 if (!a.value( "absPosX").isEmpty() && loadMode==NewMap && branchDepth<2)
430 if (!a.value( "absPosY").isEmpty() )
432 x=a.value("absPosX").toInt (&okx, 10);
433 y=a.value("absPosY").toInt (&oky, 10);
435 lastBranch->move(x,y);
437 return false; // Couldn't read absPos
440 if (!a.value( "scrolled").isEmpty() )
441 lastBranch->toggleScroll();
442 if (!a.value( "url").isEmpty() )
443 lastBranch->setURL (a.value ("url"));
444 if (!a.value( "vymLink").isEmpty() )
445 lastBranch->setVymLink (a.value ("vymLink"));
446 if (!a.value( "frameType").isEmpty() )
447 lastBranch->setFrameType (a.value("frameType"));
449 if (!a.value( "incImgV").isEmpty() )
450 lastBranch->setIncludeImagesVer(a.value("incImgV"));
451 if (!a.value( "incImgH").isEmpty() )
452 lastBranch->setIncludeImagesHor(a.value("incImgH"));
456 bool mapBuilderHandler::readLinkAttr (const QXmlAttributes& a)
460 if (!a.value( "hideLink").isEmpty())
462 if (a.value ("hideLink") =="true")
463 lastLMO->setHideLinkUnselected(true);
465 lastLMO->setHideLinkUnselected(false);
471 bool mapBuilderHandler::readNoteAttr (const QXmlAttributes& a)
472 { // only for backward compatibility (<1.4.6). Use htmlnote now.
475 if (!a.value( "href").isEmpty() )
478 fn=parseHREF(a.value ("href") );
480 QString s; // Reading a note
482 if ( !file.open( IO_ReadOnly) )
484 qWarning ("mapBuilderHandler::readNoteAttr: Couldn't load "+fn);
487 QTextStream stream( &file );
489 while ( !stream.eof() ) {
490 lines += stream.readLine()+"\n";
493 // Convert to richtext
494 if ( !QStyleSheet::mightBeRichText( lines ) )
496 // Here we are workarounding the QT conversion method:
497 // convertFromPlainText does not generate valid xml, needed
498 // for the parser, but just <p> and <br> without closing tags.
499 // So we have to add those by ourselves
500 //lines=quotemeta (lines);
501 lines = QStyleSheet::convertFromPlainText( lines, QStyleSheetItem::WhiteSpaceNormal );
502 lines.replace ("<br>","<br />");
505 lines ="<html><head><meta name=\"qrichtext\" content=\"1\" /></head><body>"+lines + "</p></body></html>";
508 if (!a.value( "fonthint").isEmpty() )
509 no.setFontHint(a.value ("fonthint") );
510 if (state == StateMapCenterNote)
513 lastBranch->setNote(no);
517 bool mapBuilderHandler::readFloatImageAttr (const QXmlAttributes& a)
521 if (!a.value( "useOrientation").isEmpty() )
523 if (a.value ("useOrientation") =="true")
524 lastFloat->setUseOrientation (true);
526 lastFloat->setUseOrientation (false);
528 if (!a.value( "href").isEmpty() )
531 if (!lastFloat->load (parseHREF(a.value ("href") ) ))
533 QMessageBox::warning( 0, "Warning: " ,
534 "Couldn't load float image\n"+parseHREF(a.value ("href") ));
535 lastBranch->removeFloatImage(((FloatImageObj*)(lastFloat)));
541 if (!a.value( "floatExport").isEmpty() )
543 if (a.value ("floatExport") =="true")
544 lastFloat->setFloatExport (true);
546 lastFloat->setFloatExport (false);
548 if (!a.value( "zPlane").isEmpty() )
549 lastFloat->setZ (a.value("zPlane").toInt ());
552 if (!a.value( "relPosX").isEmpty() )
554 if (!a.value( "relPosY").isEmpty() )
557 x=a.value("relPosX").toInt (&okx, 10);
558 y=a.value("relPosY").toInt (&oky, 10);
560 lastFloat->setRelPos (QPoint (x,y) );
562 // Couldn't read relPos
567 if (!readLinkAttr(a)) return false;
572 bool mapBuilderHandler::readXLinkAttr (const QXmlAttributes& a)
577 XLinkObj *xlo=new XLinkObj (mc->getCanvas());
578 if (!a.value( "color").isEmpty() )
580 col.setNamedColor(a.value("color"));
584 if (!a.value( "width").isEmpty() )
586 xlo->setWidth(a.value ("width").toInt (&okx, 10));
589 if (!a.value( "beginBranch").isEmpty() )
591 if (!a.value( "endBranch").isEmpty() )
593 LinkableMapObj *lmo=mc->findObjBySelect (a.value( "beginBranch"));
594 if (lmo && typeid (*lmo)==typeid (BranchObj))
596 xlo->setBegin ((BranchObj*)(lmo));
597 lmo=mc->findObjBySelect (a.value( "endBranch"));
598 if (lmo && typeid (*lmo)==typeid (BranchObj))
600 xlo->setEnd ((BranchObj*)(lmo));
604 success=true; // Not all branches there yet, no error
607 if (!success) delete (xlo);
611 bool mapBuilderHandler::readHtmlAttr (const QXmlAttributes& a)
613 for (int i=1; i<=a.count(); i++)
614 htmldata+=" "+a.localName(i-1)+"=\""+a.value(i-1)+"\"";
618 bool mapBuilderHandler::readSettingAttr (const QXmlAttributes& a)
620 if (!a.value( "key").isEmpty() )
622 if (!a.value( "value").isEmpty() )
623 settings.setLocalEntry (me->getDestPath(), a.value ("key"), a.value ("value"));