3 #include "linkablemapobj.h"
5 #include "mainwindow.h"
6 #include "warningdialog.h"
9 extern Main *mainWindow;
10 extern QDir vymBaseDir;
11 extern QString vymName;
13 ExportBase::ExportBase()
17 tmpDir.setPath (makeTmpDir(ok,"vym-export"));
18 if (!tmpDir.exists() || !ok)
19 QMessageBox::critical( 0, QObject::tr( "Error" ),
20 QObject::tr("Couldn't access temporary directory\n"));
24 ExportBase::~ExportBase()
30 void ExportBase::setDir(const QDir &d)
35 void ExportBase::setFile (const QString &p)
40 QString ExportBase::getFile ()
45 void ExportBase::setModel(VymModel *m)
50 void ExportBase::setCaption (const QString &s)
55 void ExportBase::addFilter(const QString &s)
60 bool ExportBase::execDialog()
63 QFileDialog *fd=new QFileDialog( 0, caption);
64 fd->setFilter (filter);
65 fd->setCaption(caption);
66 fd->setMode( QFileDialog::AnyFile );
70 if ( fd->exec() == QDialog::Accepted )
72 if (QFile (fd->selectedFile()).exists() )
74 QMessageBox mb( vymName,
75 QObject::tr("The file %1 exists already.\nDo you want to overwrite it?").arg(fd->selectedFile()),
77 QMessageBox::Yes | QMessageBox::Default,
78 QMessageBox::Cancel | QMessageBox::Escape,
80 mb.setButtonText( QMessageBox::Yes, QObject::tr("Overwrite") );
81 mb.setButtonText( QMessageBox::No, QObject::tr("Cancel"));
85 case QMessageBox::Yes:
88 case QMessageBox::Cancel:
94 outputFile=fd->selectedFile();
102 bool ExportBase::canceled()
107 QString ExportBase::getSectionString(BranchObj *bostart)
109 // Make prefix like "2.5.3" for "bo:2,bo:5,bo:3"
111 BranchObj *bo=bostart;
112 int depth=bo->getDepth();
115 r=QString("%1").arg(1+bo->getNum(),0,10)+"." + r;
116 bo=(BranchObj*)(bo->getParObj());
117 depth=bo->getDepth();
125 ////////////////////////////////////////////////////////////////////////
126 ExportASCII::ExportASCII()
128 filter="TXT (*.txt)";
129 caption=vymName+ " -" +QObject::tr("Export as ASCII")+" "+QObject::tr("(still experimental)");
132 void ExportASCII::doExport()
134 QFile file (outputFile);
135 if ( !file.open( QIODevice::WriteOnly ) )
137 qWarning ("ExportBase::exportXML couldn't open "+outputFile);
140 QTextStream ts( &file ); // use LANG decoding here...
142 // Main loop over all branches
151 cur=model->next (cur,prev,d);
154 if (cur->getType()==TreeItem::Branch || cur->getType()==TreeItem::MapCenter)
156 bo=(BranchObj*)(cur->getLMO());
157 std::cout << "ExportASCII:: "<<cur->getHeading().toStdString()<<std::endl;
161 for (i=0;i<cur->depth()-1;i++) curIndent+= indentPerDepth;
163 if (!bo->hasHiddenExportParent() )
165 switch (cur->depth())
168 ts << underline (cur->getHeading(),QString("="));
173 ts << (underline (getSectionString(bo) + cur->getHeading(), QString("-") ) );
178 ts << (curIndent + "* " + cur->getHeading());
182 ts << (curIndent + "- " + cur->getHeading());
186 ts << (curIndent + "- " + cur->getHeading());
191 // If necessary, write note
192 if (!bo->getNote().isEmpty())
195 s=bo->getNoteASCII( curIndent, 80);
200 cur=model->next(cur,prev,d);
205 QString ExportASCII::underline (const QString &text, const QString &line)
207 QString r=text + "\n";
208 for (int j=0;j<text.length();j++) r+=line;
213 ////////////////////////////////////////////////////////////////////////
214 void ExportCSV::doExport()
216 QFile file (outputFile);
217 if ( !file.open( QIODevice::WriteOnly ) )
219 qWarning ("ExportBase::exportXML couldn't open "+outputFile);
222 QTextStream ts( &file ); // use LANG decoding here...
225 ts << "\"Note\"" <<endl;
227 // Main loop over all branches
229 QString curIndent("");
235 cur=model->next (cur,prev,d);
238 bo=(BranchObj*)(cur->getLMO());
240 if (!bo->hasHiddenExportParent() )
242 // If necessary, write note
243 if (!bo->getNote().isEmpty())
245 s =bo->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,d);
264 ////////////////////////////////////////////////////////////////////////
265 void ExportKDEBookmarks::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"));
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 ExportFirefoxBookmarks::doExport()
298 dia.showCancelButton (true);
299 dia.setText(QObject::tr("Exporting the %1 bookmarks will overwrite\nyour existing bookmarks file.").arg("Firefox"));
300 dia.setCaption(QObject::tr("Warning: Overwriting %1 bookmarks").arg("Firefox"));
301 dia.setShowAgainName("/vym/warnings/overwriteImportBookmarks");
302 if (dia.exec()==QDialog::Accepted)
304 model->exportXML(tmpDir.path(),false);
308 p.setInputFile (tmpDir.path()+"/"+me->getMapName()+".xml");
309 p.setOutputFile (tmpDir.home().path()+"/.kde/share/apps/konqueror/bookmarks.xml");
310 p.setXSLFile (vymBaseDir.path()+"/styles/vym2kdebookmarks.xsl");
313 QString ub=vymBaseDir.path()+"/scripts/update-bookmarks";
314 QProcess *proc = new QProcess( );
315 proc->addArgument(ub);
317 if ( !proc->start() )
319 QMessageBox::warning(0,
320 QObject::tr("Warning"),
321 QObject::tr("Couldn't find script %1\nto notifiy Browsers of changed bookmarks.").arg(ub));
328 ////////////////////////////////////////////////////////////////////////
329 void ExportTaskjuggler::doExport()
331 model->exportXML(tmpDir.path(),false);
334 p.setInputFile (tmpDir.path()+"/"+model->getMapName()+".xml");
335 p.setOutputFile (outputFile);
336 p.setXSLFile (vymBaseDir.path()+"/styles/vym2taskjuggler.xsl");
340 ////////////////////////////////////////////////////////////////////////
341 void ExportLaTeX::doExport()
343 // Exports a map to a LaTex file.
344 // This file needs to be included
345 // or inported into a LaTex document
346 // it will not add a preamble, or anything
347 // that makes a full LaTex document.
348 QFile file (outputFile);
349 if ( !file.open( QIODevice::WriteOnly ) ) {
350 QMessageBox::critical (0,QObject::tr("Critical Export Error"),QObject::tr("Could not write %1").arg(outputFile));
351 mainWindow->statusMessage(QString(QObject::tr("Export failed.")));
354 QTextStream ts( &file ); // use LANG decoding here...
355 ts.setEncoding (QTextStream::UnicodeUTF8); // Force UTF8
357 // Main loop over all branches
359 // QString curIndent("");
365 model->next(cur,prev,d);
368 bo=(BranchObj*)(cur->getLMO());
370 if (!bo->hasHiddenExportParent() )
372 switch (cur->depth() )
376 ts << ("\\chapter{" + bo->getHeading()+ "}\n");
379 ts << ("\\section{" + bo->getHeading()+ "}\n");
382 ts << ("\\subsection{" + bo->getHeading()+ "}\n");
385 ts << ("\\subsubsection{" + bo->getHeading()+ "}\n");
388 ts << ("\\paragraph*{" + bo->getHeading()+ "}\n");
391 // If necessary, write note
392 if (!bo->getNote().isEmpty()) {
393 ts << (bo->getNoteASCII());
397 cur=model->next(cur,prev,d);
402 ////////////////////////////////////////////////////////////////////////
408 ExportOO::~ExportOO()
412 QString ExportOO::buildList (BranchObj *current)
418 bo=current->getFirstBranch();
421 if (!bo->hasHiddenExportParent() )
424 r+="<text:list text:style-name=\"vym-list\">\n";
427 r+="<text:list-item><text:p >";
428 r+=quotemeta(bo->getHeading());
429 // If necessary, write note
430 if (!bo->getNote().isEmpty())
431 r+=bo->getNoteOpenDoc();
433 r+=buildList (bo); // recursivly add deeper branches
434 r+="</text:list-item>\n";
436 bo=current->getBranchNum(i);
445 void ExportOO::exportPresentation()
449 /* FIXME not adapted to multiple mapCenters yet
450 // Insert new content
451 content.replace ("<!-- INSERT TITLE -->",quotemeta(mapCenter->getHeading()));
452 content.replace ("<!-- INSERT AUTHOR -->",quotemeta(mapCenter->getAuthor()));
457 BranchObj *sectionBO=mapCenter->getFirstBranch();
463 while (sectionBO && !sectionBO->hasHiddenExportParent() )
467 // Add page with section title
468 onePage=sectionTemplate;
469 onePage.replace ("<!-- INSERT PAGE HEADING -->", quotemeta(sectionBO->getHeading() ) );
473 i=-2; // only use inner loop to
474 // turn mainbranches into pages
479 pagesBO=sectionBO->getFirstBranch();
481 while (pagesBO && !pagesBO->hasHiddenExportParent() )
483 // Add page with list of items
484 onePage=pageTemplate;
485 onePage.replace ("<!-- INSERT PAGE HEADING -->", quotemeta (pagesBO->getHeading() ) );
486 list=buildList (pagesBO);
487 onePage.replace ("<!-- INSERT LIST -->", list);
490 pagesBO=sectionBO->getBranchNum(j);
493 sectionBO=mapCenter->getBranchNum(i);
496 content.replace ("<!-- INSERT PAGES -->",allPages);
498 // Write modified content
499 QFile f (contentFile);
500 if ( !f.open( QIODevice::WriteOnly ) )
502 QMessageBox::critical (0,QObject::tr("Critical Export Error"),QObject::tr("Could not write %1").arg(contentFile));
503 mainWindow->statusMessage(QString(QObject::tr("Export failed.")));
511 // zip tmpdir to destination
512 zipDir (tmpDir,outputFile);
516 bool ExportOO::setConfigFile (const QString &cf)
519 int i=cf.findRev ("/");
520 if (i>=0) configDir=cf.left(i);
522 set.readSettings(configFile);
525 templateDir=configDir+"/"+set.readEntry ("Template");
527 QDir d (templateDir);
530 QMessageBox::critical (0,QObject::tr("Critical Export Error"),QObject::tr("Check \"%1\" in\n%2").arg("Template="+set.readEntry ("Template")).arg(configFile));
535 contentTemplateFile=templateDir+"content-template.xml";
536 contentFile=tmpDir.path()+"/content.xml";
537 pageTemplateFile=templateDir+"page-template.xml";
538 sectionTemplateFile=templateDir+"section-template.xml";
540 if (set.readEntry("useSections").contains("yes"))
543 // Copy template to tmpdir
544 system ("cp -r "+templateDir+"* "+tmpDir.path());
546 // Read content-template
547 if (!loadStringFromDisk (contentTemplateFile,content))
549 QMessageBox::critical (0,QObject::tr("Critical Export Error"),QObject::tr("Could not read %1").arg(contentTemplateFile));
553 // Read page-template
554 if (!loadStringFromDisk (pageTemplateFile,pageTemplate))
556 QMessageBox::critical (0,QObject::tr("Critical Export Error"),QObject::tr("Could not read %1").arg(pageTemplateFile));
560 // Read section-template
561 if (useSections && !loadStringFromDisk (sectionTemplateFile,sectionTemplate))
563 QMessageBox::critical (0,QObject::tr("Critical Export Error"),QObject::tr("Could not read %1").arg(sectionTemplateFile));