void CmdLineExportAllViewsEvent::exportAllViews() { QStringList errors = UMLViewImageExporterModel().exportAllViews(m_imageType, m_directory, m_useFolders); if (!errors.isEmpty()) { kError() << "Errors while exporting:" << endl; for (QStringList::Iterator it = errors.begin(); it != errors.end(); ++it) { kError() << *it << endl; } } kapp->sendEvent(UMLApp::app(), new QCloseEvent()); }
/** * Exports the current model to docbook in the given directory * @param destDir the directory where the docbook file and the figures will * be written * @todo better handling of error conditions * @return true if saving is successful and false otherwise. */ void DocbookGenerator::generateDocbookForProjectInto(const KUrl& destDir) { m_destDir = destDir; umlDoc->writeToStatusBar(i18n("Exporting all views...")); QStringList errors = UMLViewImageExporterModel().exportAllViews( UMLViewImageExporterModel::mimeTypeToImageType("image/png"), destDir, false); if (!errors.empty()) { KMessageBox::errorList(UMLApp::app(), i18n("Some errors happened when exporting the images:"), errors); return; } umlDoc->writeToStatusBar(i18n("Generating Docbook...")); docbookGeneratorJob = new DocbookGeneratorJob( this ); connect(docbookGeneratorJob, SIGNAL(docbookGenerated(QString)), this, SLOT(slotDocbookGenerationFinished(QString))); connect(docbookGeneratorJob, SIGNAL(finished()), this, SLOT(threadFinished())); uDebug()<<"Threading"; docbookGeneratorJob->start(); }