DispDemo1Doc.cpp
上传用户:fjqzjn
上传日期:2008-01-21
资源大小:2764k
文件大小:3k
源码类别:

Windows CE

开发平台:

Visual C++

  1. /******************************************************************************
  2. ** Copyright (C) 2004. Intel Corporation. All Rights Reserved. 
  3. **
  4. ** The source code contained or described herein and all documents related to the
  5. ** source code ("Material") are owned by Intel Corporation or its suppliers or 
  6. ** licensors. Title to the Material remains with Intel Corporation or its suppliers
  7. ** and licensors. The Material contains trade secrets and proprietary and 
  8. ** confidential information of Intel or its suppliers and licensors. The Material 
  9. ** is protected by worldwide copyright and trade secret laws and treaty provisions.
  10. ** No part of the Material may be used, copied, reproduced, modified, published, 
  11. ** uploaded, posted, transmitted, distributed, or disclosed in any way without 
  12. ** Intel抯 prior express written permission.
  13. ** 
  14. ** No license under any patent, copyright, trade secret or other intellectual 
  15. ** property right is granted to or conferred upon you by disclosure or delivery 
  16. ** of the Materials, either expressly, by implication, inducement, estoppel or 
  17. ** otherwise. Any license under such intellectual property rights must be express 
  18. ** and approved by Intel in writing.
  19. ******************************************************************************/
  20. // DispDemo1Doc.cpp : implementation of the CDispDemo1Doc class
  21. //
  22. #include "stdafx.h"
  23. #include "DispDemo1.h"
  24. #include "DispDemo1Doc.h"
  25. #ifdef _DEBUG
  26. #define new DEBUG_NEW
  27. #undef THIS_FILE
  28. static char THIS_FILE[] = __FILE__;
  29. #endif
  30. /////////////////////////////////////////////////////////////////////////////
  31. // CDispDemo1Doc
  32. IMPLEMENT_DYNCREATE(CDispDemo1Doc, CDocument)
  33. BEGIN_MESSAGE_MAP(CDispDemo1Doc, CDocument)
  34. //{{AFX_MSG_MAP(CDispDemo1Doc)
  35. // NOTE - the ClassWizard will add and remove mapping macros here.
  36. //    DO NOT EDIT what you see in these blocks of generated code!
  37. //}}AFX_MSG_MAP
  38. END_MESSAGE_MAP()
  39. /////////////////////////////////////////////////////////////////////////////
  40. // CDispDemo1Doc construction/destruction
  41. CDispDemo1Doc::CDispDemo1Doc()
  42. {
  43. }
  44. CDispDemo1Doc::~CDispDemo1Doc()
  45. {
  46. }
  47. BOOL CDispDemo1Doc::OnNewDocument()
  48. {
  49. if (!CDocument::OnNewDocument())
  50. return FALSE;
  51. // TODO: add reinitialization code here
  52. // (SDI documents will reuse this document)
  53. m_cs1 = L"Select external resolution";
  54. m_cs2 = L"from the Config menu";
  55. return TRUE;
  56. }
  57. /////////////////////////////////////////////////////////////////////////////
  58. // CDispDemo1Doc serialization
  59. void CDispDemo1Doc::Serialize(CArchive& ar)
  60. {
  61. if (ar.IsStoring())
  62. {
  63. // TODO: add storing code here
  64. }
  65. else
  66. {
  67. // TODO: add loading code here
  68. }
  69. }
  70. /////////////////////////////////////////////////////////////////////////////
  71. // CDispDemo1Doc diagnostics
  72. #ifdef _DEBUG
  73. void CDispDemo1Doc::AssertValid() const
  74. {
  75. CDocument::AssertValid();
  76. }
  77. void CDispDemo1Doc::Dump(CDumpContext& dc) const
  78. {
  79. CDocument::Dump(dc);
  80. }
  81. #endif //_DEBUG
  82. /////////////////////////////////////////////////////////////////////////////
  83. // CDispDemo1Doc commands