Engauge Digitizer 2
Loading...
Searching...
No Matches
Public Member Functions | List of all members
CoordSystem Class Reference

Storage of data belonging to one coordinate system. More...

#include <CoordSystem.h>

Inheritance diagram for CoordSystem:
CoordSystemInterface

Public Member Functions

 CoordSystem (DocumentAxesPointsRequired documentAxesPointsRequired)
 Single constructor.
 
 CoordSystem (const QString &fileName)
 Constructor for opened Graphs, and error report files. The specified file is opened and read.
 
virtual void addGraphCurveAtEnd (const QString &curveName)
 Add new graph curve to the list of existing graph curves.
 
virtual void addPointAxisWithGeneratedIdentifier (const QPointF &posScreen, const QPointF &posGraph, QString &identifier, double ordinal, bool isXOnly)
 Add a single axis point with a generated point identifier.
 
virtual void addPointAxisWithSpecifiedIdentifier (const QPointF &posScreen, const QPointF &posGraph, const QString &identifier, double ordinal, bool isXOnly)
 Add a single axis point with the specified point identifier.
 
virtual void addPointGraphWithGeneratedIdentifier (const QString &curveName, const QPointF &posScreen, QString &generatedIentifier, double ordinal)
 Add a single graph point with a generated point identifier.
 
virtual void addPointGraphWithSpecifiedIdentifier (const QString &curveName, const QPointF &posScreen, const QString &identifier, double ordinal)
 Add a single graph point with the specified point identifer. Note that PointStyle is not applied to the point within the Graph.
 
virtual void addPointsInCurvesGraphs (CurvesGraphs &curvesGraphs)
 Add all points identified in the specified CurvesGraphs. See also removePointsInCurvesGraphs.
 
virtual void checkAddPointAxis (const QPointF &posScreen, const QPointF &posGraph, bool &isError, QString &errorMessage, bool isXOnly)
 Check before calling addPointAxis. Also returns the next available ordinal number (to prevent clashes)
 
virtual void checkEditPointAxis (const QString &pointIdentifier, const QPointF &posScreen, const QPointF &posGraph, bool &isError, QString &errorMessage)
 Check before calling editPointAxis.
 
virtual const CurvecurveAxes () const
 Get method for axis curve.
 
virtual CurvecurveForCurveName (const QString &curveName)
 See CurvesGraphs::curveForCurveName, although this also works for AXIS_CURVE_NAME.
 
virtual const CurvecurveForCurveName (const QString &curveName) const
 See CurvesGraphs::curveForCurveNames, although this also works for AXIS_CURVE_NAME.
 
virtual const CurvesGraphscurvesGraphs () const
 Make all Curves available, read only, for CmdAbstract classes only.
 
virtual QStringList curvesGraphsNames () const
 See CurvesGraphs::curvesGraphsNames.
 
virtual int curvesGraphsNumPoints (const QString &curveName) const
 See CurvesGraphs::curvesGraphsNumPoints.
 
virtual void editPointAxis (const QPointF &posGraph, const QString &identifier)
 Edit the graph coordinates of a single axis point. Call this after checkAddPointAxis to guarantee success in this call.
 
bool isXOnly (const QString &pointIdentifier) const
 Return true if y coordinate is undefined, otherwise x coordinae is undefined in DOCUMENT_AXES_POINT_REQUIRE_4 mode.
 
virtual void iterateThroughCurvePointsAxes (const Functor2wRet< const QString &, const Point &, CallbackSearchReturn > &ftorWithCallback)
 See Curve::iterateThroughCurvePoints, for the axes curve.
 
virtual void iterateThroughCurvePointsAxes (const Functor2wRet< const QString &, const Point &, CallbackSearchReturn > &ftorWithCallback) const
 See Curve::iterateThroughCurvePoints, for the axes curve.
 
virtual void iterateThroughCurveSegments (const QString &curveName, const Functor2wRet< const Point &, const Point &, CallbackSearchReturn > &ftorWithCallback) const
 See Curve::iterateThroughCurveSegments, for any axes or graph curve.
 
