MainFrm.h
上传用户:hddq88
上传日期:2010-01-15
资源大小:910k
文件大小:2k
源码类别:

多国语言处理

开发平台:

C/C++

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MAINFRM_H__4DC3FDA7_4D2A_4A80_A260_619EE03105E7__INCLUDED_)
  5. #define AFX_MAINFRM_H__4DC3FDA7_4D2A_4A80_A260_619EE03105E7__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CMainFrame : public CFrameWnd
  10. {
  11. protected: // create from serialization only
  12. CMainFrame();
  13. DECLARE_DYNCREATE(CMainFrame)
  14. // Attributes
  15. protected:
  16. CSplitterWnd m_wndSplitter;
  17.      
  18. public:
  19.     CDialogBar m_DialogBar;
  20. // Operations
  21. public:
  22. // Overrides
  23. // ClassWizard generated virtual function overrides
  24. //{{AFX_VIRTUAL(CMainFrame)
  25. public:
  26. virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
  27. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  28. //}}AFX_VIRTUAL
  29. // Implementation
  30. public:
  31. virtual ~CMainFrame();
  32. #ifdef _DEBUG
  33. virtual void AssertValid() const;
  34. virtual void Dump(CDumpContext& dc) const;
  35. #endif
  36. protected:  // control bar embedded members
  37. CStatusBar  m_wndStatusBar;
  38. CToolBar    m_wndToolBar;
  39. // Generated message map functions
  40. protected:
  41. //{{AFX_MSG(CMainFrame)
  42. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  43. afx_msg void OnFileOpen();
  44. afx_msg void OnDo();
  45. afx_msg void OnOpen();
  46. afx_msg void OnSave();
  47. afx_msg void OnMake();
  48. afx_msg void OnCount();
  49. //}}AFX_MSG
  50. DECLARE_MESSAGE_MAP()
  51. };
  52. /////////////////////////////////////////////////////////////////////////////
  53. //{{AFX_INSERT_LOCATION}}
  54. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  55. #endif // !defined(AFX_MAINFRM_H__4DC3FDA7_4D2A_4A80_A260_619EE03105E7__INCLUDED_)