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

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. // DispDemo1.cpp : Defines the class behaviors for the application.
  21. //
  22. #include "stdafx.h"
  23. #include "DispDemo1.h"
  24. #include "MainFrm.h"
  25. #include "DispDemo1Doc.h"
  26. #include "DispDemo1View.h"
  27. #ifdef _DEBUG
  28. #define new DEBUG_NEW
  29. #undef THIS_FILE
  30. static char THIS_FILE[] = __FILE__;
  31. #endif
  32. /////////////////////////////////////////////////////////////////////////////
  33. // CDispDemo1App
  34. BEGIN_MESSAGE_MAP(CDispDemo1App, CWinApp)
  35. //{{AFX_MSG_MAP(CDispDemo1App)
  36. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  37. // NOTE - the ClassWizard will add and remove mapping macros here.
  38. //    DO NOT EDIT what you see in these blocks of generated code!
  39. //}}AFX_MSG_MAP
  40. // Standard file based document commands
  41. ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  42. ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  43. END_MESSAGE_MAP()
  44. /////////////////////////////////////////////////////////////////////////////
  45. // CDispDemo1App construction
  46. CDispDemo1App::CDispDemo1App()
  47. : CWinApp()
  48. {
  49. // TODO: add construction code here,
  50. // Place all significant initialization in InitInstance
  51. }
  52. /////////////////////////////////////////////////////////////////////////////
  53. // The one and only CDispDemo1App object
  54. CDispDemo1App theApp;
  55. /////////////////////////////////////////////////////////////////////////////
  56. // CDispDemo1App initialization
  57. BOOL CDispDemo1App::InitInstance()
  58. {
  59. // Standard initialization
  60. // If you are not using these features and wish to reduce the size
  61. //  of your final executable, you should remove from the following
  62. //  the specific initialization routines you do not need.
  63. // Change the registry key under which our settings are stored.
  64. // You should modify this string to be something appropriate
  65. // such as the name of your company or organization.
  66. SetRegistryKey(_T("Local AppWizard-Generated Applications"));
  67. LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  68. // Register the application's document templates.  Document templates
  69. //  serve as the connection between documents, frame windows and views.
  70. CSingleDocTemplate* pDocTemplate;
  71. pDocTemplate = new CSingleDocTemplate(
  72. IDR_MAINFRAME,
  73. RUNTIME_CLASS(CDispDemo1Doc),
  74. RUNTIME_CLASS(CMainFrame),       // main SDI frame window
  75. RUNTIME_CLASS(CDispDemo1View));
  76. AddDocTemplate(pDocTemplate);
  77. // Parse command line for standard shell commands, DDE, file open
  78. CCommandLineInfo cmdInfo;
  79. ParseCommandLine(cmdInfo);
  80. // Dispatch commands specified on the command line
  81. if (!ProcessShellCommand(cmdInfo))
  82. return FALSE;
  83. // The one and only window has been initialized, so show and update it.
  84. m_pMainWnd->ShowWindow(SW_SHOW);
  85. m_pMainWnd->UpdateWindow();
  86. return TRUE;
  87. }
  88. /////////////////////////////////////////////////////////////////////////////
  89. // CAboutDlg dialog used for App About
  90. class CAboutDlg : public CDialog
  91. {
  92. public:
  93. CAboutDlg();
  94. // Dialog Data
  95. //{{AFX_DATA(CAboutDlg)
  96. enum { IDD = IDD_ABOUTBOX };
  97. //}}AFX_DATA
  98. // ClassWizard generated virtual function overrides
  99. //{{AFX_VIRTUAL(CAboutDlg)
  100. protected:
  101. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  102. //}}AFX_VIRTUAL
  103. // Implementation
  104. protected:
  105. //{{AFX_MSG(CAboutDlg)
  106. virtual BOOL OnInitDialog(); // Added for WCE apps
  107. //}}AFX_MSG
  108. DECLARE_MESSAGE_MAP()
  109. };
  110. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  111. {
  112. //{{AFX_DATA_INIT(CAboutDlg)
  113. //}}AFX_DATA_INIT
  114. }
  115. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  116. {
  117. CDialog::DoDataExchange(pDX);
  118. //{{AFX_DATA_MAP(CAboutDlg)
  119. //}}AFX_DATA_MAP
  120. }
  121. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  122. //{{AFX_MSG_MAP(CAboutDlg)
  123. // No message handlers
  124. //}}AFX_MSG_MAP
  125. END_MESSAGE_MAP()
  126. // App command to run the dialog
  127. void CDispDemo1App::OnAppAbout()
  128. {
  129. CAboutDlg aboutDlg;
  130. aboutDlg.DoModal();
  131. }
  132. /////////////////////////////////////////////////////////////////////////////
  133. // CDispDemo1App commands
  134. // Added for WCE apps
  135. BOOL CAboutDlg::OnInitDialog() 
  136. {
  137. CDialog::OnInitDialog();
  138. CenterWindow();
  139. return TRUE;  // return TRUE unless you set the focus to a control
  140.               // EXCEPTION: OCX Property Pages should return FALSE
  141. }