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

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. // DUAL_SUPPORT_START
  47. //    add declaration of IDualAutoClickPoint implementation
  48. //    You need one entry here for each entry in the
  49. //    interface statement of the ODL, plus the entries for a
  50. //    dispatch interface. The BEGIN_DUAL_INTERFACE_PART
  51. //    macro in mfcdual.h automatically generates the IDispatch
  52. //    entries for you.
  53. //    Each entry with the "propput" attribute needs a function
  54. //    named "put_<property name>". Each entry with the "propget"
  55. //    attribute needs a function named "get_<property name>".
  56. //    You can pull these function prototypes from the header file
  57. //    generated by MKTYPLIB.
  58. BEGIN_DUAL_INTERFACE_PART(DualAutoClickPoint, IDualAutoClickPoint)
  59. STDMETHOD(put_x)(THIS_ short newX);
  60. STDMETHOD(get_x)(THIS_ short FAR* retval);
  61. STDMETHOD(put_y)(THIS_ short newY);
  62. STDMETHOD(get_y)(THIS_ short FAR* retval);
  63. END_DUAL_INTERFACE_PART(DualAutoClickPoint)
  64. //     add declaration of ISupportErrorInfo implementation
  65. //     to indicate we support the OLE Automation error object
  66. DECLARE_DUAL_ERRORINFO()
  67. // DUAL_SUPPORT_END
  68. };
  69. /////////////////////////////////////////////////////////////////////////////