browserDoc.cpp
上传用户:sale002
上传日期:2007-01-03
资源大小:27k
文件大小:2k
源码类别:

Internet/IE编程

开发平台:

Visual C++

  1. // browserDoc.cpp : implementation of the CBrowserDoc class
  2. //
  3. #include "stdafx.h"
  4. #include "browser.h"
  5. #include "browserDoc.h"
  6. #include "browserview.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CBrowserDoc
  14. IMPLEMENT_DYNCREATE(CBrowserDoc, CDocument)
  15. BEGIN_MESSAGE_MAP(CBrowserDoc, CDocument)
  16. //{{AFX_MSG_MAP(CBrowserDoc)
  17. // NOTE - the ClassWizard will add and remove mapping macros here.
  18. //    DO NOT EDIT what you see in these blocks of generated code!
  19. //}}AFX_MSG_MAP
  20. END_MESSAGE_MAP()
  21. /////////////////////////////////////////////////////////////////////////////
  22. // CBrowserDoc construction/destruction
  23. CBrowserDoc::CBrowserDoc()
  24. {
  25. // TODO: add one-time construction code here
  26. }
  27. CBrowserDoc::~CBrowserDoc()
  28. {
  29. }
  30. BOOL CBrowserDoc::OnNewDocument()
  31. {
  32. if (!CDocument::OnNewDocument())
  33. return FALSE;
  34. // TODO: add reinitialization code here
  35. // (SDI documents will reuse this document)
  36. return TRUE;
  37. }
  38. /////////////////////////////////////////////////////////////////////////////
  39. // CBrowserDoc serialization
  40. void CBrowserDoc::Serialize(CArchive& ar)
  41. {
  42. if (ar.IsStoring())
  43. {
  44. // TODO: add storing code here
  45. }
  46. else
  47. {
  48. // TODO: add loading code here
  49. }
  50. }
  51. /////////////////////////////////////////////////////////////////////////////
  52. // CBrowserDoc diagnostics
  53. #ifdef _DEBUG
  54. void CBrowserDoc::AssertValid() const
  55. {
  56. CDocument::AssertValid();
  57. }
  58. void CBrowserDoc::Dump(CDumpContext& dc) const
  59. {
  60. CDocument::Dump(dc);
  61. }
  62. #endif //_DEBUG
  63. /////////////////////////////////////////////////////////////////////////////
  64. // CBrowserDoc commands
  65. BOOL CBrowserDoc::OnOpenDocument(LPCTSTR lpszPathName) 
  66. {
  67. if (!CDocument::OnOpenDocument(lpszPathName))
  68. return FALSE;
  69.     CBrowserView pView;
  70. pView.NavigateURL(lpszPathName);
  71. return TRUE;
  72. }