3 #include <qmessagebox.h>
5 #include <qstylesheet.h>
10 #include "linkablemapobj.h"
14 static BranchObj *lastBranch;
15 static FloatObj *lastFloat;
16 static OrnamentedObj *lastOO;
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 );
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 );
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 // Try to read the bogus line
391 errorProt+=QString("File is: %1\n").arg(inputFile);
393 if (loadStringFromDisk (inputFile,s))
395 QStringList sl=QStringList::split ("\n",s);
397 QStringList::Iterator it = sl.begin();
398 while (i<exception.lineNumber()-1)
404 s.insert (exception.columnNumber()-1,"<ERROR>");
407 return QXmlDefaultHandler::fatalError( exception );
410 void mapBuilderHandler::setMapEditor (MapEditor* e)
413 mc=me->getMapCenter();
416 void mapBuilderHandler::setTmpDir (QString tp)
421 void mapBuilderHandler::setInputFile (QString f)
426 void mapBuilderHandler::setLoadMode (const LoadMode &lm)
431 bool mapBuilderHandler::readBranchAttr (const QXmlAttributes& a)
434 if (!readOOAttr(a)) return false;
436 if (!a.value( "scrolled").isEmpty() )
437 lastBranch->toggleScroll();
438 if (!a.value( "frameType").isEmpty() )
439 lastBranch->setFrameType (a.value("frameType"));
441 if (!a.value( "incImgV").isEmpty() )
443 if (a.value("incImgV")=="true")
444 lastBranch->setIncludeImagesVer(true);
446 lastBranch->setIncludeImagesVer(false);
448 if (!a.value( "incImgH").isEmpty() )
450 if (a.value("incImgH")=="true")
451 lastBranch->setIncludeImagesHor(true);
453 lastBranch->setIncludeImagesHor(false);
458 bool mapBuilderHandler::readOOAttr (const QXmlAttributes& a)
464 if (!a.value( "absPosX").isEmpty() && loadMode==NewMap && branchDepth<2)
466 if (!a.value( "absPosY").isEmpty() )
468 x=a.value("absPosX").toInt (&okx, 10);
469 y=a.value("absPosY").toInt (&oky, 10);
473 return false; // Couldn't read absPos
476 if (!a.value( "url").isEmpty() )
477 lastOO->setURL (a.value ("url"));
478 if (!a.value( "vymLink").isEmpty() )
479 lastOO->setVymLink (a.value ("vymLink"));
480 if (!a.value( "hideInExport").isEmpty() )
481 if (a.value("hideInExport")=="true")
482 lastOO->setHideInExport(true);
484 if (!a.value( "hideLink").isEmpty())
486 if (a.value ("hideLink") =="true")
487 lastOO->setHideLinkUnselected(true);
489 lastOO->setHideLinkUnselected(false);
495 bool mapBuilderHandler::readNoteAttr (const QXmlAttributes& a)
496 { // only for backward compatibility (<1.4.6). Use htmlnote now.
499 if (!a.value( "href").isEmpty() )
502 fn=parseHREF(a.value ("href") );
504 QString s; // Reading a note
506 if ( !file.open( IO_ReadOnly) )
508 qWarning ("mapBuilderHandler::readNoteAttr: Couldn't load "+fn);
511 QTextStream stream( &file );
513 while ( !stream.eof() ) {
514 lines += stream.readLine()+"\n";
517 // Convert to richtext
518 if ( !QStyleSheet::mightBeRichText( lines ) )
520 // Here we are workarounding the QT conversion method:
521 // convertFromPlainText does not generate valid xml, needed
522 // for the parser, but just <p> and <br> without closing tags.
523 // So we have to add those by ourselves
524 //lines=quotemeta (lines);
525 lines = QStyleSheet::convertFromPlainText( lines, QStyleSheetItem::WhiteSpaceNormal );
526 lines.replace ("<br>","<br />");
529 lines ="<html><head><meta name=\"qrichtext\" content=\"1\" /></head><body>"+lines + "</p></body></html>";
532 if (!a.value( "fonthint").isEmpty() )
533 no.setFontHint(a.value ("fonthint") );
534 if (state == StateMapCenterNote)
537 lastBranch->setNote(no);
541 bool mapBuilderHandler::readFloatImageAttr (const QXmlAttributes& a)
545 //if (!readOOAttr(a)) return false;
547 if (!a.value( "useOrientation").isEmpty() )
549 if (a.value ("useOrientation") =="true")
550 lastFloat->setUseOrientation (true);
552 lastFloat->setUseOrientation (false);
554 if (!a.value( "href").isEmpty() )
557 if (!lastFloat->load (parseHREF(a.value ("href") ) ))
559 QMessageBox::warning( 0, "Warning: " ,
560 "Couldn't load float image\n"+parseHREF(a.value ("href") ));
561 lastBranch->removeFloatImage(((FloatImageObj*)(lastFloat)));
567 if (!a.value( "floatExport").isEmpty() )
569 // Only for compatibility. THis is not used since 1.7.11
570 if (a.value ("floatExport") =="true")
571 lastFloat->setFloatExport(true);
573 lastFloat->setFloatExport (false);
575 if (!a.value( "zPlane").isEmpty() )
576 lastFloat->setZ (a.value("zPlane").toInt ());
579 if (!a.value( "relPosX").isEmpty() )
581 if (!a.value( "relPosY").isEmpty() )
584 x=a.value("relPosX").toInt (&okx, 10);
585 y=a.value("relPosY").toInt (&oky, 10);
588 lastFloat->setRelPos (QPoint (x,y) );
590 // Couldn't read relPos
595 if (!readOOAttr(a)) return false;
600 bool mapBuilderHandler::readXLinkAttr (const QXmlAttributes& a)
605 XLinkObj *xlo=new XLinkObj (mc->getCanvas());
606 if (!a.value( "color").isEmpty() )
608 col.setNamedColor(a.value("color"));
612 if (!a.value( "width").isEmpty() )
614 xlo->setWidth(a.value ("width").toInt (&okx, 10));
617 if (!a.value( "beginBranch").isEmpty() )
619 if (!a.value( "endBranch").isEmpty() )
621 LinkableMapObj *lmo=mc->findObjBySelect (a.value( "beginBranch"));
622 if (lmo && typeid (*lmo)==typeid (BranchObj))
624 xlo->setBegin ((BranchObj*)(lmo));
625 lmo=mc->findObjBySelect (a.value( "endBranch"));
626 if (lmo && typeid (*lmo)==typeid (BranchObj))
628 xlo->setEnd ((BranchObj*)(lmo));
632 success=true; // Not all branches there yet, no error
635 if (!success) delete (xlo);
639 bool mapBuilderHandler::readHtmlAttr (const QXmlAttributes& a)
641 for (int i=1; i<=a.count(); i++)
642 htmldata+=" "+a.localName(i-1)+"=\""+a.value(i-1)+"\"";
646 bool mapBuilderHandler::readSettingAttr (const QXmlAttributes& a)
648 if (!a.value( "key").isEmpty() )
650 if (!a.value( "value").isEmpty() )
651 settings.setLocalEntry (me->getDestPath(), a.value ("key"), a.value ("value"));