Engauge Digitizer  2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Enumerations | Functions
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

Enumerator
EXPORT_POINTS_INTERVAL_UNITS_GRAPH 
EXPORT_POINTS_INTERVAL_UNITS_SCREEN 

Definition at line 12 of file ExportPointsIntervalUnits.h.

Function Documentation

QString exportPointsIntervalUnitsToString ( ExportPointsIntervalUnits  exportPointsIntervalUnits)

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 }