ABOUT.C
上传用户:woweijixie
上传日期:2018-12-11
资源大小:131k
文件大小:8k
源码类别:

TAPI编程

开发平台:

Visual C++

  1. // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
  2. // ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
  3. // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  4. // PARTICULAR PURPOSE.
  5. //
  6. // Copyright (C) 1995  Microsoft Corporation.  All Rights Reserved.
  7. //
  8. //  MODULE:   about.c
  9. //
  10. //  PURPOSE:   Displays the "About" dialog box
  11. //
  12. //  FUNCTIONS:
  13. //    CmdAbout        - Displays the "About" dialog box
  14. //    About           - Processes messages for "About" dialog box.
  15. //    MsgAboutInit    - To initialize the about box with version info
  16. //                      from resources.
  17. //    MsgAboutCommand - Process WM_COMMAND message sent to the about box.
  18. //    CmdAboutDone    - Free the about box and related data.
  19. //
  20. //  COMMENTS:
  21. //
  22. //
  23. #include <windows.h>            // required for all Windows applications
  24. #include <windowsx.h>
  25. #include "globals.h"            // prototypes specific to this application
  26. LRESULT CALLBACK About(HWND, UINT, WPARAM, LPARAM);
  27. LRESULT MsgAboutInit(HWND, UINT, WPARAM, LPARAM);
  28. LRESULT MsgAboutCommand(HWND, UINT, WPARAM, LPARAM);
  29. LRESULT CmdAboutDone(HWND, WORD, WORD, HWND);
  30. // About dialog message table definition.
  31. MSD rgmsdAbout[] =
  32. {
  33.     {WM_COMMAND,    MsgAboutCommand},
  34.     {WM_INITDIALOG, MsgAboutInit}
  35. };
  36. MSDI msdiAbout =
  37. {
  38.     sizeof(rgmsdAbout) / sizeof(MSD),
  39.     rgmsdAbout,
  40.     edwpNone
  41. };
  42. // About dialog command table definition.
  43. CMD rgcmdAbout[] =
  44. {
  45.     {IDOK,     CmdAboutDone},
  46.     {IDCANCEL, CmdAboutDone}
  47. };
  48. CMDI cmdiAbout =
  49. {
  50.     sizeof(rgcmdAbout) / sizeof(CMD),
  51.     rgcmdAbout,
  52.     edwpNone
  53. };
  54. // Module specific "globals"  Used when a variable needs to be
  55. // accessed in more than on handler function.
  56. HFONT hFontCopyright;
  57. //
  58. //  FUNCTION: CmdAbout(HWND, WORD, WORD, HWND)
  59. //
  60. //  PURPOSE: Displays the "About" dialog box
  61. //
  62. //  PARAMETERS:
  63. //    hwnd      - Window handle
  64. //    wCommand  - IDM_ABOUT (unused)
  65. //    wNotify   - Notification number (unused)
  66. //    hwndCtrl  - NULL (unused)
  67. //
  68. //  RETURN VALUE:
  69. //
  70. //    Always returns 0 - Message handled
  71. //
  72. //  COMMENTS:
  73. //    To process the IDM_ABOUT message, call DialogBox() to display the
  74. //    about dialog box.
  75. LRESULT CmdAbout(HWND hwnd, WORD wCommand, WORD wNotify, HWND hwndCtrl)
  76. {
  77.     DialogBox(hInst, "AboutBox", hwnd, (DLGPROC)About);
  78.     return 0;
  79. }
  80. //
  81. //  FUNCTION: About(HWND, UINT, WPARAM, LPARAM)
  82. //
  83. //  PURPOSE:  Processes messages for "About" dialog box.
  84. //
  85. //  PARAMETERS:
  86. //    hdlg - window handle of the dialog box
  87. //    wMessage - type of message
  88. //    wparam - message-specific information
  89. //    lparam - message-specific information
  90. //
  91. //  RETURN VALUE:
  92. //    TRUE - message handled
  93. //    FALSE - message not handled
  94. //
  95. //  COMMENTS:
  96. //
  97. //     Display version information from the version section of the
  98. //     application resource.
  99. //
  100. //     Wait for user to click on "Ok" button, then close the dialog box.
  101. //
  102. LRESULT CALLBACK About(HWND hdlg, UINT uMessage, WPARAM wparam, LPARAM lparam)
  103. {
  104.     return DispMessage(&msdiAbout, hdlg, uMessage, wparam, lparam);
  105. }
  106. //
  107. //  FUNCTION: MsgAboutInit(HWND, UINT, WPARAM, LPARAM)
  108. //
  109. //  PURPOSE: To initialize the about box with version info from resources.
  110. //
  111. //  PARAMETERS:
  112. //    hwnd - The window handing the message.
  113. //    uMessage - The message number. (unused).
  114. //    wparam - Message specific data (unused).
  115. //    lparam - Message specific data (unused).
  116. //
  117. //  RETURN VALUE:
  118. //    Always returns 0 - message handled.
  119. //
  120. //  COMMENTS:
  121. //    Uses the version apis to retrieve version information for
  122. //    each of the static text boxes in the about box.
  123. //
  124. LRESULT MsgAboutInit(HWND hdlg, UINT uMessage, WPARAM wparam, LPARAM lparam)
  125. {
  126.     #define POINTSIZE 8
  127.     char  szFullPath[256];
  128.     DWORD dwVerHnd;
  129.     DWORD dwVerInfoSize;
  130.     HDC   hDC;
  131.     int   iLogPixelsY, iPointSize;
  132.     // Center the dialog over the application window
  133.     CenterWindow(hdlg, GetWindow(hdlg, GW_OWNER));
  134.     // Set the copyright font to something smaller than default
  135.     hDC = GetDC(hdlg);
  136.     iLogPixelsY = GetDeviceCaps(hDC, LOGPIXELSY);
  137.     ReleaseDC(hdlg, hDC);
  138.     iPointSize = MulDiv(iLogPixelsY, POINTSIZE, 72);
  139.     iPointSize *= -1;
  140.     hFontCopyright = CreateFont(iPointSize,
  141.                                 0, 0, 0,
  142.                                 FW_BOLD,
  143.                                 0, 0, 0, 0,
  144.                                 0, 0, 0, 0,
  145.                                 "Arial");
  146.     SendDlgItemMessage(hdlg, 
  147.                        IDD_VERLAST, 
  148.                        WM_SETFONT, 
  149.                        (WPARAM)hFontCopyright,
  150.                        0L);
  151.     // Get version information from the application
  152.     GetModuleFileName(hInst, szFullPath, sizeof(szFullPath));
  153.     dwVerInfoSize = GetFileVersionInfoSize(szFullPath, &dwVerHnd);
  154.     if (dwVerInfoSize)
  155.     {
  156.         // If we were able to get the information, process it:
  157.         HANDLE  hMem;
  158.         LPVOID  lpvMem;
  159.         char    szGetName[256];
  160.         int     cchRoot;
  161.         int     i;
  162.         hMem = GlobalAlloc(GMEM_MOVEABLE, dwVerInfoSize);
  163.         lpvMem = GlobalLock(hMem);
  164.         GetFileVersionInfo(szFullPath, dwVerHnd, dwVerInfoSize, lpvMem);
  165.         lstrcpy(szGetName, "\StringFileInfo\040904E4\");
  166.         cchRoot = lstrlen(szGetName);
  167.         // Walk through the dialog items that we want to replace:
  168.         for (i = IDD_VERFIRST; i <= IDD_VERLAST; i++)
  169.         {
  170.             BOOL  fRet;
  171.             UINT  cchVer = 0;
  172.             LPSTR lszVer = NULL;
  173.             char  szResult[256];
  174.             GetDlgItemText(hdlg, i, szResult, sizeof(szResult));
  175.             lstrcpy(&szGetName[cchRoot], szResult);
  176.             fRet = VerQueryValue(lpvMem, szGetName, &lszVer, &cchVer);
  177.             if (fRet && cchVer && lszVer)
  178.             {
  179.                 // Replace dialog item text with version info
  180.                 lstrcpy(szResult, lszVer);
  181.                 SetDlgItemText(hdlg, i, szResult);
  182.             }
  183.         }
  184.         GlobalUnlock(hMem);
  185.         GlobalFree(hMem);
  186.     }
  187.     return TRUE;
  188. }
  189. //
  190. //  FUNCTION: MsgAboutCommand(HWND, UINT, WPARAM, LPARAM)
  191. //
  192. //  PURPOSE: Process WM_COMMAND message sent to the about box.
  193. //
  194. //  PARAMETERS:
  195. //    hwnd - The window handing the message.
  196. //    uMessage - The message number. (unused).
  197. //    wparam - Message specific data (unused).
  198. //    lparam - Message specific data (unused).
  199. //
  200. //  RETURN VALUE:
  201. //    Always returns 0 - message handled.
  202. //
  203. //  COMMENTS:
  204. //    Uses this DipsCommand function defined in wndproc.c combined
  205. //    with the cmdiAbout structure defined in this file to handle
  206. //    the command messages for the about dialog box.
  207. //
  208. LRESULT MsgAboutCommand(HWND   hwnd, 
  209.                         UINT   uMessage, 
  210.                         WPARAM wparam, 
  211.                         LPARAM lparam)
  212. {
  213.     return DispCommand(&cmdiAbout, hwnd, wparam, lparam);
  214. }
  215. //
  216. //  FUNCTION: CmdAboutDone(HWND, WORD, HWND)
  217. //
  218. //  PURPOSE: Free the about box and related data.
  219. //
  220. //  PARAMETERS:
  221. //    hwnd - The window handling the command.
  222. //    wCommand - The command to be handled (unused).
  223. //    wNotify   - Notification number (unused)
  224. //    hwndCtrl - NULL (unused).
  225. //
  226. //  RETURN VALUE:
  227. //    Always returns TRUE.
  228. //
  229. //  COMMENTS:
  230. //    Calls EndDialog to finish the dialog session.
  231. //
  232. LRESULT CmdAboutDone(HWND hdlg, WORD wCommand, WORD wNotify, HWND hwndCtrl)
  233. {
  234.     if (hFontCopyright)
  235.        DeleteObject(hFontCopyright);
  236.     EndDialog(hdlg, TRUE);          // Exit the dialog
  237.     return TRUE;
  238. }