8 #include "ExportFileFunctions.h" 9 #include "ExportFileRelations.h" 10 #include "ExportToFile.h" 12 #include "MainWindowModel.h" 13 #include <QTextStream> 14 #include "Transformation.h" 16 const QString CSV_FILENAME_EXTENSION (
"csv");
17 const QString TSV_FILENAME_EXTENSION (
"tsv");
27 QTextStream &str)
const 29 LOG4CPP_INFO_S ((*mainCat)) <<
"ExportToFile::exportToFile";
31 unsigned int numWritesSoFar = 0;
52 return CSV_FILENAME_EXTENSION;
57 return TSV_FILENAME_EXTENSION;
62 return QString (
"Text CSV (*.%1)")
63 .arg (CSV_FILENAME_EXTENSION);
68 return QString (
"Text TSV (*.%1)")
69 .arg (TSV_FILENAME_EXTENSION);
QString fileExtensionTsv() const
File extension for tsv export files.
Strategy class for exporting to a file. This strategy is external to the Document class so that class...
Model for DlgSettingsMainWindow.
QString fileExtensionCsv() const
File extension for csv export files.
Storage of one imported image and the data attached to that image.
void exportToFile(const DocumentModelExportFormat &modelExport, const Document &document, const MainWindowModel &modelMainWindow, const Transformation &transformation, QTextStream &str) const
Export Document points according to the settings.
void exportToFile(const DocumentModelExportFormat &modelExportOverride, const Document &document, const MainWindowModel &modelMainWindow, const Transformation &transformation, QTextStream &str, unsigned int &numWritesSoFar) const
Export Document points according to the settings.
QString filterTsv() const
QFileDialog filter for TSV files.
Strategy class for exporting to a file. This strategy is external to the Document class so that class...
QString filterCsv() const
QFileDialog filter for CSV files.
ExportToFile()
Single constructor.
void exportToFile(const DocumentModelExportFormat &modelExportOverride, const Document &document, const MainWindowModel &modelMainWindow, const Transformation &transformation, QTextStream &str, unsigned int &numWritesSoFar) const
Export Document points according to the settings.