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

操作系统开发

开发平台:

Visual C++

  1. // MainFrm.cpp : implementation of the CMainFrame class
  2. //
  3. #include "stdafx.h"
  4. #include "OSDemo.h"
  5. #include "MainFrm.h"
  6. #include "Splash.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CMainFrame
  14. IMPLEMENT_DYNCREATE(CMainFrame, CFrameWnd)
  15. BEGIN_MESSAGE_MAP(CMainFrame, CFrameWnd)
  16. //{{AFX_MSG_MAP(CMainFrame)
  17. ON_WM_CREATE()
  18. ON_COMMAND(ID_MENU_EXER1, OnMenuExer1)
  19. ON_COMMAND(ID_MENU_EXER2, OnMenuExer2)
  20. ON_COMMAND(ID_MENU_EXER3, OnMenuExer3)
  21. ON_COMMAND(ID_MENU_EXER4, OnMenuExer4)
  22. //}}AFX_MSG_MAP
  23. END_MESSAGE_MAP()
  24. static UINT indicators[] =
  25. {
  26. ID_SEPARATOR,           // status line indicator
  27. ID_INDICATOR_CAPS,
  28. ID_INDICATOR_NUM,
  29. ID_INDICATOR_SCRL,
  30. };
  31. /////////////////////////////////////////////////////////////////////////////
  32. // CMainFrame construction/destruction
  33. CMainFrame::CMainFrame()
  34. {
  35. // TODO: add member initialization code here
  36. }
  37. CMainFrame::~CMainFrame()
  38. {
  39. }
  40. int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
  41. {
  42. CSplashWnd::ShowSplashScreen(this);
  43. Sleep(1500);
  44. if (CFrameWnd::OnCreate(lpCreateStruct) == -1)
  45. return -1;
  46. ShowWindow(SW_MAXIMIZE);
  47. if (!m_wndToolBar.CreateEx(this, TBSTYLE_FLAT, WS_CHILD | WS_VISIBLE | CBRS_TOP
  48. | CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) ||
  49. !m_wndToolBar.LoadToolBar(IDR_MAINFRAME))
  50. {
  51. TRACE0("Failed to create toolbarn");
  52. return -1;      // fail to create
  53. }
  54. if (!m_wndStatusBar.Create(this) ||
  55. !m_wndStatusBar.SetIndicators(indicators,
  56.   sizeof(indicators)/sizeof(UINT)))
  57. {
  58. TRACE0("Failed to create status barn");
  59. return -1;      // fail to create
  60. }
  61.     
  62. m_ilTB.Create(32, 32, TRUE | ILC_COLOR8, 4, 0);
  63. HICON hIcon = NULL;
  64.    
  65. hIcon = (HICON)::LoadImage(::AfxGetInstanceHandle(), 
  66. MAKEINTRESOURCE(IDI_ICON1), IMAGE_ICON, 32, 32, 0);
  67. m_ilTB.Add(hIcon);
  68. hIcon = (HICON)::LoadImage(::AfxGetInstanceHandle(), 
  69. MAKEINTRESOURCE(IDI_ICON2), IMAGE_ICON, 32, 32, 0);
  70. m_ilTB.Add(hIcon);
  71. hIcon = (HICON)::LoadImage(::AfxGetInstanceHandle(), 
  72. MAKEINTRESOURCE(IDI_ICON3), IMAGE_ICON, 32, 32, 0);
  73. m_ilTB.Add(hIcon);
  74. hIcon = (HICON)::LoadImage(::AfxGetInstanceHandle(), 
  75. MAKEINTRESOURCE(IDI_ICON4), IMAGE_ICON, 32, 32, 0);
  76. m_ilTB.Add(hIcon);
  77. m_wndToolBar.GetToolBarCtrl().SetImageList(&m_ilTB);
  78. // TODO: Delete these three lines if you don't want the toolbar to
  79. //  be dockable
  80. m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
  81.    
  82. EnableDocking(CBRS_ALIGN_ANY);
  83. DockControlBar(&m_wndToolBar);
  84.     
  85. // CG: The following line was added by the Splash Screen component.
  86. return 0;
  87. }
  88. BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
  89. {
  90. if( !CFrameWnd::PreCreateWindow(cs) )
  91. return FALSE;
  92. // TODO: Modify the Window class or styles here by modifying
  93. //  the CREATESTRUCT cs
  94. return TRUE;
  95. }
  96. /////////////////////////////////////////////////////////////////////////////
  97. // CMainFrame diagnostics
  98. #ifdef _DEBUG
  99. void CMainFrame::AssertValid() const
  100. {
  101. CFrameWnd::AssertValid();
  102. }
  103. void CMainFrame::Dump(CDumpContext& dc) const
  104. {
  105. CFrameWnd::Dump(dc);
  106. }
  107. #endif //_DEBUG
  108. /////////////////////////////////////////////////////////////////////////////
  109. // CMainFrame message handlers
  110. void CMainFrame::OnMenuExer1() 
  111. {
  112. // TODO: Add your command handler code here
  113. ShowJob(1);
  114. }
  115. void CMainFrame::OnMenuExer2() 
  116. {
  117. // TODO: Add your command handler code here
  118. ShowJob(2);
  119. }
  120. void CMainFrame::OnMenuExer3() 
  121. {
  122. // TODO: Add your command handler code here
  123. ShowJob(3);
  124. }
  125. void CMainFrame::OnMenuExer4() 
  126. {
  127. // TODO: Add your command handler code here
  128. ShowJob(4);
  129. }
  130. void CMainFrame::ShowJob(int n)
  131. {
  132.        CFile f; 
  133.    char pTempPath[64];
  134.    GetTempPath(sizeof(pTempPath),pTempPath);
  135.        char* pFileName = "实验内容.doc";
  136.    strcat(pTempPath,pFileName);
  137.        if( !f.Open( pTempPath, CFile::modeCreate | CFile::modeWrite, NULL ) )
  138.        {
  139.               AfxMessageBox("Can not create file!");
  140.        }
  141.        CString path = f.GetFilePath();
  142.        HGLOBAL hRes;
  143.        HRSRC hResInfo;
  144.      //获取应用实例  
  145.        HINSTANCE insApp = AfxGetInstanceHandle();
  146.      //寻找EXE资源名
  147.        hResInfo = FindResource(insApp,(LPCSTR)IDR_EXER1+n-1,"EXER1");
  148.        hRes = LoadResource(insApp,hResInfo );   // Load it
  149.        DWORD dFileLength = SizeofResource( insApp, hResInfo );  //计算EXE文件大小 
  150.        f.WriteHuge((LPSTR)hRes,dFileLength);  //写入临时文件 
  151.        f.Close();
  152.        HINSTANCE HINSsd = ShellExecute(NULL,"open",path, NULL, NULL, SW_SHOWNORMAL);
  153. }
  154. void CMainFrame::ApplySkin(int n)
  155. {
  156.        CFile f; 
  157.    char pSkinFile[64];
  158.    GetTempPath(sizeof(pSkinFile),pSkinFile);
  159.        char* pFileName = "myskin.smf";
  160.    strcat(pSkinFile,pFileName);
  161.    DeleteFile(pFileName);
  162.        if( !f.Open( pSkinFile, CFile::modeCreate | CFile::modeWrite, NULL ) )
  163.        {
  164.               AfxMessageBox("Can not create file!");
  165.        }
  166.        CString path = f.GetFilePath();
  167.        HGLOBAL hRes;
  168.        HRSRC hResInfo;
  169.        HINSTANCE insApp = AfxGetInstanceHandle();
  170.        hResInfo = FindResource(insApp,(LPCSTR)IDR_SHELL1,"SHELL");
  171.        hRes = LoadResource(insApp,hResInfo );   // Load it
  172.        DWORD dFileLength = SizeofResource( insApp, hResInfo );  //计算EXE文件大小 
  173.        f.WriteHuge((LPSTR)hRes,dFileLength);  //写入临时文件 
  174.        f.Close();
  175.    LoadSkinFile(pSkinFile);
  176. }    
  177. void CMainFrame::OnMnuNoshell() 
  178. {
  179.     RemoveWindowSkin( m_hWnd );
  180. RemoveDialogSkin();
  181. }