ActionsSampleView.h
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:2k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // ActionsSampleView.h : interface of the CActionsSampleView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_ACTIONSSAMPLEVIEW_H__FA7DE792_002D_4C8A_BA13_F55F88209C7B__INCLUDED_)
  5. #define AFX_ACTIONSSAMPLEVIEW_H__FA7DE792_002D_4C8A_BA13_F55F88209C7B__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CActionsSampleCntrItem;
  10. class CActionsSampleView : public CRichEditView
  11. {
  12. protected: // create from serialization only
  13. CActionsSampleView();
  14. DECLARE_DYNCREATE(CActionsSampleView)
  15. // Attributes
  16. public:
  17. CActionsSampleDoc* GetDocument();
  18. // Operations
  19. public:
  20. // Overrides
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CActionsSampleView)
  23. public:
  24. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  25. protected:
  26. virtual void OnInitialUpdate(); // called first time after construct
  27. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  28. //}}AFX_VIRTUAL
  29. // Implementation
  30. public:
  31. virtual ~CActionsSampleView();
  32. #ifdef _DEBUG
  33. virtual void AssertValid() const;
  34. virtual void Dump(CDumpContext& dc) const;
  35. #endif
  36. protected:
  37. // Generated message map functions
  38. protected:
  39. //{{AFX_MSG(CActionsSampleView)
  40. // NOTE - the ClassWizard will add and remove member functions here.
  41. //    DO NOT EDIT what you see in these blocks of generated code !
  42. afx_msg void OnDestroy();
  43. //}}AFX_MSG
  44. afx_msg void OnSelChange(NMHDR* pNMHDR, LRESULT* pResult);
  45. DECLARE_MESSAGE_MAP()
  46. void OnCharUnderline();
  47. void OnCharItalic();
  48. void OnCharBold();
  49. void UpdateActionsState();
  50. };
  51. #ifndef _DEBUG  // debug version in ActionsSampleView.cpp
  52. inline CActionsSampleDoc* CActionsSampleView::GetDocument()
  53.    { return (CActionsSampleDoc*)m_pDocument; }
  54. #endif
  55. /////////////////////////////////////////////////////////////////////////////
  56. //{{AFX_INSERT_LOCATION}}
  57. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  58. #endif // !defined(AFX_ACTIONSSAMPLEVIEW_H__FA7DE792_002D_4C8A_BA13_F55F88209C7B__INCLUDED_)