BASICBUT.H
上传用户:zhang8947
上传日期:2007-01-08
资源大小:1910k
文件大小:1k
源码类别:

多国语言处理

开发平台:

Visual C++

  1. // basicbut.h : header file
  2. //
  3. //按钮基类
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CBasicButton window
  6. class CBasicButton : public CBasicWin
  7. {
  8. // Construction
  9. public:
  10. CBasicButton();
  11. // Attributes
  12. private:
  13. // Operations
  14. public:
  15. //初始化按钮
  16. virtual BOOL InitButton(  LPCSTR  lpcsName ,  //窗口名称
  17. const RECT &rect , //窗口大小
  18. CWnd  *pParent , //父窗口
  19. UINT uWinID ) ; //窗口ID
  20. // Implementation
  21. public:
  22. virtual ~CBasicButton();
  23. protected:
  24. // Generated message map functions
  25. //{{AFX_MSG(CBasicButton)
  26. afx_msg void OnRButtonDown(UINT nFlags, CPoint point);
  27. afx_msg void OnRButtonUp(UINT nFlags, CPoint point);
  28. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  29. //}}AFX_MSG
  30. DECLARE_MESSAGE_MAP()
  31. };
  32. /////////////////////////////////////////////////////////////////////////////