TextClassifyView.cpp
上传用户:sanxfzhen
上传日期:2014-12-28
资源大小:2324k
文件大小:2k
源码类别:

多国语言处理

开发平台:

Visual C++

  1. // TextClassifyView.cpp : implementation of the CTextClassifyView class
  2. //
  3. #include "stdafx.h"
  4. #include "TextClassify.h"
  5. #include "TextClassifyDoc.h"
  6. #include "TextClassifyView.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CTextClassifyView
  14. IMPLEMENT_DYNCREATE(CTextClassifyView, CEditView)
  15. BEGIN_MESSAGE_MAP(CTextClassifyView, CEditView)
  16. //{{AFX_MSG_MAP(CTextClassifyView)
  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. END_MESSAGE_MAP()
  21. /////////////////////////////////////////////////////////////////////////////
  22. // CTextClassifyView construction/destruction
  23. CTextClassifyView::CTextClassifyView()
  24. {
  25. // TODO: add construction code here
  26. }
  27. CTextClassifyView::~CTextClassifyView()
  28. {
  29. }
  30. BOOL CTextClassifyView::PreCreateWindow(CREATESTRUCT& cs)
  31. {
  32. // TODO: Modify the Window class or styles here by modifying
  33. //  the CREATESTRUCT cs
  34. BOOL bPreCreated = CEditView::PreCreateWindow(cs);
  35. cs.style &= ~(ES_AUTOHSCROLL|WS_HSCROLL); // Enable word-wrapping
  36. return bPreCreated;
  37. }
  38. /////////////////////////////////////////////////////////////////////////////
  39. // CTextClassifyView drawing
  40. void CTextClassifyView::OnDraw(CDC* pDC)
  41. {
  42. CTextClassifyDoc* pDoc = GetDocument();
  43. ASSERT_VALID(pDoc);
  44. // TODO: add draw code for native data here
  45. }
  46. /////////////////////////////////////////////////////////////////////////////
  47. // CTextClassifyView diagnostics
  48. #ifdef _DEBUG
  49. void CTextClassifyView::AssertValid() const
  50. {
  51. CEditView::AssertValid();
  52. }
  53. void CTextClassifyView::Dump(CDumpContext& dc) const
  54. {
  55. CEditView::Dump(dc);
  56. }
  57. CTextClassifyDoc* CTextClassifyView::GetDocument() // non-debug version is inline
  58. {
  59. ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CTextClassifyDoc)));
  60. return (CTextClassifyDoc*)m_pDocument;
  61. }
  62. #endif //_DEBUG
  63. /////////////////////////////////////////////////////////////////////////////
  64. // CTextClassifyView message handlers