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

Windows编程

开发平台:

Visual C++

  1. /************************************************************************
  2.   File: find.c
  3.   Purpose:
  4.      Manages CDTEST's find/replace dialog box.
  5.   Functions:
  6.     - lpfnFilterProc()      -- A callback function for a filter that must be
  7.                                installed if a modeless dialog is created with
  8.                                another dialog as its parent.
  9.     - DoFindDialog()        -- Creates CDTEST's Open/Save dialog.
  10.     - FindProc()            -- Callback function for CDTEST's Find/Replace dlg.
  11.     - InitFindStruct()      -- Fills a FINDREPLACE structure with some defaults.
  12.     - FillFindDlg()         -- Fills CDTESTs Find/Replace dialog with the contents
  13.                                of a FINDREPLACE structure.
  14.     - GetFindDlg()          -- Retrieves the users edit's from CDTEST's find/
  15.                                replace dialog and puts them in a FINDREPLACE
  16.                                structure.
  17.     - FindReplaceHookProc() -- Callback function for FindText() or ReplaceText()
  18.                                which will be called if either of these dialogs
  19.                                is created with the FR_ENABLEHOOK flag.
  20.     - GetFindDlgHandle()    -- Returns a handle to a preloaded FindText() template.
  21.     - GetReplaceDlgHandle() -- Returns a handle to a preloaded ReplaceText() template.
  22.     - DoFindRepStuff()      -- Calls FindText() or ReplaceText().
  23.   NOTE: CDTEST does not multithread the FindText() or the ReplaceText()
  24.         common dialogs.  The reason for this is that since these dialogs
  25.         are modeless, their creation functions return immediately after the
  26.         dialogs are created as opposed to other dialog functions that
  27.         don't return until after the dialog has been destroyed by the user.
  28.         As a result, any threads that create modeless dialogs will end
  29.         immediately unless the threads themselves have separate message
  30.         loops.  For the sake of clarity, this functionality has not been
  31.         added to CDTEST.
  32. ************************************************************************/
  33. #include <windows.h>
  34. #include <commdlg.h>
  35. #include <stdlib.h>
  36. #include <winnls.h>
  37. #include "cdtest.h"
  38. #include "find.h"
  39. #include "replace.h"
  40. /* All functions used in this module + some exported ones */
  41. void InitFindStruct(HWND, LPFINDREPLACE) ;
  42. void FillFindDlg(HWND, LPFINDREPLACE) ;
  43. void GetFindDlg(HWND, LPFINDREPLACE) ;
  44. extern UINT uMode ;
  45. extern LONG MyAtol(LPTSTR, BOOL, LPBOOL) ;
  46. UINT APIENTRY FindReplaceHookProc(HWND, UINT, UINT, LONG) ;
  47. void DoFindRepStuff(LPFINDREPLACE) ;
  48. /* All global variables used in this module */
  49. HWND hwndFind ;
  50. HWND hwndMainDialog ;
  51. FINDREPLACE fr ;
  52. LPFINDREPLACE lpFr ;
  53. TCHAR szFindWhat[100] ;
  54. TCHAR szReplaceWith[100] ;
  55. TCHAR szTemplate[40] ;
  56. HANDLE hResFind, hDialogFind ;
  57. HANDLE GetFindDlgHandle(void) ;
  58. HANDLE GetReplaceDlgHandle(void) ;
  59. HBRUSH hBrushDlg ;
  60. HBRUSH hBrushEdit ;    //brush handles for new colors done with hook proc
  61. HBRUSH hBrushButton ;
  62. /************************************************************************
  63.   Function: lpfnFilterProc(int, WPARAM, LAPRAM)
  64.   Purpose: This is needed if a modeless dialog is created with its parent
  65.            as another dialog box.
  66.   Returns: TRUE if the message was handled and FALSE if not.
  67.   Comments:
  68.     The reason for this is that the DialogBox() procedure does not call
  69.     the IsDialogMessage() function before it processes messages, so we
  70.     need to install a hook function to do it for us.
  71. ************************************************************************/
  72. LRESULT CALLBACK lpfnFilterProc(int nCode, WPARAM wParam, LPARAM lParam)
  73. {
  74.   static bFirstTime = TRUE ;
  75.   if (nCode < 0)
  76.     return CallNextHookEx(hHook, nCode, wParam, lParam) ;
  77.   if (nCode == MSGF_DIALOGBOX && bFirstTime)
  78.   {
  79.     bFirstTime = FALSE ;
  80.     if (hwndFind && IsDialogMessage(hwndFind, (LPMSG) lParam))
  81.     {
  82.       bFirstTime = TRUE ;
  83.       return 1L ;
  84.     }
  85.     else
  86.     {
  87.       bFirstTime = TRUE ;
  88.       return 0L ;
  89.     }
  90.   }
  91.   else return 0L ;
  92. }
  93. /************************************************************************
  94.   Function: DoFindDialog(HWND)
  95.   Purpose: This function installs the Hook function, creates the Find/
  96.            Replace dialog, and un-installs the Hook.
  97.   Returns: Nothing.
  98.   Comments:
  99. ************************************************************************/
  100. void DoFindDialog(HWND hwnd)
  101. {
  102.   bDoFindDlg = TRUE ;
  103.   /* this is a little different than the others.  If the dialog is just
  104.      created normally, it will make no IsDlgMessage() checks and the
  105.      find/replace dialogs will have no keyboard input (i.e. tabbing and
  106.      alt+key-ing from control to control.  To fix this, a message hook
  107.      and message filter have to be installed
  108.      It must be set to only look at the input for the current thread, or other
  109.      programs will be interrupted by this hook also.
  110.   */
  111.   hHook = SetWindowsHookEx(WH_MSGFILTER, lpfnFilterProc,
  112.                            hInst, GetCurrentThreadId()) ;
  113.   if (!hHook) return ;
  114.   DialogBox(hInst, MAKEINTRESOURCE(ID_FINDDIALOG), hwnd, FindProc) ;
  115.   UnhookWindowsHookEx(hHook) ;
  116. }
  117. /************************************************************************
  118.   Function: FindProc(HWND, UINT, UINT, LONG)
  119.   Purpose: This is the callback function for the CDTEST's Find/Replace
  120.            Dialog.
  121.   Returns: TRUE or FALSE depending on the situation.
  122.   Comments:
  123. ************************************************************************/
  124. BOOL APIENTRY FindProc(HWND hwnd, UINT msg, UINT wParam, LONG lParam)
  125. {
  126.   switch (msg)
  127.   {
  128.     case WM_INITDIALOG:
  129.         if (bDoFindDlg)
  130.           SetWindowText(hwnd, TEXT("FindText()")) ;
  131.         else
  132.           SetWindowText(hwnd, TEXT("ReplaceText()")) ;
  133.         InitFindStruct(hwnd, &fr) ;
  134.         FillFindDlg(hwnd, &fr) ;
  135.         hwndMainDialog = hwnd ;
  136.         /* The find and replace dialogs are a lot harder to multithread because they
  137.            are modeless.  Modeless dialog creation functions return right after the
  138.            dialog is created.  Since ExitThread will be called at this point, it is
  139.            probably not possible to multithread these dialogs without a separate
  140.            GetMessage() loop.
  141.         */
  142.         EnableWindow(GetDlgItem(hwnd, ID_MULTITHREADFINDREP), FALSE) ;
  143.         SetFocus(GetDlgItem(hwnd, ID_STRUCTSIZEFT)) ;
  144.         break ;
  145.     case WM_COMMAND:
  146.     {
  147.         switch (LOWORD(wParam))
  148.         {
  149.           case IDOK:
  150.             GetFindDlg(hwnd, &fr) ;
  151.             DoFindRepStuff(&fr) ;
  152.             break ;
  153.           case ID_RESETFIND:
  154.             SendDlgItemMessage(hwnd, ID_FRNULLSTRUCT, BM_SETCHECK, (WPARAM)0, (LPARAM)0) ;
  155.             SendDlgItemMessage(hwnd, ID_PRELOADEDFIND, BM_SETCHECK, (WPARAM)0, (LPARAM)0) ;
  156.             InitFindStruct(hwnd, &fr) ;
  157.             FillFindDlg(hwnd, &fr) ;
  158.             SetFocus(GetDlgItem(hwnd, ID_STRUCTSIZEFT)) ;
  159.             break ;
  160.           case IDCANCEL:
  161.             EndDialog(hwnd, FALSE) ;
  162.             break ;
  163.           default: break ;
  164.         }
  165.     }
  166.     default:
  167.     /* nFindMsg is registered at program startup (see CDTEST.c).  The
  168.        FindText() and ReplaceText() dialogs will communicate with the
  169.        calling application via this message. */
  170.     if (msg == nFindMsg)
  171.     {
  172.         lpFr = (LPFINDREPLACE) lParam ;
  173.         if (lpFr->Flags & FR_DIALOGTERM)
  174.         {
  175.           PostMessage(hwnd, UMSG_DECREMENTDLGCOUNT, 0, 0L) ;
  176.           if (hDialogFind)
  177.           {
  178.             FreeResource(hDialogFind) ;
  179.             hDialogFind = (HANDLE) 0 ;
  180.             hResFind = (HANDLE) 0 ;
  181.           }
  182.           hwndFind = (HWND) 0 ;
  183.         }
  184.         FillFindDlg(hwnd, &fr) ;
  185.         wsprintf(szTemp, szLongFilter, CommDlgExtendedError()) ;
  186.         SetDlgItemText(hwnd, ID_ERRORFT, szTemp) ;
  187.         wsprintf(szTemp, szLongFilter, hwndFind) ;
  188.         SetDlgItemText(hwnd, ID_RETURNFT, szTemp) ;
  189.     }
  190.     /* If the help button is pressed in the FindText() or ReplaceText()
  191.        dialogs, it will send a message Registered with RegisterWindowMessage()
  192.        to the parent window.  The message nHelpMessage was registered
  193.        at application startup */
  194.     if (msg == nHelpMessage)
  195.       MessageBox(GetForegroundWindow(), TEXT("Hello from the help button"),
  196.                  TEXT("Find Help Button"), MB_OK | MB_APPLMODAL) ;
  197.     break ;
  198.   }
  199.   return FALSE ;
  200. }
  201. /************************************************************************
  202.   Function: InitFindStruct(HWND, LPFINDREPLACE)
  203.   Purpose: Fills a FINDREPLACE structure with some defaults.
  204.   Returns: Nothing.
  205.   Comments:
  206. ************************************************************************/
  207. void InitFindStruct(HWND hwnd, LPFINDREPLACE pfr)
  208. {
  209.   pfr->lStructSize = (DWORD) sizeof(FINDREPLACE) ;
  210.   pfr->hwndOwner = hwnd ;
  211.   pfr->hInstance = (HANDLE) hInst ;
  212.   pfr->Flags = FR_DOWN | FR_SHOWHELP  ;
  213.   lstrcpy(szFindWhat, TEXT("Word to find")) ;
  214.   pfr->lpstrFindWhat = szFindWhat ;
  215.   pfr->wFindWhatLen = 100 ;
  216.   lstrcpy(szReplaceWith, TEXT("Replace with word")) ;
  217.   pfr->lpstrReplaceWith = szReplaceWith ;
  218.   pfr->wReplaceWithLen = 100 ;
  219.   pfr->lCustData = (DWORD) 0 ;
  220.   pfr->lpfnHook = FindReplaceHookProc ;
  221.   lstrcpy(szTemplate, TEXT("fttemp1")) ;
  222.   pfr->lpTemplateName = szTemplate ;
  223. }
  224. /************************************************************************
  225.   Function: FillFindDlg(HWND, LPFINDREPLACE)
  226.   Purpose:  Fills CDTEST's Find/Replace dialog with the contents of a
  227.             FINDREPLACE structure.
  228.   Returns:  Nothing.
  229.   Comments:
  230. ************************************************************************/
  231. void FillFindDlg(HWND hwnd, LPFINDREPLACE pfr)
  232. {
  233.   wsprintf(szTemp, szLongFilter, pfr->lStructSize) ;
  234.   SetDlgItemText(hwnd, ID_STRUCTSIZEFT, szTemp) ;
  235.   wsprintf(szTemp, szLongFilter, (DWORD) pfr->hwndOwner) ;
  236.   SetDlgItemText(hwnd, ID_HWNDOWNERFT, szTemp) ;
  237.   wsprintf(szTemp, szLongFilter, (DWORD) pfr->hInstance) ;
  238.   SetDlgItemText(hwnd, ID_HINSTANCEFT, szTemp) ;
  239.   wsprintf(szTemp, szLongFilter, pfr->Flags) ;
  240.   SetDlgItemText(hwnd, ID_FLAGSFT, szTemp) ;
  241.   SetDlgItemText(hwnd, ID_FINDWHATFT, pfr->lpstrFindWhat) ;
  242.   wsprintf(szTemp, szLongFilter, pfr->wFindWhatLen) ;
  243.   SetDlgItemText(hwnd, ID_FINDWHATLENFT, szTemp) ;
  244.   SetDlgItemText(hwnd, ID_REPLACEWITHFT, pfr->lpstrReplaceWith) ;
  245.   wsprintf(szTemp, szLongFilter, pfr->wReplaceWithLen) ;
  246.   SetDlgItemText(hwnd, ID_REPLACEWITHLENFT, szTemp) ;
  247.   wsprintf(szTemp, szLongFilter, pfr->lCustData) ;
  248.   SetDlgItemText(hwnd, ID_CUSTDATAFT, szTemp) ;
  249.   wsprintf(szTemp, szLongFilter, (DWORD) pfr->lpfnHook) ;
  250.   SetDlgItemText(hwnd, ID_HOOKFT, szTemp) ;
  251.   SetDlgItemText(hwnd, ID_TEMPLATEFT, pfr->lpTemplateName) ;
  252. }
  253. /************************************************************************
  254.   Function: GetFindDlg(HWND, LPFINDREPLACE)
  255.   Purpose:  Fills a FINDREPLACE structure with the user's edits in CDTEST's
  256.             Find/Replace dialog.
  257.   Returns:  Nothing.
  258.   Comments:
  259. ************************************************************************/
  260. void GetFindDlg(HWND hwnd, LPFINDREPLACE pfr)
  261. {
  262.   TCHAR szNum[30] ;
  263.   BOOL b ;
  264.   #define WSIZEFR 30
  265.   GetDlgItemText(hwnd, ID_STRUCTSIZEFT, szNum, WSIZEFR) ;
  266.   pfr->lStructSize = MyAtol(szNum, uMode == IDM_HEXMODE, &b) ;
  267.   GetDlgItemText(hwnd, ID_HWNDOWNERFT, szNum, WSIZEFR) ;
  268.   pfr->hwndOwner = (HWND) MyAtol(szNum, uMode == IDM_HEXMODE, &b) ;
  269.   GetDlgItemText(hwnd, ID_HINSTANCEFT, szNum, WSIZEFR) ;
  270.   pfr->hInstance = (HANDLE) MyAtol(szNum, uMode == IDM_HEXMODE, &b) ;
  271.   GetDlgItemText(hwnd, ID_FLAGSFT, szNum, WSIZEFR) ;
  272.   pfr->Flags = MyAtol(szNum, uMode == IDM_HEXMODE, &b) ;
  273.   GetDlgItemText(hwnd, ID_FINDWHATFT, szFindWhat, 100) ;
  274.   GetDlgItemText(hwnd, ID_REPLACEWITHFT, szReplaceWith, 100) ;
  275.   GetDlgItemText(hwnd, ID_FINDWHATLENFT, szNum, WSIZEFR) ;
  276.   pfr->wFindWhatLen = (WORD) MyAtol(szNum, uMode == IDM_HEXMODE, &b) ;
  277.   GetDlgItemText(hwnd, ID_REPLACEWITHLENFT, szNum, WSIZEFR) ;
  278.   pfr->wReplaceWithLen = (WORD) MyAtol(szNum, uMode == IDM_HEXMODE, &b) ;
  279.   GetDlgItemText(hwnd, ID_CUSTDATAFT, szNum, WSIZEFR) ;
  280.   pfr->lCustData = MyAtol(szNum, uMode == IDM_HEXMODE, &b) ;
  281.   GetDlgItemText(hwnd, ID_HOOKFT, szNum, WSIZEFR) ;
  282.   pfr->lpfnHook = (LPFRHOOKPROC) MyAtol(szNum, uMode == IDM_HEXMODE, &b) ;
  283.   GetDlgItemText(hwnd, ID_TEMPLATEFT, szTemplate, 40) ;
  284. }
  285. /************************************************************************
  286.   Function: FindReplaceHookProc(HWND, UINT, UINT, LONG)
  287.   Purpose:  Is the callback function that will be called by FindText()
  288.             or ReplaceText() if the function is called with the
  289.             FR_ENABLEHOOK flag.
  290.   Returns:  TRUE to discard the message, and FALSE to instruct the common
  291.             dialogs to process the message with the default logic.
  292.   Comments:
  293.      NOTE!
  294.      If the application returns FALSE in response to the WM_INITDIALOG
  295.      message, it is then responsible for displaying the dialog by
  296.      calling ShowWindow() and UpdateWindow().
  297. ***********************************************************************/
  298. UINT APIENTRY FindReplaceHookProc(HWND hwnd, UINT msg, UINT wParam, LONG lParam)
  299. {
  300.   LPFINDREPLACE pFr ;
  301.   TCHAR szMsg[75] ;
  302.   TCHAR szTmp[20] ;
  303.   int i ;
  304.   TCHAR szDefString[] = TEXT("Default String ") ;
  305.   switch(msg)
  306.   {
  307.     case WM_INITDIALOG:
  308.       pFr = (LPFINDREPLACE) lParam ;
  309.       if (pFr->lCustData != 0L)
  310.       {
  311.         wsprintf(szMsg, TEXT("FINDREPLACE->lCustData is: %ld"), pFr->lCustData) ;
  312.         MessageBox(hwnd, szMsg, TEXT("lCustData Sent!"), MB_OK | MB_APPLMODAL) ;
  313.       }
  314.       SetWindowText(hwnd, TEXT("Find Hook Proc Dialog")) ;
  315.       if (GetDlgItem(hwnd, ID_DEFSTRINGS))
  316.       {
  317.         for (i=0; i<5; i++)
  318.         {
  319.           lstrcpy(szMsg, szDefString) ;
  320.           wsprintf(szTmp, TEXT("Number %d"), i+1) ;
  321.           lstrcat(szMsg, szTmp) ;
  322.           SendDlgItemMessage(hwnd, ID_DEFSTRINGS, LB_ADDSTRING, (WPARAM) 0,
  323.                              (LONG) (LPTSTR) szMsg) ;
  324.         }
  325.       }
  326.       return TRUE ;
  327.       break ;
  328.     /* use the WM_CTLCOLOR* messages to change the color of the Open
  329.        dialog */
  330.     case WM_CTLCOLORDLG:
  331.         if (!hBrushDlg)
  332.             hBrushDlg = GetStockObject(LTGRAY_BRUSH) ;
  333.         return (UINT) hBrushDlg ;
  334.         break ;
  335.     case WM_CTLCOLORBTN:
  336.         SetBkMode((HDC) wParam, TRANSPARENT) ;   //sets background color
  337.                                                  //for push and check box
  338.                                                  //buttons...
  339.         if (!hBrushButton)
  340.             hBrushButton = GetStockObject(LTGRAY_BRUSH) ;
  341.         return (UINT) hBrushButton ;
  342.         break ;
  343.     case WM_CTLCOLORSTATIC:
  344.         SetTextColor((HDC) wParam, RGB(0x00, 0xff, 0x00)) ;  //green
  345.         SetBkMode((HDC) wParam, TRANSPARENT) ;               //transparent text
  346.         if (!hBrushDlg)
  347.             hBrushDlg = GetStockObject(LTGRAY_BRUSH) ;
  348.         return (UINT) hBrushDlg ;
  349.         break ;
  350.     default:
  351.       break ;
  352.   }
  353.   return FALSE ;   //send msg to the common dialog code
  354. }
  355. /************************************************************************
  356.   Function: GetFindDlgHandle(void)
  357.   Purpose:  Finds, loads, and returns a handle to the custom template
  358.             for FindText() in CDTEST.EXE.
  359.   Returns:  HANDLE to the dialog resource.
  360.   Comments:
  361. ************************************************************************/
  362. HANDLE GetFindDlgHandle(void)
  363. {
  364.   hResFind = FindResource(hInst, TEXT("fttemp1"), RT_DIALOG) ;
  365.   hDialogFind = LoadResource(hInst, hResFind) ;
  366.   return hDialogFind ;
  367. }
  368. /************************************************************************
  369.   Function: GetReplaceDlgHandle(void)
  370.   Purpose:  Finds, loads, and returns a handle to the custom template
  371.             for ReplaceText() in CDTEST.EXE.
  372.   Returns:  HANDLE to the dialog resource.
  373.   Comments:
  374. ************************************************************************/
  375. HANDLE GetReplaceDlgHandle(void)
  376. {
  377.   hResFind = FindResource(hInst, TEXT("fttemp2"), RT_DIALOG) ;
  378.   hDialogFind = LoadResource(hInst, hResFind) ;
  379.   return hDialogFind ;
  380. }
  381. /************************************************************************
  382.   Function: DoFindReplaceStuff(LPFINDREPLACE)
  383.   Purpose:  Calls FindText() or ReplaceText().
  384.   Returns:  Nothing:
  385.   Comments:
  386. ************************************************************************/
  387. void DoFindRepStuff(LPFINDREPLACE pfr)
  388. {
  389.   if (IsDlgButtonChecked(hwndMainDialog, ID_PRELOADEDFIND) == 1)
  390.   {
  391.     if (bDoFindDlg)
  392.       pfr->hInstance = GetFindDlgHandle() ;
  393.     else
  394.       pfr->hInstance = GetReplaceDlgHandle() ;
  395.   }
  396.   if (bDoFindDlg)
  397.   {
  398.     if (IsDlgButtonChecked(hwndMainDialog, ID_FRNULLSTRUCT) == 1)
  399.     {
  400.         hwndFind = FindText((LPFINDREPLACE) NULL) ;
  401.     }
  402.     else
  403.     {
  404.         hwndFind = FindText(pfr) ;
  405.     }
  406.   }
  407.   else
  408.   {
  409.     if (IsDlgButtonChecked(hwndMainDialog, ID_FRNULLSTRUCT) == 1)
  410.     {
  411.         hwndFind = ReplaceText((LPFINDREPLACE) NULL) ;
  412.     }
  413.     else
  414.     {
  415.         hwndFind = ReplaceText(pfr) ;
  416.     }
  417.   }
  418.   wsprintf(szTemp, szLongFilter, CommDlgExtendedError()) ;
  419.   SetDlgItemText(hwndMainDialog, ID_ERRORFT, szTemp) ;
  420.   wsprintf(szTemp, szLongFilter, hwndFind) ;
  421.   SetDlgItemText(hwndMainDialog, ID_RETURNFT, szTemp) ;
  422. }