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);
void exportToFile(const DocumentModelExportFormat &modelExport, const Document &document, const MainWindowModel &modelMainWindow, const Transformation &transformation, QTextStream &str) const
Export Document points according to the settings.
QString filterCsv() const
QFileDialog filter for CSV files.
Strategy class for exporting to a file. This strategy is external to the Document class so that class...
Model for DlgSettingsMainWindow.
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.
Storage of one imported image and the data attached to that image.
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...
QString fileExtensionCsv() const
File extension for csv export files.
QString filterTsv() const
QFileDialog filter for TSV 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.