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

Windows编程

开发平台:

Visual C++

  1. // AClikDoc.h : interface of the CAutoClickDoc class
  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. class CAutoClickDoc : public CDocument
  14. {
  15. protected: // create from serialization only
  16. CAutoClickDoc();
  17. DECLARE_DYNCREATE(CAutoClickDoc)
  18. // Attributes
  19. public:
  20. CPoint m_pt;
  21. // Operations
  22. public:
  23. // Overrides
  24. // ClassWizard generated virtual function overrides
  25. //{{AFX_VIRTUAL(CAutoClickDoc)
  26. public:
  27. virtual BOOL OnNewDocument();
  28. virtual void Serialize(CArchive& ar);
  29. //}}AFX_VIRTUAL
  30. // Implementation
  31. public:
  32. virtual ~CAutoClickDoc();
  33. #ifdef _DEBUG
  34. virtual void AssertValid() const;
  35. virtual void Dump(CDumpContext& dc) const;
  36. #endif
  37. protected:
  38. // Generated message map functions
  39. protected:
  40. //{{AFX_MSG(CAutoClickDoc)
  41. afx_msg void OnEditChangetext();
  42. //}}AFX_MSG
  43. DECLARE_MESSAGE_MAP()
  44. // Generated OLE dispatch map functions
  45. public:
  46. //{{AFX_DISPATCH(CAutoClickDoc)
  47. CString m_str;
  48. afx_msg short GetX();
  49. afx_msg void SetX(short nNewValue);
  50. afx_msg short GetY();
  51. afx_msg void SetY(short nNewValue);
  52. afx_msg LPDISPATCH GetPosition();
  53. afx_msg void SetPosition(LPDISPATCH newValue);
  54. afx_msg void Refresh();
  55. afx_msg void SetAllProps(short x, short y, LPCTSTR text);
  56. afx_msg void ShowWindow();
  57. afx_msg void TestErrorHandler(short wCode);
  58. //}}AFX_DISPATCH
  59. DECLARE_DISPATCH_MAP()
  60. DECLARE_INTERFACE_MAP()
  61. // DUAL_SUPPORT_START
  62. //    add declaration of IDualAClick implementation
  63. //    You need one entry here for each entry in the
  64. //    interface statement of the ODL, plus the entries for a
  65. //    dispatch interface. The BEGIN_DUAL_INTERFACE_PART
  66. //    macro in mfcdual.h automatically generates the IDispatch
  67. //    entries for you.
  68. //    Each entry with the "propput" attribute needs a function
  69. //    named "put_<property name>". Each entry with the "propget"
  70. //    attribute needs a function named "get_<property name>".
  71. //    You can pull these function prototypes from the header file
  72. //    generated by MKTYPLIB.
  73. BEGIN_DUAL_INTERFACE_PART(DualAClick, IDualAClick)
  74. STDMETHOD(put_text)(THIS_ BSTR newText);
  75. STDMETHOD(get_text)(THIS_ BSTR FAR* retval);
  76. STDMETHOD(put_x)(THIS_ short newX);
  77. STDMETHOD(get_x)(THIS_ short FAR* retval);
  78. STDMETHOD(put_y)(THIS_ short newY);
  79. STDMETHOD(get_y)(THIS_ short FAR* retval);
  80. STDMETHOD(put_Position)(THIS_ IDualAutoClickPoint FAR* newPosition);
  81. STDMETHOD(get_Position)(THIS_ IDualAutoClickPoint FAR* FAR* retval);
  82. STDMETHOD(putref_Position)(THIS_ IDualAutoClickPoint FAR* newPosition);
  83. STDMETHOD(RefreshWindow)(THIS);
  84. STDMETHOD(SetAllProps)(THIS_ short x, short y, BSTR text);
  85. STDMETHOD(ShowWindow)(THIS);
  86. STDMETHOD(TestError)(THIS_ short wCode);
  87. END_DUAL_INTERFACE_PART(DualAClick)
  88. //     add declaration of ISupportErrorInfo implementation
  89. //     to indicate we support the OLE Automation error object
  90. DECLARE_DUAL_ERRORINFO()
  91. // DUAL_SUPPORT_END
  92. };
  93. /////////////////////////////////////////////////////////////////////////////