home *** CD-ROM | disk | FTP | other *** search
/ Team Palmtops 7 / Palmtops_numero07.iso / WinCE / SDKWindowsCE / HandHeldPCPro30 / sdk.exe / Jupiter SDK / data1.cab / MFC_Samples / banner / mainfrm.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-02-19  |  1.4 KB  |  58 lines

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. #include "ZoomList.h"
  6.  
  7. #if !defined(AFX_MAINFRM_H__ACA52A9F_9CE1_11D1_87E0_006097BA8D75__INCLUDED_)
  8. #define AFX_MAINFRM_H__ACA52A9F_9CE1_11D1_87E0_006097BA8D75__INCLUDED_
  9.  
  10. #if _MSC_VER >= 1000
  11. #pragma once
  12. #endif // _MSC_VER >= 1000
  13.  
  14. class CMainFrame : public CFrameWnd
  15. {
  16. protected: // create from serialization only
  17.     CMainFrame();
  18.     DECLARE_DYNCREATE(CMainFrame)
  19.  
  20. // Attributes
  21. public:
  22.     CZoomList m_wndZoomList;
  23.     CCeCommandBar m_wndCommandBar;
  24.  
  25. // Operations
  26. public:
  27.     void FillZoomDropdown();
  28.  
  29. // Overrides
  30.     // ClassWizard generated virtual function overrides
  31.     //{{AFX_VIRTUAL(CMainFrame)
  32.     virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  33.     //}}AFX_VIRTUAL
  34.  
  35. // Implementation
  36. public:
  37.     virtual ~CMainFrame();
  38. #ifdef _DEBUG
  39.     virtual void AssertValid() const;
  40.     virtual void Dump(CDumpContext& dc) const;
  41. #endif
  42.  
  43. // Generated message map functions
  44. protected:
  45.     //{{AFX_MSG(CMainFrame)
  46.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  47.     afx_msg void OnDestroy();
  48.     //}}AFX_MSG
  49.     DECLARE_MESSAGE_MAP()
  50. };
  51.  
  52. /////////////////////////////////////////////////////////////////////////////
  53.  
  54. //{{AFX_INSERT_LOCATION}}
  55. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  56.  
  57. #endif // !defined(AFX_MAINFRM_H__ACA52A9F_9CE1_11D1_87E0_006097BA8D75__INCLUDED_)
  58.