1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
/***************************************************************************
export a KEduVocDocument to a delimited text file
-----------------------------------------------------------------------
copyright : (C) 1999-2001 Ewald Arnold <kvoctrain@ewald-arnold.de>
(C) 2007 Peter Hedlund <peter.hedlund@kdemail.net>
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#include "keduvoccsvwriter.h"
#include <KLocalizedString>
#include <QFile>
#include <QTextStream>
#include "keduvocdocument.h"
#include "keduvoclesson.h"
#include "keduvocexpression.h"
KEduVocCsvWriter::KEduVocCsvWriter( QFile *file )
: m_outputFile(file) // the file must be already open
, m_doc(nullptr)
{
}
bool KEduVocCsvWriter::writeDoc( KEduVocDocument *doc, const QString &generator )
{
Q_UNUSED( generator );
m_doc = doc;
QString separator = m_doc->csvDelimiter();
;
QTextStream outputStream;
outputStream.setDevice( m_outputFile );
outputStream.setCodec( "UTF-8" );
outputStream << i18nc( "@item:intable the title of the document will be written here", "Title:" ) << separator << m_doc->title() << "\n";
outputStream << i18nc( "@item:intable the author will be written here", "Author:" ) << separator << m_doc->author() << "\n";
KEduVocExpression *expression;
int idCount = m_doc->identifierCount();
QString currentRow;
for ( int e = 0; e < m_doc->lesson()->entryCount(KEduVocLesson::Recursive); e++ ) {
expression = m_doc->lesson()->entries(KEduVocLesson::Recursive).value( e );
currentRow = QLatin1String("");
bool sep = false;
for ( int i = 0; i < idCount; i++ ) {
if ( !sep )
sep = true;
else
currentRow += separator;
currentRow += expression->translation( i )->text();
}
if ( !currentRow.isEmpty() )
outputStream << currentRow << "\n";
}
return true;
}
|