skinfont.h 316 B

1234567891011121314151617
  1. #ifndef _SKINFONT_H
  2. #define _SKINFONT_H
  3. #include <api/skin/xmlobject.h>
  4. class SkinFont : public XmlObjectI
  5. {
  6. public:
  7. SkinFont();
  8. ~SkinFont();
  9. void installFont(const wchar_t *filename, const wchar_t *path);
  10. virtual int setXmlOption(const wchar_t *name, const wchar_t *val);
  11. private:
  12. StringW tempFn;
  13. };
  14. #endif