1 #include <q3filedialog.h>
2 #include <qmessagebox.h>
9 #include "linkablemapobj.h"
11 #include "mainwindow.h"
12 #include "warningdialog.h"
15 extern Main *mainWindow;
16 extern QDir vymBaseDir;
19 ExportBase::ExportBase()
23 tmpDir.setPath (makeUniqueDir("/tmp/vym-XXXXXX"));
26 ExportBase::~ExportBase()
32 void ExportBase::setDir(const QString &p)
37 void ExportBase::setFile (const QString &p)
42 void ExportBase::setMapCenter(MapCenterObj *mc)
47 void ExportBase::setCaption (const QString &s)
52 void ExportBase::addFilter(const QString &s)
57 bool ExportBase::execDialog()
59 if (mapCenter && mapCenter->getMapEditor())
61 Q3FileDialog *fd=new Q3FileDialog( mapCenter->getMapEditor(), caption);
62 fd->addFilter (filter);
63 fd->setCaption(caption);
64 fd->setMode( Q3FileDialog::AnyFile );
67 if ( fd->exec() == QDialog::Accepted )
69 if (QFile (fd->selectedFile()).exists() )
71 QMessageBox mb( __VYM,
72 QObject::tr("The file %1 exists already.\nDo you want to overwrite it?").arg(fd->selectedFile()),
74 QMessageBox::Yes | QMessageBox::Default,
75 QMessageBox::Cancel | QMessageBox::Escape,
77 mb.setButtonText( QMessageBox::Yes, QObject::tr("Overwrite") );
78 mb.setButtonText( QMessageBox::No, QObject::tr("Cancel"));
82 case QMessageBox::Yes:
85 case QMessageBox::Cancel:
91 outputFile=fd->selectedFile();
98 QString ExportBase::getSectionString(BranchObj *bostart)
100 // Make prefix like "2.5.3" for "bo:2,bo:5,bo:3"
102 BranchObj *bo=bostart;
103 int depth=bo->getDepth();
106 r=QString("%1").arg(1+bo->getNum(),0,10)+"." + r;
107 bo=(BranchObj*)(bo->getParObj());
108 depth=bo->getDepth();
117 ////////////////////////////////////////////////////////////////////////
118 void ExportASCII::doExport()
120 QFile file (outputFile);
121 if ( !file.open( QIODevice::WriteOnly ) )
123 // FIXME experimental, testing
124 qWarning ("ExportBase::exportXML couldn't open "+outputFile);
127 QTextStream ts( &file ); // use LANG decoding here...
129 // Main loop over all branches
131 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.setCancelButton (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 Q3Process *proc = new Q3Process( );
190 proc->addArgument(ub);
192 if ( !proc->start() )
194 QMessageBox::warning(0,
195 QObject::tr("Warning"),
196 QObject::tr("Couldn't find script %1\nto notifiy Browsers of changed bookmarks.").arg(ub));
205 ////////////////////////////////////////////////////////////////////////
206 void ExportFirefoxBookmarks::doExport()
209 if (mapCenter) me=mapCenter->getMapEditor();
213 dia.setCancelButton (true);
214 dia.setText(QObject::tr("Exporting the %1 bookmarks will overwrite\nyour existing bookmarks file.").arg("Firefox"));
215 dia.setCaption(QObject::tr("Warning: Overwriting %1 bookmarks").arg("Firefox"));
216 dia.setShowAgainName("/vym/warnings/overwriteImportBookmarks");
217 if (dia.exec()==QDialog::Accepted)
219 me->exportXML(tmpDir.path());
223 p.setInputFile (tmpDir.path()+"/"+me->getMapName()+".xml");
224 p.setOutputFile (tmpDir.home().path()+"/.kde/share/apps/konqueror/bookmarks.xml");
225 p.setXSLFile (vymBaseDir.path()+"/styles/vym2kdebookmarks.xsl");
228 QString ub=vymBaseDir.path()+"/scripts/update-bookmarks";
229 QProcess *proc = new QProcess( );
230 proc->addArgument(ub);
232 if ( !proc->start() )
234 QMessageBox::warning(0,
235 QObject::tr("Warning"),
236 QObject::tr("Couldn't find script %1\nto notifiy Browsers of changed bookmarks.").arg(ub));
245 ////////////////////////////////////////////////////////////////////////
246 void ExportTaskjuggler::doExport()
249 if (mapCenter) me=mapCenter->getMapEditor();
252 me->exportXML(tmpDir.path());
255 p.setInputFile (tmpDir.path()+"/"+me->getMapName()+".xml");
256 p.setOutputFile (outputFile);
257 p.setXSLFile (vymBaseDir.path()+"/styles/vym2taskjuggler.xsl");
263 ////////////////////////////////////////////////////////////////////////
264 void ExportLaTeX::doExport()
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( QIODevice::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.")));
277 QTextStream ts( &file ); // use LANG decoding here...
278 ts.setEncoding (QTextStream::UnicodeUTF8); // Force UTF8
280 // Main loop over all branches
282 // QString actIndent("");
285 bo=mapCenter->first();
287 if (bo->getDepth()==0);
288 else if (bo->getDepth()==1) {
289 ts << ("\\chapter{" + bo->getHeading()+ "}\n");
291 else if (bo->getDepth()==2) {
292 ts << ("\\section{" + bo->getHeading()+ "}\n");
294 else if (bo->getDepth()==3) {
295 ts << ("\\subsection{" + bo->getHeading()+ "}\n");
297 else if (bo->getDepth()==4) {
298 ts << ("\\subsubsection{" + bo->getHeading()+ "}\n");
301 ts << ("\\paragraph*{" + bo->getHeading()+ "}\n");
304 // If necessary, write note
305 if (!bo->getNote().isEmpty()) {
306 ts << (bo->getNoteASCII());
314 ////////////////////////////////////////////////////////////////////////
320 ExportOO::~ExportOO()
324 QString ExportOO::buildList (BranchObj *current)
330 bo=current->getFirstBranch();
334 r+="<text:list text:style-name=\"vym-list\">\n";
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();
343 r+=buildList (bo); // recursivly add deeper branches
344 r+="</text:list-item>\n";
346 bo=current->getBranchNum(i);
354 void ExportOO::exportPresentation()
358 // Insert new content
359 content.replace ("<!-- INSERT TITLE -->",quotemeta(mapCenter->getHeading()));
360 content.replace ("<!-- INSERT AUTHOR -->",quotemeta(mapCenter->getAuthor()));
365 BranchObj *sectionBO=mapCenter->getFirstBranch();
375 // Add page with section title
376 onePage=sectionTemplate;
377 onePage.replace ("<!-- INSERT PAGE HEADING -->", quotemeta(sectionBO->getHeading() ) );
381 i=-2; // only use inner loop to
382 // turn mainbranches into pages
387 pagesBO=sectionBO->getFirstBranch();
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);
398 pagesBO=sectionBO->getBranchNum(j);
401 sectionBO=mapCenter->getBranchNum(i);
404 content.replace ("<!-- INSERT PAGES -->",allPages);
406 // Write modified content
407 QFile f (contentFile);
408 if ( !f.open( QIODevice::WriteOnly ) )
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.")));
419 // zip tmpdir to destination
420 zipDir (tmpDir,outputFile);
423 bool ExportOO::setConfigFile (const QString &cf)
426 int i=cf.findRev ("/");
427 if (i>=0) configDir=cf.left(i);
429 set.readSettings(configFile);
432 templateDir=configDir+"/"+set.readEntry ("Template");
434 QDir d (templateDir);
437 QMessageBox::critical (0,QObject::tr("Critical Export Error"),QObject::tr("Check \"%1\" in\n%2").arg("Template="+set.readEntry ("Template")).arg(configFile));
442 contentTemplateFile=templateDir+"content-template.xml";
443 contentFile=tmpDir.path()+"/content.xml";
444 pageTemplateFile=templateDir+"page-template.xml";
445 sectionTemplateFile=templateDir+"section-template.xml";
447 if (set.readEntry("useSections").contains("yes"))
450 // Copy template to tmpdir
451 system ("cp -r "+templateDir+"* "+tmpDir.path());
453 // Read content-template
454 if (!loadStringFromDisk (contentTemplateFile,content))
456 QMessageBox::critical (0,QObject::tr("Critical Export Error"),QObject::tr("Could not read %1").arg(contentTemplateFile));
460 // Read page-template
461 if (!loadStringFromDisk (pageTemplateFile,pageTemplate))
463 QMessageBox::critical (0,QObject::tr("Critical Export Error"),QObject::tr("Could not read %1").arg(pageTemplateFile));
467 // Read section-template
468 if (useSections && !loadStringFromDisk (sectionTemplateFile,sectionTemplate))
470 QMessageBox::critical (0,QObject::tr("Critical Export Error"),QObject::tr("Could not read %1").arg(sectionTemplateFile));