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( "relPosX").isEmpty() && loadMode==NewMap && branchDepth<9)
442 if (!a.value( "relPosY").isEmpty() )
445 fx=a.value("relPosX").toFloat (&okx);
446 fy=a.value("relPosY").toFloat (&oky);
448 lastBranch->move2RelPos ((int)fx,(int)fy);
450 return false; // Couldn't read relPos
453 if (!a.value( "scrolled").isEmpty() )
454 lastBranch->toggleScroll();
455 if (!a.value( "url").isEmpty() )
456 lastBranch->setURL (a.value ("url"));
457 if (!a.value( "vymLink").isEmpty() )
458 lastBranch->setVymLink (a.value ("vymLink"));
459 if (!a.value( "frameType").isEmpty() )
460 lastBranch->setFrameType (a.value("frameType"));
462 if (!a.value( "incImgV").isEmpty() )
464 if (a.value("incImgV")=="true")
465 lastBranch->setIncludeImagesVer(true);
467 lastBranch->setIncludeImagesVer(false);
469 if (!a.value( "incImgH").isEmpty() )
471 if (a.value("incImgH")=="true")
472 lastBranch->setIncludeImagesHor(true);
474 lastBranch->setIncludeImagesHor(false);
479 bool mapBuilderHandler::readLinkAttr (const QXmlAttributes& a)
483 if (!a.value( "hideLink").isEmpty())
485 if (a.value ("hideLink") =="true")
486 lastLMO->setHideLinkUnselected(true);
488 lastLMO->setHideLinkUnselected(false);
494 bool mapBuilderHandler::readNoteAttr (const QXmlAttributes& a)
495 { // only for backward compatibility (<1.4.6). Use htmlnote now.
498 if (!a.value( "href").isEmpty() )
501 fn=parseHREF(a.value ("href") );
503 QString s; // Reading a note
505 if ( !file.open( IO_ReadOnly) )
507 qWarning ("mapBuilderHandler::readNoteAttr: Couldn't load "+fn);
510 QTextStream stream( &file );
512 while ( !stream.eof() ) {
513 lines += stream.readLine()+"\n";
516 // Convert to richtext
517 if ( !QStyleSheet::mightBeRichText( lines ) )
519 // Here we are workarounding the QT conversion method:
520 // convertFromPlainText does not generate valid xml, needed
521 // for the parser, but just <p> and <br> without closing tags.
522 // So we have to add those by ourselves
523 //lines=quotemeta (lines);
524 lines = QStyleSheet::convertFromPlainText( lines, QStyleSheetItem::WhiteSpaceNormal );
525 lines.replace ("<br>","<br />");
528 lines ="<html><head><meta name=\"qrichtext\" content=\"1\" /></head><body>"+lines + "</p></body></html>";
531 if (!a.value( "fonthint").isEmpty() )
532 no.setFontHint(a.value ("fonthint") );
533 if (state == StateMapCenterNote)
536 lastBranch->setNote(no);
540 bool mapBuilderHandler::readFloatImageAttr (const QXmlAttributes& a)
544 if (!a.value( "useOrientation").isEmpty() )
546 if (a.value ("useOrientation") =="true")
547 lastFloat->setUseOrientation (true);
549 lastFloat->setUseOrientation (false);
551 if (!a.value( "href").isEmpty() )
554 if (!lastFloat->load (parseHREF(a.value ("href") ) ))
556 QMessageBox::warning( 0, "Warning: " ,
557 "Couldn't load float image\n"+parseHREF(a.value ("href") ));
558 lastBranch->removeFloatImage(((FloatImageObj*)(lastFloat)));
564 if (!a.value( "floatExport").isEmpty() )
566 if (a.value ("floatExport") =="true")
567 lastFloat->setFloatExport (true);
569 lastFloat->setFloatExport (false);
571 if (!a.value( "zPlane").isEmpty() )
572 lastFloat->setZ (a.value("zPlane").toInt ());
575 if (!a.value( "relPosX").isEmpty() )
577 if (!a.value( "relPosY").isEmpty() )
580 x=a.value("relPosX").toInt (&okx, 10);
581 y=a.value("relPosY").toInt (&oky, 10);
583 lastFloat->setRelPos (QPoint (x,y) );
585 // Couldn't read relPos
590 if (!readLinkAttr(a)) return false;
595 bool mapBuilderHandler::readXLinkAttr (const QXmlAttributes& a)
600 XLinkObj *xlo=new XLinkObj (mc->getCanvas());
601 if (!a.value( "color").isEmpty() )
603 col.setNamedColor(a.value("color"));
607 if (!a.value( "width").isEmpty() )
609 xlo->setWidth(a.value ("width").toInt (&okx, 10));
612 if (!a.value( "beginBranch").isEmpty() )
614 if (!a.value( "endBranch").isEmpty() )
616 LinkableMapObj *lmo=mc->findObjBySelect (a.value( "beginBranch"));
617 if (lmo && typeid (*lmo)==typeid (BranchObj))
619 xlo->setBegin ((BranchObj*)(lmo));
620 lmo=mc->findObjBySelect (a.value( "endBranch"));
621 if (lmo && typeid (*lmo)==typeid (BranchObj))
623 xlo->setEnd ((BranchObj*)(lmo));
627 success=true; // Not all branches there yet, no error
630 if (!success) delete (xlo);
634 bool mapBuilderHandler::readHtmlAttr (const QXmlAttributes& a)
636 for (int i=1; i<=a.count(); i++)
637 htmldata+=" "+a.localName(i-1)+"=\""+a.value(i-1)+"\"";
641 bool mapBuilderHandler::readSettingAttr (const QXmlAttributes& a)
643 if (!a.value( "key").isEmpty() )
645 if (!a.value( "value").isEmpty() )
646 settings.setLocalEntry (me->getDestPath(), a.value ("key"), a.value ("value"));