home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 10 / ioProg_10.iso / soft / platsdk / inetwork.exe / TAPI-S.cab / 21ABOUT.C < prev    next >
Encoding:
C/C++ Source or Header  |  1997-10-05  |  7.6 KB  |  271 lines

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