/* * $Id: theme.h,v 1.1.1.1 2004/11/19 16:45:31 lordjaxom Exp $ */ #ifndef VDR_TEXT2SKIN_THEME_H #define VDR_TEXT2SKIN_THEME_H #include "common.h" #include "file.h" #include #include class cText2SkinTheme: public cText2SkinFile { private: cTheme mTheme; std::map mMap; protected: bool Parse(const char *Text); public: cText2SkinTheme(const char *Skin); virtual ~cText2SkinTheme(); cTheme *Theme(void) { return &mTheme; } tColor Color(const std::string &Name); }; inline tColor cText2SkinTheme::Color(const std::string &Name) { if (mMap.find(Name) != mMap.end()) return mTheme.Color(mMap[Name]); else return 0x00000000; } #endif // VDR_TEXT2SKIN_THEME_H