ReactOS 0.4.15-dev-6056-gb29b268
dialogs.cpp
Go to the documentation of this file.
1/*
2 * common shell dialogs
3 *
4 * Copyright 2000 Juergen Schmied
5 * Copyright 2018 Katayama Hirofumi MZ <katayama.hirofumi.mz@gmail.com>
6 * Copyright 2021 Arnav Bhatt <arnavbhatt288@gmail.com>
7 *
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
12 *
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 */
22
23#include "precomp.h"
24
25typedef struct
26{
35
36typedef struct
37{
39 BOOL bIsButtonHot[2];
41 HBRUSH hBrush;
45
47
50static void FillList(HWND, LPWSTR, UINT, BOOL);
51
52
53/*************************************************************************
54 * PickIconDlg [SHELL32.62]
55 *
56 */
57
58typedef struct
59{
67
69 LPCWSTR lpszType,
70 LPWSTR lpszName,
72{
74 HWND hDlgCtrl = pIconContext->hDlgCtrl;
75
76 if (IS_INTRESOURCE(lpszName))
77 lParam = LOWORD(lpszName);
78 else
79 lParam = -1;
80
81 SendMessageW(hDlgCtrl, LB_ADDSTRING, 0, lParam);
82
83 return TRUE;
84}
85
86static void
88{
89 int count;
90 int index;
91
92 count = SendMessageW(hDlgCtrl, LB_GETCOUNT, 0, 0);
93 if (count == LB_ERR)
94 return;
95
96 for(index = 0; index < count; index++)
97 {
98 DestroyIcon(pIconContext->phIcons[index]);
99 pIconContext->phIcons[index] = NULL;
100 }
101}
102
103static BOOL
104DoLoadIcons(HWND hwndDlg, PPICK_ICON_CONTEXT pIconContext, LPCWSTR pszFile)
105{
106 WCHAR szExpandedPath[MAX_PATH];
107
108 // Destroy previous icons
109 DestroyIconList(pIconContext->hDlgCtrl, pIconContext);
110 SendMessageW(pIconContext->hDlgCtrl, LB_RESETCONTENT, 0, 0);
111 delete[] pIconContext->phIcons;
112
113 // Store the path
114 StringCchCopyW(pIconContext->szPath, _countof(pIconContext->szPath), pszFile);
115 ExpandEnvironmentStringsW(pszFile, szExpandedPath, _countof(szExpandedPath));
116
117 // Load the module if possible
119 if (pIconContext->hLibrary)
120 FreeLibrary(pIconContext->hLibrary);
121 pIconContext->hLibrary = hLibrary;
122
123 if (pIconContext->hLibrary)
124 {
125 // Load the icons from the module
126 pIconContext->nIcons = ExtractIconExW(szExpandedPath, -1, NULL, NULL, 0);
127 pIconContext->phIcons = new HICON[pIconContext->nIcons];
128
129 if (ExtractIconExW(szExpandedPath, 0, pIconContext->phIcons, NULL, pIconContext->nIcons))
130 {
132 }
133 else
134 {
135 pIconContext->nIcons = 0;
136 }
137 }
138 else
139 {
140 // .ico file
141 pIconContext->nIcons = 1;
142 pIconContext->phIcons = new HICON[1];
143
144 if (ExtractIconExW(szExpandedPath, 0, pIconContext->phIcons, NULL, pIconContext->nIcons))
145 {
146 SendMessageW(pIconContext->hDlgCtrl, LB_ADDSTRING, 0, 0);
147 }
148 else
149 {
150 pIconContext->nIcons = 0;
151 }
152 }
153
154 // Set the text and reset the edit control's modification flag
155 SetDlgItemTextW(hwndDlg, IDC_EDIT_PATH, pIconContext->szPath);
157
158 if (pIconContext->nIcons == 0)
159 {
160 delete[] pIconContext->phIcons;
161 pIconContext->phIcons = NULL;
162 }
163
164 return (pIconContext->nIcons > 0);
165}
166
167static void NoIconsInFile(HWND hwndDlg, PPICK_ICON_CONTEXT pIconContext)
168{
169 // Show an error message
170 CStringW strText, strTitle(MAKEINTRESOURCEW(IDS_PICK_ICON_TITLE));
171 strText.Format(IDS_NO_ICONS, pIconContext->szPath);
172 MessageBoxW(hwndDlg, strText, strTitle, MB_ICONWARNING);
173
174 // Load the default icons
175 DoLoadIcons(hwndDlg, pIconContext, g_pszShell32);
176}
177
178// Icon size
179#define CX_ICON GetSystemMetrics(SM_CXICON)
180#define CY_ICON GetSystemMetrics(SM_CYICON)
181
182// Item size
183#define CX_ITEM (CX_ICON + 4)
184#define CY_ITEM (CY_ICON + 12)
185
187 HWND hwndDlg,
188 UINT uMsg,
191{
193 LPDRAWITEMSTRUCT lpdis;
194 HICON hIcon;
195 INT index, count;
196 WCHAR szText[MAX_PATH], szFilter[100];
197 CStringW strTitle;
199
201
202 switch(uMsg)
203 {
204 case WM_INITDIALOG:
205 {
206 pIconContext = (PPICK_ICON_CONTEXT)lParam;
207 SetWindowLongPtr(hwndDlg, DWLP_USER, (LONG_PTR)pIconContext);
208 pIconContext->hDlgCtrl = GetDlgItem(hwndDlg, IDC_PICKICON_LIST);
209
210 SendMessageW(pIconContext->hDlgCtrl, LB_SETCOLUMNWIDTH, CX_ITEM, 0);
211
212 // Load the icons
213 if (!DoLoadIcons(hwndDlg, pIconContext, pIconContext->szPath))
214 NoIconsInFile(hwndDlg, pIconContext);
215
216 // Set the selection
217 count = SendMessageW(pIconContext->hDlgCtrl, LB_GETCOUNT, 0, 0);
218 if (count != LB_ERR)
219 {
220 if (pIconContext->Index < 0)
221 {
222 // A negative value will be interpreted as a negated resource ID.
223 LPARAM lParam = -pIconContext->Index;
224 pIconContext->Index = (INT)SendMessageW(pIconContext->hDlgCtrl, LB_FINDSTRINGEXACT, -1, lParam);
225 }
226
227 if (pIconContext->Index < 0 || count <= pIconContext->Index)
228 pIconContext->Index = 0;
229
230 SendMessageW(pIconContext->hDlgCtrl, LB_SETCURSEL, pIconContext->Index, 0);
231 SendMessageW(pIconContext->hDlgCtrl, LB_SETTOPINDEX, pIconContext->Index, 0);
232 }
233
235 return TRUE;
236 }
237
238 case WM_DESTROY:
239 {
240 DestroyIconList(pIconContext->hDlgCtrl, pIconContext);
241 delete[] pIconContext->phIcons;
242
243 if (pIconContext->hLibrary)
244 FreeLibrary(pIconContext->hLibrary);
245 break;
246 }
247
248 case WM_COMMAND:
249 switch(LOWORD(wParam))
250 {
251 case IDOK:
252 {
253 /* Check whether the path edit control has been modified; if so load the icons instead of validating */
254 if (SendDlgItemMessage(hwndDlg, IDC_EDIT_PATH, EM_GETMODIFY, 0, 0))
255 {
256 /* Reset the edit control's modification flag and retrieve the text */
258 GetDlgItemTextW(hwndDlg, IDC_EDIT_PATH, szText, _countof(szText));
259
260 // Load the icons
261 if (!DoLoadIcons(hwndDlg, pIconContext, szText))
262 NoIconsInFile(hwndDlg, pIconContext);
263
264 // Set the selection
265 SendMessageW(pIconContext->hDlgCtrl, LB_SETCURSEL, 0, 0);
266 break;
267 }
268
269 /* The path edit control has not been modified, return the selection */
270 pIconContext->Index = (INT)SendMessageW(pIconContext->hDlgCtrl, LB_GETCURSEL, 0, 0);
271 GetDlgItemTextW(hwndDlg, IDC_EDIT_PATH, pIconContext->szPath, _countof(pIconContext->szPath));
272 EndDialog(hwndDlg, 1);
273 break;
274 }
275
276 case IDCANCEL:
277 EndDialog(hwndDlg, 0);
278 break;
279
281 switch (HIWORD(wParam))
282 {
283 case LBN_SELCHANGE:
285 break;
286
287 case LBN_DBLCLK:
288 SendMessage(hwndDlg, WM_COMMAND, MAKEWPARAM(IDOK, 0), 0);
289 break;
290 }
291 break;
292
293 case IDC_BUTTON_PATH:
294 {
295 // Choose the module path
296 szText[0] = 0;
297 szFilter[0] = 0;
298 ZeroMemory(&ofn, sizeof(ofn));
299 ofn.lStructSize = sizeof(ofn);
300 ofn.hwndOwner = hwndDlg;
301 ofn.lpstrFile = szText;
302 ofn.nMaxFile = _countof(szText);
303 strTitle.LoadString(IDS_PICK_ICON_TITLE);
304 ofn.lpstrTitle = strTitle;
307 if (!GetOpenFileNameW(&ofn))
308 break;
309
310 // Load the icons
311 if (!DoLoadIcons(hwndDlg, pIconContext, szText))
312 NoIconsInFile(hwndDlg, pIconContext);
313
314 // Set the selection
315 SendMessageW(pIconContext->hDlgCtrl, LB_SETCURSEL, 0, 0);
316 break;
317 }
318
319 default:
320 break;
321 }
322 break;
323
324 case WM_MEASUREITEM:
326 lpmis->itemHeight = CY_ITEM;
327 return TRUE;
328
329 case WM_DRAWITEM:
330 {
331 lpdis = (LPDRAWITEMSTRUCT)lParam;
332 if (lpdis->itemID == (UINT)-1)
333 break;
334 switch (lpdis->itemAction)
335 {
336 case ODA_SELECT:
337 case ODA_DRAWENTIRE:
338 {
339 index = SendMessageW(pIconContext->hDlgCtrl, LB_GETCURSEL, 0, 0);
340 hIcon = pIconContext->phIcons[lpdis->itemID];
341
342 if (lpdis->itemID == (UINT)index)
343 FillRect(lpdis->hDC, &lpdis->rcItem, (HBRUSH)(COLOR_HIGHLIGHT + 1));
344 else
345 FillRect(lpdis->hDC, &lpdis->rcItem, (HBRUSH)(COLOR_WINDOW + 1));
346
347 // Centering
348 INT x = lpdis->rcItem.left + (CX_ITEM - CX_ICON) / 2;
349 INT y = lpdis->rcItem.top + (CY_ITEM - CY_ICON) / 2;
350
351 DrawIconEx(lpdis->hDC, x, y, hIcon, 0, 0, 0, NULL, DI_NORMAL);
352 break;
353 }
354 }
355 return TRUE;
356 }
357 }
358
359 return FALSE;
360}
361
363 HWND hWndOwner,
364 LPWSTR lpstrFile,
365 UINT nMaxFile,
366 INT* lpdwIconIndex)
367{
368 int res;
369 WCHAR szExpandedPath[MAX_PATH];
370
371 // Initialize the dialog
372 PICK_ICON_CONTEXT IconContext = { NULL };
373 IconContext.Index = *lpdwIconIndex;
374 StringCchCopyW(IconContext.szPath, _countof(IconContext.szPath), lpstrFile);
375 ExpandEnvironmentStringsW(lpstrFile, szExpandedPath, _countof(szExpandedPath));
376
377 if (!szExpandedPath[0] ||
379 {
380 if (szExpandedPath[0])
381 {
382 // No such file
383 CStringW strText, strTitle(MAKEINTRESOURCEW(IDS_PICK_ICON_TITLE));
384 strText.Format(IDS_FILE_NOT_FOUND, lpstrFile);
385 MessageBoxW(hWndOwner, strText, strTitle, MB_ICONWARNING);
386 }
387
388 // Set the default value
389 StringCchCopyW(IconContext.szPath, _countof(IconContext.szPath), g_pszShell32);
390 }
391
392 // Show the dialog
394 if (res)
395 {
396 // Store the selected icon
397 StringCchCopyW(lpstrFile, nMaxFile, IconContext.szPath);
398 *lpdwIconIndex = IconContext.Index;
399 }
400
401 return res;
402}
403
404/*************************************************************************
405 * RunFileDlg [internal]
406 *
407 * The Unicode function that is available as ordinal 61 on Windows NT/2000/XP/...
408 */
410 HWND hWndOwner,
411 HICON hIcon,
412 LPCWSTR lpstrDirectory,
413 LPCWSTR lpstrTitle,
414 LPCWSTR lpstrDescription,
415 UINT uFlags)
416{
417 TRACE("\n");
418
419 RUNFILEDLGPARAMS rfdp;
420 rfdp.hwndOwner = hWndOwner;
421 rfdp.hIcon = hIcon;
422 rfdp.lpstrDirectory = lpstrDirectory;
423 rfdp.lpstrTitle = lpstrTitle;
424 rfdp.lpstrDescription = lpstrDescription;
425 rfdp.uFlags = uFlags;
426
428}
429
430
431/* find the directory that contains the file being run */
433{
434 const WCHAR *src;
435 WCHAR *dest, *result, *result_end=NULL;
436
437 result = (WCHAR *)HeapAlloc(GetProcessHeap(), 0, sizeof(WCHAR)*(strlenW(cmdline)+5));
438
439 if (NULL == result)
440 {
441 TRACE("HeapAlloc couldn't allocate %d bytes\n", sizeof(WCHAR)*(strlenW(cmdline)+5));
442 return NULL;
443 }
444
445 src = cmdline;
446 dest = result;
447
448 if (*src == '"')
449 {
450 src++;
451 while (*src && *src != '"')
452 {
453 if (*src == '\\')
454 result_end = dest;
455 *dest++ = *src++;
456 }
457 }
458 else {
459 while (*src)
460 {
461 if (isspaceW(*src))
462 {
463 *dest = 0;
465 break;
466 strcatW(dest, L".exe");
468 break;
469 }
470 else if (*src == '\\')
471 result_end = dest;
472 *dest++ = *src++;
473 }
474 }
475
476 if (result_end)
477 {
478 *result_end = 0;
479 return result;
480 }
481 else
482 {
484 return NULL;
485 }
486}
487
489{
490 BOOL Enable = FALSE;
491 INT Length, n;
494 if (Length > 0)
495 {
496 PWCHAR psz = (PWCHAR)HeapAlloc(GetProcessHeap(), 0, (Length + 1) * sizeof(WCHAR));
497 if (psz)
498 {
499 GetWindowTextW(Edit, psz, Length + 1);
500 for (n = 0; n < Length && !Enable; ++n)
501 Enable = psz[n] != ' ';
502 HeapFree(GetProcessHeap(), 0, psz);
503 }
504 else
505 Enable = TRUE;
506 }
508}
509
510/* Dialog procedure for RunFileDlg */
512{
514 HWND hwndCombo, hwndEdit;
515 COMBOBOXINFO ComboInfo;
516
517 switch (message)
518 {
519 case WM_INITDIALOG:
520 prfdp = (RUNFILEDLGPARAMS *)lParam;
522
523 if (prfdp->lpstrTitle)
524 SetWindowTextW(hwnd, prfdp->lpstrTitle);
525 if (prfdp->lpstrDescription)
526 SetWindowTextW(GetDlgItem(hwnd, IDC_RUNDLG_DESCRIPTION), prfdp->lpstrDescription);
527 if (prfdp->uFlags & RFF_NOBROWSE)
528 {
530 ShowWindow(browse, SW_HIDE);
531 EnableWindow(browse, FALSE);
532 }
533 if (prfdp->uFlags & RFF_NOLABEL)
535 if (prfdp->uFlags & RFF_NOSEPARATEMEM)
536 {
537 FIXME("RFF_NOSEPARATEMEM not supported\n");
538 }
539
540 /* Use the default Shell Run icon if no one is specified */
541 if (prfdp->hIcon == NULL)
543 /*
544 * NOTE: Starting Windows Vista, the "Run File" dialog gets a
545 * title icon that remains the same as the default one, even if
546 * the user specifies a custom icon.
547 * Since we currently imitate Windows 2003, therefore do not show
548 * any title icon.
549 */
550 // SendMessageW(hwnd, WM_SETICON, ICON_BIG, (LPARAM)prfdp->hIcon);
551 // SendMessageW(hwnd, WM_SETICON, ICON_SMALL, (LPARAM)prfdp->hIcon);
553
554 hwndCombo = GetDlgItem(hwnd, IDC_RUNDLG_EDITPATH);
555 FillList(hwndCombo, NULL, 0, (prfdp->uFlags & RFF_NODEFAULT) == 0);
557
558 ComboInfo.cbSize = sizeof(ComboInfo);
559 GetComboBoxInfo(hwndCombo, &ComboInfo);
560 hwndEdit = ComboInfo.hwndItem;
562
563 // SHAutoComplete needs co init
565
567
568 SetFocus(hwndCombo);
569 return TRUE;
570
571 case WM_DESTROY:
572 if (prfdp->bCoInited)
574 break;
575
576 case WM_COMMAND:
577 switch (LOWORD(wParam))
578 {
579 case IDOK:
580 {
581 LRESULT lRet;
583 INT ic;
584 WCHAR *psz, *pszExpanded, *parent = NULL;
585 DWORD cchExpand;
587 NMRUNFILEDLGW nmrfd;
588
589 ic = GetWindowTextLengthW(htxt);
590 if (ic == 0)
591 {
593 return TRUE;
594 }
595
596 ZeroMemory(&sei, sizeof(sei));
597 sei.cbSize = sizeof(sei);
598
599 /*
600 * Allocate a new MRU entry, we need to add two characters
601 * for the terminating "\\1" part, then the NULL character.
602 */
603 psz = (WCHAR*)HeapAlloc(GetProcessHeap(), 0, (ic + 2 + 1)*sizeof(WCHAR));
604 if (!psz)
605 {
607 return TRUE;
608 }
609
610 GetWindowTextW(htxt, psz, ic + 1);
611 sei.hwnd = hwnd;
612 sei.nShow = SW_SHOWNORMAL;
613 sei.lpFile = psz;
614 StrTrimW(psz, L" \t");
615
616 if (wcschr(psz, L'%') != NULL)
617 {
618 cchExpand = ExpandEnvironmentStringsW(psz, NULL, 0);
619 pszExpanded = (WCHAR*)HeapAlloc(GetProcessHeap(), 0, cchExpand * sizeof(WCHAR));
620 if (!pszExpanded)
621 {
622 HeapFree(GetProcessHeap(), 0, psz);
624 return TRUE;
625 }
626 ExpandEnvironmentStringsW(psz, pszExpanded, cchExpand);
627 StrTrimW(pszExpanded, L" \t");
628 }
629 else
630 {
631 pszExpanded = psz;
632 }
633
634 /*
635 * The precedence is the following: first the user-given
636 * current directory is used; if there is none, a current
637 * directory is computed if the RFF_CALCDIRECTORY is set,
638 * otherwise no current directory is defined.
639 */
640 LPCWSTR pszStartDir;
641 if (prfdp->lpstrDirectory)
642 {
643 sei.lpDirectory = prfdp->lpstrDirectory;
644 pszStartDir = prfdp->lpstrDirectory;
645 }
646 else if (prfdp->uFlags & RFF_CALCDIRECTORY)
647 {
649 pszStartDir = parent = RunDlg_GetParentDir(pszExpanded);
650 }
651 else
652 {
653 sei.lpDirectory = NULL;
654 pszStartDir = NULL;
655 }
656
657 /* Hide the dialog for now on, we will show it up in case of retry */
659
660 /*
661 * As shown by manual tests on Windows, modifying the contents
662 * of the notification structure will not modify what the
663 * Run-Dialog will use for the nShow parameter. However the
664 * lpFile and lpDirectory pointers are set to the buffers used
665 * by the Run-Dialog, as a consequence they can be modified by
666 * the notification receiver, as long as it respects the lengths
667 * of the buffers (to avoid buffer overflows).
668 */
669 nmrfd.hdr.code = RFN_VALIDATE;
670 nmrfd.hdr.hwndFrom = hwnd;
671 nmrfd.hdr.idFrom = 0;
672 nmrfd.lpFile = pszExpanded;
673 nmrfd.lpDirectory = pszStartDir;
674 nmrfd.nShow = SW_SHOWNORMAL;
675
676 lRet = SendMessageW(prfdp->hwndOwner, WM_NOTIFY, 0, (LPARAM)&nmrfd.hdr);
677
678 switch (lRet)
679 {
680 case RF_CANCEL:
682 break;
683
684 case RF_OK:
685 /* We use SECL_NO_UI because we don't want to see
686 * errors here, but we will try again below and
687 * there we will output our errors. */
688 if (SUCCEEDED(ShellExecCmdLine(hwnd, pszExpanded, pszStartDir, SW_SHOWNORMAL, NULL,
690 {
691 /* Call GetWindowText again in case the contents of the edit box have changed. */
692 GetWindowTextW(htxt, psz, ic + 1);
693 FillList(htxt, psz, ic + 2 + 1, FALSE);
695 break;
696 }
697 else if (SUCCEEDED(ShellExecuteExW(&sei)))
698 {
699 /* Call GetWindowText again in case the contents of the edit box have changed. */
700 GetWindowTextW(htxt, psz, ic + 1);
701 FillList(htxt, psz, ic + 2 + 1, FALSE);
703 break;
704 }
705
706 /* Fall-back */
707 case RF_RETRY:
708 default:
709 SendMessageW(htxt, CB_SETEDITSEL, 0, MAKELPARAM (0, -1));
710 /* Show back the dialog */
712 break;
713 }
714
716 HeapFree(GetProcessHeap(), 0, psz);
717 if (psz != pszExpanded)
718 HeapFree(GetProcessHeap(), 0, pszExpanded);
719 return TRUE;
720 }
721
722 case IDCANCEL:
724 return TRUE;
725
727 {
728 HMODULE hComdlg = NULL;
729 LPFNOFN ofnProc = NULL;
730 WCHAR szFName[1024] = {0};
731 WCHAR filter[MAX_PATH], szCaption[MAX_PATH];
733
736
737 ZeroMemory(&ofn, sizeof(ofn));
738 ofn.lStructSize = sizeof(ofn);
741 ofn.lpstrFile = szFName;
742 ofn.nMaxFile = _countof(szFName) - 1;
743 ofn.lpstrTitle = szCaption;
745 ofn.lpstrInitialDir = prfdp->lpstrDirectory;
746
747 if (NULL == (hComdlg = LoadLibraryExW(L"comdlg32", NULL, 0)) ||
748 NULL == (ofnProc = (LPFNOFN)GetProcAddress(hComdlg, "GetOpenFileNameW")))
749 {
750 ERR("Couldn't get GetOpenFileName function entry (lib=%p, proc=%p)\n", hComdlg, ofnProc);
752 return TRUE;
753 }
754
755 if (ofnProc(&ofn))
756 {
762 }
763
764 FreeLibrary(hComdlg);
765
766 return TRUE;
767 }
769 {
771 {
773 }
774 return TRUE;
775 }
776 }
777 return TRUE;
778 }
779 return FALSE;
780}
781
782/*
783 * This function grabs the MRU list from the registry and fills the combo-list
784 * for the "Run" dialog above. fShowDefault is ignored if pszLatest != NULL.
785 */
786// FIXME: Part of this code should be part of some MRUList API,
787// that is scattered amongst shell32, comctl32 (?!) and comdlg32.
788static void FillList(HWND hCb, LPWSTR pszLatest, UINT cchStr, BOOL fShowDefault)
789{
790 HKEY hkey;
791 WCHAR *pszList = NULL, *pszCmd = NULL, *pszTmp = NULL, cMatch = 0, cMax = 0x60;
792 WCHAR szIndex[2] = L"-";
793 UINT cchLatest;
794 DWORD dwType, icList = 0, icCmd = 0;
795 LRESULT lRet;
796 UINT Nix;
797
798 /*
799 * Retrieve the string length of pszLatest and check whether its buffer size
800 * (cchStr in number of characters) is large enough to add the terminating "\\1"
801 * (and the NULL character).
802 */
803 if (pszLatest)
804 {
805 cchLatest = wcslen(pszLatest);
806 if (cchStr < cchLatest + 2 + 1)
807 {
808 TRACE("pszLatest buffer is not large enough (%d) to hold the MRU terminator.\n", cchStr);
809 return;
810 }
811 }
812 else
813 {
814 cchStr = 0;
815 }
816
817 SendMessageW(hCb, CB_RESETCONTENT, 0, 0);
818
820 L"Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\RunMRU",
822 if (lRet != ERROR_SUCCESS)
823 {
824 TRACE("Unable to open or create the RunMRU key, error %d\n", GetLastError());
825 return;
826 }
827
828 lRet = RegQueryValueExW(hkey, L"MRUList", NULL, &dwType, NULL, &icList);
829 if (lRet == ERROR_SUCCESS && dwType == REG_SZ && icList > sizeof(WCHAR))
830 {
831 pszList = (WCHAR*)HeapAlloc(GetProcessHeap(), 0, icList);
832 if (!pszList)
833 {
834 TRACE("HeapAlloc failed to allocate %d bytes\n", icList);
835 goto Continue;
836 }
837 pszList[0] = L'\0';
838
839 lRet = RegQueryValueExW(hkey, L"MRUList", NULL, NULL, (LPBYTE)pszList, &icList);
840 if (lRet != ERROR_SUCCESS)
841 {
842 TRACE("Unable to grab MRUList, error %d\n", GetLastError());
843 pszList[0] = L'\0';
844 }
845 }
846 else
847 {
848Continue:
849 icList = sizeof(WCHAR);
850 pszList = (WCHAR*)HeapAlloc(GetProcessHeap(), 0, icList);
851 if (!pszList)
852 {
853 TRACE("HeapAlloc failed to allocate %d bytes\n", icList);
854 RegCloseKey(hkey);
855 return;
856 }
857 pszList[0] = L'\0';
858 }
859
860 /* Convert the number of bytes from MRUList into number of characters (== number of indices) */
861 icList /= sizeof(WCHAR);
862
863 for (Nix = 0; Nix < icList - 1; Nix++)
864 {
865 if (pszList[Nix] > cMax)
866 cMax = pszList[Nix];
867
868 szIndex[0] = pszList[Nix];
869
870 lRet = RegQueryValueExW(hkey, szIndex, NULL, &dwType, NULL, &icCmd);
871 if (lRet != ERROR_SUCCESS || dwType != REG_SZ)
872 {
873 TRACE("Unable to grab size of index, error %d\n", GetLastError());
874 continue;
875 }
876
877 if (pszCmd)
878 {
879 pszTmp = (WCHAR*)HeapReAlloc(GetProcessHeap(), 0, pszCmd, icCmd);
880 if (!pszTmp)
881 {
882 TRACE("HeapReAlloc failed to reallocate %d bytes\n", icCmd);
883 continue;
884 }
885 pszCmd = pszTmp;
886 }
887 else
888 {
889 pszCmd = (WCHAR*)HeapAlloc(GetProcessHeap(), 0, icCmd);
890 if (!pszCmd)
891 {
892 TRACE("HeapAlloc failed to allocate %d bytes\n", icCmd);
893 continue;
894 }
895 }
896
897 lRet = RegQueryValueExW(hkey, szIndex, NULL, NULL, (LPBYTE)pszCmd, &icCmd);
898 if (lRet != ERROR_SUCCESS)
899 {
900 TRACE("Unable to grab index, error %d\n", GetLastError());
901 continue;
902 }
903
904 /*
905 * Generally the command string will end up with "\\1".
906 * Find the last backslash in the string and NULL-terminate.
907 * Windows does not seem to check for what comes next, so that
908 * a command of the form:
909 * c:\\my_dir\\myfile.exe
910 * will be cut just after "my_dir", whereas a command of the form:
911 * c:\\my_dir\\myfile.exe\\1
912 * will be cut just after "myfile.exe".
913 */
914 pszTmp = wcsrchr(pszCmd, L'\\');
915 if (pszTmp)
916 *pszTmp = L'\0';
917
918 /*
919 * In the following we try to add pszLatest to the MRU list.
920 * We suppose that our caller has already correctly allocated
921 * the string with enough space for us to append a "\\1".
922 *
923 * FIXME: TODO! (At the moment we don't append it!)
924 */
925
926 if (pszLatest)
927 {
928 if (wcsicmp(pszCmd, pszLatest) == 0)
929 {
930 SendMessageW(hCb, CB_INSERTSTRING, 0, (LPARAM)pszCmd);
931 SetWindowTextW(hCb, pszCmd);
932 SendMessageW(hCb, CB_SETEDITSEL, 0, MAKELPARAM(0, -1));
933
934 cMatch = pszList[Nix];
935 memmove(&pszList[1], pszList, Nix * sizeof(WCHAR));
936 pszList[0] = cMatch;
937 continue;
938 }
939 }
940
941 if (icList - 1 != 26 || icList - 2 != Nix || cMatch || pszLatest == NULL)
942 {
943 SendMessageW(hCb, CB_ADDSTRING, 0, (LPARAM)pszCmd);
944 if (!Nix && fShowDefault)
945 {
946 SetWindowTextW(hCb, pszCmd);
947 SendMessageW(hCb, CB_SETEDITSEL, 0, MAKELPARAM(0, -1));
948 }
949 }
950 else
951 {
952 SendMessageW(hCb, CB_INSERTSTRING, 0, (LPARAM)pszLatest);
953 SetWindowTextW(hCb, pszLatest);
954 SendMessageW(hCb, CB_SETEDITSEL, 0, MAKELPARAM(0, -1));
955
956 cMatch = pszList[Nix];
957 memmove(&pszList[1], pszList, Nix * sizeof(WCHAR));
958 pszList[0] = cMatch;
959 szIndex[0] = cMatch;
960
961 wcscpy(&pszLatest[cchLatest], L"\\1");
962 RegSetValueExW(hkey, szIndex, 0, REG_SZ, (LPBYTE)pszLatest, (cchLatest + 2 + 1) * sizeof(WCHAR));
963 pszLatest[cchLatest] = L'\0';
964 }
965 }
966
967 if (!cMatch && pszLatest != NULL)
968 {
969 SendMessageW(hCb, CB_INSERTSTRING, 0, (LPARAM)pszLatest);
970 SetWindowTextW(hCb, pszLatest);
971 SendMessageW(hCb, CB_SETEDITSEL, 0, MAKELPARAM (0, -1));
972
973 cMatch = ++cMax;
974
975 if (pszList)
976 {
977 pszTmp = (WCHAR*)HeapReAlloc(GetProcessHeap(), 0, pszList, (++icList) * sizeof(WCHAR));
978 if (!pszTmp)
979 {
980 TRACE("HeapReAlloc failed to reallocate enough bytes\n");
981 goto Cleanup;
982 }
983 pszList = pszTmp;
984 }
985 else
986 {
987 pszList = (WCHAR*)HeapAlloc(GetProcessHeap(), 0, (++icList) * sizeof(WCHAR));
988 if (!pszList)
989 {
990 TRACE("HeapAlloc failed to allocate enough bytes\n");
991 goto Cleanup;
992 }
993 }
994
995 memmove(&pszList[1], pszList, (icList - 1) * sizeof(WCHAR));
996 pszList[0] = cMatch;
997 szIndex[0] = cMatch;
998
999 wcscpy(&pszLatest[cchLatest], L"\\1");
1000 RegSetValueExW(hkey, szIndex, 0, REG_SZ, (LPBYTE)pszLatest, (cchLatest + 2 + 1) * sizeof(WCHAR));
1001 pszLatest[cchLatest] = L'\0';
1002 }
1003
1004Cleanup:
1005 RegSetValueExW(hkey, L"MRUList", 0, REG_SZ, (LPBYTE)pszList, (wcslen(pszList) + 1) * sizeof(WCHAR));
1006
1007 HeapFree(GetProcessHeap(), 0, pszCmd);
1008 HeapFree(GetProcessHeap(), 0, pszList);
1009
1010 RegCloseKey(hkey);
1011}
1012
1013
1014/*************************************************************************
1015 * ConfirmDialog [internal]
1016 *
1017 * Put up a confirm box, return TRUE if the user confirmed
1018 */
1019static BOOL ConfirmDialog(HWND hWndOwner, UINT PromptId, UINT TitleId)
1020{
1021 WCHAR Prompt[256];
1022 WCHAR Title[256];
1023
1024 LoadStringW(shell32_hInstance, PromptId, Prompt, _countof(Prompt));
1026 return MessageBoxW(hWndOwner, Prompt, Title, MB_YESNO | MB_ICONQUESTION) == IDYES;
1027}
1028
1030
1031BOOL
1033{
1035 static BOOL Initialized = FALSE;
1036 if (!Initialized)
1037 {
1038 HMODULE mod = LoadLibraryW(L"msgina.dll");
1040 Initialized = TRUE;
1041 }
1042
1043 HRESULT hr = E_FAIL;
1044 if (ShellDimScreen)
1045 hr = ShellDimScreen(pUnknown, hWindow);
1046 return SUCCEEDED(hr);
1047}
1048
1049
1050/* Used to get the shutdown privilege */
1051static BOOL
1052EnablePrivilege(LPCWSTR lpszPrivilegeName, BOOL bEnablePrivilege)
1053{
1054 BOOL Success;
1055 HANDLE hToken;
1057
1060 &hToken);
1061 if (!Success) return Success;
1062
1064 lpszPrivilegeName,
1065 &tp.Privileges[0].Luid);
1066 if (!Success) goto Quit;
1067
1068 tp.PrivilegeCount = 1;
1069 tp.Privileges[0].Attributes = (bEnablePrivilege ? SE_PRIVILEGE_ENABLED : 0);
1070
1071 Success = AdjustTokenPrivileges(hToken, FALSE, &tp, 0, NULL, NULL);
1072
1073Quit:
1074 CloseHandle(hToken);
1075 return Success;
1076}
1077
1078/*************************************************************************
1079 * RestartDialogEx [SHELL32.730]
1080 */
1081
1082int WINAPI RestartDialogEx(HWND hWndOwner, LPCWSTR lpwstrReason, DWORD uFlags, DWORD uReason)
1083{
1084 TRACE("(%p)\n", hWndOwner);
1085
1086 CComPtr<IUnknown> fadeHandler;
1087 HWND parent;
1088
1089 if (!CallShellDimScreen(&fadeHandler, &parent))
1090 parent = hWndOwner;
1091
1092 /* FIXME: use lpwstrReason */
1094 {
1095 EnablePrivilege(L"SeShutdownPrivilege", TRUE);
1096 ExitWindowsEx(EWX_REBOOT, uReason);
1097 EnablePrivilege(L"SeShutdownPrivilege", FALSE);
1098 }
1099
1100 return 0;
1101}
1102
1103/* Functions and macros used for fancy log off dialog box */
1104#define IS_PRODUCT_VERSION_WORKSTATION 0x300
1105#define FRIENDLY_LOGOFF_IS_NOT_ENFORCED 0x0
1106
1107#define FONT_POINT_SIZE 13
1108
1109#define DARK_GREY_COLOR RGB(244, 244, 244)
1110#define LIGHT_GREY_COLOR RGB(38, 38, 38)
1111
1112/* Bitmap's size for buttons */
1113#define CX_BITMAP 33
1114#define CY_BITMAP 33
1115
1116#define NUMBER_OF_BUTTONS 2
1117
1118/* After determining the button as well as its state paint the image strip bitmap using these predefined positions */
1119#define BUTTON_SWITCH_USER 0
1120#define BUTTON_SWITCH_USER_PRESSED (CY_BITMAP + BUTTON_SWITCH_USER)
1121#define BUTTON_SWITCH_USER_FOCUSED (CY_BITMAP + BUTTON_SWITCH_USER_PRESSED)
1122#define BUTTON_LOG_OFF (CY_BITMAP + BUTTON_SWITCH_USER_FOCUSED)
1123#define BUTTON_LOG_OFF_PRESSED (CY_BITMAP + BUTTON_LOG_OFF)
1124#define BUTTON_LOG_OFF_FOCUSED (CY_BITMAP + BUTTON_LOG_OFF_PRESSED)
1125#define BUTTON_SWITCH_USER_DISABLED (CY_BITMAP + BUTTON_LOG_OFF_FOCUSED) // Temporary
1126
1128{
1129 BOOL bRet = FALSE;
1130 HDC hdcMem = NULL;
1131 HBITMAP hbmOld = NULL;
1132 int y = 0;
1133 RECT rect;
1134
1135 hdcMem = CreateCompatibleDC(pdis->hDC);
1136 hbmOld = (HBITMAP)SelectObject(hdcMem, pContext->hImageStrip);
1137 rect = pdis->rcItem;
1138
1139 /* Check the button ID for revelant bitmap to be used */
1140 switch (pdis->CtlID)
1141 {
1142 case IDC_LOG_OFF_BUTTON:
1143 {
1144 switch (pdis->itemAction)
1145 {
1146 case ODA_DRAWENTIRE:
1147 case ODA_FOCUS:
1148 case ODA_SELECT:
1149 {
1150 y = BUTTON_LOG_OFF;
1151 if (pdis->itemState & ODS_SELECTED)
1152 {
1154 }
1155 else if (pContext->bIsButtonHot[0] || (pdis->itemState & ODS_FOCUS))
1156 {
1158 }
1159 break;
1160 }
1161 }
1162 break;
1163 }
1164
1166 {
1167 switch (pdis->itemAction)
1168 {
1169 case ODA_DRAWENTIRE:
1170 case ODA_FOCUS:
1171 case ODA_SELECT:
1172 {
1174 if (pdis->itemState & ODS_SELECTED)
1175 {
1177 }
1178 else if (pContext->bIsButtonHot[1] || (pdis->itemState & ODS_FOCUS))
1179 {
1181 }
1182
1183 /*
1184 * Since switch user functionality isn't implemented yet therefore the button has been disabled
1185 * temporarily hence show the disabled state
1186 */
1187 else if (pdis->itemState & ODS_DISABLED)
1188 {
1190 }
1191 break;
1192 }
1193 }
1194 break;
1195 }
1196 }
1197
1198 /* Draw it on the required button */
1199 bRet = BitBlt(pdis->hDC,
1200 (rect.right - rect.left - CX_BITMAP) / 2,
1201 (rect.bottom - rect.top - CY_BITMAP) / 2,
1203
1204 SelectObject(hdcMem, hbmOld);
1206
1207 return bRet;
1208}
1209
1211{
1212 PLOGOFF_DLG_CONTEXT pContext;
1214
1215 int buttonID = GetDlgCtrlID(hButton);
1216
1217 switch (uMsg)
1218 {
1219 case WM_MOUSEMOVE:
1220 {
1221 HWND hwndTarget = NULL;
1223
1224 if (GetCapture() != hButton)
1225 {
1226 SetCapture(hButton);
1227 if (buttonID == IDC_LOG_OFF_BUTTON)
1228 {
1229 pContext->bIsButtonHot[0] = TRUE;
1230 }
1231 else if (buttonID == IDC_SWITCH_USER_BUTTON)
1232 {
1233 pContext->bIsButtonHot[1] = TRUE;
1234 }
1236 }
1237
1238 ClientToScreen(hButton, &pt);
1239 hwndTarget = WindowFromPoint(pt);
1240
1241 if (hwndTarget != hButton)
1242 {
1244 if (buttonID == IDC_LOG_OFF_BUTTON)
1245 {
1246 pContext->bIsButtonHot[0] = FALSE;
1247 }
1248 else if (buttonID == IDC_SWITCH_USER_BUTTON)
1249 {
1250 pContext->bIsButtonHot[1] = FALSE;
1251 }
1252 }
1253 InvalidateRect(hButton, NULL, FALSE);
1254 break;
1255 }
1256
1257 /* Whenever one of the buttons gets the keyboard focus, set it as default button */
1258 case WM_SETFOCUS:
1259 {
1260 SendMessageW(GetParent(hButton), DM_SETDEFID, buttonID, 0);
1261 break;
1262 }
1263
1264 /* Otherwise, set IDCANCEL as default button */
1265 case WM_KILLFOCUS:
1266 {
1268 break;
1269 }
1270 }
1271 return CallWindowProcW(pContext->OldButtonProc, hButton, uMsg, wParam, lParam);
1272}
1273
1274VOID CreateToolTipForButtons(int controlID, int detailID, HWND hDlg, int titleID)
1275{
1276 HWND hwndTool = NULL, hwndTip = NULL;
1277 WCHAR szBuffer[256];
1278 TTTOOLINFOW tool;
1279
1280 hwndTool = GetDlgItem(hDlg, controlID);
1281
1282 tool.cbSize = sizeof(tool);
1283 tool.hwnd = hDlg;
1285 tool.uId = (UINT_PTR)hwndTool;
1286
1287 /* Create the tooltip */
1288 hwndTip = CreateWindowExW(0, TOOLTIPS_CLASSW, NULL,
1292 hDlg, NULL, shell32_hInstance, NULL);
1293
1294 /* Associate the tooltip with the tool. */
1295 LoadStringW(shell32_hInstance, detailID, szBuffer, _countof(szBuffer));
1296 tool.lpszText = szBuffer;
1297 SendMessageW(hwndTip, TTM_ADDTOOLW, 0, (LPARAM)&tool);
1298 LoadStringW(shell32_hInstance, titleID, szBuffer, _countof(szBuffer));
1299 SendMessageW(hwndTip, TTM_SETTITLEW, TTI_NONE, (LPARAM)szBuffer);
1300 SendMessageW(hwndTip, TTM_SETMAXTIPWIDTH, 0, 250);
1301}
1302
1304{
1305 DWORD dwType = 0, dwValue = 0, dwSize = 0;
1306 HKEY hKey = NULL;
1307 LONG lRet = 0;
1308
1310 L"SYSTEM\\CurrentControlSet\\Control\\Windows",
1311 0,
1313 &hKey);
1314 if (lRet != ERROR_SUCCESS)
1315 return FALSE;
1316
1317 /* First check an optional ReactOS specific override, that Windows does not check.
1318 We use this to allow users pairing 'Server'-configuration with FriendlyLogoff.
1319 Otherwise users would have to change CSDVersion or LogonType (side-effects AppCompat) */
1320 dwValue = 0;
1321 dwSize = sizeof(dwValue);
1322 lRet = RegQueryValueExW(hKey,
1323 L"EnforceFriendlyLogoff",
1324 NULL,
1325 &dwType,
1326 (LPBYTE)&dwValue,
1327 &dwSize);
1328
1329 if (lRet == ERROR_SUCCESS && dwType == REG_DWORD && dwValue != FRIENDLY_LOGOFF_IS_NOT_ENFORCED)
1330 {
1332 return TRUE;
1333 }
1334
1335 /* Check product version number */
1336 dwValue = 0;
1337 dwSize = sizeof(dwValue);
1338 lRet = RegQueryValueExW(hKey,
1339 L"CSDVersion",
1340 NULL,
1341 &dwType,
1342 (LPBYTE)&dwValue,
1343 &dwSize);
1345
1346 if (lRet != ERROR_SUCCESS || dwType != REG_DWORD || dwValue != IS_PRODUCT_VERSION_WORKSTATION)
1347 {
1348 /* Allow Friendly UI only on Workstation */
1349 return FALSE;
1350 }
1351
1352 /* Check LogonType value */
1354 L"SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Winlogon",
1355 0,
1357 &hKey);
1358 if (lRet != ERROR_SUCCESS)
1359 return FALSE;
1360
1361 dwValue = 0;
1362 dwSize = sizeof(dwValue);
1363 lRet = RegQueryValueExW(hKey,
1364 L"LogonType",
1365 NULL,
1366 &dwType,
1367 (LPBYTE)&dwValue,
1368 &dwSize);
1370
1371 if (lRet != ERROR_SUCCESS || dwType != REG_DWORD)
1372 return FALSE;
1373
1374 return (dwValue != 0);
1375}
1376
1378{
1379 HDC hdc = NULL;
1380 LONG lfHeight = NULL;
1381
1382 hdc = GetDC(NULL);
1384 ReleaseDC(NULL, hdc);
1385 pContext->hfFont = CreateFontW(lfHeight, 0, 0, 0, FW_MEDIUM, FALSE, 0, 0, 0, 0, 0, 0, 0, L"MS Shell Dlg");
1387
1389
1391
1394
1395 /* Gather old button func */
1397
1398 /* Make buttons to remember pContext and subclass the buttons as well as set bIsButtonHot boolean flags to false */
1399 for (int i = 0; i < NUMBER_OF_BUTTONS; i++)
1400 {
1401 pContext->bIsButtonHot[i] = FALSE;
1404 }
1405}
1406
1407/*************************************************************************
1408 * LogOffDialogProc
1409 *
1410 * NOTES: Used to make the Log Off dialog work
1411 */
1413{
1415 PLOGOFF_DLG_CONTEXT pContext;
1417
1418 switch (uMsg)
1419 {
1420 case WM_INITDIALOG:
1421 {
1422 pContext = (PLOGOFF_DLG_CONTEXT)lParam;
1424
1425 if (pContext->bFriendlyUI)
1426 FancyLogoffOnInit(hwnd, pContext);
1427 return TRUE;
1428 }
1429
1430 case WM_CLOSE:
1433 break;
1434
1435 /*
1436 * If the user deactivates the log off dialog (it loses its focus
1437 * while the dialog is not being closed), then destroy the dialog
1438 * box.
1439 */
1440 case WM_ACTIVATE:
1441 {
1442 if (LOWORD(wParam) == WA_INACTIVE)
1443 {
1445 PostQuitMessage(0);
1446 }
1447 return FALSE;
1448 }
1449
1450 case WM_COMMAND:
1451 switch (LOWORD(wParam))
1452 {
1453 case IDC_LOG_OFF_BUTTON:
1454 case IDOK:
1456 break;
1457
1458 case IDCANCEL:
1461 break;
1462 }
1463 break;
1464
1465 case WM_DESTROY:
1466 DeleteObject(pContext->hBrush);
1467 DeleteObject(pContext->hImageStrip);
1468 DeleteObject(pContext->hfFont);
1469
1470 /* Remove the subclass from the buttons */
1471 for (int i = 0; i < NUMBER_OF_BUTTONS; i++)
1472 {
1474 }
1475 return TRUE;
1476
1477 case WM_CTLCOLORSTATIC:
1478 {
1479 /* Either make background transparent or fill it with color for required static controls */
1480 HDC hdcStatic = (HDC)wParam;
1482
1483 switch (StaticID)
1484 {
1486 SetTextColor(hdcStatic, DARK_GREY_COLOR);
1487 SetBkMode(hdcStatic, TRANSPARENT);
1489
1490 case IDC_LOG_OFF_STATIC:
1492 SetTextColor(hdcStatic, LIGHT_GREY_COLOR);
1493 SetBkMode(hdcStatic, TRANSPARENT);
1494 return (LONG_PTR)pContext->hBrush;
1495 }
1496 return FALSE;
1497 }
1498 break;
1499
1500 case WM_DRAWITEM:
1501 {
1502 /* Draw bitmaps on required buttons */
1503 switch (pdis->CtlID)
1504 {
1505 case IDC_LOG_OFF_BUTTON:
1507 return DrawIconOnOwnerDrawnButtons(pdis, pContext);
1508 }
1509 }
1510 break;
1511
1512 default:
1513 break;
1514 }
1515 return FALSE;
1516}
1517
1518/*************************************************************************
1519 * LogoffWindowsDialog [SHELL32.54]
1520 */
1521
1523{
1524 CComPtr<IUnknown> fadeHandler;
1525 BOOL bIsAltKeyPressed = FALSE;
1526 MSG Msg;
1527 HWND parent = NULL;
1529 WCHAR szBuffer[30];
1530 DWORD LogoffDialogID = IDD_LOG_OFF;
1532
1533 if (!CallShellDimScreen(&fadeHandler, &parent))
1534 parent = hWndOwner;
1535
1536 Context.bFriendlyUI = IsFriendlyUIActive();
1537 if (Context.bFriendlyUI)
1538 {
1539 LogoffDialogID = IDD_LOG_OFF_FANCY;
1540 }
1541
1544
1545 /* Detect either Alt key has been pressed */
1546 while (GetMessageW(&Msg, NULL, 0, 0))
1547 {
1549 {
1552 }
1553
1554 switch (Msg.message)
1555 {
1556 case WM_SYSKEYDOWN:
1557 {
1558 /* If the Alt key has been pressed once, add prefix to static controls */
1559 if (Msg.wParam == VK_MENU && !bIsAltKeyPressed && Context.bFriendlyUI)
1560 {
1561 for (int i = 0; i < NUMBER_OF_BUTTONS; i++)
1562 {
1563 GetDlgItemTextW(hWndChild, IDC_LOG_OFF_BUTTON + i, szBuffer, _countof(szBuffer));
1565 }
1566 bIsAltKeyPressed = TRUE;
1567 }
1568 }
1569 break;
1570 }
1571 }
1572 return 0;
1573}
1574
1575/*************************************************************************
1576 * RestartDialog [SHELL32.59]
1577 */
1578
1579int WINAPI RestartDialog(HWND hWndOwner, LPCWSTR lpstrReason, DWORD uFlags)
1580{
1581 return RestartDialogEx(hWndOwner, lpstrReason, uFlags, 0);
1582}
1583
1584/*************************************************************************
1585 * ExitWindowsDialog_backup
1586 *
1587 * NOTES
1588 * Used as a backup solution to shutdown the OS in case msgina.dll
1589 * somehow cannot be found.
1590 */
1592{
1593 TRACE("(%p)\n", hWndOwner);
1594
1596 {
1597 EnablePrivilege(L"SeShutdownPrivilege", TRUE);
1599 EnablePrivilege(L"SeShutdownPrivilege", FALSE);
1600 }
1601}
1602
1603/*************************************************************************
1604 * ExitWindowsDialog [SHELL32.60]
1605 *
1606 * NOTES
1607 * exported by ordinal
1608 */
1609/*
1610 * TODO:
1611 * - Implement the ability to show either the Welcome Screen or the classic dialog boxes based upon the
1612 * registry value: SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\LogonType.
1613 */
1615{
1616 typedef DWORD (WINAPI *ShellShFunc)(HWND hParent, WCHAR *Username, BOOL bHideLogoff);
1617 HINSTANCE msginaDll = LoadLibraryW(L"msgina.dll");
1618
1619 TRACE("(%p)\n", hWndOwner);
1620
1621 CComPtr<IUnknown> fadeHandler;
1622 HWND parent;
1623 if (!CallShellDimScreen(&fadeHandler, &parent))
1624 parent = hWndOwner;
1625
1626 /* If the DLL cannot be found for any reason, then it simply uses a
1627 dialog box to ask if the user wants to shut down the computer. */
1628 if (!msginaDll)
1629 {
1630 TRACE("Unable to load msgina.dll.\n");
1632 return;
1633 }
1634
1635 ShellShFunc pShellShutdownDialog = (ShellShFunc)GetProcAddress(msginaDll, "ShellShutdownDialog");
1636
1637 if (pShellShutdownDialog)
1638 {
1639 /* Actually call the function */
1640 DWORD returnValue = pShellShutdownDialog(parent, NULL, FALSE);
1641
1642 switch (returnValue)
1643 {
1644 case 0x01: /* Log off user */
1645 {
1647 break;
1648 }
1649 case 0x02: /* Shut down */
1650 {
1651 EnablePrivilege(L"SeShutdownPrivilege", TRUE);
1653 EnablePrivilege(L"SeShutdownPrivilege", FALSE);
1654 break;
1655 }
1656 case 0x03: /* Install Updates/Shutdown (?) */
1657 {
1658 break;
1659 }
1660 case 0x04: /* Reboot */
1661 {
1662 EnablePrivilege(L"SeShutdownPrivilege", TRUE);
1664 EnablePrivilege(L"SeShutdownPrivilege", FALSE);
1665 break;
1666 }
1667 case 0x10: /* Sleep */
1668 {
1669 if (IsPwrSuspendAllowed())
1670 {
1671 EnablePrivilege(L"SeShutdownPrivilege", TRUE);
1673 EnablePrivilege(L"SeShutdownPrivilege", FALSE);
1674 }
1675 break;
1676 }
1677 case 0x40: /* Hibernate */
1678 {
1680 {
1681 EnablePrivilege(L"SeShutdownPrivilege", TRUE);
1683 EnablePrivilege(L"SeShutdownPrivilege", FALSE);
1684 }
1685 break;
1686 }
1687 /* If the option is any other value */
1688 default:
1689 break;
1690 }
1691 }
1692 else
1693 {
1694 /* If the function cannot be found, then revert to using the backup solution */
1695 TRACE("Unable to find the 'ShellShutdownDialog' function");
1697 }
1698
1699 FreeLibrary(msginaDll);
1700}
tShellDimScreen ShellDimScreen
#define shell32_hInstance
#define SECL_ALLOW_NONEXE
#define ShellExecCmdLine
#define SECL_NO_UI
#define WINE_DEFAULT_DEBUG_CHANNEL(t)
Definition: precomp.h:23
#define index(s, c)
Definition: various.h:29
void shell(int argc, const char *argv[])
Definition: cmds.c:1231
#define EXTERN_C
Definition: basetyps.h:12
#define FIXME(fmt,...)
Definition: debug.h:111
#define ERR(fmt,...)
Definition: debug.h:110
#define RegCloseKey(hKey)
Definition: registry.h:47
WPARAM wParam
Definition: combotst.c:138
HWND hwndEdit
Definition: combotst.c:65
struct @1609 Msg[]
LPARAM lParam
Definition: combotst.c:139
#define OFN_EXPLORER
Definition: commdlg.h:104
#define OFN_HIDEREADONLY
Definition: commdlg.h:107
#define OFN_ENABLESIZING
Definition: commdlg.h:101
#define OFN_FILEMUSTEXIST
Definition: commdlg.h:106
#define OFN_PATHMUSTEXIST
Definition: commdlg.h:117
HMODULE hLibrary
Definition: odbccp32.c:12
#define E_FAIL
Definition: ddrawi.h:102
#define ERROR_SUCCESS
Definition: deptool.c:10
#define NULL
Definition: types.h:112
#define TRUE
Definition: types.h:120
#define FALSE
Definition: types.h:117
UINT TitleId
Definition: desktop.c:52
LONG WINAPI RegCreateKeyExW(_In_ HKEY hKey, _In_ LPCWSTR lpSubKey, _In_ DWORD Reserved, _In_opt_ LPWSTR lpClass, _In_ DWORD dwOptions, _In_ REGSAM samDesired, _In_opt_ LPSECURITY_ATTRIBUTES lpSecurityAttributes, _Out_ PHKEY phkResult, _Out_opt_ LPDWORD lpdwDisposition)
Definition: reg.c:1091
LONG WINAPI RegOpenKeyExW(HKEY hKey, LPCWSTR lpSubKey, DWORD ulOptions, REGSAM samDesired, PHKEY phkResult)
Definition: reg.c:3353
LONG WINAPI RegSetValueExW(_In_ HKEY hKey, _In_ LPCWSTR lpValueName, _In_ DWORD Reserved, _In_ DWORD dwType, _In_ CONST BYTE *lpData, _In_ DWORD cbData)
Definition: reg.c:4897
LONG WINAPI RegQueryValueExW(_In_ HKEY hkeyorg, _In_ LPCWSTR name, _In_ LPDWORD reserved, _In_ LPDWORD type, _In_ LPBYTE data, _In_ LPDWORD count)
Definition: reg.c:4118
BOOL WINAPI LookupPrivilegeValueW(LPCWSTR lpSystemName, LPCWSTR lpPrivilegeName, PLUID lpLuid)
Definition: misc.c:782
BOOL WINAPI AdjustTokenPrivileges(HANDLE TokenHandle, BOOL DisableAllPrivileges, PTOKEN_PRIVILEGES NewState, DWORD BufferLength, PTOKEN_PRIVILEGES PreviousState, PDWORD ReturnLength)
Definition: security.c:376
BOOL WINAPI OpenProcessToken(HANDLE ProcessHandle, DWORD DesiredAccess, PHANDLE TokenHandle)
Definition: security.c:296
UINT uFlags
Definition: api.c:59
HMODULE hModule
Definition: animate.c:44
BOOL WINAPI GetOpenFileNameW(OPENFILENAMEW *ofn)
Definition: filedlg.c:4678
static const WCHAR Title[]
Definition: oid.c:1259
#define CloseHandle
Definition: compat.h:739
#define wcschr
Definition: compat.h:17
#define GetProcessHeap()
Definition: compat.h:736
#define wcsrchr
Definition: compat.h:16
#define GetProcAddress(x, y)
Definition: compat.h:753
#define HeapAlloc
Definition: compat.h:733
#define HeapReAlloc
Definition: compat.h:734
#define FreeLibrary(x)
Definition: compat.h:748
#define GetCurrentProcess()
Definition: compat.h:759
#define MAX_PATH
Definition: compat.h:34
#define HeapFree(x, y, z)
Definition: compat.h:735
#define CALLBACK
Definition: compat.h:35
#define LoadLibraryW(x)
Definition: compat.h:747
#define wcsicmp
Definition: compat.h:15
DWORD WINAPI ExpandEnvironmentStringsW(IN LPCWSTR lpSrc, IN LPWSTR lpDst, IN DWORD nSize)
Definition: environ.c:519
DWORD WINAPI GetFileAttributesW(LPCWSTR lpFileName)
Definition: fileinfo.c:652
HINSTANCE WINAPI DECLSPEC_HOTPATCH LoadLibraryExW(LPCWSTR lpLibFileName, HANDLE hFile, DWORD dwFlags)
Definition: loader.c:288
BOOL WINAPI EnumResourceNamesW(HMODULE hmod, LPCWSTR type, ENUMRESNAMEPROCW lpfun, LONG_PTR lparam)
Definition: res.c:358
#define IDB_IMAGE_STRIP
Definition: resource.h:79
HRESULT WINAPI DECLSPEC_HOTPATCH CoInitializeEx(LPVOID lpReserved, DWORD dwCoInit)
Definition: compobj.c:2002
void WINAPI DECLSPEC_HOTPATCH CoUninitialize(void)
Definition: compobj.c:2067
#define IDC_RUNDLG_BROWSE
Definition: resource.h:7
EXTERN_C int WINAPI LogoffWindowsDialog(HWND hWndOwner)
Definition: dialogs.cpp:1522
#define BUTTON_SWITCH_USER_DISABLED
Definition: dialogs.cpp:1125
VOID CreateToolTipForButtons(int controlID, int detailID, HWND hDlg, int titleID)
Definition: dialogs.cpp:1274
#define DARK_GREY_COLOR
Definition: dialogs.cpp:1109
BOOL CALLBACK EnumPickIconResourceProc(HMODULE hModule, LPCWSTR lpszType, LPWSTR lpszName, LONG_PTR lParam)
Definition: dialogs.cpp:68
static LPWSTR RunDlg_GetParentDir(LPCWSTR cmdline)
Definition: dialogs.cpp:432
BOOL DrawIconOnOwnerDrawnButtons(DRAWITEMSTRUCT *pdis, PLOGOFF_DLG_CONTEXT pContext)
Definition: dialogs.cpp:1127
static void FillList(HWND, LPWSTR, UINT, BOOL)
Definition: dialogs.cpp:788
int WINAPI RestartDialogEx(HWND hWndOwner, LPCWSTR lpwstrReason, DWORD uFlags, DWORD uReason)
Definition: dialogs.cpp:1082
static void DestroyIconList(HWND hDlgCtrl, PPICK_ICON_CONTEXT pIconContext)
Definition: dialogs.cpp:87
INT_PTR CALLBACK PickIconProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
Definition: dialogs.cpp:186
static BOOL IsFriendlyUIActive(VOID)
Definition: dialogs.cpp:1303
static BOOL EnablePrivilege(LPCWSTR lpszPrivilegeName, BOOL bEnablePrivilege)
Definition: dialogs.cpp:1052
BOOL WINAPI PickIconDlg(HWND hWndOwner, LPWSTR lpstrFile, UINT nMaxFile, INT *lpdwIconIndex)
Definition: dialogs.cpp:362
#define CX_BITMAP
Definition: dialogs.cpp:1113
void WINAPI ExitWindowsDialog(HWND hWndOwner)
Definition: dialogs.cpp:1614
#define CX_ITEM
Definition: dialogs.cpp:183
VOID ExitWindowsDialog_backup(HWND hWndOwner)
Definition: dialogs.cpp:1591
#define BUTTON_SWITCH_USER
Definition: dialogs.cpp:1119
#define BUTTON_LOG_OFF_FOCUSED
Definition: dialogs.cpp:1124
static BOOL DoLoadIcons(HWND hwndDlg, PPICK_ICON_CONTEXT pIconContext, LPCWSTR pszFile)
Definition: dialogs.cpp:104
BOOL(WINAPI * LPFNOFN)(OPENFILENAMEW *)
Definition: dialogs.cpp:46
struct LOGOFF_DLG_CONTEXT * PLOGOFF_DLG_CONTEXT
#define BUTTON_LOG_OFF
Definition: dialogs.cpp:1122
INT_PTR CALLBACK OwnerDrawButtonSubclass(HWND hButton, UINT uMsg, WPARAM wParam, LPARAM lParam)
Definition: dialogs.cpp:1210
#define IS_PRODUCT_VERSION_WORKSTATION
Definition: dialogs.cpp:1104
BOOL CallShellDimScreen(IUnknown **pUnknown, HWND *hWindow)
Definition: dialogs.cpp:1032
#define NUMBER_OF_BUTTONS
Definition: dialogs.cpp:1116
static void EnableOkButtonFromEditContents(HWND hwnd)
Definition: dialogs.cpp:488
#define FONT_POINT_SIZE
Definition: dialogs.cpp:1107
static void NoIconsInFile(HWND hwndDlg, PPICK_ICON_CONTEXT pIconContext)
Definition: dialogs.cpp:167
#define CY_BITMAP
Definition: dialogs.cpp:1114
INT_PTR CALLBACK LogOffDialogProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
Definition: dialogs.cpp:1412
struct PICK_ICON_CONTEXT * PPICK_ICON_CONTEXT
#define CY_ITEM
Definition: dialogs.cpp:184
static VOID FancyLogoffOnInit(HWND hwnd, PLOGOFF_DLG_CONTEXT pContext)
Definition: dialogs.cpp:1377
#define CX_ICON
Definition: dialogs.cpp:179
static BOOL ConfirmDialog(HWND hWndOwner, UINT PromptId, UINT TitleId)
Definition: dialogs.cpp:1019
#define LIGHT_GREY_COLOR
Definition: dialogs.cpp:1110
#define BUTTON_SWITCH_USER_PRESSED
Definition: dialogs.cpp:1120
#define BUTTON_LOG_OFF_PRESSED
Definition: dialogs.cpp:1123
#define FRIENDLY_LOGOFF_IS_NOT_ENFORCED
Definition: dialogs.cpp:1105
HRESULT(WINAPI * tShellDimScreen)(IUnknown **Unknown, HWND *hWindow)
Definition: dialogs.cpp:1029
#define BUTTON_SWITCH_USER_FOCUSED
Definition: dialogs.cpp:1121
static INT_PTR CALLBACK RunDlgProc(HWND, UINT, WPARAM, LPARAM)
Definition: dialogs.cpp:511
#define CY_ICON
Definition: dialogs.cpp:180
void WINAPI RunFileDlg(HWND hWndOwner, HICON hIcon, LPCWSTR lpstrDirectory, LPCWSTR lpstrTitle, LPCWSTR lpstrDescription, UINT uFlags)
Definition: dialogs.cpp:409
int WINAPI RestartDialog(HWND hWndOwner, LPCWSTR lpstrReason, DWORD uFlags)
Definition: dialogs.cpp:1579
#define ShellMessageBoxW
Definition: precomp.h:59
BOOL WINAPI StrTrimW(LPWSTR lpszStr, LPCWSTR lpszTrim)
Definition: string.c:1869
static const WCHAR Cleanup[]
Definition: register.c:80
#define pt(x, y)
Definition: drawing.c:79
static VOID NTAPI BitBlt(_In_ ULONG Left, _In_ ULONG Top, _In_ ULONG Width, _In_ ULONG Height, _In_reads_bytes_(Delta *Height) PUCHAR Buffer, _In_ ULONG BitsPerPixel, _In_ ULONG Delta)
Definition: common.c:49
_In_ uint64_t _In_ uint64_t _In_ uint64_t _In_opt_ traverse_ptr * tp
Definition: btrfs.c:2996
r parent
Definition: btrfs.c:3010
HWND hWndChild[NUM_TABS]
Definition: main.h:75
_In_ PUNKNOWN pUnknown
Definition: drmk.h:76
@ Success
Definition: eventcreate.c:712
unsigned int BOOL
Definition: ntddk_ex.h:94
unsigned long DWORD
Definition: ntddk_ex.h:95
LPCWSTR g_pszShell32
FxAutoRegKey hKey
pKey DeleteObject()
GLint GLint GLint GLint GLint x
Definition: gl.h:1548
GLint GLint GLint GLint GLint GLint y
Definition: gl.h:1548
GLuint GLuint GLsizei count
Definition: gl.h:1545
GLdouble n
Definition: glext.h:7729
GLuint res
Definition: glext.h:9613
GLenum src
Definition: glext.h:6340
GLuint index
Definition: glext.h:6031
GLint GLint GLint GLint GLint GLint GLint GLbitfield GLenum filter
Definition: glext.h:7005
GLuint64EXT * result
Definition: glext.h:11304
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint GLushort GLenum GLenum GLfloat GLenum GLenum GLint GLfloat const GLubyte GLenum GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLint GLint GLsizei GLsizei GLint GLenum GLenum const GLvoid GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLenum const GLdouble GLenum GLenum const GLfloat GLenum GLenum const GLint GLsizei GLuint GLfloat GLuint GLbitfield GLfloat GLint GLuint GLboolean GLenum GLfloat GLenum GLbitfield GLenum GLfloat GLfloat GLint GLint const GLfloat GLenum GLfloat GLfloat GLint GLint GLfloat GLfloat GLint GLint const GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat const GLdouble const GLfloat const GLdouble const GLfloat GLint i
Definition: glfuncs.h:248
static int mod
Definition: i386-dis.c:1288
@ Unknown
Definition: i8042prt.h:114
UINT WINAPI ExtractIconExW(LPCWSTR lpszFile, INT nIconIndex, HICON *phiconLarge, HICON *phiconSmall, UINT nIcons)
Definition: iconcache.cpp:866
_CRTIMP size_t __cdecl wcslen(_In_z_ const wchar_t *_Str)
#define SUCCEEDED(hr)
Definition: intsafe.h:50
#define REG_SZ
Definition: layer.c:22
#define memmove(s1, s2, n)
Definition: mkisofs.h:881
#define ASSERT(a)
Definition: mode.c:44
LPCWSTR szPath
Definition: env.c:37
PSDBQUERYRESULT_VISTA PVOID DWORD * dwSize
Definition: env.c:56
HDC hdc
Definition: main.c:9
static HBITMAP
Definition: button.c:44
static HDC
Definition: imagelist.c:92
static HICON
Definition: imagelist.c:84
static DWORD *static HFONT(WINAPI *pCreateFontIndirectExA)(const ENUMLOGFONTEXDVA *)
static char * dest
Definition: rtl.c:135
LPTSTR szFilter
Definition: mplay32.c:30
HICON hIcon
Definition: msconfig.c:44
__int3264 LONG_PTR
Definition: mstsclib_h.h:276
unsigned __int3264 UINT_PTR
Definition: mstsclib_h.h:274
INT WINAPI MulDiv(INT nNumber, INT nNumerator, INT nDenominator)
Definition: muldiv.c:25
unsigned int UINT
Definition: ndis.h:50
@ Initialized
Definition: ketypes.h:421
#define BOOL
Definition: nt_native.h:43
#define KEY_ALL_ACCESS
Definition: nt_native.h:1041
#define REG_OPTION_NON_VOLATILE
Definition: nt_native.h:1057
#define KEY_QUERY_VALUE
Definition: nt_native.h:1016
#define DWORD
Definition: nt_native.h:44
_In_ ULONG _In_ ULONG _In_ ULONG Length
Definition: ntddpcm.h:102
_In_ ULONGLONG _In_ ULONGLONG _In_ BOOLEAN Enable
Definition: ntddpcm.h:142
#define L(x)
Definition: ntvdm.h:50
@ COINIT_APARTMENTTHREADED
Definition: objbase.h:278
#define LOWORD(l)
Definition: pedump.c:82
#define WS_POPUP
Definition: pedump.c:616
long LONG
Definition: pedump.c:60
#define RT_GROUP_ICON
Definition: pedump.c:375
#define INT
Definition: polytest.cpp:20
BOOLEAN WINAPI IsPwrHibernateAllowed(VOID)
Definition: powrprof.c:450
BOOLEAN WINAPI SetSuspendState(BOOLEAN Hibernate, BOOLEAN ForceCritical, BOOLEAN DisableWakeEvent)
Definition: powrprof.c:681
BOOLEAN WINAPI IsPwrSuspendAllowed(VOID)
Definition: powrprof.c:488
#define TOOLTIPS_CLASSW
Definition: commctrl.h:1707
#define TTI_NONE
Definition: commctrl.h:1779
#define TTM_SETTITLEW
Definition: commctrl.h:1828
#define TTF_IDISHWND
Definition: commctrl.h:1764
#define TTF_SUBCLASS
Definition: commctrl.h:1767
#define TTM_ADDTOOLW
Definition: commctrl.h:1787
#define TTS_ALWAYSTIP
Definition: commctrl.h:1757
#define TTM_SETMAXTIPWIDTH
Definition: commctrl.h:1819
#define TTS_BALLOON
Definition: commctrl.h:1761
#define strlenW(s)
Definition: unicode.h:28
#define strcatW(d, s)
Definition: unicode.h:30
#define isspaceW(n)
Definition: unicode.h:52
#define WM_NOTIFY
Definition: richedit.h:61
#define RFF_NOBROWSE
Definition: run.h:46
#define RFF_NODEFAULT
Definition: run.h:47
#define RFF_CALCDIRECTORY
Definition: run.h:48
#define RFF_NOSEPARATEMEM
Definition: run.h:50
#define RFF_NOLABEL
Definition: run.h:49
#define REG_DWORD
Definition: sdbapi.c:596
_CRTIMP wchar_t *__cdecl wcscpy(_Out_writes_z_(_String_length_(_Source)+1) wchar_t *_Dest, _In_z_ const wchar_t *_Source)
BOOL WINAPI DECLSPEC_HOTPATCH ShellExecuteExW(LPSHELLEXECUTEINFOW sei)
Definition: shlexec.cpp:2335
HRESULT hr
Definition: shlfolder.c:183
HRESULT WINAPI SHAutoComplete(HWND hwndEdit, DWORD dwFlags)
Definition: autocomp.cpp:191
#define SHACF_FILESYSTEM
Definition: shlwapi.h:1912
#define SHACF_DEFAULT
Definition: shlwapi.h:1911
#define SHACF_FILESYS_ONLY
Definition: shlwapi.h:1917
#define SHACF_URLALL
Definition: shlwapi.h:1915
#define IDS_SHUTDOWN_TITLE
Definition: shresdef.h:84
#define IDI_SHELL_RUN
Definition: shresdef.h:556
#define IDS_LOG_OFF_TITLE
Definition: shresdef.h:335
#define IDS_NO_ICONS
Definition: shresdef.h:319
#define IDS_RESTART_TITLE
Definition: shresdef.h:82
#define IDD_PICK_ICON
Definition: shresdef.h:366
#define IDC_RUNDLG_LABEL
Definition: shresdef.h:346
#define IDC_LOG_OFF_BUTTON
Definition: shresdef.h:489
#define IDS_SHUTDOWN_PROMPT
Definition: shresdef.h:85
#define IDS_FILE_NOT_FOUND
Definition: shresdef.h:320
#define IDS_SWITCH_USER_DESC
Definition: shresdef.h:334
#define IDS_RUNDLG_BROWSE_FILTER
Definition: shresdef.h:197
#define IDC_LOG_OFF_TEXT_STATIC
Definition: shresdef.h:493
#define IDD_RUN
Definition: shresdef.h:341
#define IDC_EDIT_PATH
Definition: shresdef.h:369
#define IDC_LOG_OFF_STATIC
Definition: shresdef.h:491
#define IDC_PICKICON_LIST
Definition: shresdef.h:367
#define IDC_RUNDLG_EDITPATH
Definition: shresdef.h:345
#define IDC_RUNDLG_ICON
Definition: shresdef.h:344
#define IDS_RUNDLG_BROWSE_CAPTION
Definition: shresdef.h:196
#define IDD_LOG_OFF
Definition: shresdef.h:523
#define IDS_LOG_OFF_DESC
Definition: shresdef.h:333
#define IDC_BUTTON_PATH
Definition: shresdef.h:368
#define IDS_PICK_ICON_TITLE
Definition: shresdef.h:370
#define IDC_SWITCH_USER_BUTTON
Definition: shresdef.h:490
#define IDS_SWITCH_USER_TITLE
Definition: shresdef.h:336
#define IDS_RUNDLG_BROWSE_ERROR
Definition: shresdef.h:195
#define IDC_RUNDLG_DESCRIPTION
Definition: shresdef.h:342
#define IDS_PICK_ICON_FILTER
Definition: shresdef.h:371
#define IDC_SWITCH_USER_STATIC
Definition: shresdef.h:492
#define IDD_LOG_OFF_FANCY
Definition: shresdef.h:529
#define IDS_RESTART_PROMPT
Definition: shresdef.h:83
OPENFILENAME ofn
Definition: sndrec32.cpp:56
#define _countof(array)
Definition: sndvol32.h:68
#define TRACE(s)
Definition: solgame.cpp:4
& rect
Definition: startmenu.cpp:1413
TCHAR * cmdline
Definition: stretchblt.cpp:32
STRSAFEAPI StringCchCopyW(STRSAFE_LPWSTR pszDest, size_t cchDest, STRSAFE_LPCWSTR pszSrc)
Definition: strsafe.h:149
WNDPROC OldButtonProc
Definition: dialogs.cpp:43
BOOL bIsButtonHot[2]
Definition: dialogs.cpp:39
HBITMAP hImageStrip
Definition: dialogs.cpp:40
HMODULE hLibrary
Definition: dialogs.cpp:60
WCHAR szPath[MAX_PATH]
Definition: dialogs.cpp:62
HICON * phIcons
Definition: dialogs.cpp:65
LPCWSTR lpstrDirectory
Definition: dialogs.cpp:29
LPCWSTR lpstrTitle
Definition: dialogs.cpp:30
LPCWSTR lpstrDescription
Definition: dialogs.cpp:31
LPCWSTR lpFile
Definition: undocshell.h:150
LPCWSTR lpDirectory
Definition: undocshell.h:151
HMODULE hLibrary
Definition: dialog.c:549
LPCWSTR lpDirectory
Definition: shellapi.h:331
Definition: tftpd.h:60
UINT_PTR idFrom
Definition: winuser.h:3148
UINT code
Definition: winuser.h:3149
HWND hwndFrom
Definition: winuser.h:3147
HWND hwndOwner
Definition: commdlg.h:330
LPCSTR lpstrTitle
Definition: commdlg.h:341
LPSTR lpstrFile
Definition: commdlg.h:336
DWORD Flags
Definition: commdlg.h:342
LPCSTR lpstrInitialDir
Definition: commdlg.h:340
DWORD lStructSize
Definition: commdlg.h:329
LPCSTR lpstrFilter
Definition: commdlg.h:332
DWORD nMaxFile
Definition: commdlg.h:337
LONG top
Definition: windef.h:307
LONG left
Definition: windef.h:306
UINT_PTR uId
Definition: commctrl.h:1743
LPWSTR lpszText
Definition: commctrl.h:1746
#define GetWindowLongPtr
Definition: treelist.c:73
#define SetWindowLongPtr
Definition: treelist.c:70
#define GWLP_WNDPROC
Definition: treelist.c:66
#define GWLP_USERDATA
Definition: treelist.c:63
TW_UINT32 TW_UINT16 TW_UINT16 MSG
Definition: twain.h:1829
int32_t INT_PTR
Definition: typedefs.h:64
unsigned char * LPBYTE
Definition: typedefs.h:53
int32_t INT
Definition: typedefs.h:58
uint16_t * PWCHAR
Definition: typedefs.h:56
#define HIWORD(l)
Definition: typedefs.h:247
#define RF_OK
Definition: undocshell.h:160
#define RFN_VALIDATE
Definition: undocshell.h:137
#define RF_RETRY
Definition: undocshell.h:162
#define RF_CANCEL
Definition: undocshell.h:161
#define INVALID_FILE_ATTRIBUTES
Definition: vfdcmd.c:23
_In_ WDFCOLLECTION _In_ ULONG Index
HDC hdcMem
Definition: welcome.c:104
UINT WINAPI GetDlgItemTextW(HWND hDlg, int nIDDlgItem, LPWSTR lpString, int nMaxCount)
Definition: dialog.c:2263
int WINAPI GetWindowTextW(HWND hWnd, LPWSTR lpString, int nMaxCount)
Definition: window.c:1412
#define ZeroMemory
Definition: winbase.h:1670
DWORD WINAPI GetLastError(void)
Definition: except.c:1040
#define LOAD_LIBRARY_AS_DATAFILE
Definition: winbase.h:342
_In_ LONG _In_ HWND hwnd
Definition: winddi.h:4023
LONG_PTR LPARAM
Definition: windef.h:208
LONG_PTR LRESULT
Definition: windef.h:209
UINT_PTR WPARAM
Definition: windef.h:207
#define HRESULT
Definition: msvc.h:7
#define WINAPI
Definition: msvc.h:6
#define GET_Y_LPARAM(lp)
Definition: windowsx.h:300
#define GET_X_LPARAM(lp)
Definition: windowsx.h:299
HGDIOBJ WINAPI GetStockObject(_In_ int)
int WINAPI GetDeviceCaps(_In_opt_ HDC, _In_ int)
#define LOGPIXELSY
Definition: wingdi.h:719
HGDIOBJ WINAPI SelectObject(_In_ HDC, _In_ HGDIOBJ)
Definition: dc.c:1539
#define DI_NORMAL
Definition: wingdi.h:72
HDC WINAPI CreateCompatibleDC(_In_opt_ HDC hdc)
#define TRANSPARENT
Definition: wingdi.h:950
#define HOLLOW_BRUSH
Definition: wingdi.h:899
#define SRCCOPY
Definition: wingdi.h:333
HFONT WINAPI CreateFontW(_In_ int, _In_ int, _In_ int, _In_ int, _In_ int, _In_ DWORD, _In_ DWORD, _In_ DWORD, _In_ DWORD, _In_ DWORD, _In_ DWORD, _In_ DWORD, _In_ DWORD, _In_opt_ LPCWSTR)
int WINAPI FillRect(HDC, LPCRECT, HBRUSH)
int WINAPI SetBkMode(_In_ HDC, _In_ int)
Definition: dc.c:1056
COLORREF WINAPI SetTextColor(_In_ HDC, _In_ COLORREF)
Definition: text.c:918
HBRUSH WINAPI CreateSolidBrush(_In_ COLORREF)
BOOL WINAPI DeleteDC(_In_ HDC)
#define FW_MEDIUM
Definition: wingdi.h:375
#define HKEY_LOCAL_MACHINE
Definition: winreg.h:12
#define HKEY_CURRENT_USER
Definition: winreg.h:11
#define SW_SHOWNORMAL
Definition: winuser.h:764
#define ODS_DISABLED
Definition: winuser.h:2537
#define LB_ERR
Definition: winuser.h:2422
struct tagDRAWITEMSTRUCT * LPDRAWITEMSTRUCT
HWND WINAPI SetCapture(_In_ HWND hWnd)
HWND WINAPI CreateDialogParamW(_In_opt_ HINSTANCE, _In_ LPCWSTR, _In_opt_ HWND, _In_opt_ DLGPROC, _In_ LPARAM)
int WINAPI ReleaseDC(_In_opt_ HWND, _In_ HDC)
#define MAKEWPARAM(l, h)
Definition: winuser.h:3999
#define EWX_SHUTDOWN
Definition: winuser.h:634
BOOL WINAPI IsWindow(_In_opt_ HWND)
#define WM_CTLCOLORSTATIC
Definition: winuser.h:1762
#define LB_GETCOUNT
Definition: winuser.h:2028
#define ODS_SELECTED
Definition: winuser.h:2535
#define SW_HIDE
Definition: winuser.h:762
#define LB_FINDSTRINGEXACT
Definition: winuser.h:2025
#define WM_CLOSE
Definition: winuser.h:1611
#define DM_SETDEFID
Definition: winuser.h:2089
#define DWLP_USER
Definition: winuser.h:866
#define GetWindowLongPtrW
Definition: winuser.h:4819
BOOL WINAPI TranslateMessage(_In_ const MSG *)
#define MAKELPARAM(l, h)
Definition: winuser.h:3998
#define COLOR_WINDOW
Definition: winuser.h:912
BOOL WINAPI ShowWindow(_In_ HWND, _In_ int)
struct tagMEASUREITEMSTRUCT * LPMEASUREITEMSTRUCT
BOOL WINAPI ReleaseCapture(void)
Definition: message.c:2890
#define ODA_DRAWENTIRE
Definition: winuser.h:2532
#define STM_SETICON
Definition: winuser.h:2082
BOOL WINAPI IsDialogMessageW(_In_ HWND, _In_ LPMSG)
#define IDCANCEL
Definition: winuser.h:825
#define LB_SETTOPINDEX
Definition: winuser.h:2060
BOOL WINAPI GetMessageW(_Out_ LPMSG, _In_opt_ HWND, _In_ UINT, _In_ UINT)
#define LBN_DBLCLK
Definition: winuser.h:2061
#define GWL_ID
Definition: winuser.h:853
int WINAPI LoadStringW(_In_opt_ HINSTANCE hInstance, _In_ UINT uID, _Out_writes_to_(cchBufferMax, return+1) LPWSTR lpBuffer, _In_ int cchBufferMax)
#define EM_GETMODIFY
Definition: winuser.h:1984
__analysis_noreturn void WINAPI PostQuitMessage(_In_ int)
#define COLOR_HIGHLIGHT
Definition: winuser.h:920
#define WM_COMMAND
Definition: winuser.h:1730
#define IS_INTRESOURCE(i)
Definition: winuser.h:580
#define ODA_FOCUS
Definition: winuser.h:2534
#define EWX_LOGOFF
Definition: winuser.h:631
BOOL WINAPI SetDlgItemTextW(_In_ HWND, _In_ int, _In_ LPCWSTR)
#define WM_SETFOCUS
Definition: winuser.h:1603
HCURSOR WINAPI SetCursor(_In_opt_ HCURSOR)
#define WM_MOUSEMOVE
Definition: winuser.h:1765
HWND WINAPI GetCapture(void)
Definition: message.c:2881
#define WA_INACTIVE
Definition: winuser.h:2612
#define CB_RESETCONTENT
Definition: winuser.h:1949
#define WM_INITDIALOG
Definition: winuser.h:1729
#define MB_YESNO
Definition: winuser.h:811
#define LB_ADDSTRING
Definition: winuser.h:2021
HCURSOR WINAPI LoadCursorW(_In_opt_ HINSTANCE, _In_ LPCWSTR)
Definition: cursoricon.c:2074
#define LB_SETCOLUMNWIDTH
Definition: winuser.h:2051
int WINAPI MessageBoxW(_In_opt_ HWND hWnd, _In_opt_ LPCWSTR lpText, _In_opt_ LPCWSTR lpCaption, _In_ UINT uType)
BOOL WINAPI ClientToScreen(_In_ HWND, _Inout_ LPPOINT)
HWND WINAPI GetDlgItem(_In_opt_ HWND, _In_ int)
#define IDOK
Definition: winuser.h:824
#define WM_DRAWITEM
Definition: winuser.h:1635
#define WM_ACTIVATE
Definition: winuser.h:1602
LRESULT WINAPI SendDlgItemMessageW(_In_ HWND, _In_ int, _In_ UINT, _In_ WPARAM, _In_ LPARAM)
#define MB_ICONERROR
Definition: winuser.h:781
BOOL WINAPI SetWindowTextW(_In_ HWND, _In_opt_ LPCWSTR)
#define EWX_REBOOT
Definition: winuser.h:633
#define LB_RESETCONTENT
Definition: winuser.h:2045
HWND WINAPI SetFocus(_In_opt_ HWND)
BOOL WINAPI GetComboBoxInfo(_In_ HWND, _Inout_ PCOMBOBOXINFO)
#define WM_SETFONT
Definition: winuser.h:1640
HWND WINAPI CreateWindowExW(_In_ DWORD dwExStyle, _In_opt_ LPCWSTR lpClassName, _In_opt_ LPCWSTR lpWindowName, _In_ DWORD dwStyle, _In_ int X, _In_ int Y, _In_ int nWidth, _In_ int nHeight, _In_opt_ HWND hWndParent, _In_opt_ HMENU hMenu, _In_opt_ HINSTANCE hInstance, _In_opt_ LPVOID lpParam)
BOOL WINAPI DrawIconEx(_In_ HDC, _In_ int, _In_ int, _In_ HICON, _In_ int, _In_ int, _In_ UINT, _In_opt_ HBRUSH, _In_ UINT)
Definition: cursoricon.c:1997
#define CB_ADDSTRING
Definition: winuser.h:1926
#define SendMessage
Definition: winuser.h:5833
BOOL WINAPI EnableWindow(_In_ HWND, _In_ BOOL)
HDC WINAPI GetDC(_In_opt_ HWND)
int WINAPI GetWindowTextLengthW(_In_ HWND)
#define MB_OK
Definition: winuser.h:784
#define WM_MEASUREITEM
Definition: winuser.h:1636
#define CB_SETEDITSEL
Definition: winuser.h:1953
#define MB_ICONWARNING
Definition: winuser.h:780
#define CW_USEDEFAULT
Definition: winuser.h:225
HWND WINAPI GetParent(_In_ HWND)
#define LBN_SELCHANGE
Definition: winuser.h:2065
#define ODA_SELECT
Definition: winuser.h:2533
LRESULT WINAPI DispatchMessageW(_In_ const MSG *)
#define MB_ICONQUESTION
Definition: winuser.h:783
BOOL WINAPI ExitWindowsEx(_In_ UINT, _In_ DWORD)
HWND WINAPI WindowFromPoint(_In_ POINT)
int WINAPI GetDlgCtrlID(_In_ HWND)
#define IDC_HAND
Definition: winuser.h:693
#define SW_SHOW
Definition: winuser.h:769
#define WM_DESTROY
Definition: winuser.h:1599
#define LB_SETCURSEL
Definition: winuser.h:2053
BOOL WINAPI InvalidateRect(_In_opt_ HWND, _In_opt_ LPCRECT, _In_ BOOL)
#define MAKEINTRESOURCEW(i)
Definition: winuser.h:582
#define CB_INSERTSTRING
Definition: winuser.h:1947
LRESULT(CALLBACK * WNDPROC)(HWND, UINT, WPARAM, LPARAM)
Definition: winuser.h:2896
HBITMAP WINAPI LoadBitmapW(_In_opt_ HINSTANCE, _In_ LPCWSTR)
Definition: cursoricon.c:2132
#define IDYES
Definition: winuser.h:829
#define LB_GETCURSEL
Definition: winuser.h:2029
#define SetWindowLongPtrW
Definition: winuser.h:5336
LRESULT WINAPI CallWindowProcW(_In_ WNDPROC, _In_ HWND, _In_ UINT, _In_ WPARAM, _In_ LPARAM)
#define SendDlgItemMessage
Definition: winuser.h:5832
BOOL WINAPI DestroyWindow(_In_ HWND)
#define WM_KILLFOCUS
Definition: winuser.h:1604
#define ODS_FOCUS
Definition: winuser.h:2539
HICON WINAPI LoadIconW(_In_opt_ HINSTANCE hInstance, _In_ LPCWSTR lpIconName)
Definition: cursoricon.c:2044
#define WM_SYSKEYDOWN
Definition: winuser.h:1709
#define EM_SETMODIFY
Definition: winuser.h:2003
LRESULT WINAPI SendMessageW(_In_ HWND, _In_ UINT, _In_ WPARAM, _In_ LPARAM)
#define VK_MENU
Definition: winuser.h:2194
#define CBN_EDITCHANGE
Definition: winuser.h:1965
INT_PTR WINAPI DialogBoxParamW(_In_opt_ HINSTANCE, _In_ LPCWSTR, _In_opt_ HWND, _In_opt_ DLGPROC, _In_ LPARAM)
BOOL WINAPI EndDialog(_In_ HWND, _In_ INT_PTR)
BOOL WINAPI DestroyIcon(_In_ HICON)
Definition: cursoricon.c:2022
#define TOKEN_ADJUST_PRIVILEGES
Definition: setypes.h:926
#define SE_PRIVILEGE_ENABLED
Definition: setypes.h:63
const char * LPCSTR
Definition: xmlstorage.h:183
__wchar_t WCHAR
Definition: xmlstorage.h:180
WCHAR * LPWSTR
Definition: xmlstorage.h:184
const WCHAR * LPCWSTR
Definition: xmlstorage.h:185