Engauge Digitizer 2
Loading...
Searching...
No Matches
CallbackGatherXThetasInGridLines.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 CALLBACK_GATHER_X_THETAS_IN_GRID_LINES_H
8#define CALLBACK_GATHER_X_THETAS_IN_GRID_LINES_H
9
12#include "ExportValuesXOrY.h"
13#include "Transformation.h"
14#include <QHash>
15#include <QString>
16#include "ValuesVectorXOrY.h"
17
18class Document;
19class MainWindowModel;
20class Point;
21
29{
30public:
33 const DocumentModelExportFormat &modelExport,
34 const QStringList &curvesIncluded,
36 const Document &document);
37
39 virtual CallbackSearchReturn callback (const QString &curveName,
40 const Point &point);
41
42private:
44
45 void addGridLines (const MainWindowModel &modelMainWindow,
47 const Document &document);
48};
49
50#endif // CALLBACK_GATHER_X_THETAS_IN_GRID_LINES_H
CallbackSearchReturn
Return values for search callback methods.
const Transformation & transformation() const
Get method for transformation.
QStringList curvesIncluded() const
Get method for included names.
CallbackGatherXThetasAbstractBase(bool firstCurveOnly, bool extrapolateOutsideEndpoints, const QStringList &curvesIncluded, const Transformation &transformation)
Single constructor.
CallbackGatherXThetasInGridLines(const MainWindowModel &modelMainWindow, const DocumentModelExportFormat &modelExport, const QStringList &curvesIncluded, const Transformation &transformation, const Document &document)
Single constructor.
virtual CallbackSearchReturn callback(const QString &curveName, const Point &point)
Callback method.
Model for DlgSettingsExportFormat and CmdSettingsExportFormat.
Storage of one imported image and the data attached to that image.
Definition Document.h:44
Model for DlgSettingsMainWindow.
Class that represents one digitized point. The screen-to-graph coordinate transformation is always ex...
Definition Point.h:26
Affine transformation between screen and graph coordinates, based on digitized axis points.