GUI.C
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:7k
源码类别:

Windows编程

开发平台:

Visual C++

  1. /******************************************************************************
  2. *       This is a part of the Microsoft Source Code Samples. 
  3. *       Copyright (C) 1993-1997 Microsoft Corporation.
  4. *       All rights reserved. 
  5. *       This source code is only intended as a supplement to 
  6. *       Microsoft Development Tools and/or WinHelp documentation.
  7. *       See these sources for detailed information regarding the 
  8. *       Microsoft samples programs.
  9. ******************************************************************************/
  10. // GUI.C
  11. // ================================================================
  12. // This module contains all of the functions that interface to the
  13. // 'graphical' part of this program. This currently only relates to
  14. // the code that brings up the dialog box, and calls the WinHelp
  15. // engine.
  16. #include <stdio.h>
  17. #include <string.h>
  18. #include <ctype.h>
  19. #include <windows.h>
  20. #include "ConGUI.h"
  21. int DoHelp (char *szHelpTopic);
  22. int GetDialogArgs (char ***pargv);
  23. BOOL CenterWindow (HWND hwnd);
  24. BOOL APIENTRY CLDlgProc (HWND hdlg, UINT msg, WPARAM wParam, LPARAM lParam);
  25. // Use WINHELP to bring up the applicaiton help file
  26. int DoHelp (char *szHelpTopic)
  27. {
  28.     WinHelp (GetFocus(), "ConGUI.HLP", HELP_KEY, (DWORD)(LPSTR)szHelpTopic);
  29.     return TRUE;
  30. }
  31. // Bring up the dialog box, and pass back a 'command line' as was
  32. // specified by the user
  33. int GetDialogArgs (char ***pargv)
  34. {
  35.     int ret;
  36.     HANDLE hinst;
  37.     HWND hwnd;
  38.     char szFile[80];
  39.     hinst = GetModuleHandle (NULL);
  40.     hwnd = GetFocus();
  41.     ret = DialogBoxParam (hinst, "CL", NULL, CLDlgProc, (LPARAM)pargv);
  42.     if (-1 == ret) {
  43.         ret = GetLastError();
  44.         printf ("Unable to create dialog: %dn", ret);
  45.         GetModuleFileName (hinst, szFile, sizeof(szFile));
  46.         printf ("hinst = %dn", hinst);
  47.         printf ("hwnd = %dn", hwnd);
  48.         printf ("File = %sn", szFile);
  49.         return FALSE;
  50.     }
  51.     return ret;
  52. }
  53. // A quick little routine that will center a window on the screen.
  54. // Handy for dialog boxes
  55. BOOL CenterWindow (HWND hwnd)
  56. {
  57.     RECT    rect;
  58.     int     w, h;
  59.     int     wScreen, hScreen, xNew, yNew;
  60.     HDC     hdc;
  61.     GetWindowRect (hwnd, &rect);
  62.     w = rect.right - rect.left;
  63.     h = rect.bottom - rect.top;
  64.     hdc = GetDC (hwnd);
  65.     wScreen = GetDeviceCaps (hdc, HORZRES);
  66.     hScreen = GetDeviceCaps (hdc, VERTRES);
  67.     ReleaseDC (hwnd, hdc);
  68.     xNew = wScreen/2 - w/2;
  69.     yNew = hScreen/2 - h/2;
  70.     return SetWindowPos (hwnd, NULL, xNew, yNew, 0, 0, SWP_NOSIZE | SWP_NOZORDER);
  71. }
  72. // Create a data structure that will hold the strings for the combo boxes
  73. // we have in our dialog. This just illustrates 'a' way to do this, not
  74. // necessarily the best.
  75. typedef struct tagDlgCtrls {
  76.     int ctrlId;
  77.     int def;
  78.     char str[25];
  79.     char opt[5];
  80. } DlgCtrls;
  81. DlgCtrls dlgctrls[] = {
  82.     { 415, FALSE, "DOS EXE", "..." },
  83.     { 415, FALSE, "Windows 3.0 EXE", "..."  },
  84.     { 415, FALSE, "Windows 3.0 DLL", "..."  },
  85.     { 415, FALSE, "Windows 3.1 EXE", "..."  },
  86.     { 415, FALSE, "Windows 3.1 DLL", "..."  },
  87.     { 415, TRUE,  "Windows NT EXE", "..."  },
  88.     { 415, FALSE, "Windows NT DLL", "..."  },
  89.     { 415, FALSE, "Windows NT Console App", "..."  },
  90.     { 402, FALSE, "Small", "AS" },
  91.     { 402, FALSE, "Medium", "AM" },
  92.     { 402, FALSE, "Compact", "AC" },
  93.     { 402, TRUE,  "Large", "AL" },
  94.     { 402, FALSE, "Huge", "AH" },
  95.     { 402, FALSE, "Customize", "A?" },
  96.     { 404, FALSE, "8086", "G0" },
  97.     { 404, FALSE, "80186", "G1" },
  98.     { 404, TRUE,  "80286", "G2" },
  99.     { 404, FALSE, "80386", "G3" },
  100.     { 404, FALSE, "80486", "G4" },
  101.     { 406, TRUE,  "stdcall", "Gz" },
  102.     { 406, FALSE, "Pascal", "Gc" },
  103.     { 406, FALSE, "C", "Gd" },
  104.     { 408, FALSE, "Level 0", "W0" },
  105.     { 408, FALSE, "Level 1", "W1" },
  106.     { 408, FALSE, "Level 2", "W2" },
  107.     { 408, TRUE,  "Level 3", "W3" },
  108.     { 408, FALSE, "Level 4", "W4" },
  109.     { 411, FALSE, "None", "" },
  110.     { 411, FALSE, "Line Numbers Only", "Zd" },
  111.     { 411, TRUE,  "Full Information", "Zi" },
  112.     { 418, FALSE, "Ansi C", "Za" },
  113.     { 418, TRUE, "MS Extensions", "Ze" },
  114.     { 413, FALSE, "None", "" },
  115.     { 413, TRUE,  "Protect Mode App", "GA" },
  116.     { 413, FALSE, "Protect Mode DLL", "GD" },
  117.     { 0, 0}  // End Of List
  118. };
  119. BOOL APIENTRY CLDlgProc (HWND hdlg, UINT msg, WPARAM wParam, LPARAM lParam)
  120. {
  121.     int wmId;
  122.     static char ***pargv;
  123.     static char **argv;
  124.     int i, item, index, iCtrl, argc;
  125.     char *cmd;
  126.     char *cmdline;
  127.     switch (msg) {
  128.         case WM_INITDIALOG:
  129.             // We need to initialize stuff in the dialog box...
  130.             pargv = (char ***)lParam;
  131.             argv = *pargv;
  132.             CenterWindow (hdlg);
  133.             iCtrl = i = 0;
  134.             while (dlgctrls[i].ctrlId) {
  135.                 if (dlgctrls[i].ctrlId != iCtrl) { // Starting a new list
  136.                     iCtrl = dlgctrls[i].ctrlId;
  137.                 }
  138.                 index = SendDlgItemMessage (hdlg, iCtrl, CB_ADDSTRING, 0, (DWORD)(LPSTR)dlgctrls[i].str);
  139.                 SendDlgItemMessage (hdlg, iCtrl, CB_SETITEMDATA, index, i);
  140.                 if (dlgctrls[i].def) {
  141.                     SendDlgItemMessage (hdlg, dlgctrls[i].ctrlId, CB_SETCURSEL, index, 0);
  142.                 }
  143.                 i++;
  144.             }
  145.             return (TRUE);
  146.         case WM_DESTROY:
  147.             break;
  148.         case WM_COMMAND:
  149.             wmId = LOWORD(wParam);
  150.             switch (wmId) {
  151.                 case T_HELP:
  152.                     DoHelp ("Contents");
  153.                     break;
  154.                 case IDOK:
  155.                     cmd = cmdline = (char *)GlobalAlloc (GPTR, 128);
  156.                     argv[0] = cmdline;
  157.                     argc = 0;
  158.                     if (cmdline) {
  159.                         iCtrl = i = 0;
  160.                         while (dlgctrls[i].ctrlId) {
  161.                             if (dlgctrls[i].ctrlId != iCtrl) {
  162.                                 iCtrl = dlgctrls[i].ctrlId;
  163.                                 index = SendDlgItemMessage(hdlg, iCtrl, CB_GETCURSEL, 0, 0);
  164.                                 if (index) {
  165.                                     item = SendDlgItemMessage (hdlg, iCtrl, CB_GETITEMDATA, index, 0);
  166.                                     wsprintf ((LPSTR)cmd, "-%s", (LPSTR)dlgctrls[item].opt);
  167.                                     cmd += strlen(cmd);
  168.                                     cmd[0] = 0;
  169.                                     argv[++argc] = ++cmd;
  170.                                 }
  171.                             }
  172.                             i++;
  173.                         }
  174.                     } // if (cmdline)...
  175.                     EndDialog(hdlg, argc);
  176.                     return (TRUE);
  177.                 case IDCANCEL:
  178.                     EndDialog(hdlg, 0);
  179.                     return (TRUE);
  180.             }
  181.             break;
  182.     }
  183.     return (FALSE);
  184.     lParam; // unreferenced formal parameter
  185. }