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

Windows编程

开发平台:

Visual C++

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