home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic 4 Power Pack / Visual_Basic4_Power_Pack.bin / vb4files / ilib_vb / mainfrm.h_ / mainfrm.h
Encoding:
C/C++ Source or Header  |  1996-11-20  |  726 b   |  31 lines

  1. // mainfrm.h : interface of the CMainFrame class
  2. //
  3. #ifndef __AFXEXT_H__
  4. #include <afxext.h>         // for access to CToolBar and CStatusBar
  5. #endif
  6.  
  7. class CMainFrame : public CMDIFrameWnd
  8. {
  9.     DECLARE_DYNAMIC(CMainFrame)
  10. public:
  11.     CMainFrame();
  12.  
  13. // Implementation
  14. public:
  15.     virtual ~CMainFrame();
  16.  
  17. protected:  // control bar embedded members
  18.     CStatusBar  m_wndStatusBar;
  19.  
  20. // Generated message map functions
  21. protected:
  22.     //{{AFX_MSG(CMainFrame)
  23.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  24.     afx_msg void OnPaletteChanged(CWnd* pFocusWnd);
  25.     afx_msg BOOL OnQueryNewPalette();
  26.     //}}AFX_MSG
  27.     DECLARE_MESSAGE_MAP()
  28. };
  29.  
  30. /////////////////////////////////////////////////////////////////////////////
  31.