|
|
//
// Advanced.C
//
#include "sigverif.h"
//
// Initialization of search dialog.
//
BOOL Search_OnInitDialog(HWND hwnd, HWND hwndFocus, LPARAM lParam) { TCHAR szBuffer[MAX_PATH];
g_App.hSearch = hwnd;
// Since the "check system files" option is faster, check that option by default
if (!g_App.bUserScan) CheckRadioButton(hwnd, IDC_SCAN, IDC_NOTMS, IDC_SCAN); else CheckRadioButton(hwnd, IDC_SCAN, IDC_NOTMS, IDC_NOTMS);
// Pre-load the user's search path with the Windows directory
if (!*g_App.szScanPath) { MyGetWindowsDirectory(g_App.szScanPath, MAX_PATH); }
// Display the current search folder
SetDlgItemText(hwnd, IDC_FOLDER, g_App.szScanPath);
// Pre-load the user's search pattern with "*.*"
if (!*g_App.szScanPattern) { MyLoadString(g_App.szScanPattern, IDS_ALL); }
// Display the current search pattern.
SetDlgItemText(hwnd, IDC_TYPE, szBuffer);
// Now disable all the dialog items associated with IDS_NOTMS
if (!g_App.bUserScan) { EnableWindow(GetDlgItem(hwnd, IDC_SUBFOLDERS), FALSE); EnableWindow(GetDlgItem(hwnd, IDC_TYPE), FALSE); EnableWindow(GetDlgItem(hwnd, IDC_FOLDER), FALSE); EnableWindow(GetDlgItem(hwnd, ID_BROWSE), FALSE); }
// If we are searching subdirectories, check the SubFolders checkbox
if (g_App.bSubFolders) CheckDlgButton(hwnd, IDC_SUBFOLDERS, BST_CHECKED); else CheckDlgButton(hwnd, IDC_SUBFOLDERS, BST_UNCHECKED);
// Set the combobox value to g_App.szScanPattern
SetDlgItemText(hwnd, IDC_TYPE, g_App.szScanPattern);
// Initialize the combobox with several pre-defined extension types
MyLoadString(szBuffer, IDS_EXE); SendMessage(GetDlgItem(hwnd, IDC_TYPE), CB_ADDSTRING, (WPARAM) 0, (LPARAM) szBuffer); MyLoadString(szBuffer, IDS_DLL); SendMessage(GetDlgItem(hwnd, IDC_TYPE), CB_ADDSTRING, (WPARAM) 0, (LPARAM) szBuffer); MyLoadString(szBuffer, IDS_SYS); SendMessage(GetDlgItem(hwnd, IDC_TYPE), CB_ADDSTRING, (WPARAM) 0, (LPARAM) szBuffer); MyLoadString(szBuffer, IDS_DRV); SendMessage(GetDlgItem(hwnd, IDC_TYPE), CB_ADDSTRING, (WPARAM) 0, (LPARAM) szBuffer); MyLoadString(szBuffer, IDS_OCX); SendMessage(GetDlgItem(hwnd, IDC_TYPE), CB_ADDSTRING, (WPARAM) 0, (LPARAM) szBuffer); MyLoadString(szBuffer, IDS_ALL); SendMessage(GetDlgItem(hwnd, IDC_TYPE), CB_ADDSTRING, (WPARAM) 0, (LPARAM) szBuffer);
return TRUE; }
//
// Handle any WM_COMMAND messages sent to the search dialog
//
void Search_OnCommand(HWND hwnd, int id, HWND hwndCtl, UINT codeNotify) { switch(id) { // The user clicked the ID_BROWSE button, so call BrowseForFolder and update IDC_FOLDER
case ID_BROWSE: if (BrowseForFolder(hwnd, g_App.szScanPath)) { SetDlgItemText(hwnd, IDC_FOLDER, g_App.szScanPath); } break;
// The user clicked IDC_SCAN, so disable all the IDC_NOTMS controls
case IDC_SCAN: if (!g_App.bScanning) { EnableWindow(GetDlgItem(hwnd, IDC_SUBFOLDERS), FALSE); EnableWindow(GetDlgItem(hwnd, IDC_TYPE), FALSE); EnableWindow(GetDlgItem(hwnd, IDC_FOLDER), FALSE); EnableWindow(GetDlgItem(hwnd, ID_BROWSE), FALSE); } break;
// The user clicked IDC_NOTMS, so make sure all the controls are enabled
case IDC_NOTMS: if (!g_App.bScanning) { EnableWindow(GetDlgItem(hwnd, IDC_SUBFOLDERS), TRUE); EnableWindow(GetDlgItem(hwnd, IDC_TYPE), TRUE); EnableWindow(GetDlgItem(hwnd, IDC_FOLDER), TRUE); EnableWindow(GetDlgItem(hwnd, ID_BROWSE), TRUE); } break; } }
//
// This function handles any notification messages for the Search page.
//
LRESULT Search_NotifyHandler(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam) { NMHDR *lpnmhdr = (NMHDR *) lParam;
switch(lpnmhdr->code) { case PSN_APPLY: g_App.bUserScan = (IsDlgButtonChecked(hwnd, IDC_NOTMS) == BST_CHECKED); if (g_App.bUserScan) { // Get the search pattern from the combobox and update g_App.szScanPattern
GetDlgItemText(hwnd, IDC_TYPE, g_App.szScanPattern, MAX_PATH); // Get the path from the edit control and update g_App.szScanPath
GetDlgItemText(hwnd, IDC_FOLDER, g_App.szScanPath, MAX_PATH); // Get the checked/unchecked state of the "SubFolders" checkbox
g_App.bSubFolders = (IsDlgButtonChecked(hwnd, IDC_SUBFOLDERS) == BST_CHECKED); } case PSN_KILLACTIVE: return FALSE; }
return 0; }
//
// The search dialog procedure. Needs to handle WM_INITDIALOG, WM_COMMAND, and WM_CLOSE/WM_DESTROY.
//
INT_PTR CALLBACK Search_DlgProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam) { BOOL fProcessed = TRUE;
switch (uMsg) { HANDLE_MSG(hwnd, WM_INITDIALOG, Search_OnInitDialog); HANDLE_MSG(hwnd, WM_COMMAND, Search_OnCommand);
case WM_NOTIFY: return Search_NotifyHandler(hwnd, uMsg, wParam, lParam);
case WM_HELP: SigVerif_Help(hwnd, uMsg, wParam, lParam, FALSE); break;
case WM_CONTEXTMENU: SigVerif_Help(hwnd, uMsg, wParam, lParam, TRUE); break;
default: fProcessed = FALSE; }
return fProcessed; }
void AdvancedPropertySheet(HWND hwnd) { PROPSHEETPAGE psp[NUM_PAGES]; PROPSHEETHEADER psh; TCHAR szCaption[MAX_PATH]; TCHAR szPage1[MAX_PATH]; TCHAR szPage2[MAX_PATH]; ZeroMemory(&psp[0], sizeof(PROPSHEETPAGE)); psp[0].dwSize = sizeof(PROPSHEETPAGE); psp[0].dwFlags = PSP_USEHICON | PSP_USETITLE; psp[0].hInstance = g_App.hInstance; psp[0].pszTemplate = MAKEINTRESOURCE(IDD_SEARCH); psp[0].hIcon = g_App.hIcon; psp[0].pfnDlgProc = Search_DlgProc; MyLoadString(szPage1, IDS_SEARCHTAB); psp[0].pszTitle = szPage1; psp[0].lParam = 0; psp[0].pfnCallback = NULL;
ZeroMemory(&psp[1], sizeof(PROPSHEETPAGE)); psp[1].dwSize = sizeof(PROPSHEETPAGE); psp[1].dwFlags = PSP_USEHICON | PSP_USETITLE; psp[1].hInstance = g_App.hInstance; psp[1].pszTemplate = MAKEINTRESOURCE(IDD_SETTINGS); psp[1].hIcon = g_App.hIcon; psp[1].pfnDlgProc = LogFile_DlgProc; MyLoadString(szPage2, IDS_LOGGINGTAB); psp[1].pszTitle = szPage2; psp[1].lParam = 0; psp[1].pfnCallback = NULL;
ZeroMemory(&psh, sizeof(PROPSHEETHEADER)); psh.dwSize = sizeof(PROPSHEETHEADER); psh.dwFlags = PSH_USEHICON | PSH_PROPSHEETPAGE | PSH_NOAPPLYNOW; psh.hwndParent = hwnd; psh.hInstance = g_App.hInstance; psh.hIcon = g_App.hIcon; MyLoadString(szCaption, IDS_ADVANCED_SETTINGS); psh.pszCaption = szCaption; psh.nPages = sizeof(psp) / sizeof(PROPSHEETPAGE); psh.nStartPage = 0; psh.ppsp = (LPCPROPSHEETPAGE) &psp; psh.pfnCallback = NULL;
PropertySheet(&psh); }
|