CLIKPNT.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:2k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // ClikPnt.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CAutoClickPoint command target
  14. class CAutoClickPoint : public CCmdTarget
  15. {
  16. DECLARE_DYNCREATE(CAutoClickPoint)
  17. CAutoClickPoint();           // protected constructor used by dynamic creation
  18. // Attributes
  19. public:
  20. // Operations
  21. public:
  22. CPoint GetClickPoint() { return CPoint(m_x, m_y); }
  23. void SetClickPoint(CPoint point) { m_x = (short)point.x; m_y = (short)point.y; }
  24. // Overrides
  25. // ClassWizard generated virtual function overrides
  26. //{{AFX_VIRTUAL(CAutoClickPoint)
  27. public:
  28. virtual void OnFinalRelease();
  29. //}}AFX_VIRTUAL
  30. // Implementation
  31. protected:
  32. virtual ~CAutoClickPoint();
  33. // Generated message map functions
  34. //{{AFX_MSG(CAutoClickPoint)
  35. // NOTE - the ClassWizard will add and remove member functions here.
  36. //}}AFX_MSG
  37. public:
  38. DECLARE_MESSAGE_MAP()
  39. // Generated OLE dispatch map functions
  40. //{{AFX_DISPATCH(CAutoClickPoint)
  41. short m_x;
  42. short m_y;
  43. //}}AFX_DISPATCH
  44. DECLARE_DISPATCH_MAP()
  45. DECLARE_INTERFACE_MAP()
  46. };
  47. /////////////////////////////////////////////////////////////////////////////