virtual void iterateThroughCurvesPointsGraphs (const Functor2wRet< const QString &, const Point &, CallbackSearchReturn > &ftorWithCallback)
 See Curve::iterateThroughCurvePoints, for all the graphs curves.
 
virtual void iterateThroughCurvesPointsGraphs (const Functor2wRet< const QString &, const Point &, CallbackSearchReturn > &ftorWithCallback) const
 See Curve::iterateThroughCurvePoints, for all the graphs curves.
 
virtual bool loadCurvesFile (const QString &curvesFile)
 Load the curve names in the specified Engauge file into the current graph. This is called near the end of the import process only.
 
void loadPreVersion6 (QDataStream &str, double version)
 Load from file in pre-version 6 format.
 
void loadVersion6 (QXmlStreamReader &reader)
 Load from file in version 6 format.
 
void loadVersion7 (QXmlStreamReader &reader, DocumentAxesPointsRequired documentAxesPointsRequired)
 Load from file in version 7 format.
 
virtual DocumentModelAxesChecker modelAxesChecker () const
 Get method for DocumentModelAxesChecker.
 
virtual DocumentModelColorFilter modelColorFilter () const
 Get method for DocumentModelColorFilter.
 
virtual DocumentModelCoords modelCoords () const
 Get method for DocumentModelCoords.
 
virtual CurveStyles modelCurveStyles () const
 Get method for CurveStyles.
 
virtual DocumentModelDigitizeCurve modelDigitizeCurve () const
 Get method for DocumentModelDigitizeCurve.
 
virtual DocumentModelExportFormat modelExport () const
 Get method for DocumentModelExportFormat.
 
virtual DocumentModelGeneral modelGeneral () const
 Get method for DocumentModelGeneral.
 
virtual DocumentModelGridRemoval modelGridRemoval () const
 Get method for DocumentModelGridRemoval.
 
virtual DocumentModelPointMatch modelPointMatch () const
 Get method for DocumentModelPointMatch.
 
virtual DocumentModelSegments modelSegments () const
 Get method for DocumentModelSegments.
 
virtual void movePoint (const QString &pointIdentifier, const QPointF &deltaScreen)
 See Curve::movePoint.
 
virtual int nextOrdinalForCurve (const QString &curveName) const
 Default next ordinal value for specified curve.
 
virtual QPointF positionGraph (const QString &pointIdentifier) const
 See Curve::positionGraph.
 
virtual QPointF positionScreen (const QString &pointIdentifier) const
 See Curve::positionScreen.
 
virtual void print () const
 Debugging method for printing directly from symbolic debugger.
 
virtual void printStream (QString indentation, QTextStream &str) const
 Debugging method that supports print method of this class and printStream method of some other class(es)
 
virtual QString reasonForUnsuccessfulRead () const
 Return an informative text message explaining why startup loading failed. Applies if successfulRead returns false.
 
virtual void removePointAxis (const QString &identifier)
 Perform the opposite of addPointAxis.
 
virtual void removePointGraph (const QString &identifier)
 Perform the opposite of addPointGraph.
 
virtual void removePointsInCurvesGraphs (CurvesGraphs &curvesGraphs)
 Remove all points identified in the specified CurvesGraphs. See also addPointsInCurvesGraphs.
 
virtual void saveXml (QXmlStreamWriter &writer) const
 Save graph to xml.
 
virtual void setCurvesGraphs (const CurvesGraphs &curvesGraphs)
 Let CmdAbstract classes overwrite CurvesGraphs.
 
virtual void setModelAxesChecker (const DocumentModelAxesChecker &modelAxesChecker)
 Set method for DocumentModelAxesChecker.
 
virtual void setModelColorFilter (const DocumentModelColorFilter &modelColorFilter)
 Set method for DocumentModelColorFilter.
 
virtual void setModelCoords (const DocumentModelCoords &modelCoords)
 Set method for DocumentModelCoords.
 
