ToolBarsDemoView.cpp
上传用户:wlkj888
上传日期:2022-08-01
资源大小:806k
文件大小:3k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // ToolBarsDemoView.cpp : implementation of the CToolBarsDemoView class
  2. //
  3. #include "stdafx.h"
  4. #include "ToolBarsDemo.h"
  5. #include "ToolBarsDemoDoc.h"
  6. #include "ToolBarsDemoView.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CToolBarsDemoView
  14. IMPLEMENT_DYNCREATE(CToolBarsDemoView, CEditView)
  15. BEGIN_MESSAGE_MAP(CToolBarsDemoView, CEditView)
  16. //{{AFX_MSG_MAP(CToolBarsDemoView)
  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. // CToolBarsDemoView construction/destruction
  27. CToolBarsDemoView::CToolBarsDemoView()
  28. {
  29. // TODO: add construction code here
  30. }
  31. CToolBarsDemoView::~CToolBarsDemoView()
  32. {
  33. }
  34. BOOL CToolBarsDemoView::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. // CToolBarsDemoView drawing
  44. void CToolBarsDemoView::OnDraw(CDC* pDC)
  45. {
  46. CToolBarsDemoDoc* pDoc = GetDocument();
  47. ASSERT_VALID(pDoc);
  48. // TODO: add draw code for native data here
  49. }
  50. void CToolBarsDemoView::Message()
  51. {
  52. AfxMessageBox("dfdfd");
  53. }
  54. /////////////////////////////////////////////////////////////////////////////
  55. // CToolBarsDemoView printing
  56. BOOL CToolBarsDemoView::OnPreparePrinting(CPrintInfo* pInfo)
  57. {
  58. // default preparation
  59. return DoPreparePrinting(pInfo);
  60. }
  61. void CToolBarsDemoView::OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  62. {
  63. // TODO: add extra initialization before printing
  64. }
  65. void CToolBarsDemoView::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  66. {
  67. // TODO: add cleanup after printing
  68. }
  69. /////////////////////////////////////////////////////////////////////////////
  70. // CToolBarsDemoView diagnostics
  71. #ifdef _DEBUG
  72. void CToolBarsDemoView::AssertValid() const
  73. {
  74. CEditView::AssertValid();
  75. }
  76. void CToolBarsDemoView::Dump(CDumpContext& dc) const
  77. {
  78. CEditView::Dump(dc);
  79. }
  80. CToolBarsDemoDoc* CToolBarsDemoView::GetDocument() // non-debug version is inline
  81. {
  82. ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CToolBarsDemoDoc)));
  83. return (CToolBarsDemoDoc*)m_pDocument;
  84. }
  85. #endif //_DEBUG
  86. /////////////////////////////////////////////////////////////////////////////
  87. // CToolBarsDemoView message handlers