Engauge Digitizer  2
 All Classes Files Functions Variables Enumerations Enumerator Friends Pages
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 
16 const QString CSV_FILENAME_EXTENSION ("csv");
17 const QString TSV_FILENAME_EXTENSION ("tsv");
18 
20 {
21 }
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 
56 QString ExportToFile::filterCsv () const
57 {
58  return QString ("Text CSV (*.%1)")
59  .arg (CSV_FILENAME_EXTENSION);
60 }
61 
62 QString ExportToFile::filterTsv () const
63 {
64  return QString ("Text TSV (*.%1)")
65  .arg (TSV_FILENAME_EXTENSION);
66 }
Model for DlgSettingsExportFormat and CmdSettingsExportFormat.
void exportToFile(const DocumentModelExportFormat &modelExportOverride, const Document &document, const MainWindowModel &modelMainWindow, const Transformation &transformation, QTextStream &str) const
Export Document points according to the settings.
Affine transformation between screen and graph coordinates, based on digitized axis points...
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.
Definition: Document.h:40
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 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) const
Export Document points according to the settings.