virtual void setModelCurveStyles (const CurveStyles &modelCurveStyles)
 Set method for CurveStyles.
 
virtual void setModelDigitizeCurve (const DocumentModelDigitizeCurve &modelDigitizeCurve)
 Set method for DocumentModelDigitizeCurve.
 
virtual void setModelExport (const DocumentModelExportFormat &modelExport)
 Set method for DocumentModelExportFormat.
 
virtual void setModelGeneral (const DocumentModelGeneral &modelGeneral)
 Set method for DocumentModelGeneral.
 
virtual void setModelGridRemoval (const DocumentModelGridRemoval &modelGridRemoval)
 Set method for DocumentModelGridRemoval.
 
void setModelPointMatch (const DocumentModelPointMatch &modelPointMatch)
 Set method for DocumentModelPointMatch.
 
virtual void setModelSegments (const DocumentModelSegments &modelSegments)
 Set method for DocumentModelSegments.
 
virtual bool successfulRead () const
 Return true if startup loading succeeded. If the loading failed then reasonForUnsuccessfulRed will explain why.
 
virtual void updatePointOrdinals (const Transformation &transformation)
 Update point ordinals after point addition/removal or dragging.
 
- Public Member Functions inherited from CoordSystemInterface
 CoordSystemInterface ()
 Single constructor.
 

Detailed Description

Storage of data belonging to one coordinate system.

There can be one or more coordinate systems per graph, and one or more graphs in the image belonging to a Document

Definition at line 40 of file CoordSystem.h.

Constructor & Destructor Documentation

◆ CoordSystem()

CoordSystem::CoordSystem ( DocumentAxesPointsRequired  documentAxesPointsRequired)

Single constructor.

Definition at line 38 of file CoordSystem.cpp.

Member Function Documentation

◆ addGraphCurveAtEnd()

void CoordSystem::addGraphCurveAtEnd ( const QString &  curveName)
virtual

Add new graph curve to the list of existing graph curves.

Implements CoordSystemInterface.

Definition at line 56 of file CoordSystem.cpp.

◆ addPointAxisWithGeneratedIdentifier()

void CoordSystem::addPointAxisWithGeneratedIdentifier ( const QPointF &  posScreen,
const QPointF &  posGraph,
QString &  identifier,
double  ordinal,
bool  isXOnly 
)
virtual

Add a single axis point with a generated point identifier.

Call this after checkAddPointAxis to guarantee success in this call.

Parameters
posScreenScreen coordinates from QGraphicsView
posGraphGraph coordiantes from user
identifierIdentifier for new axis point
ordinalUnique, for curve, ordinal number
isXOnlyTrue if graph coordinates have only x coordinate

Implements CoordSystemInterface.

Definition at line 64 of file CoordSystem.cpp.

◆ addPointAxisWithSpecifiedIdentifier()

void CoordSystem::addPointAxisWithSpecifiedIdentifier ( const QPointF &  posScreen,
const QPointF &  posGraph,
const QString &  identifier,
double  ordinal,
bool  isXOnly 
)
virtual

Add a single axis point with the specified point identifier.

Call this after checkAddPointAxis to guarantee success in this call.

Parameters
posScreenScreen coordinates from QGraphicsView
posGraphGraph coordiantes from user
identifierIdentifier for new axis point
ordinalUnique, for curve, ordinal number
isXOnlyTrue if graph coordinates have only x coordinate

Implements CoordSystemInterface.

Definition at line 86 of file CoordSystem.cpp.

◆ addPointGraphWithGeneratedIdentifier()

void CoordSystem::addPointGraphWithGeneratedIdentifier ( const QString &  curveName,
const QPointF &  posScreen,
QString &  generatedIentifier,
double  ordinal 
)
virtual

Add a single graph point with a generated point identifier.

Implements CoordSystemInterface.

Definition at line 107 of file CoordSystem.cpp.

◆ addPointGraphWithSpecifiedIdentifier()

