Engauge Digitizer 2
Loading...
Searching...
No Matches
ExportToFile.cpp
1/******************************************************************************************************
2 * (C) 2014 markummitchell@github.com. This file is part of Engauge Digitizer, which is released *
3 * under GNU General Public License version 2 (GPLv2) or (at your option) any later version. See file *
4 * LICENSE or go to gnu.org/licenses for details. Distribution requires prior written permission. *
5 ******************************************************************************************************/
6
7#include "Document.h"
8#include "ExportFileFunctions.h"
9#include "ExportFileRelations.h"
10#include "ExportToFile.h"
11#include "Logger.h"
12#include "MainWindowModel.h"
13#include <QTextStream>
14#include "Transformation.h"
15
16const QString CSV_FILENAME_EXTENSION ("csv");
17const QString TSV_FILENAME_EXTENSION ("tsv");
18
22
24 const Document &document,
25 const MainWindowModel &modelMainWindow,
26 const Transformation &transformation,
27 QTextStream &str) const
28{
29 LOG4CPP_INFO_S ((*mainCat)) << "ExportToFile::exportToFile";
30
31 ExportFileFunctions exportFunctions;
32 exportFunctions.exportToFile (modelExport,
33 document,
34 modelMainWindow,
35 transformation,
36 str);
37
38 ExportFileRelations exportRelations;
39 exportRelations.exportToFile (modelExport,
40 document,
41 modelMainWindow,
42 transformation,
43 str);
44}
45
47{
48 return CSV_FILENAME_EXTENSION;
49}
50
52{
53 return TSV_FILENAME_EXTENSION;
54}
55
57{
58 return QString ("Text CSV (*.%1)")
59 .arg (CSV_FILENAME_EXTENSION);
60}
61
63{
64 return QString ("Text TSV (*.%1)")
65 .arg (TSV_FILENAME_EXTENSION);
66}
Model for DlgSettingsExportFormat and CmdSettingsExportFormat.
Storage of one imported image and the data attached to that image.
Definition Document.h:41
Strategy class for exporting to a file. This strategy is external to the Document class so that class...
void exportToFile(const DocumentModelExportFormat &modelExportOverride, const Document &document, const MainWindowModel &modelMainWindow, const Transformation &transformation, QTextStream &str) const
Export Document points according to the settings.
Strategy class for exporting to a file. This strategy is external to the Document class so that class...
void exportToFile(const DocumentModelExportFormat &modelExportOverride, const Document &document, const MainWindowModel &modelMainWindow, const Transformation &transformation, QTextStream &str) const
Export Document points according to the settings.
QString filterTsv() const
QFileDialog filter for TSV files.
QString filterCsv() const
QFileDialog filter for CSV files.
void exportToFile(const DocumentModelExportFormat &modelExport, const Document &document, const MainWindowModel &modelMainWindow, const Transformation &transformation, QTextStream &str) const
Export Document points according to the settings.
ExportToFile()
Single constructor.
QString fileExtensionTsv() const
File extension for tsv export files.
QString fileExtensionCsv() const
File extension for csv export files.
Model for DlgSettingsMainWindow.
Affine transformation between screen and graph coordinates, based on digitized axis points.