Engauge Digitizer 2
Loading...
Searching...
No Matches
ExportPointsIntervalUnits.h File Reference
#include <QString>
Include dependency graph for ExportPointsIntervalUnits.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Enumerations

enum  ExportPointsIntervalUnits { EXPORT_POINTS_INTERVAL_UNITS_GRAPH , EXPORT_POINTS_INTERVAL_UNITS_SCREEN }

Functions

QString exportPointsIntervalUnitsToString (ExportPointsIntervalUnits exportPointsIntervalUnits)

Enumeration Type Documentation

◆ ExportPointsIntervalUnits

Enumerator
EXPORT_POINTS_INTERVAL_UNITS_GRAPH 
EXPORT_POINTS_INTERVAL_UNITS_SCREEN 

Definition at line 12 of file ExportPointsIntervalUnits.h.

Function Documentation

◆ exportPointsIntervalUnitsToString()

QString exportPointsIntervalUnitsToString ( ExportPointsIntervalUnits exportPointsIntervalUnits)
extern

Definition at line 10 of file ExportPointsIntervalUnits.cpp.

11{
12 QString rtn;
13
14 switch (exportPointsIntervalUnits) {
16 rtn = QObject::tr ("Graph Units");
17 break;
18
20 rtn = QObject::tr ("Pixels");
21 break;
22 }
23
24 return rtn;
25}