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

Windows编程

开发平台:

Visual C++

  1. // typlstvw.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. // CTypedPtrListView form view
  14. #ifndef __AFXEXT_H__
  15. #include <afxext.h>
  16. #endif
  17. class CTypedPtrListView : public CFormView
  18. {
  19. public:
  20. CTypedPtrListView();           // protected constructor used by dynamic creation
  21. DECLARE_DYNCREATE(CTypedPtrListView)
  22. // Attributes
  23. public:
  24. CCollectDoc* GetDocument();
  25. // Overrides
  26. public:
  27. void OnInitialUpdate();
  28. // Form Data
  29. public:
  30. //{{AFX_DATA(CTypedPtrListView)
  31. enum { IDD = IDD_TYPED_PTR_LIST };
  32. CListBox    m_ctlList;
  33. float   m_float;
  34. int     m_int;
  35. CString m_str;
  36. //}}AFX_DATA
  37. // Implementation
  38. protected:
  39. CMyStruct* FindMyStruct(int& nSel);
  40. void AddMyStructToListBox(CMyStruct* pMyStruct, int nSel = -1);
  41. // Overrides
  42. // ClassWizard generate virtual function overrides
  43. //{{AFX_VIRTUAL(CTypedPtrListView)
  44. protected:
  45. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  46. //}}AFX_VIRTUAL
  47. // Implementation
  48. protected:
  49. virtual ~CTypedPtrListView();
  50. #ifdef _DEBUG
  51. virtual void AssertValid() const;
  52. virtual void Dump(CDumpContext& dc) const;
  53. #endif
  54. // Generated message map functions
  55. //{{AFX_MSG(CTypedPtrListView)
  56. afx_msg void OnAdd();
  57. afx_msg void OnUpdate();
  58. afx_msg void OnRemove();
  59. afx_msg void OnRemoveAll();
  60. afx_msg void OnSelChangeList();
  61. afx_msg void OnInsertBefore();
  62. //}}AFX_MSG
  63. DECLARE_MESSAGE_MAP()
  64. };
  65. #ifndef _DEBUG
  66. inline CCollectDoc* CTypedPtrListView::GetDocument()
  67.    { return (CCollectDoc*)m_pDocument; }
  68. #endif
  69. /////////////////////////////////////////////////////////////////////////////