home *** CD-ROM | disk | FTP | other *** search
/ 3D Graphics Programming for Windows 95 / 3D_Graphics_Programming_for_Windows_95_Microsoft_1996.iso / samples / clock / mainfrm.h < prev    next >
C/C++ Source or Header  |  1996-03-11  |  1KB  |  57 lines

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. class CMainFrame : public CFrameWnd
  6. {
  7. public:
  8.     CMainFrame();
  9.     DECLARE_DYNCREATE(CMainFrame)
  10.  
  11. // Attributes
  12. public:
  13.     C3dWnd        m_wnd3d;
  14.     C3dScene* m_pScene;
  15.  
  16. // Operations
  17. public:
  18.     BOOL SetScene();
  19.     BOOL OpenFile(const char* pszFile);
  20.     BOOL Update(double d);
  21.  
  22. // Overrides
  23.     // ClassWizard generated virtual function overrides
  24.     //{{AFX_VIRTUAL(CMainFrame)
  25.     public:
  26.     virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  27.     virtual void RecalcLayout(BOOL bNotify = TRUE);
  28.     //}}AFX_VIRTUAL
  29.  
  30. // Implementation
  31. public:
  32.     virtual ~CMainFrame();
  33. #ifdef _DEBUG
  34.     virtual void AssertValid() const;
  35.     virtual void Dump(CDumpContext& dc) const;
  36. #endif
  37.  
  38. protected:  // control bar embedded members
  39.     CStatusBar  m_wndStatusBar;
  40.     CToolBar    m_wndToolBar;
  41.     C3dVector m_vCamera;
  42.     double m_dRadius;
  43.  
  44. // Generated message map functions
  45. protected:
  46.     //{{AFX_MSG(CMainFrame)
  47.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  48.     afx_msg void OnDestroy();
  49.     afx_msg void OnActivateApp(BOOL bActive, HTASK hTask);
  50.     afx_msg void OnPaletteChanged(CWnd* pFocusWnd);
  51.     afx_msg void OnMove(int x, int y);
  52.     //}}AFX_MSG
  53.     DECLARE_MESSAGE_MAP()
  54. };
  55.  
  56. /////////////////////////////////////////////////////////////////////////////
  57.