home *** CD-ROM | disk | FTP | other *** search
/ The Net: Ultimate Internet Guide / WWLCD1.ISO / mac / SiteBldr / AMOVIE / SDK / _SETUP / COMMON.Z / mainfrm.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-04-18  |  1.4 KB  |  54 lines

  1. // This code and information is provided "as is" without warranty of
  2. // any kind, either expressed or implied, including but not limited to
  3. // the implied warranties of merchantability and/or fitness for a
  4. // particular purpose.
  5.  
  6. // Copyright (C) 1996 Intel corporation.  All rights reserved.
  7.  
  8. // mainfrm.h : interface of the CMainFrame class
  9. //
  10. /////////////////////////////////////////////////////////////////////////////
  11. #include "indeo.h"
  12. class CMainFrame : public CFrameWnd
  13. {
  14. protected: // create from serialization only
  15.     CMainFrame();
  16.     DECLARE_DYNCREATE(CMainFrame)
  17.  
  18. // Attributes
  19. public:
  20.  
  21. // Operations
  22. public:
  23.  
  24. // Overrides
  25.     // ClassWizard generated virtual function overrides
  26.     //{{AFX_VIRTUAL(CMainFrame)
  27.     protected:
  28.     virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  29.     //}}AFX_VIRTUAL
  30.  
  31. // Implementation
  32. public:
  33.     virtual ~CMainFrame();
  34. #ifdef _DEBUG
  35.     virtual void AssertValid() const;
  36.     virtual void Dump(CDumpContext& dc) const;
  37. #endif
  38.  
  39. protected:  // control bar embedded members
  40.     CToolBar    m_wndToolBar;
  41.     BOOL        m_bIndeo;
  42.  
  43. // Generated message map functions
  44. protected:
  45.     //{{AFX_MSG(CMainFrame)
  46.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  47.     afx_msg void OnMediaIndeo();
  48.     afx_msg void OnUpdateMediaIndeo(CCmdUI* pCmdUI);
  49.     //}}AFX_MSG
  50.     DECLARE_MESSAGE_MAP()
  51. };
  52.  
  53. /////////////////////////////////////////////////////////////////////////////
  54.