exports.cpp
author insilmaril
Mon, 15 May 2006 07:32:10 +0000
changeset 326 7758f3ceb98a
parent 311 6a7db028088e
child 366 e95081c21da2
permissions -rw-r--r--
1.7.17
     1 #include <qfiledialog.h>
     2 #include <qmessagebox.h>
     3 #include <qprocess.h>
     4 
     5 #include "exports.h"
     6 #include "file.h"
     7 #include "linkablemapobj.h"
     8 #include "misc.h"
     9 #include "mainwindow.h"
    10 #include "warningdialog.h"
    11 #include "xsltproc.h"
    12 
    13 extern Main *mainWindow;
    14 extern QDir vymBaseDir;
    15 
    16 
    17 ExportBase::ExportBase()
    18 {
    19 	indentPerDepth="  ";
    20 	// Create tmpdir
    21 	tmpDir.setPath (makeUniqueDir("/tmp/vym-XXXXXX"));
    22 }
    23 
    24 ExportBase::~ExportBase()
    25 {
    26 	// Remove tmpdir
    27 	removeDir (tmpDir);
    28 }
    29 
    30 void ExportBase::setDir(const QString &p)
    31 {
    32 	outputDir=p;
    33 }
    34 
    35 void ExportBase::setFile (const QString &p)
    36 {
    37 	outputFile=p;
    38 }
    39 
    40 void ExportBase::setMapCenter(MapCenterObj *mc)
    41 {
    42 	mapCenter=mc;
    43 }
    44 
    45 void ExportBase::setCaption (const QString &s)
    46 {
    47 	caption=s;
    48 }
    49 
    50 void ExportBase::addFilter(const QString &s)
    51 {
    52 	filter=s;
    53 }
    54 
    55 bool ExportBase::execDialog()
    56 {
    57 	if (mapCenter && mapCenter->getMapEditor())
    58 	{
    59 		QFileDialog *fd=new QFileDialog( mapCenter->getMapEditor(), caption);
    60 		fd->addFilter (filter);
    61 		fd->setCaption(caption);
    62 		fd->setMode( QFileDialog::AnyFile );
    63 		fd->show();
    64 
    65 		if ( fd->exec() == QDialog::Accepted )
    66 		{
    67 			if (QFile (fd->selectedFile()).exists() )
    68 			{
    69 				QMessageBox mb( __VYM,
    70 					QObject::tr("The file %1 exists already.\nDo you want to overwrite it?").arg(fd->selectedFile()), 
    71 				QMessageBox::Warning,
    72 				QMessageBox::Yes | QMessageBox::Default,
    73 				QMessageBox::Cancel | QMessageBox::Escape,
    74 				QMessageBox::NoButton );
    75 				mb.setButtonText( QMessageBox::Yes, QObject::tr("Overwrite") );
    76 				mb.setButtonText( QMessageBox::No, QObject::tr("Cancel"));
    77 				ExportBase ex;
    78 				switch( mb.exec() ) 
    79 				{
    80 					case QMessageBox::Yes:
    81 						// save 
    82 						break;;
    83 					case QMessageBox::Cancel:
    84 						// return, do nothing
    85 						return false;
    86 						break;
    87 				}
    88 			}
    89 			outputFile=fd->selectedFile();
    90 			return true;
    91 		}
    92 	}
    93 	return false;
    94 }
    95 
    96 QString ExportBase::getSectionString(BranchObj *bostart)
    97 {
    98 	// Make prefix like "2.5.3" for "bo:2,bo:5,bo:3"
    99 	QString r;
   100 	BranchObj *bo=bostart;
   101 	int depth=bo->getDepth();
   102 	while (depth>0)
   103 	{
   104 		r=QString("%1").arg(1+bo->getNum(),0,10)+"." + r;
   105 		bo=(BranchObj*)(bo->getParObj());
   106 		depth=bo->getDepth();
   107 	}	
   108 	if (r.isEmpty())
   109 		return r;
   110 	else	
   111 		return r + " ";
   112 }
   113 
   114 
   115 ////////////////////////////////////////////////////////////////////////
   116 void ExportASCII::doExport()
   117 {
   118 	QFile file (outputFile);
   119 	if ( !file.open( IO_WriteOnly ) )
   120 	{
   121 		// FIXME experimental, testing
   122 		qWarning ("ExportBase::exportXML  couldn't open "+outputFile);
   123 		return;
   124 	}
   125 	QTextStream ts( &file );	// use LANG decoding here...
   126 
   127 	// Main loop over all branches
   128 	QString s;
   129 	QString actIndent("");
   130 	int i;
   131 	uint j;
   132 	BranchObj *bo;
   133 	bo=mapCenter->first();
   134 	while (bo) 
   135 	{
   136 		// Make indentstring
   137 		for (i=0;i<bo->getDepth();i++) actIndent+= indentPerDepth;
   138 
   139 		if (bo->getDepth()==0)
   140 		{
   141 			ts << (bo->getHeading()+ "\n");
   142 			for (j=0;j<bo->getHeading().length();j++) ts<<"=";
   143 			ts << "\n";
   144 		} else 	if (bo->getDepth()==1)
   145 			ts << ("\n"+getSectionString(bo) + bo->getHeading()+ "\n");
   146 		else	if (bo->getDepth()==2)
   147 			ts << (actIndent + " o " + bo->getHeading()+ "\n");
   148 		else	
   149 			ts << (actIndent + " - " + bo->getHeading()+ "\n");
   150 		
   151 		// If necessary, write note
   152 		if (!bo->getNote().isEmpty())
   153 		{
   154 			s =bo->getNoteASCII();
   155 			s=s.replace ("\n","\n"+actIndent);
   156 			ts << (s+"\n\n");
   157 		}
   158 		bo=bo->next();
   159 		actIndent="";
   160 	}
   161 	file.close();
   162 }
   163 
   164 ////////////////////////////////////////////////////////////////////////
   165 void ExportKDEBookmarks::doExport() 
   166 {
   167 	MapEditor *me=NULL;
   168 	if (mapCenter) me=mapCenter->getMapEditor();
   169 	if (me)
   170 	{
   171 		WarningDialog dia;
   172 		dia.setCancelButton (true);
   173 		dia.setText(QObject::tr("Exporting the %1 bookmarks will overwrite\nyour existing bookmarks file.").arg("KDE"));
   174 		dia.setCaption(QObject::tr("Warning: Overwriting %1 bookmarks").arg("KDE"));
   175 		dia.setShowAgainName("/vym/warnings/overwriteKDEBookmarks");
   176 		if (dia.exec()==QDialog::Accepted)
   177 		{
   178 			me->exportXML(tmpDir.path());
   179 
   180 			XSLTProc p;
   181 			p.setInputFile (tmpDir.path()+"/"+me->getMapName()+".xml");
   182 			p.setOutputFile (tmpDir.home().path()+"/.kde/share/apps/konqueror/bookmarks.xml");
   183 			p.setXSLFile (vymBaseDir.path()+"/styles/vym2kdebookmarks.xsl");
   184 			p.process();
   185 
   186 			QString ub=vymBaseDir.path()+"/scripts/update-bookmarks";
   187 			QProcess *proc = new QProcess( );
   188 			proc->addArgument(ub);
   189 
   190 			if ( !proc->start() ) 
   191 			{
   192 				QMessageBox::warning(0, 
   193 					QObject::tr("Warning"),
   194 					QObject::tr("Couldn't find script %1\nto notifiy Browsers of changed bookmarks.").arg(ub));
   195 			}	
   196 
   197 
   198 		}
   199 	}
   200 
   201 }
   202 
   203 ////////////////////////////////////////////////////////////////////////
   204 void ExportFirefoxBookmarks::doExport() 
   205 {
   206 	MapEditor *me=NULL;
   207 	if (mapCenter) me=mapCenter->getMapEditor();
   208 	if (me)
   209 	{
   210 		WarningDialog dia;
   211 		dia.setCancelButton (true);
   212 		dia.setText(QObject::tr("Exporting the %1 bookmarks will overwrite\nyour existing bookmarks file.").arg("Firefox"));
   213 		dia.setCaption(QObject::tr("Warning: Overwriting %1 bookmarks").arg("Firefox"));
   214 		dia.setShowAgainName("/vym/warnings/overwriteImportBookmarks");
   215 		if (dia.exec()==QDialog::Accepted)
   216 		{
   217 			me->exportXML(tmpDir.path());
   218 
   219 /*
   220 			XSLTProc p;
   221 			p.setInputFile (tmpDir.path()+"/"+me->getMapName()+".xml");
   222 			p.setOutputFile (tmpDir.home().path()+"/.kde/share/apps/konqueror/bookmarks.xml");
   223 			p.setXSLFile (vymBaseDir.path()+"/styles/vym2kdebookmarks.xsl");
   224 			p.process();
   225 
   226 			QString ub=vymBaseDir.path()+"/scripts/update-bookmarks";
   227 			QProcess *proc = new QProcess( );
   228 			proc->addArgument(ub);
   229 
   230 			if ( !proc->start() ) 
   231 			{
   232 				QMessageBox::warning(0, 
   233 					QObject::tr("Warning"),
   234 					QObject::tr("Couldn't find script %1\nto notifiy Browsers of changed bookmarks.").arg(ub));
   235 			}	
   236 
   237 */
   238 
   239 		}
   240 	}
   241 }
   242 
   243 ////////////////////////////////////////////////////////////////////////
   244 void ExportTaskjuggler::doExport() 
   245 {
   246 	MapEditor *me=NULL;
   247 	if (mapCenter) me=mapCenter->getMapEditor();
   248 	if (me)
   249 	{
   250 		me->exportXML(tmpDir.path());
   251 		//FIXME testing
   252 		cout << "tmpDir="<<tmpDir.path()<<endl;
   253 
   254 		XSLTProc p;
   255 		p.setInputFile (tmpDir.path()+"/"+me->getMapName()+".xml");
   256 		p.setOutputFile (outputFile);
   257 		p.setXSLFile (vymBaseDir.path()+"/styles/vym2taskjuggler.xsl");
   258 		p.process();
   259 	}
   260 
   261 }
   262 
   263 ////////////////////////////////////////////////////////////////////////
   264 void ExportLaTeX::doExport() 
   265 {
   266 	// Exports a map to a LaTex file.  
   267 	// This file needs to be included 
   268 	// or inported into a LaTex document
   269 	// it will not add a preamble, or anything 
   270 	// that makes a full LaTex document.
   271   QFile file (outputFile);
   272   if ( !file.open( IO_WriteOnly ) ) {
   273 	QMessageBox::critical (0,QObject::tr("Critical Export Error"),QObject::tr("Could not write %1").arg(outputFile));
   274 	mainWindow->statusMessage(QString(QObject::tr("Export failed.")));
   275     return;
   276   }
   277   QTextStream ts( &file );	// use LANG decoding here...
   278   ts.setEncoding (QTextStream::UnicodeUTF8); // Force UTF8
   279   
   280   // Main loop over all branches
   281   QString s;
   282   // QString actIndent("");
   283   // int i;
   284   BranchObj *bo;
   285   bo=mapCenter->first();
   286   while (bo) {
   287 	if (bo->getDepth()==0);
   288 	else if (bo->getDepth()==1) {
   289 	  ts << ("\\chapter{" + bo->getHeading()+ "}\n");
   290 	}
   291 	else if (bo->getDepth()==2) {
   292 	  ts << ("\\section{" + bo->getHeading()+ "}\n");
   293 	}
   294 	else if (bo->getDepth()==3) {
   295 	  ts << ("\\subsection{" + bo->getHeading()+ "}\n");
   296 	}
   297 	else if (bo->getDepth()==4) {
   298 	  ts << ("\\subsubsection{" + bo->getHeading()+ "}\n");
   299 	}
   300 	else {
   301 	  ts << ("\\paragraph*{" + bo->getHeading()+ "}\n");
   302 	}
   303 	
   304 	// If necessary, write note
   305 	if (!bo->getNote().isEmpty()) {
   306 	  ts << (bo->getNoteASCII());
   307 	  ts << ("\n");
   308 	}
   309     bo=bo->next();
   310    }
   311   file.close();
   312 }
   313 
   314 ////////////////////////////////////////////////////////////////////////
   315 ExportOO::ExportOO()
   316 {
   317 	useSections=false;
   318 }
   319 
   320 ExportOO::~ExportOO()
   321 {
   322 }	
   323 
   324 QString ExportOO::buildList (BranchObj *current)
   325 {
   326     QString r;
   327     BranchObj *bo;
   328 
   329     uint i=0;
   330     bo=current->getFirstBranch();
   331     if (bo)
   332     {
   333         // Start list
   334         r+="<text:list text:style-name=\"vym-list\">\n";
   335         while (bo)
   336         {
   337 			r+="<text:list-item><text:p >";
   338 			r+=quotemeta(bo->getHeading());
   339 			// If necessary, write note
   340 			if (!bo->getNote().isEmpty())
   341 				r+=bo->getNoteOpenDoc();
   342 			r+="</text:p>";
   343 			r+=buildList (bo);	// recursivly add deeper branches
   344 			r+="</text:list-item>\n";
   345 			i++;
   346 			bo=current->getBranchNum(i);
   347         }
   348         r+="</text:list>\n";
   349     }
   350     return r;
   351 }
   352 
   353 
   354 void ExportOO::exportPresentation()
   355 {
   356 	QString allPages;
   357 
   358 	// Insert new content
   359 	content.replace ("<!-- INSERT TITLE -->",quotemeta(mapCenter->getHeading()));
   360 	content.replace ("<!-- INSERT AUTHOR -->",quotemeta(mapCenter->getAuthor()));
   361 
   362 	QString	onePage;
   363 	QString list;
   364 	
   365 	BranchObj *sectionBO=mapCenter->getFirstBranch();
   366     int i=0;
   367 	BranchObj *pagesBO;
   368     int j=0;
   369 
   370 	// Walk sections
   371 	while (sectionBO)
   372 	{
   373 		if (useSections)
   374 		{
   375 			// Add page with section title
   376 			onePage=sectionTemplate;
   377 			onePage.replace ("<!-- INSERT PAGE HEADING -->", quotemeta(sectionBO->getHeading() ) );
   378 			allPages+=onePage;
   379 		} else
   380 		{
   381 			i=-2;	// only use inner loop to 
   382 			        // turn mainbranches into pages
   383 			sectionBO=mapCenter;
   384 		}
   385 
   386 		// Walk mainpages
   387 		pagesBO=sectionBO->getFirstBranch();
   388 		j=0;
   389 		while (pagesBO)
   390 		{
   391 			// Add page with list of items
   392 			onePage=pageTemplate;
   393 			onePage.replace ("<!-- INSERT PAGE HEADING -->", quotemeta (pagesBO->getHeading() ) );
   394 			list=buildList (pagesBO);
   395 			onePage.replace ("<!-- INSERT LIST -->", list);
   396 			allPages+=onePage;
   397 			j++;
   398 			pagesBO=sectionBO->getBranchNum(j);
   399 		}
   400 		i++;
   401 		sectionBO=mapCenter->getBranchNum(i);
   402 	}
   403 	
   404 	content.replace ("<!-- INSERT PAGES -->",allPages);
   405 
   406 	// Write modified content
   407 	QFile f (contentFile);
   408     if ( !f.open( IO_WriteOnly ) ) 
   409 	{
   410 		QMessageBox::critical (0,QObject::tr("Critical Export Error"),QObject::tr("Could not write %1").arg(contentFile));
   411 		mainWindow->statusMessage(QString(QObject::tr("Export failed.")));
   412 		return;
   413     }
   414 
   415     QTextStream t( &f );
   416     t << content;
   417     f.close();
   418 
   419 	// zip tmpdir to destination
   420 	zipDir (tmpDir,outputFile);	
   421 }
   422 
   423 bool ExportOO::setConfigFile (const QString &cf)
   424 {
   425 	configFile=cf;
   426 	int i=cf.findRev ("/");
   427 	if (i>=0) configDir=cf.left(i);
   428 	SimpleSettings set;
   429 	set.readSettings(configFile);
   430 
   431 	// set paths
   432 	templateDir=configDir+"/"+set.readEntry ("Template");
   433 
   434 	QDir d (templateDir);
   435 	if (!d.exists())
   436 	{
   437 		QMessageBox::critical (0,QObject::tr("Critical Export Error"),QObject::tr("Check \"%1\" in\n%2").arg("Template="+set.readEntry ("Template")).arg(configFile));
   438 		return false;
   439 
   440 	}
   441 
   442 	contentTemplateFile=templateDir+"content-template.xml";
   443 	contentFile=tmpDir.path()+"/content.xml";
   444 	pageTemplateFile=templateDir+"page-template.xml";
   445 	sectionTemplateFile=templateDir+"section-template.xml";
   446 
   447 	if (set.readEntry("useSections").contains("yes"))
   448 		useSections=true;
   449 
   450 	// Copy template to tmpdir
   451 	system ("cp -r "+templateDir+"* "+tmpDir.path());
   452 
   453 	// Read content-template
   454 	if (!loadStringFromDisk (contentTemplateFile,content))
   455 	{
   456 		QMessageBox::critical (0,QObject::tr("Critical Export Error"),QObject::tr("Could not read %1").arg(contentTemplateFile));
   457 		return false;
   458 	}
   459 
   460 	// Read page-template
   461 	if (!loadStringFromDisk (pageTemplateFile,pageTemplate))
   462 	{
   463 		QMessageBox::critical (0,QObject::tr("Critical Export Error"),QObject::tr("Could not read %1").arg(pageTemplateFile));
   464 		return false;
   465 	}
   466 	
   467 	// Read section-template
   468 	if (useSections && !loadStringFromDisk (sectionTemplateFile,sectionTemplate))
   469 	{
   470 		QMessageBox::critical (0,QObject::tr("Critical Export Error"),QObject::tr("Could not read %1").arg(sectionTemplateFile));
   471 		return false;
   472 	}
   473 	return true;
   474 }
   475