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