OSDemo.cpp
上传用户:tianjwyx
上传日期:2007-01-13
资源大小:813k
文件大小:5k
源码类别:

操作系统开发

开发平台:

Visual C++

  1. // OSDemo.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "OSDemo.h"
  5. #include "MainFrm.h"
  6. #include "OSDemoDoc.h"
  7. #include "OSDemoView.h"
  8. #include "Splash.h"
  9. #ifdef _DEBUG
  10. #define new DEBUG_NEW
  11. #undef THIS_FILE
  12. static char THIS_FILE[] = __FILE__;
  13. #endif
  14. /////////////////////////////////////////////////////////////////////////////
  15. // COSDemoApp
  16. BEGIN_MESSAGE_MAP(COSDemoApp, CWinApp)
  17. //{{AFX_MSG_MAP(COSDemoApp)
  18. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  19. // NOTE - the ClassWizard will add and remove mapping macros here.
  20. //    DO NOT EDIT what you see in these blocks of generated code!
  21. //}}AFX_MSG_MAP
  22. // Standard file based document commands
  23. // Standard print setup command
  24. END_MESSAGE_MAP()
  25. /////////////////////////////////////////////////////////////////////////////
  26. // COSDemoApp construction
  27. COSDemoApp::COSDemoApp()
  28. {
  29. // TODO: add construction code here,
  30. // Place all significant initialization in InitInstance
  31. }
  32. /////////////////////////////////////////////////////////////////////////////
  33. // The one and only COSDemoApp object
  34. COSDemoApp theApp;
  35. /////////////////////////////////////////////////////////////////////////////
  36. // COSDemoApp initialization
  37. BOOL COSDemoApp::InitInstance()
  38. {
  39. // CG: The following block was added by the Splash Screen component. { CCommandLineInfo cmdInfo; ParseCommandLine(cmdInfo); CSplashWnd::EnableSplashScreen(cmdInfo.m_bShowSplash); }
  40. AfxEnableControlContainer();
  41. // Standard initialization
  42. // If you are not using these features and wish to reduce the size
  43. //  of your final executable, you should remove from the following
  44. //  the specific initialization routines you do not need.
  45. #ifdef _AFXDLL
  46. Enable3dControls(); // Call this when using MFC in a shared DLL
  47. #else
  48. Enable3dControlsStatic(); // Call this when linking to MFC statically
  49. #endif
  50. // Change the registry key under which our settings are stored.
  51. // TODO: You should modify this string to be something appropriate
  52. // such as the name of your company or organization.
  53. SetRegistryKey(_T("Local AppWizard-Generated Applications"));
  54. LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  55. // Register the application's document templates.  Document templates
  56. //  serve as the connection between documents, frame windows and views.
  57. CSingleDocTemplate* pDocTemplate;
  58. pDocTemplate = new CSingleDocTemplate(
  59. IDR_MAINFRAME,
  60. RUNTIME_CLASS(COSDemoDoc),
  61. RUNTIME_CLASS(CMainFrame),       // main SDI frame window
  62. RUNTIME_CLASS(COSDemoView));
  63. AddDocTemplate(pDocTemplate);
  64. // Parse command line for standard shell commands, DDE, file open
  65. CCommandLineInfo cmdInfo;
  66. ParseCommandLine(cmdInfo);
  67. // Dispatch commands specified on the command line
  68. if (!ProcessShellCommand(cmdInfo))
  69. return FALSE;
  70.     VERIFY( 1 == InitSkinMagicLib( AfxGetInstanceHandle(), "Demo" , 
  71.   NULL,
  72.   NULL ) );
  73. VERIFY( 1 == LoadSkinFromResource( AfxGetInstanceHandle()  , "MYSKIN" ,"SHELL") ); 
  74. VERIFY( 1 == SetWindowSkin( m_pMainWnd->m_hWnd , "MainFrame" ));
  75. VERIFY( 1 == SetDialogSkin( "Dialog" ) );
  76. // The one and only window has been initialized, so show and update it.
  77. m_pMainWnd->ShowWindow(SW_SHOW);
  78. m_pMainWnd->UpdateWindow();
  79. return TRUE;
  80. }
  81. /////////////////////////////////////////////////////////////////////////////
  82. // CAboutDlg dialog used for App About
  83. class CAboutDlg : public CDialog
  84. {
  85. public:
  86. CAboutDlg();
  87. // Dialog Data
  88. //{{AFX_DATA(CAboutDlg)
  89. enum { IDD = IDD_ABOUTBOX };
  90. //}}AFX_DATA
  91. // ClassWizard generated virtual function overrides
  92. //{{AFX_VIRTUAL(CAboutDlg)
  93. protected:
  94. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  95. //}}AFX_VIRTUAL
  96. // Implementation
  97. protected:
  98. //{{AFX_MSG(CAboutDlg)
  99. // No message handlers
  100. //}}AFX_MSG
  101. DECLARE_MESSAGE_MAP()
  102. };
  103. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  104. {
  105. //{{AFX_DATA_INIT(CAboutDlg)
  106. //}}AFX_DATA_INIT
  107. }
  108. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  109. {
  110. CDialog::DoDataExchange(pDX);
  111. //{{AFX_DATA_MAP(CAboutDlg)
  112. //}}AFX_DATA_MAP
  113. }
  114. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  115. //{{AFX_MSG_MAP(CAboutDlg)
  116. // No message handlers
  117. //}}AFX_MSG_MAP
  118. END_MESSAGE_MAP()
  119. // App command to run the dialog
  120. void COSDemoApp::OnAppAbout()
  121. {
  122. CAboutDlg aboutDlg;
  123. aboutDlg.DoModal();
  124. }
  125. /////////////////////////////////////////////////////////////////////////////
  126. // COSDemoApp message handlers
  127. BOOL COSDemoApp::PreTranslateMessage(MSG* pMsg)
  128. {
  129. // CG: The following lines were added by the Splash Screen component. if (CSplashWnd::PreTranslateAppMessage(pMsg)) return TRUE; return CWinApp::PreTranslateMessage(pMsg);
  130. }