home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / database / mdibind / rdcview.h < prev    next >
C/C++ Source or Header  |  1998-03-26  |  2KB  |  68 lines

  1. // RDCView.h : interface of the CRDCView 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. #ifndef __RDCVIEW_H__
  14. #define __RDCVIEW_H__
  15.  
  16. class CRDCView : public CView
  17. {
  18. protected: // create from serialization only
  19.     CRDCView();
  20.     DECLARE_DYNCREATE(CRDCView)
  21.  
  22. // Attributes
  23. public:
  24.     CMDIBindDoc* GetDocument();
  25.     CRdc* m_pRDCCtl;    //the RDC control in that view
  26.  
  27.     // Operations
  28. public:
  29.     void Bind(CString &DSN,CString &Sql,CString &User,CString &Pw);
  30.  
  31. // Overrides
  32.     // ClassWizard generated virtual function overrides
  33.     //{{AFX_VIRTUAL(CRDCView)
  34.     public:
  35.     virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  36.     virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  37.     protected:
  38.     //}}AFX_VIRTUAL
  39.  
  40. // Implementation
  41. public:
  42.     virtual ~CRDCView();
  43. #ifdef _DEBUG
  44.     virtual void AssertValid() const;
  45.     virtual void Dump(CDumpContext& dc) const;
  46. #endif
  47.  
  48. protected:
  49.  
  50.  
  51. // Generated message map functions
  52. protected:
  53.     //{{AFX_MSG(CRDCView)
  54.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  55.     afx_msg void OnSize(UINT nType, int cx, int cy);
  56.     afx_msg void OnDestroy();
  57.     //}}AFX_MSG
  58.     DECLARE_MESSAGE_MAP()
  59. };
  60.  
  61. #ifndef _DEBUG  // debug version in RDCView.cpp
  62. inline CMDIBindDoc* CRDCView::GetDocument()
  63.    { return (CMDIBindDoc*)m_pDocument; }
  64. #endif
  65.  
  66. #endif
  67. /////////////////////////////////////////////////////////////////////////////
  68.