void CoordSystem::addPointGraphWithSpecifiedIdentifier ( const QString &  curveName,
const QPointF &  posScreen,
const QString &  identifier,
double  ordinal 
)
virtual

Add a single graph point with the specified point identifer. Note that PointStyle is not applied to the point within the Graph.

Implements CoordSystemInterface.

Definition at line 125 of file CoordSystem.cpp.

◆ addPointsInCurvesGraphs()

void CoordSystem::addPointsInCurvesGraphs ( CurvesGraphs curvesGraphs)
virtual

Add all points identified in the specified CurvesGraphs. See also removePointsInCurvesGraphs.

Implements CoordSystemInterface.

Definition at line 142 of file CoordSystem.cpp.

◆ checkAddPointAxis()

void CoordSystem::checkAddPointAxis ( const QPointF &  posScreen,
const QPointF &  posGraph,
bool &  isError,
QString &  errorMessage,
bool  isXOnly 
)
virtual

Check before calling addPointAxis. Also returns the next available ordinal number (to prevent clashes)

Implements CoordSystemInterface.

Definition at line 166 of file CoordSystem.cpp.

◆ checkEditPointAxis()

void CoordSystem::checkEditPointAxis ( const QString &  pointIdentifier,
const QPointF &  posScreen,
const QPointF &  posGraph,
bool &  isError,
QString &  errorMessage 
)
virtual

Check before calling editPointAxis.

Implements CoordSystemInterface.

Definition at line 190 of file CoordSystem.cpp.

◆ curveAxes()

const Curve & CoordSystem::curveAxes ( ) const
virtual

Get method for axis curve.

Implements CoordSystemInterface.

Definition at line 213 of file CoordSystem.cpp.

◆ curveForCurveName() [1/2]

Curve * CoordSystem::curveForCurveName ( const QString &  curveName)
virtual

See CurvesGraphs::curveForCurveName, although this also works for AXIS_CURVE_NAME.

Implements CoordSystemInterface.

Definition at line 220 of file CoordSystem.cpp.

◆ curveForCurveName() [2/2]

const Curve * CoordSystem::curveForCurveName ( const QString &  curveName) const
virtual

See CurvesGraphs::curveForCurveNames, although this also works for AXIS_CURVE_NAME.

Implements CoordSystemInterface.

Definition at line 233 of file CoordSystem.cpp.

◆ curvesGraphs()

const CurvesGraphs & CoordSystem::curvesGraphs ( ) const
virtual

Make all Curves available, read only, for CmdAbstract classes only.

Implements CoordSystemInterface.

Definition at line 246 of file CoordSystem.cpp.

◆ curvesGraphsNames()

QStringList CoordSystem::curvesGraphsNames ( ) const
virtual

See CurvesGraphs::curvesGraphsNames.

Implements CoordSystemInterface.

Definition at line 251 of file CoordSystem.cpp.

◆ curvesGraphsNumPoints()

int CoordSystem::curvesGraphsNumPoints ( const QString &  curveName) const
virtual

See CurvesGraphs::curvesGraphsNumPoints.

Implements CoordSystemInterface.

Definition at line 256 of file CoordSystem.cpp.

◆ editPointAxis()

void CoordSystem::editPointAxis ( const QPointF &  posGraph,
const QString &  identifier 
)
virtual

Edit the graph coordinates of a single axis point. Call this after checkAddPointAxis to guarantee success in this call.

Implements CoordSystemInterface.

Definition at line 261 of file CoordSystem.cpp.

◆ isXOnly()

bool CoordSystem::isXOnly ( const QString &  pointIdentifier) const

Return true if y coordinate is undefined, otherwise x coordinae is undefined in DOCUMENT_AXES_POINT_REQUIRE_4 mode.

Applies to axes points only

Definition at line 272 of file CoordSystem.cpp.

◆ iterateThroughCurvePointsAxes() [1/2]

