#include <QString>
Go to the source code of this file.
◆ ExportPointsIntervalUnits
Enumerator |
---|
EXPORT_POINTS_INTERVAL_UNITS_GRAPH | |
EXPORT_POINTS_INTERVAL_UNITS_SCREEN | |
Definition at line 12 of file ExportPointsIntervalUnits.h.
12 {
15};
@ EXPORT_POINTS_INTERVAL_UNITS_GRAPH
@ EXPORT_POINTS_INTERVAL_UNITS_SCREEN
◆ exportPointsIntervalUnitsToString()
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}