DOC.CPP
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:2k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // doc.cpp : implementation of the COle2ViewDoc class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. #include "stdafx.h"
  13. #include "OleView.h"
  14. #include "doc.h"
  15. #ifdef _DEBUG
  16. #undef THIS_FILE
  17. static char BASED_CODE THIS_FILE[] = __FILE__;
  18. #endif
  19. /////////////////////////////////////////////////////////////////////////////
  20. // COle2ViewDoc
  21. IMPLEMENT_DYNCREATE(COle2ViewDoc, CDocument)
  22. BEGIN_MESSAGE_MAP(COle2ViewDoc, CDocument)
  23. //{{AFX_MSG_MAP(COle2ViewDoc)
  24. // NOTE - the ClassWizard will add and remove mapping macros here.
  25. //    DO NOT EDIT what you see in these blocks of generated code !
  26. //}}AFX_MSG_MAP
  27. END_MESSAGE_MAP()
  28. /////////////////////////////////////////////////////////////////////////////
  29. // COle2ViewDoc construction/destruction
  30. COle2ViewDoc::COle2ViewDoc()
  31. {
  32. m_clsidCur = GUID_NULL ;
  33. m_szObjectCur = "" ;
  34. m_fTypeLib = FALSE ;
  35. CString szSection ;
  36. CString szKey ;
  37. szSection.LoadString( IDS_INI_CONFIG ) ;
  38. szKey.LoadString( IDS_INI_CLSCTX ) ;
  39. m_dwClsCtx = (DWORD)theApp.GetProfileInt( szSection, szKey, CLSCTX_LOCAL_SERVER | CLSCTX_INPROC_SERVER ) ;
  40. }
  41. COle2ViewDoc::~COle2ViewDoc()
  42. {
  43. CString szSection ;
  44. CString szKey ;
  45. szSection.LoadString( IDS_INI_CONFIG ) ;
  46. szKey.LoadString( IDS_INI_CLSCTX ) ;
  47. theApp.WriteProfileInt( szSection, szKey, (WORD)m_dwClsCtx ) ;
  48. }
  49. BOOL COle2ViewDoc::OnNewDocument()
  50. {
  51. //    if (!CDocument::OnNewDocument())
  52. //        return FALSE;
  53. return TRUE;
  54. }
  55. void COle2ViewDoc::OnCloseDocument()
  56. {
  57. CDocument::OnCloseDocument();
  58. }
  59. /////////////////////////////////////////////////////////////////////////////
  60. // COle2ViewDoc diagnostics
  61. #ifdef _DEBUG
  62. void COle2ViewDoc::AssertValid() const
  63. {
  64. CDocument::AssertValid();
  65. }
  66. void COle2ViewDoc::Dump(CDumpContext& dc) const
  67. {
  68. CDocument::Dump(dc);
  69. }
  70. #endif //_DEBUG
  71. /////////////////////////////////////////////////////////////////////////////
  72. // COle2ViewDoc commands