Engauge Digitizer  2
Functions
BackgroundImage.cpp File Reference
#include "BackgroundImage.h"
Include dependency graph for BackgroundImage.cpp:

Go to the source code of this file.

Functions

QString backgroundImageToString (BackgroundImage backgroundImage)
 

Function Documentation

◆ backgroundImageToString()

QString backgroundImageToString ( BackgroundImage  backgroundImage)

Definition at line 9 of file BackgroundImage.cpp.

10 {
11  QString rtn;
12 
13  switch (backgroundImage) {
15  rtn = "None";
16  break;
17 
19  rtn = "Original";
20  break;
21 
23  rtn = "Filtered";
24  break;
25  }
26 
27  return rtn;
28 }