GradientCaptionBackground.h
上传用户:zhoushen
上传日期:2022-06-15
资源大小:84k
文件大小:1k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. #ifndef GRADIENT_CAPTION_H
  2. #define GRADIENT_CAPTION_H
  3. /////////////////////////////////
  4. // Class for painting a windows caption background as
  5. // a shaded gradient.
  6. //
  7. // Used by custom caption class CCaption and its derived classes.
  8. //
  9. //
  10. // Author: Dave Lorde (dlorde@cix.compulink.co.uk)
  11. //
  12. //          Copyright January 2000
  13. //
  14. #include "CaptionBackground.h"
  15. class AFX_EXT_CLASS CGradientCaptionBackground : public CCaptionBackground
  16. {
  17. public:
  18. void Paint(CDC* pDC, CSize paintArea, BOOL active);
  19. };
  20. #endif