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

多国语言处理

开发平台:

Visual C++

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