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

对话框与窗口

开发平台:

Visual C++

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