winex11: Update only the key state on KeymapNotify without sending fake key events.
[wine/multimedia.git] / dlls / shell32 / control.c
blobffe96ff104bb20415a8fccdfab99f70807f02ace
1 /* Control Panel management
3 * Copyright 2001 Eric Pouech
4 * Copyright 2008 Owen Rudge
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #include <assert.h>
22 #include <stdarg.h>
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <string.h>
27 #include "windef.h"
28 #include "winbase.h"
29 #include "wingdi.h"
30 #include "winuser.h"
31 #include "winreg.h"
32 #include "wine/debug.h"
33 #include "cpl.h"
34 #include "wine/unicode.h"
35 #include "commctrl.h"
37 #define NO_SHLWAPI_REG
38 #include "shlwapi.h"
40 #include "cpanel.h"
41 #include "shresdef.h"
42 #include "shell32_main.h"
44 #define MAX_STRING_LEN 1024
46 WINE_DEFAULT_DEBUG_CHANNEL(shlctrl);
48 CPlApplet* Control_UnloadApplet(CPlApplet* applet)
50 unsigned i;
51 CPlApplet* next;
53 for (i = 0; i < applet->count; i++) {
54 if (!applet->info[i].dwSize) continue;
55 applet->proc(applet->hWnd, CPL_STOP, i, applet->info[i].lData);
57 if (applet->proc) applet->proc(applet->hWnd, CPL_EXIT, 0L, 0L);
58 FreeLibrary(applet->hModule);
59 next = applet->next;
60 HeapFree(GetProcessHeap(), 0, applet->cmd);
61 HeapFree(GetProcessHeap(), 0, applet);
62 return next;
65 CPlApplet* Control_LoadApplet(HWND hWnd, LPCWSTR cmd, CPanel* panel)
67 CPlApplet* applet;
68 unsigned i;
69 CPLINFO info;
70 NEWCPLINFOW newinfo;
72 if (!(applet = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*applet))))
73 return applet;
75 applet->hWnd = hWnd;
77 if (!(applet->hModule = LoadLibraryW(cmd))) {
78 WARN("Cannot load control panel applet %s\n", debugstr_w(cmd));
79 goto theError;
81 if (!(applet->proc = (APPLET_PROC)GetProcAddress(applet->hModule, "CPlApplet"))) {
82 WARN("Not a valid control panel applet %s\n", debugstr_w(cmd));
83 goto theError;
85 if (!applet->proc(hWnd, CPL_INIT, 0L, 0L)) {
86 WARN("Init of applet has failed\n");
87 goto theError;
89 if ((applet->count = applet->proc(hWnd, CPL_GETCOUNT, 0L, 0L)) == 0) {
90 WARN("No subprogram in applet\n");
91 goto theError;
94 applet = HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, applet,
95 sizeof(*applet) + (applet->count - 1) * sizeof(NEWCPLINFOW));
97 if (!(applet->cmd = HeapAlloc(GetProcessHeap(), 0, (lstrlenW(cmd)+1) * sizeof(WCHAR)))) {
98 WARN("Cannot allocate memory for applet path\n");
99 goto theError;
102 lstrcpyW(applet->cmd, cmd);
104 for (i = 0; i < applet->count; i++) {
105 ZeroMemory(&newinfo, sizeof(newinfo));
106 newinfo.dwSize = sizeof(NEWCPLINFOA);
107 applet->info[i].dwSize = sizeof(NEWCPLINFOW);
108 applet->info[i].dwFlags = 0;
109 applet->info[i].dwHelpContext = 0;
110 applet->info[i].szHelpFile[0] = '\0';
111 /* proc is supposed to return a null value upon success for
112 * CPL_INQUIRE and CPL_NEWINQUIRE
113 * However, real drivers don't seem to behave like this
114 * So, use introspection rather than return value
116 applet->proc(hWnd, CPL_INQUIRE, i, (LPARAM)&info);
117 applet->info[i].lData = info.lData;
118 if (info.idIcon != CPL_DYNAMIC_RES)
119 applet->info[i].hIcon = LoadIconW(applet->hModule,
120 MAKEINTRESOURCEW(info.idIcon));
121 if (info.idName != CPL_DYNAMIC_RES)
122 LoadStringW(applet->hModule, info.idName,
123 applet->info[i].szName, sizeof(applet->info[i].szName) / sizeof(WCHAR));
124 if (info.idInfo != CPL_DYNAMIC_RES)
125 LoadStringW(applet->hModule, info.idInfo,
126 applet->info[i].szInfo, sizeof(applet->info[i].szInfo) / sizeof(WCHAR));
128 /* some broken control panels seem to return incorrect values in CPL_INQUIRE,
129 but proper data in CPL_NEWINQUIRE. if we get an empty string or a null
130 icon, see what we can get from CPL_NEWINQUIRE */
132 if (lstrlenW(applet->info[i].szName) == 0)
133 info.idName = CPL_DYNAMIC_RES;
135 /* zero-length szInfo may not be a buggy applet, but it doesn't hurt for us
136 to check anyway */
138 if (lstrlenW(applet->info[i].szInfo) == 0)
139 info.idInfo = CPL_DYNAMIC_RES;
141 if (applet->info[i].hIcon == NULL)
142 info.idIcon = CPL_DYNAMIC_RES;
144 if ((info.idIcon == CPL_DYNAMIC_RES) || (info.idName == CPL_DYNAMIC_RES) ||
145 (info.idInfo == CPL_DYNAMIC_RES)) {
146 applet->proc(hWnd, CPL_NEWINQUIRE, i, (LPARAM)&newinfo);
148 applet->info[i].dwFlags = newinfo.dwFlags;
149 applet->info[i].dwHelpContext = newinfo.dwHelpContext;
150 applet->info[i].lData = newinfo.lData;
151 if (info.idIcon == CPL_DYNAMIC_RES) {
152 if (!newinfo.hIcon) WARN("couldn't get icon for applet %u\n", i);
153 applet->info[i].hIcon = newinfo.hIcon;
155 if (newinfo.dwSize == sizeof(NEWCPLINFOW)) {
156 if (info.idName == CPL_DYNAMIC_RES)
157 memcpy(applet->info[i].szName, newinfo.szName, sizeof(newinfo.szName));
158 if (info.idInfo == CPL_DYNAMIC_RES)
159 memcpy(applet->info[i].szInfo, newinfo.szInfo, sizeof(newinfo.szInfo));
160 memcpy(applet->info[i].szHelpFile, newinfo.szHelpFile, sizeof(newinfo.szHelpFile));
161 } else {
162 if (info.idName == CPL_DYNAMIC_RES)
163 MultiByteToWideChar(CP_ACP, 0, ((LPNEWCPLINFOA)&newinfo)->szName,
164 sizeof(((LPNEWCPLINFOA)&newinfo)->szName) / sizeof(CHAR),
165 applet->info[i].szName,
166 sizeof(applet->info[i].szName) / sizeof(WCHAR));
167 if (info.idInfo == CPL_DYNAMIC_RES)
168 MultiByteToWideChar(CP_ACP, 0, ((LPNEWCPLINFOA)&newinfo)->szInfo,
169 sizeof(((LPNEWCPLINFOA)&newinfo)->szInfo) / sizeof(CHAR),
170 applet->info[i].szInfo,
171 sizeof(applet->info[i].szInfo) / sizeof(WCHAR));
172 MultiByteToWideChar(CP_ACP, 0, ((LPNEWCPLINFOA)&newinfo)->szHelpFile,
173 sizeof(((LPNEWCPLINFOA)&newinfo)->szHelpFile) / sizeof(CHAR),
174 applet->info[i].szHelpFile,
175 sizeof(applet->info[i].szHelpFile) / sizeof(WCHAR));
180 applet->next = panel->first;
181 panel->first = applet;
183 return applet;
185 theError:
186 Control_UnloadApplet(applet);
187 return NULL;
190 #define IDC_LISTVIEW 1000
191 #define IDC_STATUSBAR 1001
193 #define NUM_COLUMNS 2
194 #define LISTVIEW_DEFSTYLE (WS_CHILD | WS_VISIBLE | WS_TABSTOP |\
195 LVS_SORTASCENDING | LVS_AUTOARRANGE | LVS_SINGLESEL)
197 static BOOL Control_CreateListView (CPanel *panel)
199 RECT ws, sb;
200 WCHAR empty_string[] = {0};
201 WCHAR buf[MAX_STRING_LEN];
202 LVCOLUMNW lvc;
204 /* Create list view */
205 GetClientRect(panel->hWndStatusBar, &sb);
206 GetClientRect(panel->hWnd, &ws);
208 panel->hWndListView = CreateWindowExW(WS_EX_CLIENTEDGE, WC_LISTVIEWW,
209 empty_string, LISTVIEW_DEFSTYLE | LVS_ICON,
210 0, 0, ws.right - ws.left, ws.bottom - ws.top -
211 (sb.bottom - sb.top), panel->hWnd,
212 (HMENU) IDC_LISTVIEW, panel->hInst, NULL);
214 if (!panel->hWndListView)
215 return FALSE;
217 /* Create image lists for list view */
218 panel->hImageListSmall = ImageList_Create(GetSystemMetrics(SM_CXSMICON),
219 GetSystemMetrics(SM_CYSMICON), ILC_COLOR32 | ILC_MASK, 1, 1);
220 panel->hImageListLarge = ImageList_Create(GetSystemMetrics(SM_CXICON),
221 GetSystemMetrics(SM_CYICON), ILC_COLOR32 | ILC_MASK, 1, 1);
223 SendMessageW(panel->hWndListView, LVM_SETIMAGELIST, LVSIL_SMALL, (LPARAM)panel->hImageListSmall);
224 SendMessageW(panel->hWndListView, LVM_SETIMAGELIST, LVSIL_NORMAL, (LPARAM)panel->hImageListLarge);
226 /* Create columns for list view */
227 lvc.mask = LVCF_FMT | LVCF_TEXT | LVCF_SUBITEM | LVCF_WIDTH;
228 lvc.pszText = buf;
229 lvc.fmt = LVCFMT_LEFT;
231 /* Name column */
232 lvc.iSubItem = 0;
233 lvc.cx = (ws.right - ws.left) / 3;
234 LoadStringW(shell32_hInstance, IDS_CPANEL_NAME, buf, sizeof(buf) / sizeof(buf[0]));
236 if (ListView_InsertColumnW(panel->hWndListView, 0, &lvc) == -1)
237 return FALSE;
239 /* Description column */
240 lvc.iSubItem = 1;
241 lvc.cx = ((ws.right - ws.left) / 3) * 2;
242 LoadStringW(shell32_hInstance, IDS_CPANEL_DESCRIPTION, buf, sizeof(buf) /
243 sizeof(buf[0]));
245 if (ListView_InsertColumnW(panel->hWndListView, 1, &lvc) == -1)
246 return FALSE;
248 return(TRUE);
251 static void Control_WndProc_Create(HWND hWnd, const CREATESTRUCTW* cs)
253 CPanel* panel = cs->lpCreateParams;
254 HMENU hMenu, hSubMenu;
255 CPlApplet* applet;
256 MENUITEMINFOW mii;
257 unsigned int i;
258 int menucount, index;
259 CPlItem *item;
260 LVITEMW lvItem;
261 INITCOMMONCONTROLSEX icex;
262 INT sb_parts;
263 int itemidx;
265 SetWindowLongPtrW(hWnd, 0, (LONG_PTR)panel);
266 panel->hWnd = hWnd;
268 /* Initialise common control DLL */
269 icex.dwSize = sizeof(INITCOMMONCONTROLSEX);
270 icex.dwICC = ICC_LISTVIEW_CLASSES | ICC_BAR_CLASSES;
271 InitCommonControlsEx(&icex);
273 /* create the status bar */
274 if (!(panel->hWndStatusBar = CreateStatusWindowW(WS_CHILD | WS_VISIBLE | CCS_BOTTOM | SBARS_SIZEGRIP, NULL, hWnd, IDC_STATUSBAR)))
275 return;
277 sb_parts = -1;
278 SendMessageW(panel->hWndStatusBar, SB_SETPARTS, 1, (LPARAM) &sb_parts);
280 /* create the list view */
281 if (!Control_CreateListView(panel))
282 return;
284 hMenu = LoadMenuW(shell32_hInstance, MAKEINTRESOURCEW(MENU_CPANEL));
286 /* insert menu items for applets */
287 hSubMenu = GetSubMenu(hMenu, 0);
288 menucount = 0;
290 for (applet = panel->first; applet; applet = applet->next) {
291 for (i = 0; i < applet->count; i++) {
292 if (!applet->info[i].dwSize)
293 continue;
295 /* set up a CPlItem for this particular subprogram */
296 item = HeapAlloc(GetProcessHeap(), 0, sizeof(CPlItem));
298 if (!item)
299 continue;
301 item->applet = applet;
302 item->id = i;
304 mii.cbSize = sizeof(MENUITEMINFOW);
305 mii.fMask = MIIM_ID | MIIM_STRING | MIIM_DATA;
306 mii.dwTypeData = applet->info[i].szName;
307 mii.cch = sizeof(applet->info[i].szName) / sizeof(applet->info[i].szName[0]);
308 mii.wID = IDM_CPANEL_APPLET_BASE + menucount;
309 mii.dwItemData = (ULONG_PTR)item;
311 if (InsertMenuItemW(hSubMenu, menucount, TRUE, &mii)) {
312 /* add the list view item */
313 index = ImageList_AddIcon(panel->hImageListLarge, applet->info[i].hIcon);
314 ImageList_AddIcon(panel->hImageListSmall, applet->info[i].hIcon);
316 lvItem.mask = LVIF_IMAGE | LVIF_TEXT | LVIF_PARAM;
317 lvItem.iItem = menucount;
318 lvItem.iSubItem = 0;
319 lvItem.pszText = applet->info[i].szName;
320 lvItem.iImage = index;
321 lvItem.lParam = (LPARAM) item;
323 itemidx = ListView_InsertItemW(panel->hWndListView, &lvItem);
325 /* add the description */
326 ListView_SetItemTextW(panel->hWndListView, itemidx, 1,
327 applet->info[i].szInfo);
329 /* update menu bar, increment count */
330 DrawMenuBar(hWnd);
331 menucount++;
336 panel->total_subprogs = menucount;
338 /* check the "large items" icon in the View menu */
339 hSubMenu = GetSubMenu(hMenu, 1);
340 CheckMenuRadioItem(hSubMenu, FCIDM_SHVIEW_BIGICON, FCIDM_SHVIEW_REPORTVIEW,
341 FCIDM_SHVIEW_BIGICON, MF_BYCOMMAND);
343 SetMenu(hWnd, hMenu);
346 static void Control_FreeCPlItems(HWND hWnd, CPanel *panel)
348 HMENU hMenu, hSubMenu;
349 MENUITEMINFOW mii;
350 unsigned int i;
352 /* get the File menu */
353 hMenu = GetMenu(hWnd);
355 if (!hMenu)
356 return;
358 hSubMenu = GetSubMenu(hMenu, 0);
360 if (!hSubMenu)
361 return;
363 /* loop and free the item data */
364 for (i = IDM_CPANEL_APPLET_BASE; i <= IDM_CPANEL_APPLET_BASE + panel->total_subprogs; i++)
366 mii.cbSize = sizeof(MENUITEMINFOW);
367 mii.fMask = MIIM_DATA;
369 if (!GetMenuItemInfoW(hSubMenu, i, FALSE, &mii))
370 continue;
372 HeapFree(GetProcessHeap(), 0, (LPVOID) mii.dwItemData);
376 static void Control_UpdateListViewStyle(CPanel *panel, UINT style, UINT id)
378 HMENU hMenu, hSubMenu;
380 SetWindowLongW(panel->hWndListView, GWL_STYLE, LISTVIEW_DEFSTYLE | style);
382 /* update the menu */
383 hMenu = GetMenu(panel->hWnd);
384 hSubMenu = GetSubMenu(hMenu, 1);
386 CheckMenuRadioItem(hSubMenu, FCIDM_SHVIEW_BIGICON, FCIDM_SHVIEW_REPORTVIEW,
387 id, MF_BYCOMMAND);
390 static CPlItem* Control_GetCPlItem_From_MenuID(HWND hWnd, UINT id)
392 HMENU hMenu, hSubMenu;
393 MENUITEMINFOW mii;
395 /* retrieve the CPlItem structure from the menu item data */
396 hMenu = GetMenu(hWnd);
398 if (!hMenu)
399 return NULL;
401 hSubMenu = GetSubMenu(hMenu, 0);
403 if (!hSubMenu)
404 return NULL;
406 mii.cbSize = sizeof(MENUITEMINFOW);
407 mii.fMask = MIIM_DATA;
409 if (!GetMenuItemInfoW(hSubMenu, id, FALSE, &mii))
410 return NULL;
412 return (CPlItem *) mii.dwItemData;
415 static CPlItem* Control_GetCPlItem_From_ListView(CPanel *panel)
417 LVITEMW lvItem;
418 int selitem;
420 selitem = SendMessageW(panel->hWndListView, LVM_GETNEXTITEM, -1, LVNI_FOCUSED
421 | LVNI_SELECTED);
423 if (selitem != -1)
425 lvItem.iItem = selitem;
426 lvItem.mask = LVIF_PARAM;
428 if (SendMessageW(panel->hWndListView, LVM_GETITEMW, 0, (LPARAM) &lvItem))
429 return (CPlItem *) lvItem.lParam;
432 return NULL;
435 static void Control_StartApplet(HWND hWnd, CPlItem *item)
437 WCHAR verbOpen[] = {'c','p','l','o','p','e','n',0};
438 WCHAR format[] = {'@','%','d',0};
439 WCHAR param[MAX_PATH];
441 /* execute the applet if item is valid */
442 if (item)
444 wsprintfW(param, format, item->id);
445 ShellExecuteW(hWnd, verbOpen, item->applet->cmd, param, NULL, SW_SHOW);
449 static LRESULT WINAPI Control_WndProc(HWND hWnd, UINT wMsg,
450 WPARAM lParam1, LPARAM lParam2)
452 CPanel* panel = (CPanel*)GetWindowLongPtrW(hWnd, 0);
454 if (panel || wMsg == WM_CREATE) {
455 switch (wMsg) {
456 case WM_CREATE:
457 Control_WndProc_Create(hWnd, (CREATESTRUCTW*)lParam2);
458 return 0;
459 case WM_DESTROY:
461 CPlApplet* applet = panel->first;
462 while (applet)
463 applet = Control_UnloadApplet(applet);
465 Control_FreeCPlItems(hWnd, panel);
466 PostQuitMessage(0);
467 break;
468 case WM_COMMAND:
469 switch (LOWORD(lParam1))
471 case IDM_CPANEL_EXIT:
472 SendMessageW(hWnd, WM_CLOSE, 0, 0);
473 return 0;
475 case IDM_CPANEL_ABOUT:
477 WCHAR appName[MAX_STRING_LEN];
478 HICON icon = LoadImageW(shell32_hInstance, MAKEINTRESOURCEW(IDI_SHELL_CONTROL_PANEL),
479 IMAGE_ICON, 48, 48, LR_SHARED);
481 LoadStringW(shell32_hInstance, IDS_CPANEL_TITLE, appName,
482 sizeof(appName) / sizeof(appName[0]));
483 ShellAboutW(hWnd, appName, NULL, icon);
485 return 0;
488 case FCIDM_SHVIEW_BIGICON:
489 Control_UpdateListViewStyle(panel, LVS_ICON, FCIDM_SHVIEW_BIGICON);
490 return 0;
492 case FCIDM_SHVIEW_SMALLICON:
493 Control_UpdateListViewStyle(panel, LVS_SMALLICON, FCIDM_SHVIEW_SMALLICON);
494 return 0;
496 case FCIDM_SHVIEW_LISTVIEW:
497 Control_UpdateListViewStyle(panel, LVS_LIST, FCIDM_SHVIEW_LISTVIEW);
498 return 0;
500 case FCIDM_SHVIEW_REPORTVIEW:
501 Control_UpdateListViewStyle(panel, LVS_REPORT, FCIDM_SHVIEW_REPORTVIEW);
502 return 0;
504 default:
505 /* check if this is an applet */
506 if ((LOWORD(lParam1) >= IDM_CPANEL_APPLET_BASE) &&
507 (LOWORD(lParam1) <= IDM_CPANEL_APPLET_BASE + panel->total_subprogs))
509 Control_StartApplet(hWnd, Control_GetCPlItem_From_MenuID(hWnd, LOWORD(lParam1)));
510 return 0;
513 break;
516 break;
518 case WM_NOTIFY:
520 LPNMHDR nmh = (LPNMHDR) lParam2;
522 switch (nmh->idFrom)
524 case IDC_LISTVIEW:
525 switch (nmh->code)
527 case NM_RETURN:
528 case NM_DBLCLK:
530 Control_StartApplet(hWnd, Control_GetCPlItem_From_ListView(panel));
531 return 0;
533 case LVN_ITEMCHANGED:
535 CPlItem *item = Control_GetCPlItem_From_ListView(panel);
537 /* update the status bar if item is valid */
538 if (item)
539 SetWindowTextW(panel->hWndStatusBar,
540 item->applet->info[item->id].szInfo);
541 else
542 SetWindowTextW(panel->hWndStatusBar, NULL);
544 return 0;
548 break;
551 break;
554 case WM_MENUSELECT:
555 /* check if this is an applet */
556 if ((LOWORD(lParam1) >= IDM_CPANEL_APPLET_BASE) &&
557 (LOWORD(lParam1) <= IDM_CPANEL_APPLET_BASE + panel->total_subprogs))
559 CPlItem *item = Control_GetCPlItem_From_MenuID(hWnd, LOWORD(lParam1));
561 /* update the status bar if item is valid */
562 if (item)
563 SetWindowTextW(panel->hWndStatusBar, item->applet->info[item->id].szInfo);
565 else if ((HIWORD(lParam1) == 0xFFFF) && (lParam2 == 0))
567 /* reset status bar description to that of the selected icon */
568 CPlItem *item = Control_GetCPlItem_From_ListView(panel);
570 if (item)
571 SetWindowTextW(panel->hWndStatusBar, item->applet->info[item->id].szInfo);
572 else
573 SetWindowTextW(panel->hWndStatusBar, NULL);
575 return 0;
577 else
578 SetWindowTextW(panel->hWndStatusBar, NULL);
580 return 0;
582 case WM_SIZE:
584 HDWP hdwp;
585 RECT sb;
587 hdwp = BeginDeferWindowPos(2);
589 if (hdwp == NULL)
590 break;
592 GetClientRect(panel->hWndStatusBar, &sb);
594 hdwp = DeferWindowPos(hdwp, panel->hWndListView, NULL, 0, 0,
595 LOWORD(lParam2), HIWORD(lParam2) - (sb.bottom - sb.top),
596 SWP_NOZORDER | SWP_NOMOVE);
598 if (hdwp == NULL)
599 break;
601 hdwp = DeferWindowPos(hdwp, panel->hWndStatusBar, NULL, 0, 0,
602 LOWORD(lParam2), LOWORD(lParam1), SWP_NOZORDER | SWP_NOMOVE);
604 if (hdwp != NULL)
605 EndDeferWindowPos(hdwp);
607 return 0;
612 return DefWindowProcW(hWnd, wMsg, lParam1, lParam2);
615 static void Control_DoInterface(CPanel* panel, HWND hWnd, HINSTANCE hInst)
617 WNDCLASSEXW wc;
618 MSG msg;
619 WCHAR appName[MAX_STRING_LEN];
620 const WCHAR className[] = {'S','h','e','l','l','_','C','o','n','t','r','o',
621 'l','_','W','n','d','C','l','a','s','s',0};
623 LoadStringW(shell32_hInstance, IDS_CPANEL_TITLE, appName, sizeof(appName) / sizeof(appName[0]));
625 wc.cbSize = sizeof(wc);
626 wc.style = CS_HREDRAW|CS_VREDRAW;
627 wc.lpfnWndProc = Control_WndProc;
628 wc.cbClsExtra = 0;
629 wc.cbWndExtra = sizeof(CPlApplet*);
630 wc.hInstance = panel->hInst = hInst;
631 wc.hIcon = LoadIconW( shell32_hInstance, MAKEINTRESOURCEW(IDI_SHELL_CONTROL_PANEL) );
632 wc.hCursor = LoadCursorW( 0, (LPWSTR)IDC_ARROW );
633 wc.hbrBackground = GetStockObject(WHITE_BRUSH);
634 wc.lpszMenuName = NULL;
635 wc.lpszClassName = className;
636 wc.hIconSm = LoadImageW( shell32_hInstance, MAKEINTRESOURCEW(IDI_SHELL_CONTROL_PANEL), IMAGE_ICON,
637 GetSystemMetrics(SM_CXSMICON), GetSystemMetrics(SM_CYSMICON), LR_SHARED);
639 if (!RegisterClassExW(&wc)) return;
641 CreateWindowExW(0, wc.lpszClassName, appName,
642 WS_OVERLAPPEDWINDOW | WS_VISIBLE,
643 CW_USEDEFAULT, CW_USEDEFAULT,
644 CW_USEDEFAULT, CW_USEDEFAULT,
645 hWnd, NULL, hInst, panel);
646 if (!panel->hWnd) return;
648 while (GetMessageW(&msg, panel->hWnd, 0, 0)) {
649 TranslateMessage(&msg);
650 DispatchMessageW(&msg);
654 static void Control_RegisterRegistryApplets(HWND hWnd, CPanel *panel, HKEY hkey_root, LPCWSTR szRepPath)
656 WCHAR name[MAX_PATH];
657 WCHAR value[MAX_PATH];
658 HKEY hkey;
660 if (RegOpenKeyW(hkey_root, szRepPath, &hkey) == ERROR_SUCCESS)
662 int idx = 0;
664 for(;; ++idx)
666 DWORD nameLen = MAX_PATH;
667 DWORD valueLen = MAX_PATH;
669 if (RegEnumValueW(hkey, idx, name, &nameLen, NULL, NULL, (LPBYTE)value, &valueLen) != ERROR_SUCCESS)
670 break;
672 Control_LoadApplet(hWnd, value, panel);
674 RegCloseKey(hkey);
678 static void Control_DoWindow(CPanel* panel, HWND hWnd, HINSTANCE hInst)
680 HANDLE h;
681 WIN32_FIND_DATAW fd;
682 WCHAR buffer[MAX_PATH];
683 static const WCHAR wszAllCpl[] = {'*','.','c','p','l',0};
684 static const WCHAR wszRegPath[] = {'S','O','F','T','W','A','R','E','\\','M','i','c','r','o','s','o','f','t',
685 '\\','W','i','n','d','o','w','s','\\','C','u','r','r','e','n','t','V','e','r','s','i','o','n',
686 '\\','C','o','n','t','r','o','l',' ','P','a','n','e','l','\\','C','p','l','s',0};
687 WCHAR *p;
689 /* first add .cpl files in the system directory */
690 GetSystemDirectoryW( buffer, MAX_PATH );
691 p = buffer + strlenW(buffer);
692 *p++ = '\\';
693 lstrcpyW(p, wszAllCpl);
695 if ((h = FindFirstFileW(buffer, &fd)) != INVALID_HANDLE_VALUE) {
696 do {
697 lstrcpyW(p, fd.cFileName);
698 Control_LoadApplet(hWnd, buffer, panel);
699 } while (FindNextFileW(h, &fd));
700 FindClose(h);
703 /* now check for cpls in the registry */
704 Control_RegisterRegistryApplets(hWnd, panel, HKEY_LOCAL_MACHINE, wszRegPath);
705 Control_RegisterRegistryApplets(hWnd, panel, HKEY_CURRENT_USER, wszRegPath);
707 Control_DoInterface(panel, hWnd, hInst);
710 static void Control_DoLaunch(CPanel* panel, HWND hWnd, LPCWSTR wszCmd)
711 /* forms to parse:
712 * foo.cpl,@sp,str
713 * foo.cpl,@sp
714 * foo.cpl,,str
715 * foo.cpl @sp
716 * foo.cpl str
717 * "a path\foo.cpl"
720 LPWSTR buffer;
721 LPWSTR beg = NULL;
722 LPWSTR end;
723 WCHAR ch;
724 LPWSTR ptr;
725 signed sp = -1;
726 LPWSTR extraPmtsBuf = NULL;
727 LPWSTR extraPmts = NULL;
728 int quoted = 0;
730 buffer = HeapAlloc(GetProcessHeap(), 0, (lstrlenW(wszCmd) + 1) * sizeof(*wszCmd));
731 if (!buffer) return;
733 end = lstrcpyW(buffer, wszCmd);
735 for (;;) {
736 ch = *end;
737 if (ch == '"') quoted = !quoted;
738 if (!quoted && (ch == ' ' || ch == ',' || ch == '\0')) {
739 *end = '\0';
740 if (beg) {
741 if (*beg == '@') {
742 sp = atoiW(beg + 1);
743 } else if (*beg == '\0') {
744 sp = -1;
745 } else {
746 extraPmtsBuf = beg;
749 if (ch == '\0') break;
750 beg = end + 1;
751 if (ch == ' ') while (end[1] == ' ') end++;
753 end++;
755 while ((ptr = StrChrW(buffer, '"')))
756 memmove(ptr, ptr+1, lstrlenW(ptr)*sizeof(WCHAR));
758 /* now check for any quotes in extraPmtsBuf and remove */
759 if (extraPmtsBuf != NULL)
761 beg = end = extraPmtsBuf;
762 quoted = 0;
764 for (;;) {
765 ch = *end;
766 if (ch == '"') quoted = !quoted;
767 if (!quoted && (ch == ' ' || ch == ',' || ch == '\0')) {
768 *end = '\0';
769 if (beg) {
770 if (*beg != '\0') {
771 extraPmts = beg;
774 if (ch == '\0') break;
775 beg = end + 1;
776 if (ch == ' ') while (end[1] == ' ') end++;
778 end++;
781 while ((ptr = StrChrW(extraPmts, '"')))
782 memmove(ptr, ptr+1, lstrlenW(ptr)*sizeof(WCHAR));
784 if (extraPmts == NULL)
785 extraPmts = extraPmtsBuf;
788 /* Now check if there had been a numerical value in the extra params */
789 if ((extraPmts) && (*extraPmts == '@') && (sp == -1)) {
790 sp = atoiW(extraPmts + 1);
793 TRACE("cmd %s, extra %s, sp %d\n", debugstr_w(buffer), debugstr_w(extraPmts), sp);
795 Control_LoadApplet(hWnd, buffer, panel);
797 if (panel->first) {
798 CPlApplet* applet = panel->first;
800 assert(applet && applet->next == NULL);
802 /* we've been given a textual parameter (or none at all) */
803 if (sp == -1) {
804 while ((++sp) != applet->count) {
805 if (applet->info[sp].dwSize) {
806 TRACE("sp %d, name %s\n", sp, debugstr_w(applet->info[sp].szName));
808 if (StrCmpIW(extraPmts, applet->info[sp].szName) == 0)
809 break;
814 if (sp >= applet->count) {
815 WARN("Out of bounds (%u >= %u), setting to 0\n", sp, applet->count);
816 sp = 0;
819 if (applet->info[sp].dwSize) {
820 if (!applet->proc(applet->hWnd, CPL_STARTWPARMSW, sp, (LPARAM)extraPmts))
821 applet->proc(applet->hWnd, CPL_DBLCLK, sp, applet->info[sp].lData);
824 Control_UnloadApplet(applet);
827 HeapFree(GetProcessHeap(), 0, buffer);
830 /*************************************************************************
831 * Control_RunDLLW [SHELL32.@]
834 void WINAPI Control_RunDLLW(HWND hWnd, HINSTANCE hInst, LPCWSTR cmd, DWORD nCmdShow)
836 CPanel panel;
838 TRACE("(%p, %p, %s, 0x%08x)\n",
839 hWnd, hInst, debugstr_w(cmd), nCmdShow);
841 memset(&panel, 0, sizeof(panel));
843 if (!cmd || !*cmd) {
844 Control_DoWindow(&panel, hWnd, hInst);
845 } else {
846 Control_DoLaunch(&panel, hWnd, cmd);
850 /*************************************************************************
851 * Control_RunDLLA [SHELL32.@]
854 void WINAPI Control_RunDLLA(HWND hWnd, HINSTANCE hInst, LPCSTR cmd, DWORD nCmdShow)
856 DWORD len = MultiByteToWideChar(CP_ACP, 0, cmd, -1, NULL, 0 );
857 LPWSTR wszCmd = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
858 if (wszCmd && MultiByteToWideChar(CP_ACP, 0, cmd, -1, wszCmd, len ))
860 Control_RunDLLW(hWnd, hInst, wszCmd, nCmdShow);
862 HeapFree(GetProcessHeap(), 0, wszCmd);
865 /*************************************************************************
866 * Control_FillCache_RunDLLW [SHELL32.@]
869 HRESULT WINAPI Control_FillCache_RunDLLW(HWND hWnd, HANDLE hModule, DWORD w, DWORD x)
871 FIXME("%p %p 0x%08x 0x%08x stub\n", hWnd, hModule, w, x);
872 return 0;
875 /*************************************************************************
876 * Control_FillCache_RunDLLA [SHELL32.@]
879 HRESULT WINAPI Control_FillCache_RunDLLA(HWND hWnd, HANDLE hModule, DWORD w, DWORD x)
881 return Control_FillCache_RunDLLW(hWnd, hModule, w, x);
884 /*************************************************************************
885 * CallCPLEntry16 [SHELL32.166]
887 * called by desk.cpl on "Advanced" with:
888 * hMod("DeskCp16.Dll"), pFunc("CplApplet"), 0, 1, 0xc, 0
891 DWORD WINAPI CallCPLEntry16(HMODULE hMod, FARPROC pFunc, DWORD dw3, DWORD dw4, DWORD dw5, DWORD dw6)
893 FIXME("(%p, %p, %08x, %08x, %08x, %08x): stub.\n", hMod, pFunc, dw3, dw4, dw5, dw6);
894 return 0x0deadbee;