3 #include "branchitem.h"
5 #include "linkablemapobj.h"
7 #include "mainwindow.h"
8 #include "warningdialog.h"
11 extern Main *mainWindow;
12 extern QDir vymBaseDir;
13 extern QString vymName;
15 ExportBase::ExportBase()
19 tmpDir.setPath (makeTmpDir(ok,"vym-export"));
20 if (!tmpDir.exists() || !ok)
21 QMessageBox::critical( 0, QObject::tr( "Error" ),
22 QObject::tr("Couldn't access temporary directory\n"));
26 ExportBase::~ExportBase()
32 void ExportBase::setDir(const QDir &d)
37 void ExportBase::setFile (const QString &p)
42 QString ExportBase::getFile ()
47 void ExportBase::setModel(VymModel *m)
52 void ExportBase::setCaption (const QString &s)
57 void ExportBase::addFilter(const QString &s)
62 bool ExportBase::execDialog()
65 QFileDialog *fd=new QFileDialog( 0, caption);
66 fd->setFilter (filter);
67 fd->setCaption(caption);
68 fd->setMode( QFileDialog::AnyFile );
72 if ( fd->exec() == QDialog::Accepted )
74 if (QFile (fd->selectedFile()).exists() )
76 QMessageBox mb( vymName,
77 QObject::tr("The file %1 exists already.\nDo you want to overwrite it?").arg(fd->selectedFile()),
79 QMessageBox::Yes | QMessageBox::Default,
80 QMessageBox::Cancel | QMessageBox::Escape,
82 mb.setButtonText( QMessageBox::Yes, QObject::tr("Overwrite") );
83 mb.setButtonText( QMessageBox::No, QObject::tr("Cancel"));
87 case QMessageBox::Yes:
90 case QMessageBox::Cancel:
96 outputFile=fd->selectedFile();
104 bool ExportBase::canceled()
109 QString ExportBase::getSectionString(BranchObj *bostart)
111 // Make prefix like "2.5.3" for "bo:2,bo:5,bo:3"
113 TreeItem *ti=bostart->getTreeItem();
114 int depth=ti->depth();
117 r=QString("%1").arg(1+ti->num(),0,10)+"." + r;
127 ////////////////////////////////////////////////////////////////////////
128 ExportASCII::ExportASCII()
130 filter="TXT (*.txt)";
131 caption=vymName+ " -" +QObject::tr("Export as ASCII")+" "+QObject::tr("(still experimental)");
134 void ExportASCII::doExport() //FIXME-1 segfaults...
136 QFile file (outputFile);
137 if ( !file.open( QIODevice::WriteOnly ) )
139 qWarning ("ExportBase::exportXML couldn't open "+outputFile);
142 QTextStream ts( &file ); // use LANG decoding here...
144 // Main loop over all branches
148 BranchItem *cur=NULL;
149 BranchItem *prev=NULL;
151 BranchObj *bo; //FIXME-3 still needed?
152 cur=model->next (cur,prev);
155 if (cur->getType()==TreeItem::Branch || cur->getType()==TreeItem::MapCenter)
157 bo=(BranchObj*)(cur->getLMO());
158 std::cout << "ExportASCII:: "<<cur->getHeading().toStdString()<<std::endl;
162 for (i=0;i<cur->depth()-1;i++) curIndent+= indentPerDepth;
164 if (!cur->hasHiddenExportParent() )
166 switch (cur->depth())
169 ts << underline (cur->getHeading(),QString("="));
174 ts << (underline (getSectionString(bo) + cur->getHeading(), QString("-") ) );
179 ts << (curIndent + "* " + cur->getHeading());
183 ts << (curIndent + "- " + cur->getHeading());
187 ts << (curIndent + "- " + cur->getHeading());
192 // If necessary, write note
193 if (!cur->getNoteObj().isEmpty())
196 s=cur->getNoteASCII( curIndent, 80);
201 cur=model->next(cur,prev);
206 QString ExportASCII::underline (const QString &text, const QString &line)
208 QString r=text + "\n";
209 for (int j=0;j<text.length();j++) r+=line;
214 ////////////////////////////////////////////////////////////////////////
215 void ExportCSV::doExport()
217 QFile file (outputFile);
218 if ( !file.open( QIODevice::WriteOnly ) )
220 qWarning ("ExportBase::exportXML couldn't open "+outputFile);
223 QTextStream ts( &file ); // use LANG decoding here...
226 ts << "\"Note\"" <<endl;
228 // Main loop over all branches
230 QString curIndent("");
232 BranchObj *bo; //FIXME-3 still needed?
233 BranchItem *cur=NULL;
234 BranchItem *prev=NULL;
235 cur=model->next (cur,prev);
238 bo=(BranchObj*)(cur->getLMO());
240 if (!cur->hasHiddenExportParent() )
242 // If necessary, write note
243 if (!cur->getNoteObj().isEmpty())
245 s =cur->getNoteASCII();
246 s=s.replace ("\n","\n"+curIndent);
247 ts << ("\""+s+"\",");
252 for (i=0;i<cur->depth();i++) curIndent+= "\"\",";
255 ts << curIndent << "\"" << cur->getHeading()<<"\""<<endl;
258 cur=model->next(cur,prev);
264 ////////////////////////////////////////////////////////////////////////
265 void ExportKDE3Bookmarks::doExport()
268 dia.showCancelButton (true);
269 dia.setText(QObject::tr("Exporting the %1 bookmarks will overwrite\nyour existing bookmarks file.").arg("KDE"));
270 dia.setCaption(QObject::tr("Warning: Overwriting %1 bookmarks").arg("KDE 3"));
271 dia.setShowAgainName("/exports/KDE/overwriteKDEBookmarks");
272 if (dia.exec()==QDialog::Accepted)
274 model->exportXML(tmpDir.path(),false);
277 p.setInputFile (tmpDir.path()+"/"+model->getMapName()+".xml");
278 p.setOutputFile (tmpDir.home().path()+"/.kde/share/apps/konqueror/bookmarks.xml");
279 p.setXSLFile (vymBaseDir.path()+"/styles/vym2kdebookmarks.xsl");
282 QString ub=vymBaseDir.path()+"/scripts/update-bookmarks";
283 QProcess *proc= new QProcess ;
285 if (!proc->waitForStarted())
287 QMessageBox::warning(0,
288 QObject::tr("Warning"),
289 QObject::tr("Couldn't find script %1\nto notifiy Browsers of changed bookmarks.").arg(ub));
294 ////////////////////////////////////////////////////////////////////////
295 void ExportKDE4Bookmarks::doExport()
298 dia.showCancelButton (true);
299 dia.setText(QObject::tr("Exporting the %1 bookmarks will overwrite\nyour existing bookmarks file.").arg("KDE 4"));
300 dia.setCaption(QObject::tr("Warning: Overwriting %1 bookmarks").arg("KDE"));
301 dia.setShowAgainName("/exports/KDE/overwriteKDEBookmarks");
302 if (dia.exec()==QDialog::Accepted)
304 model->exportXML(tmpDir.path(),false);
307 p.setInputFile (tmpDir.path()+"/"+model->getMapName()+".xml");
308 p.setOutputFile (tmpDir.home().path()+"/.kde4/share/apps/konqueror/bookmarks.xml");
309 p.setXSLFile (vymBaseDir.path()+"/styles/vym2kdebookmarks.xsl");
312 QString ub=vymBaseDir.path()+"/scripts/update-bookmarks";
313 QProcess *proc= new QProcess ;
315 if (!proc->waitForStarted())
317 QMessageBox::warning(0,
318 QObject::tr("Warning"),
319 QObject::tr("Couldn't find script %1\nto notifiy Browsers of changed bookmarks.").arg(ub));
324 ////////////////////////////////////////////////////////////////////////
325 void ExportFirefoxBookmarks::doExport()
328 dia.showCancelButton (true);
329 dia.setText(QObject::tr("Exporting the %1 bookmarks will overwrite\nyour existing bookmarks file.").arg("Firefox"));
330 dia.setCaption(QObject::tr("Warning: Overwriting %1 bookmarks").arg("Firefox"));
331 dia.setShowAgainName("/vym/warnings/overwriteImportBookmarks");
332 if (dia.exec()==QDialog::Accepted)
334 model->exportXML(tmpDir.path(),false);
338 p.setInputFile (tmpDir.path()+"/"+me->getMapName()+".xml");
339 p.setOutputFile (tmpDir.home().path()+"/.kde/share/apps/konqueror/bookmarks.xml");
340 p.setXSLFile (vymBaseDir.path()+"/styles/vym2kdebookmarks.xsl");
343 QString ub=vymBaseDir.path()+"/scripts/update-bookmarks";
344 QProcess *proc = new QProcess( );
345 proc->addArgument(ub);
347 if ( !proc->start() )
349 QMessageBox::warning(0,
350 QObject::tr("Warning"),
351 QObject::tr("Couldn't find script %1\nto notifiy Browsers of changed bookmarks.").arg(ub));
358 ////////////////////////////////////////////////////////////////////////
359 void ExportTaskjuggler::doExport()
361 model->exportXML(tmpDir.path(),false);
364 p.setInputFile (tmpDir.path()+"/"+model->getMapName()+".xml");
365 p.setOutputFile (outputFile);
366 p.setXSLFile (vymBaseDir.path()+"/styles/vym2taskjuggler.xsl");
370 ////////////////////////////////////////////////////////////////////////
371 void ExportLaTeX::doExport()
373 // Exports a map to a LaTex file.
374 // This file needs to be included
375 // or inported into a LaTex document
376 // it will not add a preamble, or anything
377 // that makes a full LaTex document.
378 QFile file (outputFile);
379 if ( !file.open( QIODevice::WriteOnly ) ) {
380 QMessageBox::critical (0,QObject::tr("Critical Export Error"),QObject::tr("Could not write %1").arg(outputFile));
381 mainWindow->statusMessage(QString(QObject::tr("Export failed.")));
384 QTextStream ts( &file ); // use LANG decoding here...
385 ts.setEncoding (QTextStream::UnicodeUTF8); // Force UTF8
387 // Main loop over all branches
389 // QString curIndent("");
392 BranchItem *cur=NULL;
393 BranchItem *prev=NULL;
394 model->next(cur,prev);
397 bo=(BranchObj*)(cur->getLMO());
399 if (!cur->hasHiddenExportParent() )
401 switch (cur->depth() )
405 ts << ("\\chapter{" + cur->getHeading()+ "}\n");
408 ts << ("\\section{" + cur->getHeading()+ "}\n");
411 ts << ("\\subsection{" + cur->getHeading()+ "}\n");
414 ts << ("\\subsubsection{" + cur->getHeading()+ "}\n");
417 ts << ("\\paragraph*{" + cur->getHeading()+ "}\n");
420 // If necessary, write note
421 if (!cur->getNoteObj().isEmpty()) {
422 ts << (cur->getNoteASCII());
426 cur=model->next(cur,prev);
431 ////////////////////////////////////////////////////////////////////////
437 ExportOO::~ExportOO()
441 QString ExportOO::buildList (TreeItem *current)
446 BranchItem *bi=current->getFirstBranch();
449 if (true) //if (!bo->hasHiddenExportParent() ) // FIXME-2 use BranchItem...
452 r+="<text:list text:style-name=\"vym-list\">\n";
455 r+="<text:list-item><text:p >";
456 r+=quotemeta(bi->getHeading());
457 // If necessary, write note
458 if (!bi->getNoteObj().isEmpty())
459 r+=bi->getNoteOpenDoc();
461 r+=buildList (bi); // recursivly add deeper branches
462 r+="</text:list-item>\n";
464 bi=current->getBranchNum(i);
473 void ExportOO::exportPresentation()
477 /* FIXME-2 not adapted to multiple mapCenters yet, see patch already done in 1.12.2...
478 // Insert new content
479 content.replace ("<!-- INSERT TITLE -->",quotemeta(mapCenter->getHeading()));
480 content.replace ("<!-- INSERT AUTHOR -->",quotemeta(mapCenter->getAuthor()));
485 BranchObj *sectionBO=mapCenter->getFirstBranch();
491 while (sectionBO && !sectionBO->hasHiddenExportParent() )
495 // Add page with section title
496 onePage=sectionTemplate;
497 onePage.replace ("<!-- INSERT PAGE HEADING -->", quotemeta(sectionBO->getHeading() ) );
501 i=-2; // only use inner loop to
502 // turn mainbranches into pages
507 pagesBO=sectionBO->getFirstBranch();
509 while (pagesBO && !pagesBO->hasHiddenExportParent() )
511 // Add page with list of items
512 onePage=pageTemplate;
513 onePage.replace ("<!-- INSERT PAGE HEADING -->", quotemeta (pagesBO->getHeading() ) );
514 list=buildList (pagesBO->getTreeItem() );
515 onePage.replace ("<!-- INSERT LIST -->", list);
518 pagesBO=sectionBO->getBranchNum(j);
521 sectionBO=mapCenter->getBranchNum(i);
524 content.replace ("<!-- INSERT PAGES -->",allPages);
526 // Write modified content
527 QFile f (contentFile);
528 if ( !f.open( QIODevice::WriteOnly ) )
530 QMessageBox::critical (0,QObject::tr("Critical Export Error"),QObject::tr("Could not write %1").arg(contentFile));
531 mainWindow->statusMessage(QString(QObject::tr("Export failed.")));
539 // zip tmpdir to destination
540 zipDir (tmpDir,outputFile);
544 bool ExportOO::setConfigFile (const QString &cf)
547 int i=cf.findRev ("/");
548 if (i>=0) configDir=cf.left(i);
550 set.readSettings(configFile);
553 templateDir=configDir+"/"+set.readEntry ("Template");
555 QDir d (templateDir);
558 QMessageBox::critical (0,QObject::tr("Critical Export Error"),QObject::tr("Check \"%1\" in\n%2").arg("Template="+set.readEntry ("Template")).arg(configFile));
563 contentTemplateFile=templateDir+"content-template.xml";
564 contentFile=tmpDir.path()+"/content.xml";
565 pageTemplateFile=templateDir+"page-template.xml";
566 sectionTemplateFile=templateDir+"section-template.xml";
568 if (set.readEntry("useSections").contains("yes"))
571 // Copy template to tmpdir
572 system ("cp -r "+templateDir+"* "+tmpDir.path());
574 // Read content-template
575 if (!loadStringFromDisk (contentTemplateFile,content))
577 QMessageBox::critical (0,QObject::tr("Critical Export Error"),QObject::tr("Could not read %1").arg(contentTemplateFile));
581 // Read page-template
582 if (!loadStringFromDisk (pageTemplateFile,pageTemplate))
584 QMessageBox::critical (0,QObject::tr("Critical Export Error"),QObject::tr("Could not read %1").arg(pageTemplateFile));
588 // Read section-template
589 if (useSections && !loadStringFromDisk (sectionTemplateFile,sectionTemplate))
591 QMessageBox::critical (0,QObject::tr("Critical Export Error"),QObject::tr("Could not read %1").arg(sectionTemplateFile));