diff options
author | mrwastl <mrwastl@users.sourceforge.net> | 2010-06-18 22:59:14 +0200 |
---|---|---|
committer | mrwastl <mrwastl@users.sourceforge.net> | 2010-06-18 22:59:14 +0200 |
commit | f5f1d102c99ef7b3f1e0aec6463a8c17d3262bad (patch) | |
tree | 8467e6ee4a260ff1c2a033838f72a5a4a8ea088b /glcdskin/config.h | |
parent | 4a7aeebfab185320694c88d6d3ff5a1537f94660 (diff) | |
download | graphlcd-base-f5f1d102c99ef7b3f1e0aec6463a8c17d3262bad.tar.gz graphlcd-base-f5f1d102c99ef7b3f1e0aec6463a8c17d3262bad.tar.bz2 |
text-object: added support for alternative text / alternative condition; bug fixes: annoying update problems should now be fixed; bug fix in brightness update detection; overloadable method for getting a timestamp that is compliant to VDR timestamp (cSkinConfig::Now(), will be overloaded in vdr-plugin-graphlcd to return the value of cTimeMs::Now()); serdisp-driver: call rotate only if UpsideDown is set
Diffstat (limited to 'glcdskin/config.h')
-rw-r--r-- | glcdskin/config.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/glcdskin/config.h b/glcdskin/config.h index f6c8af9..ce68513 100644 --- a/glcdskin/config.h +++ b/glcdskin/config.h @@ -15,6 +15,7 @@ #include <string> +#include <stdint.h> namespace GLCD { @@ -35,6 +36,7 @@ public: virtual cType GetToken(const tSkinToken & Token); virtual int GetTokenId(const std::string & Name); virtual int GetTabPosition(int Index, int MaxWidth, const cFont & Font); + virtual uint64_t Now(void); }; } // end of namespace |