browserView.cpp
上传用户:czjinwang
上传日期:2007-01-12
资源大小:2484k
文件大小:3k
源码类别:

SNMP编程

开发平台:

Visual C++

  1. /*============================================================================
  2.   Copyright (c) 1996
  3.   Hewlett-Packard Company
  4.   ATTENTION: USE OF THIS SOFTWARE IS SUBJECT TO THE FOLLOWING TERMS.
  5.   Permission to use, copy, modify, distribute and/or sell this software 
  6.   and/or its documentation is hereby granted without fee. User agrees 
  7.   to display the above copyright notice and this license notice in all 
  8.   copies of the software and any documentation of the software. User 
  9.   agrees to assume all liability for the use of the software; Hewlett-Packard 
  10.   makes no representations about the suitability of this software for any 
  11.   purpose. It is provided "AS-IS without warranty of any kind,either express 
  12.   or implied. User hereby grants a royalty-free license to any and all 
  13.   derivatives based upon this software code base. 
  14. =============================================================================*/
  15. #include "stdafx.h"
  16. #include "browser.h"
  17. #include "browserDoc.h"
  18. #include "browserView.h"
  19. #ifdef _DEBUG
  20. #define new DEBUG_NEW
  21. #undef THIS_FILE
  22. static char THIS_FILE[] = __FILE__;
  23. #endif
  24. /////////////////////////////////////////////////////////////////////////////
  25. // CBrowserView
  26. IMPLEMENT_DYNCREATE(CBrowserView, CView)
  27. BEGIN_MESSAGE_MAP(CBrowserView, CView)
  28. //{{AFX_MSG_MAP(CBrowserView)
  29. ON_WM_ERASEBKGND()
  30. //}}AFX_MSG_MAP
  31. END_MESSAGE_MAP()
  32. /////////////////////////////////////////////////////////////////////////////
  33. // CBrowserView construction/destruction
  34. CBrowserView::CBrowserView()
  35. {
  36. // TODO: add construction code here
  37. }
  38. CBrowserView::~CBrowserView()
  39. {
  40. }
  41. BOOL CBrowserView::PreCreateWindow(CREATESTRUCT& cs)
  42. {
  43. // TODO: Modify the Window class or styles here by modifying
  44. //  the CREATESTRUCT cs
  45. return CView::PreCreateWindow(cs);
  46. }
  47. /////////////////////////////////////////////////////////////////////////////
  48. // CBrowserView drawing
  49. void CBrowserView::OnDraw(CDC* pDC)
  50. {
  51. CBrowserDoc* pDoc = GetDocument();
  52. ASSERT_VALID(pDoc);
  53. // TODO: add draw code for native data here
  54. }
  55. /////////////////////////////////////////////////////////////////////////////
  56. // CBrowserView diagnostics
  57. #ifdef _DEBUG
  58. void CBrowserView::AssertValid() const
  59. {
  60. CView::AssertValid();
  61. }
  62. void CBrowserView::Dump(CDumpContext& dc) const
  63. {
  64. CView::Dump(dc);
  65. }
  66. CBrowserDoc* CBrowserView::GetDocument() // non-debug version is inline
  67. {
  68. ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CBrowserDoc)));
  69. return (CBrowserDoc*)m_pDocument;
  70. }
  71. #endif //_DEBUG
  72. /////////////////////////////////////////////////////////////////////////////
  73. // CBrowserView message handlers
  74. BOOL CBrowserView::OnEraseBkgnd(CDC* pDC) 
  75. {
  76. // TODO: Add your message handler code here and/or call default
  77.     CRect Rect;
  78.     CBrush Brush( RGB( 192,192,192)), sBrush;
  79.     GetClientRect( &Rect);
  80.     pDC->FillRect( &Rect, &Brush);
  81. return TRUE;
  82. }