void CoordSystem::iterateThroughCurvePointsAxes ( const Functor2wRet< const QString &, const Point &, CallbackSearchReturn > &  ftorWithCallback)
virtual

See Curve::iterateThroughCurvePoints, for the axes curve.

Implements CoordSystemInterface.

Definition at line 277 of file CoordSystem.cpp.

◆ iterateThroughCurvePointsAxes() [2/2]

void CoordSystem::iterateThroughCurvePointsAxes ( const Functor2wRet< const QString &, const Point &, CallbackSearchReturn > &  ftorWithCallback) const
virtual

See Curve::iterateThroughCurvePoints, for the axes curve.

Implements CoordSystemInterface.

Definition at line 284 of file CoordSystem.cpp.

◆ iterateThroughCurveSegments()

void CoordSystem::iterateThroughCurveSegments ( const QString &  curveName,
const Functor2wRet< const Point &, const Point &, CallbackSearchReturn > &  ftorWithCallback 
) const
virtual

See Curve::iterateThroughCurveSegments, for any axes or graph curve.

Implements CoordSystemInterface.

Definition at line 291 of file CoordSystem.cpp.

◆ iterateThroughCurvesPointsGraphs() [1/2]

void CoordSystem::iterateThroughCurvesPointsGraphs ( const Functor2wRet< const QString &, const Point &, CallbackSearchReturn > &  ftorWithCallback)
virtual

See Curve::iterateThroughCurvePoints, for all the graphs curves.

Implements CoordSystemInterface.

Definition at line 302 of file CoordSystem.cpp.

◆ iterateThroughCurvesPointsGraphs() [2/2]

void CoordSystem::iterateThroughCurvesPointsGraphs ( const Functor2wRet< const QString &, const Point &, CallbackSearchReturn > &  ftorWithCallback) const
virtual

See Curve::iterateThroughCurvePoints, for all the graphs curves.

Implements CoordSystemInterface.

Definition at line 309 of file CoordSystem.cpp.

◆ loadCurvesFile()

bool CoordSystem::loadCurvesFile ( const QString &  curvesFile)
virtual

Load the curve names in the specified Engauge file into the current graph. This is called near the end of the import process only.

Implements CoordSystemInterface.

Definition at line 316 of file CoordSystem.cpp.

◆ loadPreVersion6()

void CoordSystem::loadPreVersion6 ( QDataStream &  str,
double  version 
)

Load from file in pre-version 6 format.

Definition at line 323 of file CoordSystem.cpp.

◆ loadVersion6()

void CoordSystem::loadVersion6 ( QXmlStreamReader &  reader)

Load from file in version 6 format.

Definition at line 466 of file CoordSystem.cpp.

◆ loadVersion7()

void CoordSystem::loadVersion7 ( QXmlStreamReader &  reader,
DocumentAxesPointsRequired  documentAxesPointsRequired 
)

Load from file in version 7 format.

Definition at line 523 of file CoordSystem.cpp.

◆ modelAxesChecker()

DocumentModelAxesChecker CoordSystem::modelAxesChecker ( ) const
virtual

Get method for DocumentModelAxesChecker.

Implements CoordSystemInterface.

Definition at line 578 of file CoordSystem.cpp.

◆ modelColorFilter()

DocumentModelColorFilter CoordSystem::modelColorFilter ( ) const
virtual

Get method for DocumentModelColorFilter.

Implements CoordSystemInterface.

Definition at line 583 of file CoordSystem.cpp.

◆ modelCoords()

DocumentModelCoords CoordSystem::modelCoords ( ) const
virtual

Get method for DocumentModelCoords.

Implements CoordSystemInterface.

Definition at line 591 of file CoordSystem.cpp.

◆ modelCurveStyles()

CurveStyles CoordSystem::modelCurveStyles ( ) const
virtual

Get method for CurveStyles.

Implements CoordSystemInterface.

Definition at line 596 of file CoordSystem.cpp.

◆ modelDigitizeCurve()

