ChildFrm.h
上传用户:hngjqc
上传日期:2007-01-02
资源大小:25k
文件大小:2k
源码类别:

RichEdit

开发平台:

Visual C++

  1. // ChildFrm.h : interface of the CChildFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_CHILDFRM_H__42869FCD_D08F_11D2_A1C8_00A024480D89__INCLUDED_)
  5. #define AFX_CHILDFRM_H__42869FCD_D08F_11D2_A1C8_00A024480D89__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "OverwriteStatus.h"
  10. class CChildFrame : public CMDIChildWnd
  11. {
  12. DECLARE_DYNCREATE(CChildFrame)
  13. public:
  14. CChildFrame();
  15. // Attributes
  16. private:
  17. COverwriteStatus m_wndStatus;
  18. BOOL m_bOverwrite;
  19. // Operations
  20. public:
  21. void ChangeOverwrite() {m_bOverwrite = !m_bOverwrite;}
  22. BOOL IsOverwrite() const {return m_bOverwrite;}
  23. // Overrides
  24. // ClassWizard generated virtual function overrides
  25. //{{AFX_VIRTUAL(CChildFrame)
  26. public:
  27. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  28. protected:
  29. virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
  30. //}}AFX_VIRTUAL
  31. // Implementation
  32. public:
  33. virtual ~CChildFrame();
  34. #ifdef _DEBUG
  35. virtual void AssertValid() const;
  36. virtual void Dump(CDumpContext& dc) const;
  37. #endif
  38. // Generated message map functions
  39. protected:
  40. //{{AFX_MSG(CChildFrame)
  41. // NOTE - the ClassWizard will add and remove member functions here.
  42. //    DO NOT EDIT what you see in these blocks of generated code!
  43. afx_msg void OnUpdateOverwrite(CCmdUI *pCmdUI);
  44. //}}AFX_MSG
  45. DECLARE_MESSAGE_MAP()
  46. };
  47. /////////////////////////////////////////////////////////////////////////////
  48. //{{AFX_INSERT_LOCATION}}
  49. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  50. #endif // !defined(AFX_CHILDFRM_H__42869FCD_D08F_11D2_A1C8_00A024480D89__INCLUDED_)