9 #include "branchitem.h"
12 #include "linkablemapobj.h"
13 #include "mainwindow.h"
16 static FloatObj *lastFloat;
17 static OrnamentedObj *lastOO;
19 extern Main *mainWindow;
20 extern Settings settings;
21 extern QString vymVersion;
23 bool parseVYMHandler::startDocument()
27 laststate = StateInit;
29 stateStack.append(StateInit);
35 bool parseVYMHandler::startElement ( const QString&, const QString&,
36 const QString& eName, const QXmlAttributes& atts )
40 cout << "startElement <"<< qPrintable(eName)
42 <<" laststate="<<stateStack.last()
43 <<" loadMode="<<loadMode
44 // <<" line="<<QXmlDefaultHandler::lineNumber()
47 stateStack.append (state);
48 if ( state == StateInit && (eName == "vymmap") )
51 branchesTotal=branchesCurrent=0;
53 if (loadMode==NewMap )
59 if (!atts.value( "author").isEmpty() )
60 model->setAuthor(atts.value( "author" ) );
61 if (!atts.value( "comment").isEmpty() )
62 model->setComment (atts.value( "comment" ) );
63 if (!atts.value( "branchCount").isEmpty() )
65 branchesTotal=atts.value("branchCount").toInt();
68 mainWindow->setProgressMinimum (0);
69 mainWindow->setProgressMaximum (branchesTotal);
70 mainWindow->setProgressValue(0);
74 mainWindow->setProgressMinimum (0);
75 mainWindow->setProgressMaximum (0);
76 mainWindow->setProgressValue(0);
80 if (!atts.value( "backgroundColor").isEmpty() )
82 col.setNamedColor(atts.value("backgroundColor"));
83 model->getScene()->setBackgroundBrush(col);
85 if (!atts.value( "selectionColor").isEmpty() )
87 col.setNamedColor(atts.value("selectionColor"));
88 model->setSelectionColor(col);
90 if (!atts.value( "linkColorHint").isEmpty() )
92 if (atts.value("linkColorHint")=="HeadingColor")
93 model->setMapLinkColorHint(LinkableMapObj::HeadingColor);
95 model->setMapLinkColorHint(LinkableMapObj::DefaultColor);
97 if (!atts.value( "linkStyle").isEmpty() )
98 model->setMapLinkStyle(atts.value("linkStyle"));
99 if (!atts.value( "linkColor").isEmpty() )
101 col.setNamedColor(atts.value("linkColor"));
102 model->setMapDefLinkColor(col);
104 if (!atts.value( "defXLinkColor").isEmpty() )
106 col.setNamedColor(atts.value("defXLinkColor"));
107 model->setMapDefXLinkColor(col);
109 if (!atts.value( "defXLinkWidth").isEmpty() )
110 model->setMapDefXLinkWidth(atts.value("defXLinkWidth").toInt ());
113 if (!atts.value( "version").isEmpty() )
115 if (!checkVersion(atts.value("version")))
116 QMessageBox::warning( 0, "Warning: Version Problem" ,
117 "<h3>Map is newer than VYM</h3>"
118 "<p>The map you are just trying to load was "
119 "saved using vym " +atts.value("version")+". "
120 "The version of this vym is " + vymVersion +
121 ". If you run into problems after pressing "
122 "the ok-button below, updating vym should help.");
124 model->setVersion(atts.value( "version" ));
128 } else if ( eName == "select" && state == StateMap )
130 state=StateMapSelect;
131 } else if ( eName == "setting" && state == StateMap )
133 state=StateMapSetting;
134 if (loadMode==NewMap)
135 readSettingAttr (atts);
136 } else if ( eName == "mapcenter" && state == StateMap )
138 state=StateMapCenter;
139 if (loadMode==NewMap)
141 // Really use the found mapcenter as MCO in a new map
143 lastBranchItem=(BranchItem*)model->createMapCenter();
146 // Treat the found mapcenter as a branch
147 // in an existing map
148 BranchItem *bi=model->getSelectedBranchItem();
152 if (loadMode==ImportAdd)
154 model->createBranch();
155 lastBranchItem=model->getSelectedBranchItem();
157 //FIXME-3 lastBranch->clear();
161 readBranchAttr (atts);
163 (eName == "standardflag" ||eName == "standardFlag") &&
164 (state == StateMapCenter || state==StateBranch))
166 state=StateStandardFlag;
167 } else if ( eName == "heading" && (state == StateMapCenter||state==StateBranch))
171 if (!atts.value( "textColor").isEmpty() )
173 col.setNamedColor(atts.value("textColor"));
174 //FIXME-2 lastBranch->setColor(col );
176 } else if ( eName == "note" &&
177 (state == StateMapCenter ||state==StateBranch))
178 { // only for backward compatibility (<1.4.6). Use htmlnote now.
180 if (!readNoteAttr (atts) ) return false;
181 } else if ( eName == "htmlnote" && state == StateMapCenter)
185 } else if ( eName == "floatimage" &&
186 (state == StateMapCenter ||state==StateBranch))
188 state=StateFloatImage;
189 //FIXME-2lastBranch->addFloatImage();
190 //FIXME-2lastFloat=lastBranch->getLastFloatImage();
191 if (!readFloatImageAttr(atts)) return false;
192 } else if ( (eName == "branch"||eName=="floatimage") && state == StateMap)
194 // This is used in vymparts, which have no mapcenter!
196 TreeItem *ti=model->getSelectedItem();
199 // If a vym part is _loaded_ (not imported),
200 // selection==lmo==NULL
201 // Treat it like ImportAdd then...
203 // FIXME-3 lmo=model->first()->getLMO();
204 // Do we really have no MCO when loading?????
205 cout << "xml-vym aborted\n";
207 if (ti && ti->isBranchLikeType() )
209 lastBranchItem=(BranchItem*)ti;
213 if (loadMode==ImportAdd)
215 model->createBranch();
216 lastBranchItem=model->getSelectedBranchItem();
219 //FIXME-2 lastBranch->clear();
220 readBranchAttr (atts);
221 } else if (eName=="floatimage")
223 state=StateFloatImage;
224 //FIXME-2 lastBranch->addFloatImage();
225 //FIXME-2 lastFloat=lastBranch->getLastFloatImage();
226 if (!readFloatImageAttr(atts)) return false;
229 } else if ( eName == "branch" && state == StateMapCenter)
232 model->createBranch();
233 lastBranchItem=model->getSelectedBranchItem();
234 readBranchAttr (atts);
235 } else if ( eName == "htmlnote" && state == StateBranch)
240 if (!atts.value( "fonthint").isEmpty() )
241 no.setFontHint(atts.value ("fonthint") );
242 } else if ( eName == "frame" && (state == StateBranch||state==StateMapCenter))
246 if (!readFrameAttr(atts)) return false;
247 } else if ( eName == "xlink" && state == StateBranch )
249 state=StateBranchXLink;
250 if (!readXLinkAttr (atts)) return false;
251 } else if ( eName == "branch" && state == StateBranch )
253 model->createBranch();
254 lastBranchItem=model->getSelectedBranchItem();
255 readBranchAttr (atts);
256 } else if ( eName == "html" && state == StateHtmlNote )
262 } else if ( state == StateHtml )
264 // accept all while in html mode,
269 return false; // Error
273 bool parseVYMHandler::endElement ( const QString&, const QString&, const QString &eName)
276 cout << "endElement </" <<qPrintable(eName)
278 <<" laststate=" <<laststate
279 <<" stateStack="<<stateStack.last()
285 mainWindow->removeProgressBar();
288 model->selectParent();
289 lastBranchItem=model->getSelectedBranchItem();
290 lastBranchItem->setLastSelectedBranch (0); // Reset last selected to first child branch
293 htmldata+="</"+eName+">";
297 htmldata.replace ("<br></br>","<br />");
298 no.setNote (htmldata);
299 lastBranchItem->setNoteObj (no);
305 state=stateStack.takeLast();
309 bool parseVYMHandler::characters ( const QString& ch)
311 //cout << "characters \""<<ch<<"\" state="<<state <<" laststate="<<laststate<<endl;
313 QString ch_org=quotemeta (ch);
314 QString ch_simplified=ch.simplifyWhiteSpace();
315 if ( ch_simplified.isEmpty() ) return true;
319 case StateInit: break;
320 case StateMap: break;
322 model->select(ch_simplified);
324 case StateMapSetting:break;
325 case StateMapCenter: break;
327 lastBranchItem->setNote(ch_simplified);
329 case StateBranch: break;
330 case StateStandardFlag:
331 //FIXME-2 lastBranchItem->activateStandardFlag(ch_simplified);
333 case StateFloatImage: break;
334 case StateHtmlNote: break;
339 model->setHeading(ch_simplified);
347 QString parseVYMHandler::errorString()
349 return "the document is not in the VYM file format";
352 bool parseVYMHandler::readBranchAttr (const QXmlAttributes& a) //FIXME-2
355 mainWindow->setProgressValue (branchesCurrent);
357 //lastBranchItem=(BranchItem*)(lastBranch->getTreeItem());
360 if (!readOOAttr(a)) return false;
362 if (!a.value( "scrolled").isEmpty() )
363 lastBranchItem->toggleScroll();
364 if (!a.value( "frameType").isEmpty() )
365 lastOO->setFrameType (a.value("frameType")); //Compatibility 1.8.1
367 if (!a.value( "incImgV").isEmpty() )
369 if (a.value("incImgV")=="true")
370 lastBranch->setIncludeImagesVer(true);
372 lastBranch->setIncludeImagesVer(false);
374 if (!a.value( "incImgH").isEmpty() )
376 if (a.value("incImgH")=="true")
377 lastBranch->setIncludeImagesHor(true);
379 lastBranch->setIncludeImagesHor(false);
385 bool parseVYMHandler::readFrameAttr (const QXmlAttributes& a)
391 if (!a.value( "frameType").isEmpty() )
392 lastOO->setFrameType (a.value("frameType"));
393 if (!a.value( "penColor").isEmpty() )
394 lastOO->setFramePenColor (a.value("penColor"));
395 if (!a.value( "brushColor").isEmpty() )
396 lastOO->setFrameBrushColor (a.value("brushColor"));
397 if (!a.value( "padding").isEmpty() )
399 x=a.value("padding").toInt(&ok);
400 if (ok) lastOO->setFramePadding(x);
402 if (!a.value( "borderWidth").isEmpty() )
404 x=a.value("borderWidth").toInt(&ok);
405 if (ok) lastOO->setFrameBorderWidth(x);
411 bool parseVYMHandler::readOOAttr (const QXmlAttributes& a)
417 if (!a.value( "relPosX").isEmpty() )
419 if (!a.value( "relPosY").isEmpty() )
421 x=a.value("relPosX").toFloat (&okx);
422 y=a.value("relPosY").toFloat (&oky);
425 lastOO->setUseRelPos (true);
426 lastOO->move2RelPos (x,y);
429 return false; // Couldn't read relPos
432 if (!a.value( "absPosX").isEmpty() && loadMode==NewMap )
434 if (!a.value( "absPosY").isEmpty() )
436 x=a.value("absPosX").toFloat (&okx);
437 y=a.value("absPosY").toFloat (&oky);
441 return false; // Couldn't read absPos
444 if (!a.value( "id").isEmpty() )
445 lastBranchItem->setID (a.value ("id"));
446 if (!a.value( "url").isEmpty() )
447 lastOO->setURL (a.value ("url"));
448 if (!a.value( "vymLink").isEmpty() )
449 lastOO->setVymLink (a.value ("vymLink"));
450 if (!a.value( "hideInExport").isEmpty() )
451 if (a.value("hideInExport")=="true")
452 lastOO->getTreeItem()->setHideInExport(true);
454 if (!a.value( "hideLink").isEmpty())
456 if (a.value ("hideLink") =="true")
457 lastOO->setHideLinkUnselected(true);
459 lastOO->setHideLinkUnselected(false);
465 bool parseVYMHandler::readNoteAttr (const QXmlAttributes& a)
466 { // only for backward compatibility (<1.4.6). Use htmlnote now.
469 if (!a.value( "href").isEmpty() )
472 fn=parseHREF(a.value ("href") );
474 QString s; // Reading a note
476 if ( !file.open( QIODevice::ReadOnly) )
478 qWarning ("parseVYMHandler::readNoteAttr: Couldn't load "+fn);
481 QTextStream stream( &file );
483 while ( !stream.atEnd() ) {
484 lines += stream.readLine()+"\n";
488 lines ="<html><head><meta name=\"qrichtext\" content=\"1\" /></head><body>"+lines + "</p></body></html>";
491 if (!a.value( "fonthint").isEmpty() )
492 no.setFontHint(a.value ("fonthint") );
493 lastBranchItem->setNoteObj(no);
497 bool parseVYMHandler::readFloatImageAttr (const QXmlAttributes& a)
501 //if (!readOOAttr(a)) return false;
503 if (!a.value( "useOrientation").isEmpty() )
505 if (a.value ("useOrientation") =="true")
506 lastFloat->setUseOrientation (true);
508 lastFloat->setUseOrientation (false);
510 if (!a.value( "href").isEmpty() )
513 if (!lastFloat->load (parseHREF(a.value ("href") ) ))
515 QMessageBox::warning( 0, "Warning: " ,
516 "Couldn't load float image\n"+parseHREF(a.value ("href") ));
517 //FIXME-2 lastBranch->removeFloatImage(((FloatImageObj*)(lastFloat)));
523 if (!a.value( "floatExport").isEmpty() )
525 // Only for compatibility. THis is not used since 1.7.11
526 if (a.value ("floatExport") =="true")
527 lastFloat->setFloatExport(true);
529 lastFloat->setFloatExport (false);
531 if (!a.value( "zPlane").isEmpty() )
532 lastFloat->setZValue (a.value("zPlane").toInt ());
535 if (!a.value( "relPosX").isEmpty() )
537 if (!a.value( "relPosY").isEmpty() )
540 x=a.value("relPosX").toFloat (&okx);
541 y=a.value("relPosY").toFloat (&oky);
545 lastFloat->setRelPos (QPointF (x,y) );
546 // make sure floats in mapcenter are repositioned to relative pos
547 //FIXME-2 if (lastBranchItem->depth()==0) lastBranch->positionContents();
550 // Couldn't read relPos
555 if (!readOOAttr(a)) return false;
557 if (!a.value ("orgName").isEmpty() )
559 ((FloatImageObj*)(lastFloat))->setOriginalFilename (a.value("orgName"));
564 bool parseVYMHandler::readXLinkAttr (const QXmlAttributes& a)
569 XLinkObj *xlo=new XLinkObj (model->getScene());
570 if (!a.value( "color").isEmpty() )
572 col.setNamedColor(a.value("color"));
576 if (!a.value( "width").isEmpty() )
578 xlo->setWidth(a.value ("width").toInt (&okx, 10));
581 // Connecting by select string for compatibility with version < 1.8.76
582 if (!a.value( "beginBranch").isEmpty() )
584 if (!a.value( "endBranch").isEmpty() )
586 TreeItem *ti=model->findBySelectString (a.value( "beginBranch"));
587 if (ti && ti->isBranchLikeType())
590 xlo->setBegin ((BranchObj*)lmo);
591 lmo=model->findBySelectString (a.value( "endBranch"));
592 if (lmo && typeid (*lmo)==typeid (BranchObj))
594 xlo->setEnd ((BranchObj*)(lmo));
603 // object ID is used starting in version 1.8.76
605 if (!a.value( "beginID").isEmpty() )
607 if (!a.value( "endID").isEmpty() )
609 LinkableMapObj *lmo=model->findID (a.value( "beginID"));
610 if (lmo && typeid (*lmo)==typeid (BranchObj))
612 xlo->setBegin ((BranchObj*)lmo);
613 lmo=model->findID (a.value( "endID"));
614 if (lmo && typeid (*lmo)==typeid (BranchObj))
616 xlo->setEnd ((BranchObj*)(lmo));
624 if (!success) delete (xlo);
625 return true; // xLinks can only be established at the "end branch", return true
628 bool parseVYMHandler::readHtmlAttr (const QXmlAttributes& a)
630 for (int i=1; i<=a.count(); i++)
631 htmldata+=" "+a.localName(i-1)+"=\""+a.value(i-1)+"\"";
635 bool parseVYMHandler::readSettingAttr (const QXmlAttributes& a)
637 if (!a.value( "key").isEmpty() )
639 if (!a.value( "value").isEmpty() )
640 settings.setLocalEntry (model->getDestPath(), a.value ("key"), a.value ("value"));