diff options
| author | louis <louis.braun@gmx.de> | 2015-03-28 11:57:51 +0100 |
|---|---|---|
| committer | louis <louis.braun@gmx.de> | 2015-03-28 11:57:51 +0100 |
| commit | 762e2c15076d211e71eb9dee0e4956dbd8767fce (patch) | |
| tree | 41bbc078335c4ecdd3e6b13dd77f4479f506ebd8 /libtemplate/templatepixmap.h | |
| parent | fcf90375fa516455cf7bda4bc791c814b5062d69 (diff) | |
| download | vdr-plugin-skindesigner-762e2c15076d211e71eb9dee0e4956dbd8767fce.tar.gz vdr-plugin-skindesigner-762e2c15076d211e71eb9dee0e4956dbd8767fce.tar.bz2 | |
added possibility to detach viewelements
Diffstat (limited to 'libtemplate/templatepixmap.h')
| -rw-r--r-- | libtemplate/templatepixmap.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libtemplate/templatepixmap.h b/libtemplate/templatepixmap.h index 17bf7d3..a5d8f83 100644 --- a/libtemplate/templatepixmap.h +++ b/libtemplate/templatepixmap.h @@ -21,6 +21,7 @@ using namespace std; class cTemplatePixmap { protected: bool scrolling; + bool background; cTemplateFunction *parameters; vector<cTemplateFunction*> functions; vector<cTemplateFunction*>::iterator funcIt; @@ -76,6 +77,7 @@ public: bool DoExecute(void) { return parameters->DoExecute(); }; bool DoDebug(void) { return parameters->DoDebug(); }; bool Ready(void); + bool BackgroundArea(void) { return background; }; //Traverse Functions void InitIterator(void); cTemplateFunction *GetNextFunction(void); |
