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

对话框与窗口

开发平台:

Visual C++

  1. // ViewType1.cpp : implementation of the CViewType1 class
  2. //
  3. // This file is a part of the XTREME TOOLKIT PRO MFC class library.
  4. // (c)1998-2008 Codejock Software, All Rights Reserved.
  5. //
  6. // THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE
  7. // RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN
  8. // CONSENT OF CODEJOCK SOFTWARE.
  9. //
  10. // THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED
  11. // IN THE XTREME TOOLKIT PRO LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO
  12. // YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A
  13. // SINGLE COMPUTER.
  14. //
  15. // CONTACT INFORMATION:
  16. // support@codejock.com
  17. // http://www.codejock.com
  18. //
  19. /////////////////////////////////////////////////////////////////////////////
  20. #include "stdafx.h"
  21. #include "MDIMenus.h"
  22. #include "MDIMenusDoc.h"
  23. #include "ViewType1.h"
  24. #ifdef _DEBUG
  25. #define new DEBUG_NEW
  26. #undef THIS_FILE
  27. static char THIS_FILE[] = __FILE__;
  28. #endif
  29. /////////////////////////////////////////////////////////////////////////////
  30. // CViewType1
  31. IMPLEMENT_DYNCREATE(CViewType1, CView)
  32. BEGIN_MESSAGE_MAP(CViewType1, CView)
  33. //{{AFX_MSG_MAP(CViewType1)
  34. ON_COMMAND(ID_COLOR_RED, OnColorRed)
  35. ON_COMMAND(ID_COLOR_GREEN, OnColorGreen)
  36. ON_COMMAND(ID_COLOR_BLUE, OnColorBlue)
  37. ON_UPDATE_COMMAND_UI(ID_COLOR_RED, OnUpdateColorRed)
  38. ON_UPDATE_COMMAND_UI(ID_COLOR_GREEN, OnUpdateColorGreen)
  39. ON_UPDATE_COMMAND_UI(ID_COLOR_BLUE, OnUpdateColorBlue)
  40. //}}AFX_MSG_MAP
  41. // Standard printing commands
  42. ON_COMMAND(ID_FILE_PRINT, CView::OnFilePrint)
  43. ON_COMMAND(ID_FILE_PRINT_DIRECT, CView::OnFilePrint)
  44. ON_COMMAND(ID_FILE_PRINT_PREVIEW, CView::OnFilePrintPreview)
  45. END_MESSAGE_MAP()
  46. /////////////////////////////////////////////////////////////////////////////
  47. // CViewType1 construction/destruction
  48. CViewType1::CViewType1()
  49. {
  50. m_clr = 0;
  51. }
  52. CViewType1::~CViewType1()
  53. {
  54. }
  55. BOOL CViewType1::PreCreateWindow(CREATESTRUCT& cs)
  56. {
  57. // TODO: Modify the Window class or styles here by modifying
  58. //  the CREATESTRUCT cs
  59. return CView::PreCreateWindow(cs);
  60. }
  61. /////////////////////////////////////////////////////////////////////////////
  62. // CViewType1 drawing
  63. void CViewType1::OnDraw(CDC* pDC)
  64. {
  65. CMDIMenusDoc* pDoc = GetDocument();
  66. ASSERT_VALID(pDoc);
  67. // TODO: add draw code for native data here
  68. pDC->SetTextColor(m_clr);
  69. pDC->DrawText(_T("Type1"), CXTPClientRect(this), DT_CENTER|DT_VCENTER);
  70. }
  71. /////////////////////////////////////////////////////////////////////////////
  72. // CViewType1 printing
  73. BOOL CViewType1::OnPreparePrinting(CPrintInfo* pInfo)
  74. {
  75. // default preparation
  76. return DoPreparePrinting(pInfo);
  77. }
  78. void CViewType1::OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  79. {
  80. // TODO: add extra initialization before printing
  81. }
  82. void CViewType1::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  83. {
  84. // TODO: add cleanup after printing
  85. }
  86. /////////////////////////////////////////////////////////////////////////////
  87. // CViewType1 diagnostics
  88. #ifdef _DEBUG
  89. void CViewType1::AssertValid() const
  90. {
  91. CView::AssertValid();
  92. }
  93. void CViewType1::Dump(CDumpContext& dc) const
  94. {
  95. CView::Dump(dc);
  96. }
  97. CMDIMenusDoc* CViewType1::GetDocument() // non-debug version is inline
  98. {
  99. ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CMDIMenusDoc)));
  100. return (CMDIMenusDoc*)m_pDocument;
  101. }
  102. #endif //_DEBUG
  103. /////////////////////////////////////////////////////////////////////////////
  104. // CViewType1 message handlers
  105. void CViewType1::OnColorRed()
  106. {
  107. m_clr = RGB(0xFF, 0, 0);
  108. Invalidate(FALSE);
  109. }
  110. void CViewType1::OnColorGreen()
  111. {
  112. m_clr = RGB(0, 0xFF, 0);
  113. Invalidate(FALSE);
  114. }
  115. void CViewType1::OnColorBlue()
  116. {
  117. m_clr = RGB(0, 0, 0xFF);
  118. Invalidate(FALSE);
  119. }
  120. void CViewType1::OnUpdateColorRed(CCmdUI* pCmdUI)
  121. {
  122. pCmdUI->SetCheck(m_clr == RGB(0xFF, 0, 0));
  123. }
  124. void CViewType1::OnUpdateColorGreen(CCmdUI* pCmdUI)
  125. {
  126. pCmdUI->SetCheck(m_clr == RGB(0, 0xFF, 0));
  127. }
  128. void CViewType1::OnUpdateColorBlue(CCmdUI* pCmdUI)
  129. {
  130. pCmdUI->SetCheck(m_clr == RGB(0, 0, 0xFF));
  131. }