mirror of
https://github.com/reactos/reactos.git
synced 2025-04-03 20:21:17 +00:00
[REGEDIT] Display search finished messagebox when using Find Next (F3) menu item (#3371)
This repeats behaviour of Windows Regedit. CORE-17368
This commit is contained in:
parent
bc90cbbb88
commit
9de8787187
3 changed files with 15 additions and 9 deletions
|
@ -810,18 +810,23 @@ static INT_PTR CALLBACK FindDialogProc(HWND hDlg, UINT uMsg, WPARAM wParam, LPAR
|
|||
return iResult;
|
||||
}
|
||||
|
||||
void FindNextMessageBox(HWND hWnd)
|
||||
{
|
||||
if (!FindNext(hWnd))
|
||||
{
|
||||
WCHAR msg[128], caption[128];
|
||||
|
||||
LoadStringW(hInst, IDS_FINISHEDFIND, msg, COUNT_OF(msg));
|
||||
LoadStringW(hInst, IDS_APP_TITLE, caption, COUNT_OF(caption));
|
||||
MessageBoxW(hWnd, msg, caption, MB_ICONINFORMATION);
|
||||
}
|
||||
}
|
||||
|
||||
void FindDialog(HWND hWnd)
|
||||
{
|
||||
if (DialogBoxParamW(GetModuleHandle(NULL), MAKEINTRESOURCEW(IDD_FIND),
|
||||
hWnd, FindDialogProc, 0) != 0)
|
||||
{
|
||||
if (!FindNext(hWnd))
|
||||
{
|
||||
WCHAR msg[128], caption[128];
|
||||
|
||||
LoadStringW(hInst, IDS_FINISHEDFIND, msg, COUNT_OF(msg));
|
||||
LoadStringW(hInst, IDS_APP_TITLE, caption, COUNT_OF(caption));
|
||||
MessageBoxW(hWnd, msg, caption, MB_ICONINFORMATION);
|
||||
}
|
||||
FindNextMessageBox(hWnd);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1230,7 +1230,7 @@ static BOOL _CmdWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
|
|||
FindDialog(hWnd);
|
||||
break;
|
||||
case ID_EDIT_FINDNEXT:
|
||||
FindNext(hWnd);
|
||||
FindNextMessageBox(hWnd);
|
||||
break;
|
||||
case ID_EDIT_COPYKEYNAME:
|
||||
CopyKeyName(hWnd, hKeyRoot, keyPath);
|
||||
|
|
|
@ -103,6 +103,7 @@ extern int InfoMessageBox(HWND hWnd, UINT uType, LPCWSTR lpTitle, LPCWSTR lpMess
|
|||
/* find.c */
|
||||
extern void FindDialog(HWND hWnd);
|
||||
extern BOOL FindNext(HWND hWnd);
|
||||
extern void FindNextMessageBox(HWND hWnd);
|
||||
|
||||
/* framewnd.c */
|
||||
extern LRESULT CALLBACK FrameWndProc(HWND, UINT, WPARAM, LPARAM);
|
||||
|
|
Loading…
Reference in a new issue