WndShadow.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
源码类别:

模拟服务器

开发平台:

C/C++

  1. /*****************************************************************************************
  2. // 阴影窗口
  3. // Copyright : Kingsoft 2002
  4. // Author :   Wooy(Wu yue)
  5. // CreateTime: 2003-4-5
  6. ------------------------------------------------------------------------------------------
  7. *****************************************************************************************/
  8. #pragma once
  9. #include "WndWindow.h"
  10. class KWndShadow : public KWndWindow
  11. {
  12. public:
  13. virtual int Init(KIniFile* pIniFile, const char* pSection);//初始化
  14. virtual int PtInWindow(int x, int y); //判断一个点是否在窗口范围内,传入的是绝对坐标
  15. void SetColor(unsigned int uColor);
  16. void Clone(KWndShadow* pCopy);
  17. KWndShadow() { m_uColor = 0; }
  18. protected:
  19. void PaintWindow();
  20. private:
  21. unsigned int m_uColor;
  22. };