summaryrefslogtreecommitdiff
path: root/libtemplate/templatefunction.h
diff options
context:
space:
mode:
authorlouis <louis.braun@gmx.de>2015-04-12 17:10:06 +0200
committerlouis <louis.braun@gmx.de>2015-04-12 17:10:06 +0200
commite8291960bd4b221ff7e55aa55fd45aaeb3c8d37a (patch)
tree035edf9bbba62e22dd3dcf70ebde1d0effece1bd /libtemplate/templatefunction.h
parent22da0fccd432610f6a2ca9ea1a1c5557fb12edec (diff)
downloadvdr-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/templatefunction.h')
-rw-r--r--libtemplate/templatefunction.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/libtemplate/templatefunction.h b/libtemplate/templatefunction.h
index fdc66b0..c781568 100644
--- a/libtemplate/templatefunction.h
+++ b/libtemplate/templatefunction.h
@@ -86,6 +86,8 @@ enum eParamType {
ptCache,
ptDeterminateFont,
ptDirection,
+ ptAnimType,
+ ptAnimFreq,
ptNone
};
@@ -98,6 +100,12 @@ enum eImageType {
itImage
};
+enum eAnimType {
+ atNone,
+ atBlink,
+ atAnimated
+};
+
enum eFloatType {
flNone,
flTopLeft,
@@ -168,6 +176,7 @@ protected:
bool SetDetached(string value);
bool SetBackground(string value);
bool SetDirection(string value);
+ bool SetAnimType(string value);
void SetDebugGrid(string value);
void ParseStringParameters(void);
void ParseNumericalParameters(void);
@@ -232,6 +241,7 @@ public:
bool ParsedCompletely(void) { return parsedCompletely; };
bool DoExecute(void);
bool Updated(void) { return updated; };
+ bool IsAnimated(void);
//Debug
void Debug(void);
};