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

Windows编程

开发平台:

Visual C++

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