MainFrm.h
上传用户:ch83438830
上传日期:2007-01-01
资源大小:104k
文件大小:1k
源码类别:

文件操作

开发平台:

Visual C++

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. class CMainFrame : public CFrameWnd
  5. {
  6. protected: // create from serialization only
  7. CMainFrame();
  8. DECLARE_DYNCREATE(CMainFrame)
  9. // Attributes
  10. public:
  11. UINT m_nCurrentView;
  12. // Operations
  13. public:
  14. // Overrides
  15. void OnViewChange(UINT nCmdID);
  16. // ClassWizard generated virtual function overrides
  17. //{{AFX_VIRTUAL(CMainFrame)
  18. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  19. //}}AFX_VIRTUAL
  20. // Implementation
  21. public:
  22. virtual ~CMainFrame();
  23. #ifdef _DEBUG
  24. virtual void AssertValid() const;
  25. virtual void Dump(CDumpContext& dc) const;
  26. #endif
  27. protected:  // control bar embedded members
  28. CStatusBar  m_wndStatusBar;
  29. CToolBar    m_wndToolBar;
  30. // Generated message map functions
  31. protected:
  32. //{{AFX_MSG(CMainFrame)
  33. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  34. afx_msg void OnFontsPrinter();
  35. afx_msg void OnFontsDisplay();
  36. //}}AFX_MSG
  37. LRESULT OnFrameView(WPARAM wParam,LPARAM lParam);
  38. DECLARE_MESSAGE_MAP()
  39. private:
  40. CScrollView* m_pImportView;
  41. };
  42. /////////////////////////////////////////////////////////////////////////////