KeyHookView.cpp
上传用户:qzzxgm
上传日期:2009-12-14
资源大小:1882k
文件大小:3k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // KeyHookView.cpp : implementation of the CKeyHookView class
  2. //
  3. #include "stdafx.h"
  4. #include "KeyHook.h"
  5. #include "KeyHookDoc.h"
  6. #include "KeyHookView.h"
  7. #include "LaunchDLL.h"
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CKeyHookView
  15. IMPLEMENT_DYNCREATE(CKeyHookView, CView)
  16. BEGIN_MESSAGE_MAP(CKeyHookView, CView)
  17. //{{AFX_MSG_MAP(CKeyHookView)
  18. // NOTE - the ClassWizard will add and remove mapping macros here.
  19. //    DO NOT EDIT what you see in these blocks of generated code!
  20. //}}AFX_MSG_MAP
  21. // Standard printing commands
  22. ON_COMMAND(ID_FILE_PRINT, CView::OnFilePrint)
  23. ON_COMMAND(ID_FILE_PRINT_DIRECT, CView::OnFilePrint)
  24. ON_COMMAND(ID_FILE_PRINT_PREVIEW, CView::OnFilePrintPreview)
  25. END_MESSAGE_MAP()
  26. /////////////////////////////////////////////////////////////////////////////
  27. // CKeyHookView construction/destruction
  28. CKeyHookView::CKeyHookView()
  29. {
  30. // TODO: add construction code here
  31. }
  32. CKeyHookView::~CKeyHookView()
  33. {
  34. }
  35. BOOL CKeyHookView::PreCreateWindow(CREATESTRUCT& cs)
  36. {
  37. // TODO: Modify the Window class or styles here by modifying
  38. //  the CREATESTRUCT cs
  39. return CView::PreCreateWindow(cs);
  40. }
  41. /////////////////////////////////////////////////////////////////////////////
  42. // CKeyHookView drawing
  43. void CKeyHookView::OnDraw(CDC* pDC)
  44. {
  45. CKeyHookDoc* pDoc = GetDocument();
  46. ASSERT_VALID(pDoc);
  47. // TODO: add draw code for native data here
  48. }
  49. /////////////////////////////////////////////////////////////////////////////
  50. // CKeyHookView printing
  51. BOOL CKeyHookView::OnPreparePrinting(CPrintInfo* pInfo)
  52. {
  53. // default preparation
  54. return DoPreparePrinting(pInfo);
  55. }
  56. void CKeyHookView::OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  57. {
  58. // TODO: add extra initialization before printing
  59. }
  60. void CKeyHookView::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  61. {
  62. // TODO: add cleanup after printing
  63. }
  64. /////////////////////////////////////////////////////////////////////////////
  65. // CKeyHookView diagnostics
  66. #ifdef _DEBUG
  67. void CKeyHookView::AssertValid() const
  68. {
  69. CView::AssertValid();
  70. }
  71. void CKeyHookView::Dump(CDumpContext& dc) const
  72. {
  73. CView::Dump(dc);
  74. }
  75. CKeyHookDoc* CKeyHookView::GetDocument() // non-debug version is inline
  76. {
  77. ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CKeyHookDoc)));
  78. return (CKeyHookDoc*)m_pDocument;
  79. }
  80. #endif //_DEBUG
  81. /////////////////////////////////////////////////////////////////////////////
  82. // CKeyHookView message handlers
  83. void CKeyHookView::OnInitialUpdate() 
  84. {
  85. CView::OnInitialUpdate();
  86. InstallLaunchEv();
  87. }