1 //#include <q3filedialog.h>
2 //#include <QMessageBox>
4 //#include <QTextStream>
8 #include "linkablemapobj.h"
10 #include "mainwindow.h"
11 #include "warningdialog.h"
14 extern Main *mainWindow;
15 extern QDir vymBaseDir;
18 ExportBase::ExportBase()
22 tmpDir.setPath (makeUniqueDir(ok,"/tmp/vym-export-XXXXXX"));
23 if (!tmpDir.exists() || !ok)
24 QMessageBox::critical( 0, QObject::tr( "Error" ),
25 QObject::tr("Couldn't access temporary directory\n"));
28 ExportBase::~ExportBase()
34 void ExportBase::setDir(const QString &p)
39 void ExportBase::setFile (const QString &p)
44 void ExportBase::setMapCenter(MapCenterObj *mc)
49 void ExportBase::setCaption (const QString &s)
54 void ExportBase::addFilter(const QString &s)
59 bool ExportBase::execDialog()
61 if (mapCenter && mapCenter->getMapEditor())
63 QFileDialog *fd=new QFileDialog( mapCenter->getMapEditor(), caption);
64 fd->setFilter (filter);
65 fd->setCaption(caption);
66 fd->setMode( QFileDialog::AnyFile );
69 if ( fd->exec() == QDialog::Accepted )
71 if (QFile (fd->selectedFile()).exists() )
73 QMessageBox mb( __VYM,
74 QObject::tr("The file %1 exists already.\nDo you want to overwrite it?").arg(fd->selectedFile()),
76 QMessageBox::Yes | QMessageBox::Default,
77 QMessageBox::Cancel | QMessageBox::Escape,
79 mb.setButtonText( QMessageBox::Yes, QObject::tr("Overwrite") );
80 mb.setButtonText( QMessageBox::No, QObject::tr("Cancel"));
84 case QMessageBox::Yes:
87 case QMessageBox::Cancel:
93 outputFile=fd->selectedFile();
100 QString ExportBase::getSectionString(BranchObj *bostart)
102 // Make prefix like "2.5.3" for "bo:2,bo:5,bo:3"
104 BranchObj *bo=bostart;
105 int depth=bo->getDepth();
108 r=QString("%1").arg(1+bo->getNum(),0,10)+"." + r;
109 bo=(BranchObj*)(bo->getParObj());
110 depth=bo->getDepth();
119 ////////////////////////////////////////////////////////////////////////
120 void ExportASCII::doExport()
122 QFile file (outputFile);
123 if ( !file.open( QIODevice::WriteOnly ) )
125 qWarning ("ExportBase::exportXML couldn't open "+outputFile);
128 QTextStream ts( &file ); // use LANG decoding here...
130 // Main loop over all branches
132 QString actIndent("");
135 bo=mapCenter->first();
139 for (i=0;i<bo->getDepth();i++) actIndent+= indentPerDepth;
141 if (bo->getDepth()==0)
143 ts << (bo->getHeading()+ "\n");
144 for (j=0;j<bo->getHeading().length();j++) ts<<"=";
146 } else if (bo->getDepth()==1)
147 ts << ("\n"+getSectionString(bo) + bo->getHeading()+ "\n");
148 else if (bo->getDepth()==2)
149 ts << (actIndent + " o " + bo->getHeading()+ "\n");
151 ts << (actIndent + " - " + bo->getHeading()+ "\n");
153 // If necessary, write note
154 if (!bo->getNote().isEmpty())
156 s =bo->getNoteASCII();
157 s=s.replace ("\n","\n"+actIndent);
166 ////////////////////////////////////////////////////////////////////////
167 void ExportKDEBookmarks::doExport()
170 if (mapCenter) me=mapCenter->getMapEditor();
174 dia.showCancelButton (true);
175 dia.setText(QObject::tr("Exporting the %1 bookmarks will overwrite\nyour existing bookmarks file.").arg("KDE"));
176 dia.setCaption(QObject::tr("Warning: Overwriting %1 bookmarks").arg("KDE"));
177 dia.setShowAgainName("/vym/warnings/overwriteKDEBookmarks");
178 if (dia.exec()==QDialog::Accepted)
180 me->exportXML(tmpDir.path());
183 p.setInputFile (tmpDir.path()+"/"+me->getMapName()+".xml");
184 p.setOutputFile (tmpDir.home().path()+"/.kde/share/apps/konqueror/bookmarks.xml");
185 p.setXSLFile (vymBaseDir.path()+"/styles/vym2kdebookmarks.xsl");
188 QString ub=vymBaseDir.path()+"/scripts/update-bookmarks";
189 QProcess *proc= new QProcess ;
191 if (!proc->waitForStarted())
193 QMessageBox::warning(0,
194 QObject::tr("Warning"),
195 QObject::tr("Couldn't find script %1\nto notifiy Browsers of changed bookmarks.").arg(ub));
202 ////////////////////////////////////////////////////////////////////////
203 void ExportFirefoxBookmarks::doExport()
206 if (mapCenter) me=mapCenter->getMapEditor();
210 dia.showCancelButton (true);
211 dia.setText(QObject::tr("Exporting the %1 bookmarks will overwrite\nyour existing bookmarks file.").arg("Firefox"));
212 dia.setCaption(QObject::tr("Warning: Overwriting %1 bookmarks").arg("Firefox"));
213 dia.setShowAgainName("/vym/warnings/overwriteImportBookmarks");
214 if (dia.exec()==QDialog::Accepted)
216 me->exportXML(tmpDir.path());
220 p.setInputFile (tmpDir.path()+"/"+me->getMapName()+".xml");
221 p.setOutputFile (tmpDir.home().path()+"/.kde/share/apps/konqueror/bookmarks.xml");
222 p.setXSLFile (vymBaseDir.path()+"/styles/vym2kdebookmarks.xsl");
225 QString ub=vymBaseDir.path()+"/scripts/update-bookmarks";
226 QProcess *proc = new QProcess( );
227 proc->addArgument(ub);
229 if ( !proc->start() )
231 QMessageBox::warning(0,
232 QObject::tr("Warning"),
233 QObject::tr("Couldn't find script %1\nto notifiy Browsers of changed bookmarks.").arg(ub));
242 ////////////////////////////////////////////////////////////////////////
243 void ExportTaskjuggler::doExport()
246 if (mapCenter) me=mapCenter->getMapEditor();
249 me->exportXML(tmpDir.path());
252 p.setInputFile (tmpDir.path()+"/"+me->getMapName()+".xml");
253 p.setOutputFile (outputFile);
254 p.setXSLFile (vymBaseDir.path()+"/styles/vym2taskjuggler.xsl");
260 ////////////////////////////////////////////////////////////////////////
261 void ExportLaTeX::doExport()
263 // Exports a map to a LaTex file.
264 // This file needs to be included
265 // or inported into a LaTex document
266 // it will not add a preamble, or anything
267 // that makes a full LaTex document.
268 QFile file (outputFile);
269 if ( !file.open( QIODevice::WriteOnly ) ) {
270 QMessageBox::critical (0,QObject::tr("Critical Export Error"),QObject::tr("Could not write %1").arg(outputFile));
271 mainWindow->statusMessage(QString(QObject::tr("Export failed.")));
274 QTextStream ts( &file ); // use LANG decoding here...
275 ts.setEncoding (QTextStream::UnicodeUTF8); // Force UTF8
277 // Main loop over all branches
279 // QString actIndent("");
282 bo=mapCenter->first();
284 if (bo->getDepth()==0);
285 else if (bo->getDepth()==1) {
286 ts << ("\\chapter{" + bo->getHeading()+ "}\n");
288 else if (bo->getDepth()==2) {
289 ts << ("\\section{" + bo->getHeading()+ "}\n");
291 else if (bo->getDepth()==3) {
292 ts << ("\\subsection{" + bo->getHeading()+ "}\n");
294 else if (bo->getDepth()==4) {
295 ts << ("\\subsubsection{" + bo->getHeading()+ "}\n");
298 ts << ("\\paragraph*{" + bo->getHeading()+ "}\n");
301 // If necessary, write note
302 if (!bo->getNote().isEmpty()) {
303 ts << (bo->getNoteASCII());
311 ////////////////////////////////////////////////////////////////////////
317 ExportOO::~ExportOO()
321 QString ExportOO::buildList (BranchObj *current)
327 bo=current->getFirstBranch();
331 r+="<text:list text:style-name=\"vym-list\">\n";
334 r+="<text:list-item><text:p >";
335 r+=quotemeta(bo->getHeading());
336 // If necessary, write note
337 if (!bo->getNote().isEmpty())
338 r+=bo->getNoteOpenDoc();
340 r+=buildList (bo); // recursivly add deeper branches
341 r+="</text:list-item>\n";
343 bo=current->getBranchNum(i);
351 void ExportOO::exportPresentation()
355 // Insert new content
356 content.replace ("<!-- INSERT TITLE -->",quotemeta(mapCenter->getHeading()));
357 content.replace ("<!-- INSERT AUTHOR -->",quotemeta(mapCenter->getAuthor()));
362 BranchObj *sectionBO=mapCenter->getFirstBranch();
372 // Add page with section title
373 onePage=sectionTemplate;
374 onePage.replace ("<!-- INSERT PAGE HEADING -->", quotemeta(sectionBO->getHeading() ) );
378 i=-2; // only use inner loop to
379 // turn mainbranches into pages
384 pagesBO=sectionBO->getFirstBranch();
388 // Add page with list of items
389 onePage=pageTemplate;
390 onePage.replace ("<!-- INSERT PAGE HEADING -->", quotemeta (pagesBO->getHeading() ) );
391 list=buildList (pagesBO);
392 onePage.replace ("<!-- INSERT LIST -->", list);
395 pagesBO=sectionBO->getBranchNum(j);
398 sectionBO=mapCenter->getBranchNum(i);
401 content.replace ("<!-- INSERT PAGES -->",allPages);
403 // Write modified content
404 QFile f (contentFile);
405 if ( !f.open( QIODevice::WriteOnly ) )
407 QMessageBox::critical (0,QObject::tr("Critical Export Error"),QObject::tr("Could not write %1").arg(contentFile));
408 mainWindow->statusMessage(QString(QObject::tr("Export failed.")));
416 // zip tmpdir to destination
417 zipDir (tmpDir,outputFile);
420 bool ExportOO::setConfigFile (const QString &cf)
423 int i=cf.findRev ("/");
424 if (i>=0) configDir=cf.left(i);
426 set.readSettings(configFile);
429 templateDir=configDir+"/"+set.readEntry ("Template");
431 QDir d (templateDir);
434 QMessageBox::critical (0,QObject::tr("Critical Export Error"),QObject::tr("Check \"%1\" in\n%2").arg("Template="+set.readEntry ("Template")).arg(configFile));
439 contentTemplateFile=templateDir+"content-template.xml";
440 contentFile=tmpDir.path()+"/content.xml";
441 pageTemplateFile=templateDir+"page-template.xml";
442 sectionTemplateFile=templateDir+"section-template.xml";
444 if (set.readEntry("useSections").contains("yes"))
447 // Copy template to tmpdir
448 system ("cp -r "+templateDir+"* "+tmpDir.path());
450 // Read content-template
451 if (!loadStringFromDisk (contentTemplateFile,content))
453 QMessageBox::critical (0,QObject::tr("Critical Export Error"),QObject::tr("Could not read %1").arg(contentTemplateFile));
457 // Read page-template
458 if (!loadStringFromDisk (pageTemplateFile,pageTemplate))
460 QMessageBox::critical (0,QObject::tr("Critical Export Error"),QObject::tr("Could not read %1").arg(pageTemplateFile));
464 // Read section-template
465 if (useSections && !loadStringFromDisk (sectionTemplateFile,sectionTemplate))
467 QMessageBox::critical (0,QObject::tr("Critical Export Error"),QObject::tr("Could not read %1").arg(sectionTemplateFile));