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

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_DISPATCH
  58. DECLARE_DISPATCH_MAP()
  59. DECLARE_INTERFACE_MAP()
  60. };
  61. /////////////////////////////////////////////////////////////////////////////