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

对话框与窗口

开发平台:

Visual C++

  1. // CustomizeDlgView.cpp : implementation of the CCustomizeDlgView 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 "CustomizeDlg.h"
  22. #include "CustomizeDlgDoc.h"
  23. #include "CustomizeDlgView.h"
  24. #ifdef _DEBUG
  25. #define new DEBUG_NEW
  26. #undef THIS_FILE
  27. static char THIS_FILE[] = __FILE__;
  28. #endif
  29. /////////////////////////////////////////////////////////////////////////////
  30. // CCustomizeDlgView
  31. IMPLEMENT_DYNCREATE(CCustomizeDlgView, CEditView)
  32. BEGIN_MESSAGE_MAP(CCustomizeDlgView, CEditView)
  33. //{{AFX_MSG_MAP(CCustomizeDlgView)
  34. ON_WM_RBUTTONDOWN()
  35. //}}AFX_MSG_MAP
  36. // Standard printing commands
  37. ON_COMMAND(ID_FILE_PRINT, CEditView::OnFilePrint)
  38. ON_COMMAND(ID_FILE_PRINT_DIRECT, CEditView::OnFilePrint)
  39. ON_COMMAND(ID_FILE_PRINT_PREVIEW, CEditView::OnFilePrintPreview)
  40. END_MESSAGE_MAP()
  41. /////////////////////////////////////////////////////////////////////////////
  42. // CCustomizeDlgView construction/destruction
  43. CCustomizeDlgView::CCustomizeDlgView()
  44. {
  45. // TODO: add construction code here
  46. }
  47. CCustomizeDlgView::~CCustomizeDlgView()
  48. {
  49. }
  50. BOOL CCustomizeDlgView::PreCreateWindow(CREATESTRUCT& cs)
  51. {
  52. // TODO: Modify the Window class or styles here by modifying
  53. //  the CREATESTRUCT cs
  54. BOOL bPreCreated = CEditView::PreCreateWindow(cs);
  55. cs.style &= ~(ES_AUTOHSCROLL|WS_HSCROLL);   // Enable word-wrapping
  56. return bPreCreated;
  57. }
  58. /////////////////////////////////////////////////////////////////////////////
  59. // CCustomizeDlgView drawing
  60. void CCustomizeDlgView::OnDraw(CDC* /*pDC*/)
  61. {
  62. CCustomizeDlgDoc* pDoc = GetDocument();
  63. ASSERT_VALID(pDoc);
  64. // TODO: add draw code for native data here
  65. }
  66. /////////////////////////////////////////////////////////////////////////////
  67. // CCustomizeDlgView printing
  68. BOOL CCustomizeDlgView::OnPreparePrinting(CPrintInfo* pInfo)
  69. {
  70. // default CEditView preparation
  71. return CEditView::OnPreparePrinting(pInfo);
  72. }
  73. void CCustomizeDlgView::OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo)
  74. {
  75. // Default CEditView begin printing.
  76. CEditView::OnBeginPrinting(pDC, pInfo);
  77. }
  78. void CCustomizeDlgView::OnEndPrinting(CDC* pDC, CPrintInfo* pInfo)
  79. {
  80. // Default CEditView end printing
  81. CEditView::OnEndPrinting(pDC, pInfo);
  82. }
  83. /////////////////////////////////////////////////////////////////////////////
  84. // CCustomizeDlgView diagnostics
  85. #ifdef _DEBUG
  86. void CCustomizeDlgView::AssertValid() const
  87. {
  88. CEditView::AssertValid();
  89. }
  90. void CCustomizeDlgView::Dump(CDumpContext& dc) const
  91. {
  92. CEditView::Dump(dc);
  93. }
  94. CCustomizeDlgDoc* CCustomizeDlgView::GetDocument() // non-debug version is inline
  95. {
  96. ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CCustomizeDlgDoc)));
  97. return (CCustomizeDlgDoc*)m_pDocument;
  98. }
  99. #endif //_DEBUG
  100. /////////////////////////////////////////////////////////////////////////////
  101. // CCustomizeDlgView message handlers
  102. void CCustomizeDlgView::OnRButtonDown(UINT /*nFlags*/, CPoint point) 
  103. {
  104. ClientToScreen(&point);
  105. ((CXTPMDIFrameWnd*)AfxGetMainWnd())->GetCommandBars()->
  106. TrackPopupMenu(IDR_CONTEXT_MENU, TPM_RIGHTBUTTON, point.x, point.y);
  107. }