#include <QString>
Go to the source code of this file.
◆ ExportLayoutFunctions
Enumerator |
---|
EXPORT_LAYOUT_ALL_PER_LINE | |
EXPORT_LAYOUT_ONE_PER_LINE | |
Definition at line 6 of file ExportLayoutFunctions.h.
6 {
9};
@ EXPORT_LAYOUT_ALL_PER_LINE
@ EXPORT_LAYOUT_ONE_PER_LINE
◆ exportLayoutFunctionsToString()
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}