diff options
| author | louis <louis.braun@gmx.de> | 2015-04-12 17:10:06 +0200 |
|---|---|---|
| committer | louis <louis.braun@gmx.de> | 2015-04-12 17:10:06 +0200 |
| commit | e8291960bd4b221ff7e55aa55fd45aaeb3c8d37a (patch) | |
| tree | 035edf9bbba62e22dd3dcf70ebde1d0effece1bd /libtemplate/templateview.c | |
| parent | 22da0fccd432610f6a2ca9ea1a1c5557fb12edec (diff) | |
| download | vdr-plugin-skindesigner-e8291960bd4b221ff7e55aa55fd45aaeb3c8d37a.tar.gz vdr-plugin-skindesigner-e8291960bd4b221ff7e55aa55fd45aaeb3c8d37a.tar.bz2 | |
added possibility for blinking images, texts, rectangles, ellipses and slopes
Diffstat (limited to 'libtemplate/templateview.c')
| -rw-r--r-- | libtemplate/templateview.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/libtemplate/templateview.c b/libtemplate/templateview.c index b7a4110..1117d10 100644 --- a/libtemplate/templateview.c +++ b/libtemplate/templateview.c @@ -744,6 +744,8 @@ void cTemplateView::SetFunctionDefinitions(void) { attributes.insert("fontsize"); attributes.insert("color"); attributes.insert("text"); + attributes.insert("animtype"); + attributes.insert("animfreq"); funcsAllowed.insert(pair< string, set<string> >(name, attributes)); name = "drawtextbox"; @@ -781,6 +783,8 @@ void cTemplateView::SetFunctionDefinitions(void) { attributes.insert("fontsize"); attributes.insert("color"); attributes.insert("text"); + attributes.insert("animtype"); + attributes.insert("animfreq"); funcsAllowed.insert(pair< string, set<string> >(name, attributes)); name = "drawimage"; @@ -799,6 +803,8 @@ void cTemplateView::SetFunctionDefinitions(void) { attributes.insert("align"); attributes.insert("valign"); attributes.insert("cache"); + attributes.insert("animtype"); + attributes.insert("animfreq"); funcsAllowed.insert(pair< string, set<string> >(name, attributes)); name = "drawrectangle"; @@ -813,6 +819,8 @@ void cTemplateView::SetFunctionDefinitions(void) { attributes.insert("width"); attributes.insert("height"); attributes.insert("color"); + attributes.insert("animtype"); + attributes.insert("animfreq"); funcsAllowed.insert(pair< string, set<string> >(name, attributes)); name = "drawellipse"; @@ -828,6 +836,8 @@ void cTemplateView::SetFunctionDefinitions(void) { attributes.insert("height"); attributes.insert("color"); attributes.insert("quadrant"); + attributes.insert("animtype"); + attributes.insert("animfreq"); funcsAllowed.insert(pair< string, set<string> >(name, attributes)); name = "drawslope"; @@ -843,6 +853,8 @@ void cTemplateView::SetFunctionDefinitions(void) { attributes.insert("height"); attributes.insert("color"); attributes.insert("type"); + attributes.insert("animtype"); + attributes.insert("animfreq"); funcsAllowed.insert(pair< string, set<string> >(name, attributes)); } |
