Engauge Digitizer 2
Loading...
Searching...
No Matches
ExportToClipboard.h
Go to the documentation of this file.
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#ifndef EXPORT_TO_CLIPBOARD_H
8#define EXPORT_TO_CLIPBOARD_H
9
10#include <QStringList>
11#include <QTextStream>
12
13class Curve;
14class CurvesGraphs;
15class Document;
16class Transformation;
17
20{
21public:
24
33 void exportToClipboard (const QStringList &selected,
34 const Transformation &transformation,
35 QTextStream &strCsv,
36 QTextStream &strHtml,
37 const Curve &curveAxis,
38 const CurvesGraphs &curvesGraphsAll,
39 CurvesGraphs &curvesGraphsSelected) const;
40};
41
42#endif // EXPORT_TO_CLIPBOARD_H
Container for one set of digitized Points.
Definition Curve.h:34
Container for all graph curves. The axes point curve is external to this class.
Storage of one imported image and the data attached to that image.
Definition Document.h:44
ExportToClipboard()
Single constructor.
void exportToClipboard(const QStringList &selected, const Transformation &transformation, QTextStream &strCsv, QTextStream &strHtml, const Curve &curveAxis, const CurvesGraphs &curvesGraphsAll, CurvesGraphs &curvesGraphsSelected) const
Export, curve-by-curve, raw data points to a string that will be copied to the clipboard.
Affine transformation between screen and graph coordinates, based on digitized axis points.