home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c480 / 19.ddi / MFC / SAMPLES / VBCHART / MAINFRM.H_ / MAINFRM.H
Encoding:
C/C++ Source or Header  |  1993-02-08  |  1.3 KB  |  50 lines

  1. // mainfrm.h : interface of the CMainFrame class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992 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 Microsoft
  9. // QuickHelp and/or WinHelp documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13.  
  14.  
  15. class CMainFrame : public CMDIFrameWnd
  16. {
  17.     DECLARE_DYNAMIC(CMainFrame)
  18. public:
  19.     CMainFrame();
  20.  
  21. // Attributes
  22. public:
  23.  
  24. // Operations
  25. public:
  26.  
  27. // Implementation
  28. public:
  29.     virtual ~CMainFrame();
  30. #ifdef _DEBUG
  31.     virtual void AssertValid() const;
  32.     virtual void Dump(CDumpContext& dc) const;
  33. #endif
  34.  
  35. protected:  // control bar embedded members
  36.     CToolBar    m_wndToolBar;
  37.     CComboBox   m_cboxDrop;     // drop list in the toolbar
  38.     CFont       m_fontDrop;     // smaller font for drop-down list
  39.     CStatusBar  m_wndStatusBar;
  40.  
  41. // Generated message map functions
  42. protected:
  43.     //{{AFX_MSG(CMainFrame)
  44.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  45.     //}}AFX_MSG
  46.     DECLARE_MESSAGE_MAP()
  47. };
  48.  
  49. /////////////////////////////////////////////////////////////////////////////
  50.