SystemCaptionFont.h
上传用户:kssdz899
上传日期:2007-01-08
资源大小:79k
文件大小:1k
源码类别:

钩子与API截获

开发平台:

Visual C++

  1. #ifndef SYSTEMCAPTIONFONT_H
  2. #define SYSTEMCAPTIONFONT_H
  3. //////////////////////////////////////////////////////////////////////////////////////////
  4. // CSystemCaptionFont provides self-contained access to the default system caption font.
  5. //
  6. // operator() returns a CFont pointer to a font created on demand.
  7. //
  8. // The destructor deletes the font object attached to CSystemCaptionFont.
  9. //
  10. class CSystemCaptionFont
  11. {
  12. public:
  13. CSystemCaptionFont() {}
  14. ~CSystemCaptionFont();
  15. CFont* operator()();
  16. private:
  17. void CreateFont();
  18. CFont m_Font;
  19. };
  20. #endif