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

Windows编程

开发平台:

Visual C++

  1. // catalvw.h : interface of the CCatalogView 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. /////////////////////////////////////////////////////////////////////////////
  13. class CTables;
  14. class CColumns;
  15. class CCatalogView : public CRecordView
  16. {
  17. protected: // create from serialization only
  18. CCatalogView();
  19. DECLARE_DYNCREATE(CCatalogView)
  20. public:
  21. //{{AFX_DATA(CCatalogView)
  22. enum { IDD = IDD_CATALOG_FORM };
  23. CListBox    m_lbColumns;
  24. CTables* m_pSet;
  25. //}}AFX_DATA
  26. // Attributes
  27. public:
  28. CCatalogDoc* GetDocument();
  29. CColumns m_Columns;
  30. // Operations
  31. public:
  32. virtual CRecordset* OnGetRecordset();
  33. virtual BOOL OnMove(UINT nIDMoveCommand);
  34. void FillColumnsListBox();
  35. // Implementation
  36. public:
  37. virtual ~CCatalogView();
  38. #ifdef _DEBUG
  39. virtual void AssertValid() const;
  40. virtual void Dump(CDumpContext& dc) const;
  41. #endif
  42. protected:
  43. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  44. virtual void OnInitialUpdate(); // called first time after construct
  45. // Generated message map functions
  46. protected:
  47. //{{AFX_MSG(CCatalogView)
  48. afx_msg void OnUpdateAppExit(CCmdUI* pCmdUI);
  49. //}}AFX_MSG
  50. DECLARE_MESSAGE_MAP()
  51. };
  52. #ifndef _DEBUG  // debug version in catalvw.cpp
  53. inline CCatalogDoc* CCatalogView::GetDocument()
  54.    { return (CCatalogDoc*)m_pDocument; }
  55. #endif
  56. /////////////////////////////////////////////////////////////////////////////