DocumentModelDigitizeCurve CoordSystem::modelDigitizeCurve ( ) const
virtual

Get method for DocumentModelDigitizeCurve.

Implements CoordSystemInterface.

Definition at line 604 of file CoordSystem.cpp.

◆ modelExport()

DocumentModelExportFormat CoordSystem::modelExport ( ) const
virtual

Get method for DocumentModelExportFormat.

Implements CoordSystemInterface.

Definition at line 609 of file CoordSystem.cpp.

◆ modelGeneral()

DocumentModelGeneral CoordSystem::modelGeneral ( ) const
virtual

Get method for DocumentModelGeneral.

Implements CoordSystemInterface.

Definition at line 614 of file CoordSystem.cpp.

◆ modelGridRemoval()

DocumentModelGridRemoval CoordSystem::modelGridRemoval ( ) const
virtual

Get method for DocumentModelGridRemoval.

Implements CoordSystemInterface.

Definition at line 619 of file CoordSystem.cpp.

◆ modelPointMatch()

DocumentModelPointMatch CoordSystem::modelPointMatch ( ) const
virtual

Get method for DocumentModelPointMatch.

Implements CoordSystemInterface.

Definition at line 624 of file CoordSystem.cpp.

◆ modelSegments()

DocumentModelSegments CoordSystem::modelSegments ( ) const
virtual

Get method for DocumentModelSegments.

Implements CoordSystemInterface.

Definition at line 629 of file CoordSystem.cpp.

◆ movePoint()

void CoordSystem::movePoint ( const QString &  pointIdentifier,
const QPointF &  deltaScreen 
)
virtual

See Curve::movePoint.

Implements CoordSystemInterface.

Definition at line 634 of file CoordSystem.cpp.

◆ nextOrdinalForCurve()

int CoordSystem::nextOrdinalForCurve ( const QString &  curveName) const
virtual

Default next ordinal value for specified curve.

Implements CoordSystemInterface.

Definition at line 645 of file CoordSystem.cpp.

◆ positionGraph()

QPointF CoordSystem::positionGraph ( const QString &  pointIdentifier) const
virtual

See Curve::positionGraph.

Implements CoordSystemInterface.

Definition at line 661 of file CoordSystem.cpp.

◆ positionScreen()

QPointF CoordSystem::positionScreen ( const QString &  pointIdentifier) const
virtual

See Curve::positionScreen.

Implements CoordSystemInterface.

Definition at line 669 of file CoordSystem.cpp.

◆ print()

void CoordSystem::print ( ) const
virtual

Debugging method for printing directly from symbolic debugger.

Implements CoordSystemInterface.

Definition at line 677 of file CoordSystem.cpp.

◆ printStream()

void CoordSystem::printStream ( QString  indentation,
QTextStream &  str 
) const
virtual

Debugging method that supports print method of this class and printStream method of some other class(es)

Implements CoordSystemInterface.

Definition at line 687 of file CoordSystem.cpp.

◆ reasonForUnsuccessfulRead()

QString CoordSystem::reasonForUnsuccessfulRead ( ) const
virtual

Return an informative text message explaining why startup loading failed. Applies if successfulRead returns false.

Implements CoordSystemInterface.

Definition at line 720 of file CoordSystem.cpp.

◆ removePointAxis()

void CoordSystem::removePointAxis ( const QString &  identifier)
virtual

Perform the opposite of addPointAxis.

Implements CoordSystemInterface.

Definition at line 727 of file CoordSystem.cpp.

◆ removePointGraph()

void CoordSystem::removePointGraph ( const QString &  identifier)
virtual

Perform the opposite of addPointGraph.

Implements CoordSystemInterface.

Definition at line 734 of file CoordSystem.cpp.

◆ removePointsInCurvesGraphs()

void CoordSystem::removePointsInCurvesGraphs ( CurvesGraphs curvesGraphs)
virtual

Remove all points identified in the specified CurvesGraphs. See also addPointsInCurvesGraphs.

Implements CoordSystemInterface.

