xml-vym.cpp
author insilmaril
Thu, 14 May 2009 12:42:58 +0000
changeset 768 382a444f5b0c
parent 766 7a71a914afdb
child 772 e3f722759c7e
permissions -rw-r--r--
flag of NoteEditor works again
     1 #include "xml-vym.h"
     2 
     3 #include <QMessageBox>
     4 #include <QColor>
     5 #include <QTextStream>
     6 #include <iostream>
     7 #include <typeinfo>
     8 
     9 #include "branchitem.h"
    10 #include "misc.h"
    11 #include "settings.h"
    12 #include "linkablemapobj.h"
    13 #include "mainwindow.h"
    14 #include "version.h"
    15 
    16 static FloatObj *lastFloat;
    17 static OrnamentedObj *lastOO;
    18 
    19 extern Main *mainWindow;
    20 extern Settings settings;
    21 extern QString vymVersion;
    22 
    23 bool parseVYMHandler::startDocument()
    24 {
    25     errorProt = "";
    26     state = StateInit;
    27     laststate = StateInit;
    28 	stateStack.clear();
    29 	stateStack.append(StateInit);
    30 	htmldata="";
    31 	isVymPart=false;
    32     return true;
    33 }
    34 
    35 bool parseVYMHandler::startElement  ( const QString&, const QString&,
    36                     const QString& eName, const QXmlAttributes& atts ) 
    37 {
    38     QColor col;
    39 	/* Testing
    40 	cout << "startElement <"<< qPrintable(eName)
    41 		<<">  state="<<state 
    42 		<<"  laststate="<<stateStack.last()
    43 		<<"   loadMode="<<loadMode
    44 	//	<<"       line="<<QXmlDefaultHandler::lineNumber()
    45 		<<endl;
    46 	*/	
    47 	stateStack.append (state);	
    48     if ( state == StateInit && (eName == "vymmap")  ) 
    49 	{
    50         state = StateMap;
    51 		branchesTotal=branchesCurrent=0;
    52 
    53 		if (loadMode==NewMap )
    54 		{
    55 			// Create mapCenter
    56 			model->clear();
    57 			lastBranchItem=NULL;
    58 
    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() )
    64 			{
    65 				branchesTotal=atts.value("branchCount").toInt();
    66 				if (branchesTotal>10)
    67 				{
    68 					mainWindow->setProgressMinimum (0);
    69 					mainWindow->setProgressMaximum (branchesTotal);
    70 					mainWindow->setProgressValue(0);
    71 				}
    72 			} else
    73 			{
    74 				mainWindow->setProgressMinimum (0);
    75 				mainWindow->setProgressMaximum (0);
    76 				mainWindow->setProgressValue(0);
    77 			}
    78 
    79 				
    80 			if (!atts.value( "backgroundColor").isEmpty() )
    81 			{
    82 				col.setNamedColor(atts.value("backgroundColor"));
    83 				model->getScene()->setBackgroundBrush(col);
    84 			}	    
    85 			if (!atts.value( "selectionColor").isEmpty() )
    86 			{
    87 				col.setNamedColor(atts.value("selectionColor"));
    88 				model->setSelectionColor(col);
    89 			}	    
    90 			if (!atts.value( "linkColorHint").isEmpty() ) 
    91 			{
    92 				if (atts.value("linkColorHint")=="HeadingColor")
    93 					model->setMapLinkColorHint(LinkableMapObj::HeadingColor);
    94 				else
    95 					model->setMapLinkColorHint(LinkableMapObj::DefaultColor);
    96 			}
    97 			if (!atts.value( "linkStyle").isEmpty() ) 
    98 				model->setMapLinkStyle(atts.value("linkStyle"));
    99 			if (!atts.value( "linkColor").isEmpty() ) 
   100 			{
   101 				col.setNamedColor(atts.value("linkColor"));
   102 				model->setMapDefLinkColor(col);
   103 			}	
   104 			if (!atts.value( "defXLinkColor").isEmpty() ) 
   105 			{
   106 				col.setNamedColor(atts.value("defXLinkColor"));
   107 				model->setMapDefXLinkColor(col);
   108 			}	
   109 			if (!atts.value( "defXLinkWidth").isEmpty() ) 
   110 				model->setMapDefXLinkWidth(atts.value("defXLinkWidth").toInt ());
   111 		}	
   112 		// Check version
   113 		if (!atts.value( "version").isEmpty() ) 
   114 		{
   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.");
   123 			else	   
   124 				model->setVersion(atts.value( "version" ));
   125 
   126 		}
   127 
   128 	} else if ( eName == "select" && state == StateMap ) 
   129 	{
   130 		state=StateMapSelect;
   131 	} else if ( eName == "setting" && state == StateMap ) 
   132 	{
   133 		state=StateMapSetting;
   134 		if (loadMode==NewMap)
   135 			readSettingAttr (atts);
   136 	} else if ( eName == "mapcenter" && state == StateMap ) 
   137 	{
   138 		state=StateMapCenter;
   139 		if (loadMode==NewMap)
   140 		{	
   141 			// Really use the found mapcenter as MCO in a new map
   142 
   143 			lastBranchItem=(BranchItem*)model->createMapCenter(); 
   144 		} else
   145 		{
   146 			// Treat the found mapcenter as a branch 
   147 			// in an existing map
   148 			BranchItem *bi=model->getSelectedBranchItem();
   149 			if (bi)
   150 			{
   151 				lastBranchItem=bi;
   152 				if (loadMode==ImportAdd)
   153 				{
   154 					model->createBranch();
   155 					lastBranchItem=model->getSelectedBranchItem();
   156 				} //else
   157 					//FIXME-3 lastBranch->clear();
   158 			} else
   159 				return false;
   160 		}
   161 		readBranchAttr (atts);
   162 	} else if ( 
   163 		(eName == "standardflag" ||eName == "standardFlag") && 
   164 		(state == StateMapCenter || state==StateBranch)) 
   165 	{
   166 		state=StateStandardFlag;
   167 	} else if ( eName == "heading" && (state == StateMapCenter||state==StateBranch)) 
   168 	{
   169 		laststate=state;
   170 		state=StateHeading;
   171 		if (!atts.value( "textColor").isEmpty() ) 
   172 		{
   173 			col.setNamedColor(atts.value("textColor"));
   174 			lastBranchItem->setHeadingColor(col );
   175 		}	    
   176 	} else if ( eName == "note" && 
   177 				(state == StateMapCenter ||state==StateBranch))
   178 	{	// only for backward compatibility (<1.4.6). Use htmlnote now.
   179 		state=StateNote;
   180 		if (!readNoteAttr (atts) ) return false;
   181 	} else if ( eName == "htmlnote" && state == StateMapCenter) 
   182 	{
   183 		laststate=state;
   184 		state=StateHtmlNote;
   185     } else if ( eName == "floatimage" && 
   186 				(state == StateMapCenter ||state==StateBranch)) 
   187 	{
   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) 
   193 	{
   194 		// This is used in vymparts, which have no mapcenter!
   195 		isVymPart=true;
   196 		TreeItem *ti=model->getSelectedItem();
   197 		if (!ti)
   198 		{
   199 			// If a vym part is _loaded_ (not imported), 
   200 			// selection==lmo==NULL
   201 			// Treat it like ImportAdd then...
   202 			loadMode=ImportAdd;
   203 			// FIXME-3 lmo=model->first()->getLMO();		
   204 			// Do we really have no MCO when loading?????
   205 			cout << "xml-vym aborted\n";
   206 		}	
   207 		if (ti && ti->isBranchLikeType() )
   208 		{
   209 			lastBranchItem=(BranchItem*)ti;
   210 			if (eName=="branch")
   211 			{
   212 				state=StateBranch;
   213 				if (loadMode==ImportAdd)
   214 				{
   215 					model->createBranch();
   216 					lastBranchItem=model->getSelectedBranchItem();
   217 					
   218 				} else
   219 					//FIXME-2 lastBranch->clear();
   220 				readBranchAttr (atts);
   221 			} else if (eName=="floatimage")
   222 			{
   223 				state=StateFloatImage;
   224 				//FIXME-2 lastBranch->addFloatImage();
   225 				//FIXME-2 lastFloat=lastBranch->getLastFloatImage();
   226 				if (!readFloatImageAttr(atts)) return false;
   227 			} else return false;
   228 		} else return false;
   229 	} else if ( eName == "branch" && state == StateMapCenter) 
   230 	{
   231 		state=StateBranch;
   232 		lastBranchItem=model->createBranch();
   233 		readBranchAttr (atts);
   234 	} else if ( eName == "htmlnote" && state == StateBranch) 
   235 	{
   236 		laststate=state;
   237 		state=StateHtmlNote;
   238 		no.clear();
   239 		if (!atts.value( "fonthint").isEmpty() ) 
   240 			no.setFontHint(atts.value ("fonthint") );
   241 	} else if ( eName == "frame" && (state == StateBranch||state==StateMapCenter)) 
   242 	{
   243 		laststate=state;
   244 		state=StateFrame;
   245 		if (!readFrameAttr(atts)) return false;
   246     } else if ( eName == "xlink" && state == StateBranch ) 
   247 	{
   248 		state=StateBranchXLink;
   249 		if (!readXLinkAttr (atts)) return false;
   250     } else if ( eName == "branch" && state == StateBranch ) 
   251 	{
   252 		lastBranchItem=model->createBranch();
   253 		readBranchAttr (atts);
   254     } else if ( eName == "html" && state == StateHtmlNote ) 
   255 	{
   256 		state=StateHtml;
   257 		htmldata="<"+eName;
   258 		readHtmlAttr(atts);
   259 		htmldata+=">";
   260     } else if ( state == StateHtml ) 
   261 	{
   262 		// accept all while in html mode,
   263 		htmldata+="<"+eName;
   264 		readHtmlAttr(atts);
   265 		htmldata+=">";
   266     } else
   267         return false;   // Error
   268     return true;
   269 }
   270 
   271 bool parseVYMHandler::endElement  ( const QString&, const QString&, const QString &eName)
   272 {
   273 	/* Testing
   274 	cout << "endElement </" <<qPrintable(eName)
   275 		<<">  state=" <<state 
   276 		<<"  laststate=" <<laststate
   277 		<<"  stateStack="<<stateStack.last() 
   278 		<<endl;
   279 	*/
   280     switch ( state ) 
   281 	{
   282 		case StateMap:
   283 			mainWindow->removeProgressBar();
   284 			break;
   285         case StateMapCenter: 
   286 			model->selectParent();
   287 			model->emitDataHasChanged (lastBranchItem);
   288 			lastBranchItem=model->getSelectedBranchItem();
   289 			lastBranchItem->setLastSelectedBranch (0);	// Reset last selected to first child branch
   290             break;
   291         case StateBranch: 
   292 			model->selectParent();
   293 			model->emitDataHasChanged (lastBranchItem);
   294 			lastBranchItem=model->getSelectedBranchItem();
   295 			lastBranchItem->setLastSelectedBranch (0);	// Reset last selected to first child branch
   296             break;
   297         case StateHtml: 
   298 			htmldata+="</"+eName+">";
   299 			if (eName=="html")
   300 			{
   301 				state=StateHtmlNote;  
   302 				htmldata.replace ("<br></br>","<br />");
   303 				no.setNote (htmldata);
   304 				lastBranchItem->setNoteObj (no);
   305 			}	
   306 			break;
   307 		default: 
   308 			break;
   309     }  
   310 	state=stateStack.takeLast();	
   311 	return true;
   312 }
   313 
   314 bool parseVYMHandler::characters   ( const QString& ch)
   315 {
   316 	//cout << "characters \""<<ch.toStdString()<<"\"  state="<<state <<"  laststate="<<laststate<<endl;
   317 
   318 	QString ch_org=quotemeta (ch);
   319     QString ch_simplified=ch.simplifyWhiteSpace();
   320     if ( ch_simplified.isEmpty() ) return true;
   321 
   322     switch ( state ) 
   323     {
   324         case StateInit: break;
   325         case StateMap: break; 
   326 		case StateMapSelect:
   327 			model->select(ch_simplified);
   328 			break;
   329 		case StateMapSetting:break;
   330         case StateMapCenter: break;
   331         case StateNote:
   332 			lastBranchItem->setNote(ch_simplified);
   333 			break;
   334         case StateBranch: break;
   335         case StateStandardFlag: 
   336             lastBranchItem->activateStandardFlag(ch_simplified); 
   337             break;
   338         case StateFloatImage: break;
   339         case StateHtmlNote: break;
   340         case StateHtml:
   341 			htmldata+=ch_org;
   342 			break;
   343         case StateHeading: 
   344             model->setHeading(ch_simplified);
   345             break;
   346         default: 
   347 			return false;
   348     }
   349     return true;
   350 }
   351 
   352 QString parseVYMHandler::errorString() 
   353 {
   354     return "the document is not in the VYM file format";
   355 }
   356 
   357 bool parseVYMHandler::readBranchAttr (const QXmlAttributes& a)	//FIXME-2
   358 {
   359 	branchesCurrent++;
   360 	mainWindow->setProgressValue (branchesCurrent);
   361 
   362 	if (!readOOAttr(a)) return false;
   363 
   364 	if (!a.value( "scrolled").isEmpty() )
   365 		lastBranchItem->toggleScroll();
   366 /*
   367 	if (!a.value( "frameType").isEmpty() ) 
   368 		lastOO->setFrameType (a.value("frameType")); //Compatibility 1.8.1
   369 
   370 	if (!a.value( "incImgV").isEmpty() ) 
   371 	{	
   372 		if (a.value("incImgV")=="true")
   373 			lastBranch->setIncludeImagesVer(true);
   374 		else	
   375 			lastBranch->setIncludeImagesVer(false);
   376 	}	
   377 	if (!a.value( "incImgH").isEmpty() ) 
   378 	{	
   379 		if (a.value("incImgH")=="true")
   380 			lastBranch->setIncludeImagesHor(true);
   381 		else	
   382 			lastBranch->setIncludeImagesHor(false);
   383 	}	
   384 */	
   385 	return true;	
   386 }
   387 
   388 bool parseVYMHandler::readFrameAttr (const QXmlAttributes& a)
   389 {
   390 	bool ok;
   391 	int x;
   392 	if (lastOO)
   393 	{
   394 		if (!a.value( "frameType").isEmpty() ) 
   395 			lastOO->setFrameType (a.value("frameType"));
   396 		if (!a.value( "penColor").isEmpty() ) 
   397 			lastOO->setFramePenColor (a.value("penColor"));
   398 		if (!a.value( "brushColor").isEmpty() ) 
   399 			lastOO->setFrameBrushColor (a.value("brushColor"));
   400 		if (!a.value( "padding").isEmpty() ) 
   401 		{
   402 			x=a.value("padding").toInt(&ok);
   403 			if (ok) lastOO->setFramePadding(x);
   404 		}	
   405 		if (!a.value( "borderWidth").isEmpty() ) 
   406 		{
   407 			x=a.value("borderWidth").toInt(&ok);
   408 			if (ok) lastOO->setFrameBorderWidth(x);
   409 		}	
   410 	}		
   411 	return true;
   412 }
   413 
   414 bool parseVYMHandler::readOOAttr (const QXmlAttributes& a)
   415 {
   416 	if (lastBranchItem)
   417 	{
   418 		bool okx,oky;
   419 		float x,y;
   420 		if (!a.value( "relPosX").isEmpty() ) 
   421 		{
   422 			if (!a.value( "relPosY").isEmpty() ) 
   423 			{
   424 				x=a.value("relPosX").toFloat (&okx);
   425 				y=a.value("relPosY").toFloat (&oky);
   426 				if (okx && oky  )
   427 					lastBranchItem->setRelPos (QPointF(x,y));
   428 				else
   429 					return false;   // Couldn't read relPos
   430 			}           
   431 		}           
   432 		if (!a.value( "absPosX").isEmpty() && loadMode==NewMap ) 
   433 		{
   434 			if (!a.value( "absPosY").isEmpty() ) 
   435 			{
   436 				x=a.value("absPosX").toFloat (&okx);
   437 				y=a.value("absPosY").toFloat (&oky);
   438 				if (okx && oky  )
   439 					lastBranchItem->setAbsPos (QPointF(x,y));
   440 				else
   441 					return false;   // Couldn't read absPos
   442 			}           
   443 		}           
   444 		//if (!a.value( "id").isEmpty() ) 
   445 		//	lastBranchItem->setID (a.value ("id"));
   446 			
   447 		if (!a.value( "url").isEmpty() ) 
   448 			lastBranchItem->setURL (a.value ("url"));
   449 		if (!a.value( "vymLink").isEmpty() ) 
   450 			lastBranchItem->setVymLink (a.value ("vymLink"));
   451 		if (!a.value( "hideInExport").isEmpty() ) 
   452 			if (a.value("hideInExport")=="true")
   453 				lastBranchItem->setHideInExport(true);
   454 
   455 		/* FIXME-2
   456 		if (!a.value( "hideLink").isEmpty()) 
   457 		{
   458 			if (a.value ("hideLink") =="true")
   459 				lastOO->setHideLinkUnselected(true);
   460 			else	
   461 				lastOO->setHideLinkUnselected(false);
   462 		}	
   463 		*/
   464 	}
   465 	return true;	
   466 }
   467 
   468 bool parseVYMHandler::readNoteAttr (const QXmlAttributes& a)
   469 {	// only for backward compatibility (<1.4.6). Use htmlnote now.
   470 	no.clear();
   471 	QString fn;
   472 	if (!a.value( "href").isEmpty() ) 
   473 	{
   474 		// Load note
   475 		fn=parseHREF(a.value ("href") );
   476 		QFile file (fn);
   477 		QString s;						// Reading a note
   478 
   479 		if ( !file.open( QIODevice::ReadOnly) )
   480 		{
   481 			qWarning ("parseVYMHandler::readNoteAttr:  Couldn't load "+fn);
   482 			return false;
   483 		}	
   484 		QTextStream stream( &file );
   485 		QString lines;
   486 		while ( !stream.atEnd() ) {
   487 			lines += stream.readLine()+"\n"; 
   488 		}
   489 		file.close();
   490 
   491 		lines ="<html><head><meta name=\"qrichtext\" content=\"1\" /></head><body>"+lines + "</p></body></html>";
   492 		no.setNote (lines);
   493 	}		
   494 	if (!a.value( "fonthint").isEmpty() ) 
   495 		no.setFontHint(a.value ("fonthint") );
   496 	lastBranchItem->setNoteObj(no);
   497 	return true;
   498 }
   499 
   500 bool parseVYMHandler::readFloatImageAttr (const QXmlAttributes& a)
   501 {
   502 	lastOO=lastFloat;
   503 	
   504 	//if (!readOOAttr(a)) return false;
   505 
   506 	if (!a.value( "useOrientation").isEmpty() ) 
   507 	{
   508 		if (a.value ("useOrientation") =="true")
   509 			lastFloat->setUseOrientation (true);
   510 		else	
   511 			lastFloat->setUseOrientation (false);
   512 	}	
   513 	if (!a.value( "href").isEmpty() )
   514 	{
   515 		// Load FloatImage
   516 		if (!lastFloat->load (parseHREF(a.value ("href") ) ))
   517 		{
   518 			QMessageBox::warning( 0, "Warning: " ,
   519 				"Couldn't load float image\n"+parseHREF(a.value ("href") ));
   520 			//FIXME-2 lastBranch->removeFloatImage(((FloatImageObj*)(lastFloat)));
   521 			lastFloat=NULL;
   522 			return true;
   523 		}
   524 		
   525 	}	
   526 	if (!a.value( "floatExport").isEmpty() ) 
   527 	{
   528 		// Only for compatibility. THis is not used since 1.7.11 
   529 		if (a.value ("floatExport") =="true")
   530 			lastFloat->setFloatExport(true);
   531 		else	
   532 			lastFloat->setFloatExport (false);
   533 	}	
   534 	if (!a.value( "zPlane").isEmpty() ) 
   535 		lastFloat->setZValue (a.value("zPlane").toInt ());
   536     float x,y;
   537     bool okx,oky;
   538 	if (!a.value( "relPosX").isEmpty() ) 
   539 	{
   540 		if (!a.value( "relPosY").isEmpty() ) 
   541 		{
   542 			// read relPos
   543 			x=a.value("relPosX").toFloat (&okx);
   544 			y=a.value("relPosY").toFloat (&oky);
   545 			if (okx && oky) 
   546 				
   547 				{
   548 					lastFloat->setRelPos (QPointF (x,y) );
   549 					// make sure floats in mapcenter are repositioned to relative pos
   550 					//FIXME-2 if (lastBranchItem->depth()==0) lastBranch->positionContents();
   551 				}
   552 			else
   553 				// Couldn't read relPos
   554 				return false;  
   555 		}           
   556 	}	
   557 	
   558 	if (!readOOAttr(a)) return false;
   559 
   560 	if (!a.value ("orgName").isEmpty() )
   561 	{
   562 		((FloatImageObj*)(lastFloat))->setOriginalFilename (a.value("orgName"));
   563 	}
   564 	return true;
   565 }
   566 
   567 bool parseVYMHandler::readXLinkAttr (const QXmlAttributes& a)
   568 {
   569 	QColor col;
   570 	bool okx;
   571 	bool success=false;
   572 	XLinkObj *xlo=new XLinkObj (model->getScene());
   573 	if (!a.value( "color").isEmpty() ) 
   574 	{
   575 		col.setNamedColor(a.value("color"));
   576 		xlo->setColor (col);
   577 	}
   578 
   579 	if (!a.value( "width").isEmpty() ) 
   580 	{
   581 		xlo->setWidth(a.value ("width").toInt (&okx, 10));
   582 	}
   583 
   584 	// Connecting by select string for compatibility with version < 1.8.76
   585 	if (!a.value( "beginBranch").isEmpty() ) 
   586 	{ 
   587 		if (!a.value( "endBranch").isEmpty() ) 
   588 		{
   589 			TreeItem *ti=model->findBySelectString (a.value( "beginBranch"));
   590 			if (ti && ti->isBranchLikeType())
   591 			{
   592 			/* FIXME-2 xLinks
   593 				xlo->setBegin ((BranchObj*)lmo);
   594 				lmo=model->findBySelectString (a.value( "endBranch"));
   595 				if (lmo && typeid (*lmo)==typeid (BranchObj))
   596 				{
   597 					xlo->setEnd ((BranchObj*)(lmo));
   598 					xlo->activate();
   599 					success=true;
   600 				}
   601 			*/
   602 			}
   603 		}           
   604 	}	
   605 
   606 	// object ID is used starting in version 1.8.76
   607 	/* FIXME-2 xLinks
   608 	if (!a.value( "beginID").isEmpty() ) 
   609 	{ 
   610 		if (!a.value( "endID").isEmpty() ) 
   611 		{
   612 			LinkableMapObj *lmo=model->findID (a.value( "beginID"));
   613 			if (lmo && typeid (*lmo)==typeid (BranchObj))
   614 			{
   615 				xlo->setBegin ((BranchObj*)lmo);
   616 				lmo=model->findID (a.value( "endID"));
   617 				if (lmo && typeid (*lmo)==typeid (BranchObj))
   618 				{
   619 					xlo->setEnd ((BranchObj*)(lmo));
   620 					xlo->activate();
   621 					success=true;
   622 				}
   623 			}
   624 		}           
   625 	}	
   626 	*/
   627 	if (!success) delete (xlo);
   628 	return true;	// xLinks can only be established at the "end branch", return true
   629 }
   630 
   631 bool parseVYMHandler::readHtmlAttr (const QXmlAttributes& a)
   632 {
   633 	for (int i=1; i<=a.count(); i++)
   634 		htmldata+=" "+a.localName(i-1)+"=\""+a.value(i-1)+"\"";
   635 	return true;
   636 }
   637 
   638 bool parseVYMHandler::readSettingAttr (const QXmlAttributes& a)
   639 {
   640 	if (!a.value( "key").isEmpty() ) 
   641 	{
   642 		if (!a.value( "value").isEmpty() ) 
   643 			settings.setLocalEntry (model->getDestPath(), a.value ("key"), a.value ("value"));
   644 		else
   645 			return false;
   646 		
   647 	} else
   648 		return false;
   649 	
   650 	return true;
   651 }