2 * Drive management UI code
4 * Copyright 2003 Mark Westcott
5 * Copyright 2004 Chris Morgan
6 * Copyright 2003-2004 Mike Hearn
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.
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.
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
26 #define WIN32_LEAN_AND_MEAN
36 #include <wine/unicode.h>
37 #include <wine/debug.h>
42 WINE_DEFAULT_DEBUG_CHANNEL(winecfg);
44 #define BOX_MODE_CD_ASSIGN 1
45 #define BOX_MODE_CD_AUTODETECT 2
46 #define BOX_MODE_NONE 3
47 #define BOX_MODE_NORMAL 4
49 static BOOL advanced = FALSE;
50 static BOOL updating_ui = FALSE;
51 static struct drive* current_drive;
53 static void get_etched_rect(HWND dialog, RECT *rect);
54 static void update_controls(HWND dialog);
56 static DWORD driveui_msgbox (HWND parent, UINT messageId, DWORD flags)
58 WCHAR* caption = load_string (IDS_WINECFG_TITLE);
59 WCHAR* text = load_string (messageId);
60 DWORD result = MessageBoxW (parent, text, caption, flags);
61 HeapFree (GetProcessHeap(), 0, caption);
62 HeapFree (GetProcessHeap(), 0, text);
66 /**** listview helper functions ****/
68 /* clears the item at index in the listview */
69 static void lv_clear_curr_select(HWND dialog, int index)
71 ListView_SetItemState(GetDlgItem(dialog, IDC_LIST_DRIVES), index, 0, LVIS_SELECTED);
74 /* selects the item at index in the listview */
75 static void lv_set_curr_select(HWND dialog, int index)
77 /* no more than one item can be selected in our listview */
78 lv_clear_curr_select(dialog, -1);
79 ListView_SetItemState(GetDlgItem(dialog, IDC_LIST_DRIVES), index, LVIS_SELECTED, LVIS_SELECTED);
82 /* returns the currently selected item in the listview */
83 static int lv_get_curr_select(HWND dialog)
85 return SendDlgItemMessage(dialog, IDC_LIST_DRIVES, LVM_GETNEXTITEM, -1, LVNI_SELECTED);
88 /* sets the item in the listview at item->iIndex */
89 static void lv_set_item(HWND dialog, LVITEMW *item)
91 SendDlgItemMessageW(dialog, IDC_LIST_DRIVES, LVM_SETITEMW, 0, (LPARAM) item);
94 /* sets specified item's text */
95 static void lv_set_item_text(HWND dialog, int item, int subItem, WCHAR *text)
98 if (item < 0 || subItem < 0) return;
99 lvItem.mask = LVIF_TEXT;
101 lvItem.iSubItem = subItem;
102 lvItem.pszText = text;
103 lvItem.cchTextMax = lstrlenW(lvItem.pszText);
104 lv_set_item(dialog, &lvItem);
107 /* inserts an item into the listview */
108 static void lv_insert_item(HWND dialog, LVITEMW *item)
110 SendDlgItemMessageW(dialog, IDC_LIST_DRIVES, LVM_INSERTITEMW, 0, (LPARAM) item);
113 /* retrieve the item at index item->iIndex */
114 static void lv_get_item(HWND dialog, LVITEMW *item)
116 SendDlgItemMessageW(dialog, IDC_LIST_DRIVES, LVM_GETITEMW, 0, (LPARAM) item);
119 static void set_advanced(HWND dialog)
128 LoadStringW(GetModuleHandle(NULL), IDS_HIDE_ADVANCED, text, 256);
133 LoadStringW(GetModuleHandle(NULL), IDS_SHOW_ADVANCED, text, 256);
136 ShowWindow(GetDlgItem(dialog, IDC_RADIO_AUTODETECT), state);
137 ShowWindow(GetDlgItem(dialog, IDC_RADIO_ASSIGN), state);
138 ShowWindow(GetDlgItem(dialog, IDC_EDIT_LABEL), state);
139 ShowWindow(GetDlgItem(dialog, IDC_EDIT_DEVICE), state);
140 ShowWindow(GetDlgItem(dialog, IDC_STATIC_LABEL), state);
141 ShowWindow(GetDlgItem(dialog, IDC_BUTTON_BROWSE_DEVICE), state);
142 ShowWindow(GetDlgItem(dialog, IDC_EDIT_SERIAL), state);
143 ShowWindow(GetDlgItem(dialog, IDC_STATIC_SERIAL), state);
144 ShowWindow(GetDlgItem(dialog, IDC_LABELSERIAL_STATIC), state);
145 ShowWindow(GetDlgItem(dialog, IDC_COMBO_TYPE), state);
146 ShowWindow(GetDlgItem(dialog, IDC_STATIC_TYPE), state);
148 /* update the button text based on the state */
149 SetWindowTextW(GetDlgItem(dialog, IDC_BUTTON_SHOW_HIDE_ADVANCED), text);
151 /* redraw for the etched line */
152 get_etched_rect(dialog, &rect);
153 InflateRect(&rect, 5, 5);
154 InvalidateRect(dialog, &rect, TRUE);
157 struct drive_typemap {
162 static const struct drive_typemap type_pairs[] = {
163 { DRIVE_UNKNOWN, IDS_DRIVE_UNKNOWN },
164 { DRIVE_FIXED, IDS_DRIVE_FIXED },
165 { DRIVE_REMOTE, IDS_DRIVE_REMOTE },
166 { DRIVE_REMOVABLE, IDS_DRIVE_REMOVABLE },
167 { DRIVE_CDROM, IDS_DRIVE_CDROM }
170 #define DRIVE_TYPE_DEFAULT 0
172 static void enable_labelserial_box(HWND dialog, int mode)
174 WINE_TRACE("mode=%d\n", mode);
178 case BOX_MODE_CD_ASSIGN:
179 enable(IDC_RADIO_ASSIGN);
180 disable(IDC_EDIT_DEVICE);
181 disable(IDC_BUTTON_BROWSE_DEVICE);
182 enable(IDC_EDIT_SERIAL);
183 enable(IDC_EDIT_LABEL);
184 enable(IDC_STATIC_SERIAL);
185 enable(IDC_STATIC_LABEL);
188 case BOX_MODE_CD_AUTODETECT:
189 enable(IDC_RADIO_ASSIGN);
190 enable(IDC_EDIT_DEVICE);
191 enable(IDC_BUTTON_BROWSE_DEVICE);
192 disable(IDC_EDIT_SERIAL);
193 disable(IDC_EDIT_LABEL);
194 disable(IDC_STATIC_SERIAL);
195 disable(IDC_STATIC_LABEL);
199 disable(IDC_RADIO_ASSIGN);
200 disable(IDC_EDIT_DEVICE);
201 disable(IDC_BUTTON_BROWSE_DEVICE);
202 disable(IDC_EDIT_SERIAL);
203 disable(IDC_EDIT_LABEL);
204 disable(IDC_STATIC_SERIAL);
205 disable(IDC_STATIC_LABEL);
208 case BOX_MODE_NORMAL:
209 enable(IDC_RADIO_ASSIGN);
210 disable(IDC_EDIT_DEVICE);
211 disable(IDC_BUTTON_BROWSE_DEVICE);
212 enable(IDC_EDIT_SERIAL);
213 enable(IDC_EDIT_LABEL);
214 enable(IDC_STATIC_SERIAL);
215 enable(IDC_STATIC_LABEL);
220 static int fill_drives_list(HWND dialog)
223 BOOL drivec_present = FALSE;
231 prevsel = lv_get_curr_select(dialog);
233 /* Clear the listbox */
234 SendDlgItemMessage(dialog, IDC_LIST_DRIVES, LVM_DELETEALLITEMS, 0, 0);
236 for(i = 0; i < 26; i++)
242 /* skip over any unused drives */
243 if (!drives[i].in_use)
246 if (drives[i].letter == 'C')
247 drivec_present = TRUE;
253 item.mask = LVIF_TEXT | LVIF_PARAM;
256 item.pszText = strdupU2W(letter);
257 item.cchTextMax = lstrlenW(item.pszText);
258 item.lParam = (LPARAM) &drives[i];
260 lv_insert_item(dialog, &item);
261 HeapFree(GetProcessHeap(), 0, item.pszText);
263 path = strdupU2W(drives[i].unixpath);
264 lv_set_item_text(dialog, count, 1, path);
265 HeapFree(GetProcessHeap(), 0, path);
270 WINE_TRACE("loaded %d drives\n", count);
272 /* show the warning if there is no Drive C */
274 ShowWindow(GetDlgItem(dialog, IDS_DRIVE_NO_C), SW_NORMAL);
276 ShowWindow(GetDlgItem(dialog, IDS_DRIVE_NO_C), SW_HIDE);
278 lv_set_curr_select(dialog, prevsel == -1 ? 0 : prevsel);
284 static void on_options_click(HWND dialog)
286 if (IsDlgButtonChecked(dialog, IDC_SHOW_DOT_FILES) == BST_CHECKED)
287 set_reg_key(config_key, "", "ShowDotFiles", "Y");
289 set_reg_key(config_key, "", "ShowDotFiles", "N");
291 SendMessage(GetParent(dialog), PSM_CHANGED, 0, 0);
294 static INT_PTR CALLBACK drivechoose_dlgproc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
304 ULONG mask = ~drive_available_mask(0); /* the mask is now which drives aren't available */
305 for( c = 'A'; c<= 'Z'; c++){
307 if(!( mask & (1 << (c - 'A'))))
308 SendDlgItemMessageA( hwndDlg, IDC_DRIVESA2Z, CB_ADDSTRING, 0, (LPARAM) drive);
311 SendDlgItemMessageA( hwndDlg, IDC_DRIVESA2Z, CB_SELECTSTRING, 0, (LPARAM) drive);
315 if(HIWORD(wParam) != BN_CLICKED) break;
316 switch (LOWORD(wParam))
319 i = SendDlgItemMessageA( hwndDlg, IDC_DRIVESA2Z, CB_GETCURSEL, 0, 0);
321 SendDlgItemMessageA( hwndDlg, IDC_DRIVESA2Z, CB_GETLBTEXT, i, (LPARAM) drive);
325 EndDialog(hwndDlg, sel);
328 EndDialog(hwndDlg, -1);
335 static void on_add_click(HWND dialog)
337 /* we should allocate a drive letter automatically. We also need
338 some way to let the user choose the mapping point, for now we
339 will just force them to enter a path automatically, with / being
340 the default. In future we should be able to temporarily map /
341 then invoke the directory chooser dialog. */
343 char new = 'C'; /* we skip A and B, they are historically floppy drives */
344 ULONG mask = ~drive_available_mask(0); /* the mask is now which drives aren't available */
347 while (mask & (1 << (new - 'A')))
352 driveui_msgbox (dialog, IDS_DRIVE_LETTERS_EXCEEDED, MB_OK | MB_ICONEXCLAMATION);
358 new = DialogBoxParam(0, MAKEINTRESOURCE(IDD_DRIVECHOOSE), dialog, drivechoose_dlgproc, new);
360 if( new == -1) return;
362 WINE_TRACE("selected drive letter %c\n", new);
367 LoadStringW (GetModuleHandle (NULL), IDS_SYSTEM_DRIVE_LABEL, label,
368 sizeof(label)/sizeof(label[0]));
369 add_drive(new, "../drive_c", NULL, label, 0, DRIVE_FIXED);
371 else add_drive(new, "/", NULL, NULL, 0, DRIVE_UNKNOWN);
373 fill_drives_list(dialog);
375 /* select the newly created drive */
376 mask = ~drive_available_mask(0);
378 for (i = 0; i < 26; i++)
380 if ('A' + i == new) break;
381 if ((1 << i) & mask) c++;
383 lv_set_curr_select(dialog, c);
385 SetFocus(GetDlgItem(dialog, IDC_LIST_DRIVES));
387 update_controls(dialog);
388 SendMessage(GetParent(dialog), PSM_CHANGED, (WPARAM) dialog, 0);
391 static void on_remove_click(HWND dialog)
397 itemIndex = lv_get_curr_select(dialog);
398 if (itemIndex == -1) return; /* no selection */
400 item.mask = LVIF_PARAM;
401 item.iItem = itemIndex;
404 lv_get_item(dialog, &item);
406 drive = (struct drive *) item.lParam;
408 WINE_TRACE("unixpath: %s\n", drive->unixpath);
410 if (drive->letter == 'C')
412 DWORD result = driveui_msgbox (dialog, IDS_CONFIRM_DELETE_C, MB_YESNO | MB_ICONEXCLAMATION);
413 if (result == IDNO) return;
418 fill_drives_list(dialog);
420 itemIndex = itemIndex - 1;
421 if (itemIndex < 0) itemIndex = 0;
422 lv_set_curr_select(dialog, itemIndex); /* previous item */
424 SetFocus(GetDlgItem(dialog, IDC_LIST_DRIVES));
426 update_controls(dialog);
427 SendMessage(GetParent(dialog), PSM_CHANGED, (WPARAM) dialog, 0);
430 static void update_controls(HWND dialog)
432 static const WCHAR emptyW[1];
437 int i, selection = -1;
442 i = lv_get_curr_select(dialog);
445 /* no selection? let's select something for the user. this will re-enter */
446 lv_set_curr_select(dialog, i);
450 item.mask = LVIF_PARAM;
454 lv_get_item(dialog, &item);
455 current_drive = (struct drive *) item.lParam;
457 WINE_TRACE("Updating sheet for drive %c\n", current_drive->letter);
460 WINE_TRACE("set path control text to '%s'\n", current_drive->unixpath);
461 path = strdupU2W(current_drive->unixpath);
462 set_textW(dialog, IDC_EDIT_PATH, path);
463 HeapFree(GetProcessHeap(), 0, path);
466 type = current_drive->type;
467 SendDlgItemMessage(dialog, IDC_COMBO_TYPE, CB_RESETCONTENT, 0, 0);
469 for (i = 0; i < sizeof(type_pairs) / sizeof(struct drive_typemap); i++)
472 LoadStringW (GetModuleHandle (NULL), type_pairs[i].idDesc, driveDesc,
473 sizeof(driveDesc)/sizeof(driveDesc[0]));
474 SendDlgItemMessageW (dialog, IDC_COMBO_TYPE, CB_ADDSTRING, 0, (LPARAM)driveDesc);
476 if (type_pairs[i].sCode == type)
482 if (selection == -1) selection = DRIVE_TYPE_DEFAULT;
483 SendDlgItemMessage(dialog, IDC_COMBO_TYPE, CB_SETCURSEL, selection, 0);
485 EnableWindow( GetDlgItem( dialog, IDC_BUTTON_REMOVE ), (current_drive->letter != 'C') );
486 EnableWindow( GetDlgItem( dialog, IDC_EDIT_PATH ), (current_drive->letter != 'C') );
487 EnableWindow( GetDlgItem( dialog, IDC_BUTTON_BROWSE_PATH ), (current_drive->letter != 'C') );
488 EnableWindow( GetDlgItem( dialog, IDC_COMBO_TYPE ), (current_drive->letter != 'C') );
490 /* removeable media properties */
491 set_textW(dialog, IDC_EDIT_LABEL, current_drive->label ? current_drive->label : emptyW);
493 /* set serial edit text */
494 sprintf( serial, "%X", current_drive->serial );
495 set_text(dialog, IDC_EDIT_SERIAL, serial);
497 /* TODO: get the device here to put into the edit box */
498 device = "Not implemented yet";
499 set_text(dialog, IDC_EDIT_DEVICE, device);
502 selection = IDC_RADIO_ASSIGN;
503 if ((type == DRIVE_CDROM) || (type == DRIVE_REMOVABLE))
507 selection = IDC_RADIO_AUTODETECT;
508 enable_labelserial_box(dialog, BOX_MODE_CD_AUTODETECT);
512 selection = IDC_RADIO_ASSIGN;
513 enable_labelserial_box(dialog, BOX_MODE_CD_ASSIGN);
518 enable_labelserial_box(dialog, BOX_MODE_NORMAL);
519 selection = IDC_RADIO_ASSIGN;
522 CheckRadioButton(dialog, IDC_RADIO_AUTODETECT, IDC_RADIO_ASSIGN, selection);
529 static void on_edit_changed(HWND dialog, WORD id)
531 if (updating_ui) return;
533 WINE_TRACE("edit id %d changed\n", id);
539 WCHAR *label = get_textW(dialog, id);
540 HeapFree(GetProcessHeap(), 0, current_drive->label);
541 current_drive->label = label;
542 current_drive->modified = TRUE;
544 WINE_TRACE("set label to %s\n", wine_dbgstr_w(current_drive->label));
546 /* enable the apply button */
547 SendMessage(GetParent(dialog), PSM_CHANGED, (WPARAM) dialog, 0);
557 wpath = get_textW(dialog, id);
558 if( (lenW = WideCharToMultiByte(CP_UNIXCP, 0, wpath, -1, NULL, 0, NULL, NULL)) )
560 path = HeapAlloc(GetProcessHeap(), 0, lenW);
561 WideCharToMultiByte(CP_UNIXCP, 0, wpath, -1, path, lenW, NULL, NULL);
566 wpath = strdupU2W("drive_c");
569 HeapFree(GetProcessHeap(), 0, current_drive->unixpath);
570 current_drive->unixpath = path ? path : strdupA("drive_c");
571 current_drive->modified = TRUE;
573 WINE_TRACE("set path to %s\n", current_drive->unixpath);
575 lv_set_item_text(dialog, lv_get_curr_select(dialog), 1,
577 HeapFree(GetProcessHeap(), 0, wpath);
579 /* enable the apply button */
580 SendMessage(GetParent(dialog), PSM_CHANGED, (WPARAM) dialog, 0);
584 case IDC_EDIT_SERIAL:
588 serial = get_text(dialog, id);
589 current_drive->serial = serial ? strtoul( serial, NULL, 16 ) : 0;
590 HeapFree(GetProcessHeap(), 0, serial);
591 current_drive->modified = TRUE;
593 WINE_TRACE("set serial to %08X\n", current_drive->serial);
595 /* enable the apply button */
596 SendMessage(GetParent(dialog), PSM_CHANGED, (WPARAM) dialog, 0);
600 case IDC_EDIT_DEVICE:
602 char *device = get_text(dialog, id);
603 /* TODO: handle device if/when it makes sense to do so.... */
604 HeapFree(GetProcessHeap(), 0, device);
610 static void get_etched_rect(HWND dialog, RECT *rect)
612 GetClientRect(dialog, rect);
614 /* these dimensions from the labelserial static in En.rc */
621 /* this just draws a nice line to separate the advanced gui from the n00b gui :) */
622 static void paint(HWND dialog)
626 BeginPaint(dialog, &ps);
632 get_etched_rect(dialog, &rect);
634 DrawEdge(ps.hdc, &rect, EDGE_ETCHED, BF_TOP);
637 EndPaint(dialog, &ps);
640 BOOL browse_for_unix_folder(HWND dialog, WCHAR *pszPath)
642 static WCHAR wszUnixRootDisplayName[] =
643 { ':',':','{','C','C','7','0','2','E','B','2','-','7','D','C','5','-','1','1','D','9','-',
644 'C','6','8','7','-','0','0','0','4','2','3','8','A','0','1','C','D','}', 0 };
645 WCHAR pszChoosePath[FILENAME_MAX];
656 IShellFolder *pDesktop;
657 LPITEMIDLIST pidlUnixRoot, pidlSelectedPath;
660 LoadStringW(GetModuleHandle(NULL), IDS_CHOOSE_PATH, pszChoosePath, FILENAME_MAX);
662 hr = SHGetDesktopFolder(&pDesktop);
663 if (FAILED(hr)) return FALSE;
665 hr = IShellFolder_ParseDisplayName(pDesktop, NULL, NULL, wszUnixRootDisplayName, NULL,
666 &pidlUnixRoot, NULL);
668 IShellFolder_Release(pDesktop);
672 bi.pidlRoot = pidlUnixRoot;
673 pidlSelectedPath = SHBrowseForFolderW(&bi);
674 SHFree(pidlUnixRoot);
676 if (pidlSelectedPath) {
677 STRRET strSelectedPath;
678 WCHAR *pszSelectedPath;
681 hr = IShellFolder_GetDisplayNameOf(pDesktop, pidlSelectedPath, SHGDN_FORPARSING,
683 IShellFolder_Release(pDesktop);
685 SHFree(pidlSelectedPath);
689 hr = StrRetToStrW(&strSelectedPath, pidlSelectedPath, &pszSelectedPath);
690 SHFree(pidlSelectedPath);
691 if (FAILED(hr)) return FALSE;
693 lstrcpyW(pszPath, pszSelectedPath);
695 CoTaskMemFree(pszSelectedPath);
701 static void init_listview_columns(HWND dialog)
703 LVCOLUMNW listColumn;
708 GetClientRect(GetDlgItem(dialog, IDC_LIST_DRIVES), &viewRect);
709 width = (viewRect.right - viewRect.left) / 6 - 5;
711 LoadStringW (GetModuleHandle (NULL), IDS_COL_DRIVELETTER, column,
712 sizeof(column)/sizeof(column[0]));
713 listColumn.mask = LVCF_TEXT | LVCF_WIDTH | LVCF_SUBITEM;
714 listColumn.pszText = column;
715 listColumn.cchTextMax = lstrlenW (listColumn.pszText);
716 listColumn.cx = width;
718 SendDlgItemMessageW (dialog, IDC_LIST_DRIVES, LVM_INSERTCOLUMNW, 0, (LPARAM) &listColumn);
720 LoadStringW (GetModuleHandle (NULL), IDS_COL_DRIVEMAPPING, column,
721 sizeof(column)/sizeof(column[0]));
722 listColumn.cx = viewRect.right - viewRect.left - width;
723 listColumn.pszText = column;
724 listColumn.cchTextMax = lstrlenW (listColumn.pszText);
726 SendDlgItemMessageW (dialog, IDC_LIST_DRIVES, LVM_INSERTCOLUMNW, 1, (LPARAM) &listColumn);
729 static void load_drive_options(HWND dialog)
731 if (!strcmp(get_reg_key(config_key, "", "ShowDotFiles", "N"), "Y"))
732 CheckDlgButton(dialog, IDC_SHOW_DOT_FILES, BST_CHECKED);
736 DriveDlgProc (HWND dialog, UINT msg, WPARAM wParam, LPARAM lParam)
744 init_listview_columns(dialog);
747 ShowWindow( GetDlgItem( dialog, IDC_STATIC_MOUNTMGR_ERROR ), SW_SHOW );
748 ShowWindow( GetDlgItem( dialog, IDC_LIST_DRIVES ), SW_HIDE );
749 ShowWindow( GetDlgItem( dialog, IDC_BUTTON_ADD ), SW_HIDE );
750 ShowWindow( GetDlgItem( dialog, IDC_BUTTON_REMOVE ), SW_HIDE );
751 ShowWindow( GetDlgItem( dialog, IDC_BUTTON_AUTODETECT ), SW_HIDE );
752 ShowWindow( GetDlgItem( dialog, IDC_STATIC_PATH ), SW_HIDE );
753 ShowWindow( GetDlgItem( dialog, IDC_EDIT_PATH ), SW_HIDE );
754 ShowWindow( GetDlgItem( dialog, IDC_BUTTON_BROWSE_PATH ), SW_HIDE );
755 ShowWindow( GetDlgItem( dialog, IDC_COMBO_TYPE ), SW_HIDE );
756 ShowWindow( GetDlgItem( dialog, IDC_BUTTON_SHOW_HIDE_ADVANCED ), SW_HIDE );
757 set_advanced(dialog);
760 ShowWindow( GetDlgItem( dialog, IDC_STATIC_MOUNTMGR_ERROR ), SW_HIDE );
761 load_drive_options(dialog);
763 if (!drives[2].in_use)
764 driveui_msgbox (dialog, IDS_NO_DRIVE_C, MB_OK | MB_ICONEXCLAMATION);
766 fill_drives_list(dialog);
767 update_controls(dialog);
768 /* put in non-advanced mode by default */
769 set_advanced(dialog);
773 set_window_title(dialog);
781 switch (HIWORD(wParam))
784 on_edit_changed(dialog, LOWORD(wParam));
788 switch (LOWORD(wParam))
790 case IDC_SHOW_DOT_FILES:
791 on_options_click(dialog);
797 SendMessage(GetParent(dialog), PSM_CHANGED, 0, 0);
801 switch (LOWORD(wParam))
804 if (HIWORD(wParam) != BN_CLICKED) break;
805 on_add_click(dialog);
808 case IDC_BUTTON_REMOVE:
809 if (HIWORD(wParam) != BN_CLICKED) break;
810 on_remove_click(dialog);
813 case IDC_BUTTON_EDIT:
814 if (HIWORD(wParam) != BN_CLICKED) break;
815 item = SendMessage(GetDlgItem(dialog, IDC_LIST_DRIVES), LB_GETCURSEL, 0, 0);
816 drive = (struct drive *) SendMessage(GetDlgItem(dialog, IDC_LIST_DRIVES), LB_GETITEMDATA, item, 0);
819 case IDC_BUTTON_AUTODETECT:
821 fill_drives_list(dialog);
822 SendMessage(GetParent(dialog), PSM_CHANGED, 0, 0);
825 case IDC_BUTTON_SHOW_HIDE_ADVANCED:
826 advanced = !advanced;
827 set_advanced(dialog);
830 case IDC_BUTTON_BROWSE_PATH:
832 WCHAR szTargetPath[FILENAME_MAX];
833 if (browse_for_unix_folder(dialog, szTargetPath))
834 set_textW(dialog, IDC_EDIT_PATH, szTargetPath);
838 case IDC_RADIO_ASSIGN:
840 WCHAR *str = get_textW(dialog, IDC_EDIT_LABEL);
841 HeapFree(GetProcessHeap(), 0, current_drive->label);
842 current_drive->label = str;
844 str = get_textW(dialog, IDC_EDIT_SERIAL);
845 current_drive->serial = str ? strtoulW( str, NULL, 16 ) : 0;
846 HeapFree(GetProcessHeap(), 0, str);
847 current_drive->modified = TRUE;
849 /* TODO: we don't have a device at this point */
851 enable_labelserial_box(dialog, BOX_MODE_CD_ASSIGN);
859 int mode = BOX_MODE_NORMAL;
862 if (HIWORD(wParam) != CBN_SELCHANGE) break;
864 selection = SendDlgItemMessage(dialog, IDC_COMBO_TYPE, CB_GETCURSEL, 0, 0);
866 if (selection >= 0 &&
867 (type_pairs[selection].sCode == DRIVE_CDROM ||
868 type_pairs[selection].sCode == DRIVE_REMOVABLE))
870 if (IsDlgButtonChecked(dialog, IDC_RADIO_AUTODETECT))
871 mode = BOX_MODE_CD_AUTODETECT;
873 mode = BOX_MODE_CD_ASSIGN;
876 enable_labelserial_box(dialog, mode);
878 current_drive->type = type_pairs[selection].sCode;
879 current_drive->modified = TRUE;
887 switch (((LPNMHDR)lParam)->code)
890 WINE_TRACE("PSN_KILLACTIVE\n");
891 SetWindowLongPtr(dialog, DWLP_MSGRESULT, FALSE);
894 apply_drive_changes();
895 SetWindowLongPtr(dialog, DWLP_MSGRESULT, PSNRET_NOERROR);
899 case LVN_ITEMCHANGED:
901 LPNMLISTVIEW lpnm = (LPNMLISTVIEW)lParam;
902 if (!(lpnm->uOldState & LVIS_SELECTED) &&
903 (lpnm->uNewState & LVIS_SELECTED))
904 update_controls(dialog);