home *** CD-ROM | disk | FTP | other *** search
/ Large Pack of OldSkool DOS MOD Trackers / beaversweeper_v101.zip / src / MainFrm.h < prev    next >
C/C++ Source or Header  |  2005-10-07  |  2KB  |  71 lines

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. #if !defined(AFX_MAINFRM_H__D211A7E4_1DE0_4F5F_855C_BF181AE7E482__INCLUDED_)
  6. #define AFX_MAINFRM_H__D211A7E4_1DE0_4F5F_855C_BF181AE7E482__INCLUDED_
  7.  
  8. #if _MSC_VER > 1000
  9. #pragma once
  10. #endif // _MSC_VER > 1000
  11.  
  12. #include "sampleView.h"
  13. #include "instrEditor.h"
  14. #include "trackercontrols.h"
  15. #include "trackerscopes.h"
  16.  
  17. class CMainFrame : public CMDIFrameWnd
  18. {
  19.     DECLARE_DYNAMIC(CMainFrame)
  20. public:
  21.     CMainFrame();
  22.   class CSampleView* m_pSampleView;
  23.   CInstrEditor *m_pInstrEditor;
  24.   
  25.   CStatusBar  m_wndStatusBar;
  26.  
  27.   CTrackerControls m_trackerControls;
  28.   CTrackerScopes m_trackerScopes;
  29.   
  30. // Attributes
  31. public:
  32.  
  33. // Operations
  34. public:
  35.  
  36. // Overrides
  37.     // ClassWizard generated virtual function overrides
  38.     //{{AFX_VIRTUAL(CMainFrame)
  39.     virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  40.     //}}AFX_VIRTUAL
  41.  
  42. // Implementation
  43. public:
  44.     BOOL InitializeDockingWindows();
  45.     virtual ~CMainFrame();
  46. #ifdef _DEBUG
  47.     virtual void AssertValid() const;
  48.     virtual void Dump(CDumpContext& dc) const;
  49. #endif
  50.  
  51. protected:  // control bar embedded members
  52.     CToolBar    m_wndToolBar;
  53.  
  54. // Generated message map functions
  55. protected:
  56.     //{{AFX_MSG(CMainFrame)
  57.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  58.     afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
  59.     afx_msg void OnSize(UINT nType, int cx, int cy);
  60.     //}}AFX_MSG
  61.   afx_msg LRESULT OnPaneText(WPARAM,LPARAM);
  62.     DECLARE_MESSAGE_MAP()
  63. };
  64.  
  65. /////////////////////////////////////////////////////////////////////////////
  66.  
  67. //{{AFX_INSERT_LOCATION}}
  68. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  69.  
  70. #endif // !defined(AFX_MAINFRM_H__D211A7E4_1DE0_4F5F_855C_BF181AE7E482__INCLUDED_)
  71.