From e8291960bd4b221ff7e55aa55fd45aaeb3c8d37a Mon Sep 17 00:00:00 2001 From: louis Date: Sun, 12 Apr 2015 17:10:06 +0200 Subject: added possibility for blinking images, texts, rectangles, ellipses and slopes --- libtemplate/templatefunction.h | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'libtemplate/templatefunction.h') 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); }; -- cgit v1.2.3