Engauge Digitizer  2
Enumerations | Functions
ExportPointsSelectionFunctions.h File Reference
#include <QString>
Include dependency graph for ExportPointsSelectionFunctions.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Enumerations

enum  ExportPointsSelectionFunctions {
  EXPORT_POINTS_SELECTION_FUNCTIONS_INTERPOLATE_ALL_CURVES, EXPORT_POINTS_SELECTION_FUNCTIONS_INTERPOLATE_FIRST_CURVE, EXPORT_POINTS_SELECTION_FUNCTIONS_INTERPOLATE_PERIODIC, EXPORT_POINTS_SELECTION_FUNCTIONS_RAW,
  EXPORT_POINTS_SELECTION_FUNCTIONS_INTERPOLATE_GRID_LINES
}
 

Functions

QString exportPointsSelectionFunctionsToString (ExportPointsSelectionFunctions exportPointsSelectionFunctions)
 

Enumeration Type Documentation

◆ ExportPointsSelectionFunctions

Function Documentation

◆ exportPointsSelectionFunctionsToString()

QString exportPointsSelectionFunctionsToString ( ExportPointsSelectionFunctions  exportPointsSelectionFunctions)

Definition at line 10 of file ExportPointsSelectionFunctions.cpp.

11 {
12  QString rtn;
13 
14  switch (exportPointsSelectionFunctions) {
16  rtn = QObject::tr ("InterpolateAllCurves");
17  break;
18 
20  rtn = QObject::tr ("InterpolateFirstCurve");
21  break;
22 
24  rtn = QObject::tr ("InterpolatePeriodic");
25  break;
26 
28  rtn = QObject::tr ("Raw");
29  break;
30 
31  default:
32  rtn = QObject::tr ("Unknown");
33  break;
34  }
35 
36  return rtn;
37 }