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

Windows编程

开发平台:

Visual C++

  1. // ptarryvw.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 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. // CPointArrayView form view
  14. #ifndef __AFXEXT_H__
  15. #include <afxext.h>
  16. #endif
  17. class CPointArrayView : public CFormView
  18. {
  19. public:
  20. CPointArrayView();           // protected constructor used by dynamic creation
  21. DECLARE_DYNCREATE(CPointArrayView)
  22. // Attributes
  23. public:
  24. CCollectDoc* GetDocument();
  25. // Overrides
  26. public:
  27. void OnInitialUpdate();
  28. // Form Data
  29. public:
  30. //{{AFX_DATA(CPointArrayView)
  31. enum { IDD = IDD_POINT_ARRAY };
  32. CListBox    m_ctlList;
  33. int     m_x;
  34. int     m_y;
  35. //}}AFX_DATA
  36. // Implementation
  37. protected:
  38. void AddPointToListBox(CPoint pt, int nSel = -1);
  39. // Overrides
  40. // ClassWizard generate virtual function overrides
  41. //{{AFX_VIRTUAL(CPointArrayView)
  42. protected:
  43. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  44. //}}AFX_VIRTUAL
  45. // Implementation
  46. protected:
  47. virtual ~CPointArrayView();
  48. #ifdef _DEBUG
  49. virtual void AssertValid() const;
  50. virtual void Dump(CDumpContext& dc) const;
  51. #endif
  52. // Generated message map functions
  53. //{{AFX_MSG(CPointArrayView)
  54. afx_msg void OnAdd();
  55. afx_msg void OnUpdate();
  56. afx_msg void OnRemove();
  57. afx_msg void OnRemoveAll();
  58. afx_msg void OnSelChangeList();
  59. //}}AFX_MSG
  60. DECLARE_MESSAGE_MAP()
  61. };
  62. #ifndef _DEBUG
  63. inline CCollectDoc* CPointArrayView::GetDocument()
  64.    { return (CCollectDoc*)m_pDocument; }
  65. #endif
  66. /////////////////////////////////////////////////////////////////////////////