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

Windows编程

开发平台:

Visual C++

  1. // samplvw.h : interface of the CDaoListView class
  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. class CDaoListView : public CListView
  13. {
  14. protected: // create from serialization only
  15. CDaoListView();
  16. DECLARE_DYNCREATE(CDaoListView)
  17. // Attributes
  18. public:
  19. CDaoViewDoc* GetDocument();
  20. CDaoDatabase* m_pDB;
  21. // Operations
  22. public:
  23. void EraseList();
  24. void ShowDatabase();
  25. void ShowIndexes(LPCTSTR strTableName,LPCTSTR strIndexName = NULL);
  26. void ShowRelations(LPCTSTR strRelationName = NULL);
  27. void ShowTableSchema(LPCTSTR strTableDefName = NULL);
  28. void ShowTableData(LPCTSTR strTableName);
  29. void ShowQuerySchema(LPCTSTR strQueryDefName = NULL);
  30. void RunQueryDef(LPCTSTR strQueryDefName);
  31. void ShowFields(LPCTSTR strTableName,LPCTSTR strFieldName = NULL);
  32. protected:
  33. void ShowDatabaseInfo(int nItem,CDaoDatabaseInfo& Info);
  34. void ShowIndexInfo(int nItem,CDaoIndexInfo& Info);
  35. void ShowRelationInfo(int nItem,CDaoRelationInfo& Info);
  36. void ShowTableDefInfo(int nItem,CDaoTableDefInfo& tInfo);
  37. void ShowQueryDefInfo(int nItem,CDaoQueryDefInfo& qdInfo);
  38. void ShowFieldInfo(int nItem,CDaoFieldInfo& fInfo);
  39. void DisplayColumnHeadings(UINT nStringID);
  40. void AdjustColumnWidths();
  41. void AddItem(int nItem,int nSubItem,LPCTSTR strItem);
  42. LPCTSTR CrackBOOL(BOOL bFlag);
  43. LPCTSTR CrackFieldType(short sType);
  44. LPCTSTR CrackQueryDefType(short sType);
  45. CString CrackVARIANT(COleVariant& var);
  46. int m_nColumns;
  47. BOOL m_bVertical;
  48. // Overrides
  49. // ClassWizard generated virtual function overrides
  50. //{{AFX_VIRTUAL(CDaoListView)
  51. public:
  52. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  53. protected:
  54. //}}AFX_VIRTUAL
  55. // Implementation
  56. public:
  57. virtual ~CDaoListView();
  58. #ifdef _DEBUG
  59. virtual void AssertValid() const;
  60. virtual void Dump(CDumpContext& dc) const;
  61. #endif
  62. protected:
  63. // Generated message map functions
  64. protected:
  65. //{{AFX_MSG(CDaoListView)
  66. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  67. //}}AFX_MSG
  68. DECLARE_MESSAGE_MAP()
  69. };
  70. /*
  71. #ifndef _DEBUG  // debug version in samplvw.cpp
  72. inline CSampleDoc* CDaoListView::GetDocument()
  73.    { return (CSampleDoc*)m_pDocument; }
  74. #endif
  75. */