BOOL CDemoApp::InitInstance() { // Standard initialization // If you are not using these features and wish to reduce the size // of your final executable, you should remove from the following // the specific initialization routines you do not need. m_pszProfileName = strdup("PCTLDEMO.INI"); m_pszHelpFilePath = strdup("..\\docs\\vcet.hlp"); SetDialogBkColor(); // set dialog background color to gray LoadStdProfileSettings(); // Load standard INI file options (including MRU) // Register the application's document templates. Document templates // serve as the connection between documents, frame windows and views. AddDocTemplate(new CMultiDocTemplate(IDR_DEMOTYPE, RUNTIME_CLASS(CDemoDoc), RUNTIME_CLASS(CMyMDIChildWnd), // standard MDI child frame RUNTIME_CLASS(CDemoView))); // create main MDI Frame window CMainFrame* pMainFrame = new CMainFrame; if (!pMainFrame->LoadFrame(IDR_MAINFRAME)) return FALSE; // Initialise the controls PAN_LoadControls(NULL, NULL); pMainFrame->ShowWindow(m_nCmdShow); pMainFrame->UpdateWindow(); m_pMainWnd = pMainFrame; // create a new (empty) document OnFileNew(); // instanciate notification procedure *((FARPROC * ) &lpfnNotifyProc) = MakeProcInstance((FARPROC) NotifyWndProc, AfxGetInstanceHandle()); if (lpfnNotifyProc == NULL) { ::MessageBox((HWND) 0, "Cannot make procedure instance!", "INFO", MB_ICONINFORMATION); return FALSE; } if (m_lpCmdLine[0] != '\0') { // TODO: add command line processing here } return TRUE; }
时间: 2024-04-19 12:25:42 浏览: 195
VC控制字体源码下载
这段代码是在应用程序类 `CDemoApp` 中的 `InitInstance` 函数中执行的。让我逐行解释:
- `m_pszProfileName = strdup("PCTLDEMO.INI");`:将成员变量 `m_pszProfileName` 设置为字符串 "PCTLDEMO.INI" 的副本。
- `m_pszHelpFilePath = strdup("..\\docs\\vcet.hlp");`:将成员变量 `m_pszHelpFilePath` 设置为字符串 "..\\docs\\vcet.hlp" 的副本。
- `SetDialogBkColor();`:调用 `SetDialogBkColor()` 函数,将对话框的背景颜色设置为灰色。
- `LoadStdProfileSettings();`:调用 `LoadStdProfileSettings()` 函数,加载标准 INI 文件选项(包括 MRU)。
- `AddDocTemplate(new CMultiDocTemplate(IDR_DEMOTYPE, RUNTIME_CLASS(CDemoDoc), RUNTIME_CLASS(CMyMDIChildWnd), RUNTIME_CLASS(CDemoView)));`:注册应用程序的文档模板。文档模板用于连接文档、框架窗口和视图。
- `CMainFrame* pMainFrame = new CMainFrame;`:创建一个新的主 MDI 框架窗口对象。
- `if (!pMainFrame->LoadFrame(IDR_MAINFRAME)) return FALSE;`:加载主框架窗口的资源,并进行错误检查。
- `PAN_LoadControls(NULL, NULL);`:调用 `PAN_LoadControls()` 函数,初始化控件。
- `pMainFrame->ShowWindow(m_nCmdShow);`:显示主框架窗口。
- `pMainFrame->UpdateWindow();`:更新主框架窗口。
- `m_pMainWnd = pMainFrame;`:将主框架窗口设置为应用程序的主窗口。
- `OnFileNew();`:调用 `OnFileNew()` 函数,创建一个新的空文档。
- `*((FARPROC*)&lpfnNotifyProc) = MakeProcInstance((FARPROC)NotifyWndProc, AfxGetInstanceHandle());`:将 `NotifyWndProc` 函数的实例赋值给 `lpfnNotifyProc` 变量。
- `if (lpfnNotifyProc == NULL) { ... }`:如果 `lpfnNotifyProc` 为空,则显示一个消息框并返回 FALSE。
- `if (m_lpCmdLine[0] != '\0') { ... }`:如果命令行参数不为空,则在此处添加命令行处理的代码。
最后,函数返回 TRUE 表示初始化成功。
这段代码的作用是在应用程序初始化期间进行一系列的初始化操作,包括设置配置文件名、帮助文件路径、对话框背景颜色等。然后注册文档模板、创建主框架窗口、初始化控件等。最后,创建一个新的空文档,实例化通知过程,并处理命令行参数(如果有)。
阅读全文