BedlamiteView.cpp
上传用户:lczygg
上传日期:2007-07-03
资源大小:2947k
文件大小:3k
源码类别:

语音合成与识别

开发平台:

Visual C++

  1. // BedlamiteView.cpp : implementation of the CBedlamiteView class
  2. //
  3. #include "stdafx.h"
  4. #include "Bedlamite.h"
  5. #include "BedlamiteView.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CBedlamiteView
  13. IMPLEMENT_DYNCREATE(CBedlamiteView, CListView)
  14. BEGIN_MESSAGE_MAP(CBedlamiteView, CListView)
  15. //{{AFX_MSG_MAP(CBedlamiteView)
  16. // NOTE - the ClassWizard will add and remove mapping macros here.
  17. //    DO NOT EDIT what you see in these blocks of generated code!
  18. //}}AFX_MSG_MAP
  19. // Standard printing commands
  20. ON_COMMAND(ID_FILE_PRINT, CListView::OnFilePrint)
  21. ON_COMMAND(ID_FILE_PRINT_DIRECT, CListView::OnFilePrint)
  22. ON_COMMAND(ID_FILE_PRINT_PREVIEW, CListView::OnFilePrintPreview)
  23. ON_MESSAGE(WM_DISPLAYRESULT, OnDisplayResult)
  24. END_MESSAGE_MAP()
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CBedlamiteView construction/destruction
  27. CBedlamiteView::CBedlamiteView()
  28. {
  29. // TODO: add construction code here
  30. }
  31. CBedlamiteView::~CBedlamiteView()
  32. {
  33. }
  34. BOOL CBedlamiteView::PreCreateWindow(CREATESTRUCT& cs)
  35. {
  36. cs.style |= LVS_REPORT;
  37. return CListView::PreCreateWindow(cs);
  38. }
  39. /////////////////////////////////////////////////////////////////////////////
  40. // CBedlamiteView drawing
  41. void CBedlamiteView::OnDraw(CDC* pDC)
  42. {
  43. CBedlamiteDoc* pDoc = GetDocument();
  44. ASSERT_VALID(pDoc);
  45. // TODO: add draw code for native data here
  46. }
  47. void CBedlamiteView::OnInitialUpdate()
  48. {
  49. CListView::OnInitialUpdate();
  50. ASSERT(GetStyle() & LVS_REPORT);
  51. CListCtrl& theCtrl = GetListCtrl();
  52. theCtrl.InsertColumn(0, _T("问题集"), LVCFMT_LEFT, 260);
  53. }
  54. /////////////////////////////////////////////////////////////////////////////
  55. // CBedlamiteView printing
  56. BOOL CBedlamiteView::OnPreparePrinting(CPrintInfo* pInfo)
  57. {
  58. // default preparation
  59. return DoPreparePrinting(pInfo);
  60. }
  61. void CBedlamiteView::OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  62. {
  63. // TODO: add extra initialization before printing
  64. }
  65. void CBedlamiteView::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  66. {
  67. // TODO: add cleanup after printing
  68. }
  69. /////////////////////////////////////////////////////////////////////////////
  70. // CBedlamiteView diagnostics
  71. #ifdef _DEBUG
  72. void CBedlamiteView::AssertValid() const
  73. {
  74. CListView::AssertValid();
  75. }
  76. void CBedlamiteView::Dump(CDumpContext& dc) const
  77. {
  78. CListView::Dump(dc);
  79. }
  80. CBedlamiteDoc* CBedlamiteView::GetDocument() // non-debug version is inline
  81. {
  82. ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CBedlamiteDoc)));
  83. return (CBedlamiteDoc*)m_pDocument;
  84. }
  85. #endif //_DEBUG
  86. /////////////////////////////////////////////////////////////////////////////
  87. // CBedlamiteView message handlers
  88. void CBedlamiteView::OnDisplayResult(WPARAM wParam, LPARAM lParam)
  89. {
  90. CString s = (char*)(BSTR)wParam;
  91. CListCtrl& theCtrl = GetListCtrl();
  92. theCtrl.InsertItem(0, s);
  93. }