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

对话框与窗口

开发平台:

Visual C++

  1. // PaneOptionsView.cpp : implementation of the CPaneOptionsView 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 "PaneOptions.h"
  22. #include "PaneOptionsDoc.h"
  23. #include "PaneOptionsView.h"
  24. #ifdef _DEBUG
  25. #define new DEBUG_NEW
  26. #undef THIS_FILE
  27. static char THIS_FILE[] = __FILE__;
  28. #endif
  29. /////////////////////////////////////////////////////////////////////////////
  30. // CPaneOptionsView
  31. IMPLEMENT_DYNCREATE(CPaneOptionsView, CView)
  32. BEGIN_MESSAGE_MAP(CPaneOptionsView, CView)
  33. //{{AFX_MSG_MAP(CPaneOptionsView)
  34. ON_WM_ERASEBKGND()
  35. ON_WM_PAINT()
  36. //}}AFX_MSG_MAP
  37. // Standard printing commands
  38. ON_COMMAND(ID_FILE_PRINT, CView::OnFilePrint)
  39. ON_COMMAND(ID_FILE_PRINT_DIRECT, CView::OnFilePrint)
  40. ON_COMMAND(ID_FILE_PRINT_PREVIEW, CView::OnFilePrintPreview)
  41. END_MESSAGE_MAP()
  42. /////////////////////////////////////////////////////////////////////////////
  43. // CPaneOptionsView construction/destruction
  44. CPaneOptionsView::CPaneOptionsView()
  45. {
  46. // TODO: add construction code here
  47. }
  48. CPaneOptionsView::~CPaneOptionsView()
  49. {
  50. }
  51. BOOL CPaneOptionsView::PreCreateWindow(CREATESTRUCT& cs)
  52. {
  53. // TODO: Modify the Window class or styles here by modifying
  54. //  the CREATESTRUCT cs
  55. return CView::PreCreateWindow(cs);
  56. }
  57. /////////////////////////////////////////////////////////////////////////////
  58. // CPaneOptionsView drawing
  59. void CPaneOptionsView::OnDraw(CDC* pDC)
  60. {
  61. pDC->FillSolidRect(CXTPClientRect(this), RGB(0, 166, 166));
  62. }
  63. /////////////////////////////////////////////////////////////////////////////
  64. // CPaneOptionsView printing
  65. BOOL CPaneOptionsView::OnPreparePrinting(CPrintInfo* pInfo)
  66. {
  67. // default preparation
  68. return DoPreparePrinting(pInfo);
  69. }
  70. void CPaneOptionsView::OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  71. {
  72. // TODO: add extra initialization before printing
  73. }
  74. void CPaneOptionsView::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  75. {
  76. // TODO: add cleanup after printing
  77. }
  78. /////////////////////////////////////////////////////////////////////////////
  79. // CPaneOptionsView diagnostics
  80. #ifdef _DEBUG
  81. void CPaneOptionsView::AssertValid() const
  82. {
  83. CView::AssertValid();
  84. }
  85. void CPaneOptionsView::Dump(CDumpContext& dc) const
  86. {
  87. CView::Dump(dc);
  88. }
  89. #endif //_DEBUG
  90. /////////////////////////////////////////////////////////////////////////////
  91. // CPaneOptionsView message handlers
  92. BOOL CPaneOptionsView::OnEraseBkgnd(CDC* /*pDC*/)
  93. {
  94. return TRUE;
  95. }
  96. void CPaneOptionsView::OnPaint()
  97. {
  98. CPaintDC dc(this); // device context for painting
  99. dc.FillSolidRect(CXTPClientRect(this), RGB(0, 166, 166));
  100. // Do not call CView::OnPaint() for painting messages
  101. }