Definition at line 741 of file CoordSystem.cpp.

◆ saveXml()

void CoordSystem::saveXml ( QXmlStreamWriter &  writer) const
virtual

Save graph to xml.

Implements CoordSystemInterface.

Definition at line 751 of file CoordSystem.cpp.

◆ setCurvesGraphs()

void CoordSystem::setCurvesGraphs ( const CurvesGraphs curvesGraphs)
virtual

Let CmdAbstract classes overwrite CurvesGraphs.

Implements CoordSystemInterface.

Definition at line 769 of file CoordSystem.cpp.

◆ setModelAxesChecker()

void CoordSystem::setModelAxesChecker ( const DocumentModelAxesChecker modelAxesChecker)
virtual

Set method for DocumentModelAxesChecker.

Implements CoordSystemInterface.

Definition at line 776 of file CoordSystem.cpp.

◆ setModelColorFilter()

void CoordSystem::setModelColorFilter ( const DocumentModelColorFilter modelColorFilter)
virtual

Set method for DocumentModelColorFilter.

Implements CoordSystemInterface.

Definition at line 781 of file CoordSystem.cpp.

◆ setModelCoords()

void CoordSystem::setModelCoords ( const DocumentModelCoords modelCoords)
virtual

Set method for DocumentModelCoords.

Implements CoordSystemInterface.

Definition at line 797 of file CoordSystem.cpp.

◆ setModelCurveStyles()

void CoordSystem::setModelCurveStyles ( const CurveStyles modelCurveStyles)
virtual

Set method for CurveStyles.

Implements CoordSystemInterface.

Definition at line 802 of file CoordSystem.cpp.

◆ setModelDigitizeCurve()

void CoordSystem::setModelDigitizeCurve ( const DocumentModelDigitizeCurve modelDigitizeCurve)
virtual

Set method for DocumentModelDigitizeCurve.

Implements CoordSystemInterface.

Definition at line 817 of file CoordSystem.cpp.

◆ setModelExport()

void CoordSystem::setModelExport ( const DocumentModelExportFormat modelExport)
virtual

Set method for DocumentModelExportFormat.

Implements CoordSystemInterface.

Definition at line 822 of file CoordSystem.cpp.

◆ setModelGeneral()

void CoordSystem::setModelGeneral ( const DocumentModelGeneral modelGeneral)
virtual

Set method for DocumentModelGeneral.

Implements CoordSystemInterface.

Definition at line 827 of file CoordSystem.cpp.

◆ setModelGridRemoval()

void CoordSystem::setModelGridRemoval ( const DocumentModelGridRemoval modelGridRemoval)
virtual

Set method for DocumentModelGridRemoval.

Implements CoordSystemInterface.

Definition at line 832 of file CoordSystem.cpp.

◆ setModelPointMatch()

void CoordSystem::setModelPointMatch ( const DocumentModelPointMatch modelPointMatch)
virtual

Set method for DocumentModelPointMatch.

Implements CoordSystemInterface.

Definition at line 837 of file CoordSystem.cpp.

◆ setModelSegments()

void CoordSystem::setModelSegments ( const DocumentModelSegments modelSegments)
virtual

Set method for DocumentModelSegments.

Implements CoordSystemInterface.

Definition at line 842 of file CoordSystem.cpp.

◆ successfulRead()

bool CoordSystem::successfulRead ( ) const
virtual

Return true if startup loading succeeded. If the loading failed then reasonForUnsuccessfulRed will explain why.

Implements CoordSystemInterface.

Definition at line 847 of file CoordSystem.cpp.

◆ updatePointOrdinals()

void CoordSystem::updatePointOrdinals ( const Transformation transformation)
virtual

Update point ordinals after point addition/removal or dragging.

See GraphicsScene::updatePointOrdinalsAfterDrag. Graph coordinates of point must be up to date

Implements CoordSystemInterface.

Definition at line 852 of file CoordSystem.cpp.


The documentation for this class was generated from the following files: