diff options
author | mrwastl <mrwastl@users.sourceforge.net> | 2010-04-17 19:16:26 +0200 |
---|---|---|
committer | mrwastl <mrwastl@users.sourceforge.net> | 2010-04-17 19:16:26 +0200 |
commit | 68ac6628a31cb1472275b5282c5cf9a971d9bddd (patch) | |
tree | 0ef788b563efab6688b0381cedd43baaefbc66cc /glcdskin/config.c | |
parent | 1011961a8af0615ee25b79d2bbd7e6820b851556 (diff) | |
download | graphlcd-base-68ac6628a31cb1472275b5282c5cf9a971d9bddd.tar.gz graphlcd-base-68ac6628a31cb1472275b5282c5cf9a971d9bddd.tar.bz2 |
backport of skin-support from 0.2.x to 0.1.x, changes for gcc 4.3 conformity
Diffstat (limited to 'glcdskin/config.c')
-rw-r--r-- | glcdskin/config.c | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/glcdskin/config.c b/glcdskin/config.c new file mode 100644 index 0000000..518218e --- /dev/null +++ b/glcdskin/config.c @@ -0,0 +1,42 @@ +#include "config.h" +#include "type.h" + +namespace GLCD +{ + +std::string cSkinConfig::SkinPath(void) +{ + return "."; +} + +std::string cSkinConfig::FontPath(void) +{ + return "."; +} + +std::string cSkinConfig::CharSet(void) +{ + return "iso-8859-15"; +} + +std::string cSkinConfig::Translate(const std::string & Text) +{ + return Text; +} + +cType cSkinConfig::GetToken(const tSkinToken & Token) +{ + return ""; +} + +int cSkinConfig::GetTokenId(const std::string & Name) +{ + return 0; +} + +int cSkinConfig::GetTabPosition(int Index, int MaxWidth, const cFont & Font) +{ + return 0; +} + +} // end of namespace |