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 / rdcdlg.h < prev    next >
C/C++ Source or Header  |  1998-03-26  |  1KB  |  52 lines

  1. // OpenControlsDlg.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. #include "RDCView.h"
  14.  
  15. /////////////////////////////////////////////////////////////////////////////
  16. // COpenControlsDlg dialog
  17.  
  18. class COpenControlsDlg : public CDialog
  19. {
  20. // Construction
  21. public:
  22.     COpenControlsDlg(const CMDIBindDoc* pDocument,CWnd* pParent = NULL);   // constructor
  23.     CRDCView* m_pRDCView;
  24.     CMDIChildWnd* m_pMDIChild;
  25. // Dialog Data
  26.     //{{AFX_DATA(COpenControlsDlg)
  27.     enum { IDD = IDD_WINDOWLIST };
  28.     CString m_ColName;
  29.     //}}AFX_DATA
  30.  
  31.  
  32. // Overrides
  33.     // ClassWizard generated virtual function overrides
  34.     //{{AFX_VIRTUAL(COpenControlsDlg)
  35.     protected:
  36.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  37.     //}}AFX_VIRTUAL
  38.  
  39. // Implementation
  40. protected:
  41.  
  42.     // Generated message map functions
  43.     //{{AFX_MSG(COpenControlsDlg)
  44.     virtual BOOL OnInitDialog();
  45.     virtual void OnOK();
  46.     afx_msg void OnDropdownColumns();
  47.     //}}AFX_MSG
  48.     DECLARE_MESSAGE_MAP()
  49. private:
  50.     int m_CurrentSel; // current selection in Windows list
  51. };
  52.