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

Go to the source code of this file.

Enumerations

enum  ExportLayoutFunctions { EXPORT_LAYOUT_ALL_PER_LINE , EXPORT_LAYOUT_ONE_PER_LINE }

Functions

QString exportLayoutFunctionsToString (ExportLayoutFunctions exportLayoutFunctions)

Enumeration Type Documentation

◆ ExportLayoutFunctions

Enumerator
EXPORT_LAYOUT_ALL_PER_LINE 
EXPORT_LAYOUT_ONE_PER_LINE 

Definition at line 6 of file ExportLayoutFunctions.h.

Function Documentation

◆ exportLayoutFunctionsToString()

QString exportLayoutFunctionsToString ( ExportLayoutFunctions exportLayoutFunctions)
extern

Definition at line 10 of file ExportLayoutFunctions.cpp.

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