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

Windows编程

开发平台:

Visual C++

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