SlideBar.h
上传用户:oldpeter23
上传日期:2013-01-09
资源大小:1111k
文件大小:1k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

  1. //NetTalk
  2. /*------------------------------------------------------------------------------*
  3.  =============================
  4.    模块名称: SlideBar.h
  5.  =============================
  6.  
  7.  [版权]
  8.  
  9.    2000-2002  115软件工厂  版权所有
  10.                                               
  11. *------------------------------------------------------------------------------*/
  12. #ifndef _SLIDEBAR_H_
  13. #define _SLIDEBAR_H_
  14. #define WM_SLD WM_USER+100
  15. class CSlideBar:public CWndX
  16. {
  17. public:
  18. BOOL Create(RECT &rc,HWND hParent,UINT uID);
  19. int GetPos();
  20. void SetPos(int iPos);
  21. virtual  ~CSlideBar();
  22. CSlideBar();
  23. protected:
  24. virtual void OnLButtonDown(UINT nFlags, POINT &point);
  25. virtual void OnPaint();
  26. virtual LRESULT WndProc(UINT uMsg, WPARAM wParam, LPARAM lParam);
  27. void MakeBmp(HDC hdc);
  28. int m_iID;
  29. int m_iPos;
  30. HBITMAP m_hbmpFace1;
  31. HBITMAP m_hbmpFace2;
  32. };
  33. #endif