CommandBarControlsView.cpp
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:3k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // CommandBarControlsView.cpp : implementation of the CCommandBarControlsView class
  2. //
  3. #include "stdafx.h"
  4. #include "CommandBarControls.h"
  5. #include "CommandBarControlsDoc.h"
  6. #include "CommandBarControlsView.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CCommandBarControlsView
  14. IMPLEMENT_DYNCREATE(CCommandBarControlsView, CView)
  15. BEGIN_MESSAGE_MAP(CCommandBarControlsView, CView)
  16. //{{AFX_MSG_MAP(CCommandBarControlsView)
  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, CView::OnFilePrint)
  22. ON_COMMAND(ID_FILE_PRINT_DIRECT, CView::OnFilePrint)
  23. ON_COMMAND(ID_FILE_PRINT_PREVIEW, CView::OnFilePrintPreview)
  24. ON_COMMAND(ID_EDIT_COPY, OnEmptyCommand)
  25. ON_COMMAND(ID_EDIT_CUT, OnEmptyCommand)
  26. ON_COMMAND(ID_EDIT_PASTE, OnEmptyCommand)
  27. ON_COMMAND(ID_EDIT_SELECT_ALL, OnEmptyCommand)
  28. END_MESSAGE_MAP()
  29. /////////////////////////////////////////////////////////////////////////////
  30. // CCommandBarControlsView construction/destruction
  31. CCommandBarControlsView::CCommandBarControlsView()
  32. {
  33. // TODO: add construction code here
  34. }
  35. CCommandBarControlsView::~CCommandBarControlsView()
  36. {
  37. }
  38. BOOL CCommandBarControlsView::PreCreateWindow(CREATESTRUCT& cs)
  39. {
  40. // TODO: Modify the Window class or styles here by modifying
  41. //  the CREATESTRUCT cs
  42. return CView::PreCreateWindow(cs);
  43. }
  44. /////////////////////////////////////////////////////////////////////////////
  45. // CCommandBarControlsView drawing
  46. void CCommandBarControlsView::OnDraw(CDC* /*pDC*/)
  47. {
  48. }
  49. /////////////////////////////////////////////////////////////////////////////
  50. // CCommandBarControlsView printing
  51. BOOL CCommandBarControlsView::OnPreparePrinting(CPrintInfo* pInfo)
  52. {
  53. // default preparation
  54. return DoPreparePrinting(pInfo);
  55. }
  56. void CCommandBarControlsView::OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  57. {
  58. // TODO: add extra initialization before printing
  59. }
  60. void CCommandBarControlsView::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  61. {
  62. // TODO: add cleanup after printing
  63. }
  64. /////////////////////////////////////////////////////////////////////////////
  65. // CCommandBarControlsView diagnostics
  66. #ifdef _DEBUG
  67. void CCommandBarControlsView::AssertValid() const
  68. {
  69. CView::AssertValid();
  70. }
  71. void CCommandBarControlsView::Dump(CDumpContext& dc) const
  72. {
  73. CView::Dump(dc);
  74. }
  75. CCommandBarControlsDoc* CCommandBarControlsView::GetDocument() // non-debug version is inline
  76. {
  77. ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CCommandBarControlsDoc)));
  78. return (CCommandBarControlsDoc*)m_pDocument;
  79. }
  80. #endif //_DEBUG
  81. /////////////////////////////////////////////////////////////////////////////
  82. // CCommandBarControlsView message handlers
  83. void CCommandBarControlsView::OnEmptyCommand()
  84. {
  85. }