WordSegView.cpp
上传用户:qzyuheng
上传日期:2013-04-28
资源大小:71k
文件大小:3k
源码类别:

词法分析

开发平台:

Visual C++

  1. // WordSegView.cpp : implementation of the CWordSegView class
  2. //
  3. #include "stdafx.h"
  4. #include "WordSeg.h"
  5. #include "WordSegDoc.h"
  6. #include "WordSegView.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CWordSegView
  14. IMPLEMENT_DYNCREATE(CWordSegView, CEditView)
  15. BEGIN_MESSAGE_MAP(CWordSegView, CEditView)
  16. //{{AFX_MSG_MAP(CWordSegView)
  17. // NOTE - the ClassWizard will add and remove mapping macros here.
  18. //    DO NOT EDIT what you see in these blocks of generated code!
  19. //}}AFX_MSG_MAP
  20. // Standard printing commands
  21. ON_COMMAND(ID_FILE_PRINT, CEditView::OnFilePrint)
  22. ON_COMMAND(ID_FILE_PRINT_DIRECT, CEditView::OnFilePrint)
  23. ON_COMMAND(ID_FILE_PRINT_PREVIEW, CEditView::OnFilePrintPreview)
  24. END_MESSAGE_MAP()
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CWordSegView construction/destruction
  27. CWordSegView::CWordSegView()
  28. {
  29. // TODO: add construction code here
  30. }
  31. CWordSegView::~CWordSegView()
  32. {
  33. }
  34. BOOL CWordSegView::PreCreateWindow(CREATESTRUCT& cs)
  35. {
  36. // TODO: Modify the Window class or styles here by modifying
  37. //  the CREATESTRUCT cs
  38. BOOL bPreCreated = CEditView::PreCreateWindow(cs);
  39. cs.style &= ~(ES_AUTOHSCROLL|WS_HSCROLL); // Enable word-wrapping
  40. return bPreCreated;
  41. }
  42. /////////////////////////////////////////////////////////////////////////////
  43. // CWordSegView drawing
  44. void CWordSegView::OnDraw(CDC* pDC)
  45. {
  46. CWordSegDoc* pDoc = GetDocument();
  47. ASSERT_VALID(pDoc);
  48. // TODO: add draw code for native data here
  49. }
  50. /////////////////////////////////////////////////////////////////////////////
  51. // CWordSegView printing
  52. BOOL CWordSegView::OnPreparePrinting(CPrintInfo* pInfo)
  53. {
  54. // default CEditView preparation
  55. return CEditView::OnPreparePrinting(pInfo);
  56. }
  57. void CWordSegView::OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo)
  58. {
  59. // Default CEditView begin printing.
  60. CEditView::OnBeginPrinting(pDC, pInfo);
  61. }
  62. void CWordSegView::OnEndPrinting(CDC* pDC, CPrintInfo* pInfo)
  63. {
  64. // Default CEditView end printing
  65. CEditView::OnEndPrinting(pDC, pInfo);
  66. }
  67. /////////////////////////////////////////////////////////////////////////////
  68. // CWordSegView diagnostics
  69. #ifdef _DEBUG
  70. void CWordSegView::AssertValid() const
  71. {
  72. CEditView::AssertValid();
  73. }
  74. void CWordSegView::Dump(CDumpContext& dc) const
  75. {
  76. CEditView::Dump(dc);
  77. }
  78. CWordSegDoc* CWordSegView::GetDocument() // non-debug version is inline
  79. {
  80. ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CWordSegDoc)));
  81. return (CWordSegDoc*)m_pDocument;
  82. }
  83. #endif //_DEBUG
  84. /////////////////////////////////////////////////////////////////////////////
  85. // CWordSegView message handlers