DemoTBarDView.cpp
上传用户:loufeng
上传日期:2007-01-02
资源大小:29k
文件大小:3k
源码类别:

工具条

开发平台:

Visual C++

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