[USB]
[reactos.git] / rosapps / applications / winfile / winefile.c
1 /*
2 * Winefile
3 *
4 * Copyright 2000, 2003, 2004, 2005 Martin Fuchs
5 * Copyright 2006 Jason Green
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 */
21
22 #ifdef __WINE__
23 #include "config.h"
24 #include "wine/port.h"
25
26 /* for unix filesystem function calls */
27 #include <sys/stat.h>
28 #include <sys/types.h>
29 #include <dirent.h>
30 #endif
31
32 #define COBJMACROS
33
34 #include "winefile.h"
35 #include "resource.h"
36 #include "wine/unicode.h"
37
38 #ifdef _NO_EXTENSIONS
39 #undef _LEFT_FILES
40 #endif
41
42 #ifndef _MAX_PATH
43 #define _MAX_DRIVE 3
44 #define _MAX_FNAME 256
45 #define _MAX_DIR _MAX_FNAME
46 #define _MAX_EXT _MAX_FNAME
47 #define _MAX_PATH 260
48 #endif
49
50 #ifdef NONAMELESSUNION
51 #define UNION_MEMBER(x) DUMMYUNIONNAME.x
52 #else
53 #define UNION_MEMBER(x) x
54 #endif
55
56
57 #ifdef _SHELL_FOLDERS
58 #define DEFAULT_SPLIT_POS 300
59 #else
60 #define DEFAULT_SPLIT_POS 200
61 #endif
62
63 static const WCHAR registry_key[] = { 'S','o','f','t','w','a','r','e','\\',
64 'W','i','n','e','\\',
65 'W','i','n','e','F','i','l','e','\0'};
66 static const WCHAR reg_start_x[] = { 's','t','a','r','t','X','\0'};
67 static const WCHAR reg_start_y[] = { 's','t','a','r','t','Y','\0'};
68 static const WCHAR reg_width[] = { 'w','i','d','t','h','\0'};
69 static const WCHAR reg_height[] = { 'h','e','i','g','h','t','\0'};
70 static const WCHAR reg_logfont[] = { 'l','o','g','f','o','n','t','\0'};
71
72 enum ENTRY_TYPE {
73 ET_WINDOWS,
74 ET_UNIX,
75 #ifdef _SHELL_FOLDERS
76 ET_SHELL
77 #endif
78 };
79
80 typedef struct _Entry {
81 struct _Entry* next;
82 struct _Entry* down;
83 struct _Entry* up;
84
85 BOOL expanded;
86 BOOL scanned;
87 int level;
88
89 WIN32_FIND_DATAW data;
90
91 #ifndef _NO_EXTENSIONS
92 BY_HANDLE_FILE_INFORMATION bhfi;
93 BOOL bhfi_valid;
94 enum ENTRY_TYPE etype;
95 #endif
96 #ifdef _SHELL_FOLDERS
97 LPITEMIDLIST pidl;
98 IShellFolder* folder;
99 HICON hicon;
100 #endif
101 } Entry;
102
103 typedef struct {
104 Entry entry;
105 WCHAR path[MAX_PATH];
106 WCHAR volname[_MAX_FNAME];
107 WCHAR fs[_MAX_DIR];
108 DWORD drive_type;
109 DWORD fs_flags;
110 } Root;
111
112 enum COLUMN_FLAGS {
113 COL_SIZE = 0x01,
114 COL_DATE = 0x02,
115 COL_TIME = 0x04,
116 COL_ATTRIBUTES = 0x08,
117 COL_DOSNAMES = 0x10,
118 #ifdef _NO_EXTENSIONS
119 COL_ALL = COL_SIZE|COL_DATE|COL_TIME|COL_ATTRIBUTES|COL_DOSNAMES
120 #else
121 COL_INDEX = 0x20,
122 COL_LINKS = 0x40,
123 COL_ALL = COL_SIZE|COL_DATE|COL_TIME|COL_ATTRIBUTES|COL_DOSNAMES|COL_INDEX|COL_LINKS
124 #endif
125 };
126
127 typedef enum {
128 SORT_NAME,
129 SORT_EXT,
130 SORT_SIZE,
131 SORT_DATE
132 } SORT_ORDER;
133
134 typedef struct {
135 HWND hwnd;
136 #ifndef _NO_EXTENSIONS
137 HWND hwndHeader;
138 #endif
139
140 #ifndef _NO_EXTENSIONS
141 #define COLUMNS 10
142 #else
143 #define COLUMNS 5
144 #endif
145 int widths[COLUMNS];
146 int positions[COLUMNS+1];
147
148 BOOL treePane;
149 int visible_cols;
150 Entry* root;
151 Entry* cur;
152 } Pane;
153
154 typedef struct {
155 HWND hwnd;
156 Pane left;
157 Pane right;
158 int focus_pane; /* 0: left 1: right */
159 WINDOWPLACEMENT pos;
160 int split_pos;
161 BOOL header_wdths_ok;
162
163 WCHAR path[MAX_PATH];
164 WCHAR filter_pattern[MAX_PATH];
165 int filter_flags;
166 Root root;
167
168 SORT_ORDER sortOrder;
169 } ChildWnd;
170
171
172
173 static void read_directory(Entry* dir, LPCWSTR path, SORT_ORDER sortOrder, HWND hwnd);
174 static void set_curdir(ChildWnd* child, Entry* entry, int idx, HWND hwnd);
175 static void refresh_child(ChildWnd* child);
176 static void refresh_drives(void);
177 static void get_path(Entry* dir, PWSTR path);
178 static void format_date(const FILETIME* ft, WCHAR* buffer, int visible_cols);
179
180 static LRESULT CALLBACK FrameWndProc(HWND hwnd, UINT nmsg, WPARAM wparam, LPARAM lparam);
181 static LRESULT CALLBACK ChildWndProc(HWND hwnd, UINT nmsg, WPARAM wparam, LPARAM lparam);
182 static LRESULT CALLBACK TreeWndProc(HWND hwnd, UINT nmsg, WPARAM wparam, LPARAM lparam);
183
184
185 /* globals */
186 WINEFILE_GLOBALS Globals;
187
188 static int last_split;
189
190 /* some common string constants */
191 static const WCHAR sEmpty[] = {'\0'};
192 static const WCHAR sSpace[] = {' ', '\0'};
193 static const WCHAR sNumFmt[] = {'%','d','\0'};
194 static const WCHAR sQMarks[] = {'?','?','?','\0'};
195
196 /* window class names */
197 static const WCHAR sWINEFILEFRAME[] = {'W','F','S','_','F','r','a','m','e','\0'};
198 static const WCHAR sWINEFILETREE[] = {'W','F','S','_','T','r','e','e','\0'};
199
200 static void format_longlong(LPWSTR ret, ULONGLONG val)
201 {
202 WCHAR buffer[65], *p = &buffer[64];
203
204 *p = 0;
205 do {
206 *(--p) = '0' + val % 10;
207 val /= 10;
208 } while (val);
209 lstrcpyW( ret, p );
210 }
211
212
213 /* load resource string */
214 static LPWSTR load_string(LPWSTR buffer, DWORD size, UINT id)
215 {
216 LoadStringW(Globals.hInstance, id, buffer, size);
217 return buffer;
218 }
219
220 #define RS(b, i) load_string(b, sizeof(b)/sizeof(b[0]), i)
221
222
223 /* display error message for the specified WIN32 error code */
224 static void display_error(HWND hwnd, DWORD error)
225 {
226 WCHAR b1[BUFFER_LEN], b2[BUFFER_LEN];
227 PWSTR msg;
228
229 if (FormatMessageW(FORMAT_MESSAGE_ALLOCATE_BUFFER|FORMAT_MESSAGE_FROM_SYSTEM,
230 0, error, MAKELANGID(LANG_NEUTRAL,SUBLANG_DEFAULT), (PWSTR)&msg, 0, NULL))
231 MessageBoxW(hwnd, msg, RS(b2,IDS_WINEFILE), MB_OK);
232 else
233 MessageBoxW(hwnd, RS(b1,IDS_ERROR), RS(b2,IDS_WINEFILE), MB_OK);
234
235 LocalFree(msg);
236 }
237
238
239 /* display network error message using WNetGetLastErrorW() */
240 static void display_network_error(HWND hwnd)
241 {
242 WCHAR msg[BUFFER_LEN], provider[BUFFER_LEN], b2[BUFFER_LEN];
243 DWORD error;
244
245 if (WNetGetLastErrorW(&error, msg, BUFFER_LEN, provider, BUFFER_LEN) == NO_ERROR)
246 MessageBoxW(hwnd, msg, RS(b2,IDS_WINEFILE), MB_OK);
247 }
248
249 static inline BOOL get_check(HWND hwnd, INT id)
250 {
251 return BST_CHECKED&SendMessageW(GetDlgItem(hwnd, id), BM_GETSTATE, 0, 0);
252 }
253
254 static inline INT set_check(HWND hwnd, INT id, BOOL on)
255 {
256 return SendMessageW(GetDlgItem(hwnd, id), BM_SETCHECK, on?BST_CHECKED:BST_UNCHECKED, 0);
257 }
258
259 static inline void choose_font(HWND hwnd)
260 {
261 WCHAR dlg_name[BUFFER_LEN], dlg_info[BUFFER_LEN];
262 CHOOSEFONTW chFont;
263 LOGFONTW lFont;
264
265 HDC hdc = GetDC(hwnd);
266 chFont.lStructSize = sizeof(CHOOSEFONTW);
267 chFont.hwndOwner = hwnd;
268 chFont.hDC = NULL;
269 chFont.lpLogFont = &lFont;
270 chFont.Flags = CF_SCREENFONTS | CF_FORCEFONTEXIST | CF_LIMITSIZE | CF_NOSCRIPTSEL;
271 chFont.rgbColors = RGB(0,0,0);
272 chFont.lCustData = 0;
273 chFont.lpfnHook = NULL;
274 chFont.lpTemplateName = NULL;
275 chFont.hInstance = Globals.hInstance;
276 chFont.lpszStyle = NULL;
277 chFont.nFontType = SIMULATED_FONTTYPE;
278 chFont.nSizeMin = 0;
279 chFont.nSizeMax = 24;
280
281 if (ChooseFontW(&chFont)) {
282 HWND childWnd;
283 HFONT hFontOld;
284
285 DeleteObject(Globals.hfont);
286 Globals.hfont = CreateFontIndirectW(&lFont);
287 hFontOld = SelectObject(hdc, Globals.hfont);
288 GetTextExtentPoint32W(hdc, sSpace, 1, &Globals.spaceSize);
289
290 /* change font in all open child windows */
291 for(childWnd=GetWindow(Globals.hmdiclient,GW_CHILD); childWnd; childWnd=GetNextWindow(childWnd,GW_HWNDNEXT)) {
292 ChildWnd* child = (ChildWnd*) GetWindowLongPtrW(childWnd, GWLP_USERDATA);
293 SendMessageW(child->left.hwnd, WM_SETFONT, (WPARAM)Globals.hfont, TRUE);
294 SendMessageW(child->right.hwnd, WM_SETFONT, (WPARAM)Globals.hfont, TRUE);
295 SendMessageW(child->left.hwnd, LB_SETITEMHEIGHT, 1, max(Globals.spaceSize.cy,IMAGE_HEIGHT+3));
296 SendMessageW(child->right.hwnd, LB_SETITEMHEIGHT, 1, max(Globals.spaceSize.cy,IMAGE_HEIGHT+3));
297 InvalidateRect(child->left.hwnd, NULL, TRUE);
298 InvalidateRect(child->right.hwnd, NULL, TRUE);
299 }
300
301 SelectObject(hdc, hFontOld);
302 }
303 else if (CommDlgExtendedError()) {
304 LoadStringW(Globals.hInstance, IDS_FONT_SEL_DLG_NAME, dlg_name, BUFFER_LEN);
305 LoadStringW(Globals.hInstance, IDS_FONT_SEL_ERROR, dlg_info, BUFFER_LEN);
306 MessageBoxW(hwnd, dlg_info, dlg_name, MB_OK);
307 }
308
309 ReleaseDC(hwnd, hdc);
310 }
311
312
313 /* allocate and initialise a directory entry */
314 static Entry* alloc_entry(void)
315 {
316 Entry* entry = HeapAlloc(GetProcessHeap(), 0, sizeof(Entry));
317
318 #ifdef _SHELL_FOLDERS
319 entry->pidl = NULL;
320 entry->folder = NULL;
321 entry->hicon = 0;
322 #endif
323
324 return entry;
325 }
326
327 /* free a directory entry */
328 static void free_entry(Entry* entry)
329 {
330 #ifdef _SHELL_FOLDERS
331 if (entry->hicon && entry->hicon!=(HICON)-1)
332 DestroyIcon(entry->hicon);
333
334 if (entry->folder && entry->folder!=Globals.iDesktop)
335 IShellFolder_Release(entry->folder);
336
337 if (entry->pidl)
338 IMalloc_Free(Globals.iMalloc, entry->pidl);
339 #endif
340
341 HeapFree(GetProcessHeap(), 0, entry);
342 }
343
344 /* recursively free all child entries */
345 static void free_entries(Entry* dir)
346 {
347 Entry *entry, *next=dir->down;
348
349 if (next) {
350 dir->down = 0;
351
352 do {
353 entry = next;
354 next = entry->next;
355
356 free_entries(entry);
357 free_entry(entry);
358 } while(next);
359 }
360 }
361
362
363 static void read_directory_win(Entry* dir, LPCWSTR path)
364 {
365 Entry* first_entry = NULL;
366 Entry* last = NULL;
367 Entry* entry;
368
369 int level = dir->level + 1;
370 WIN32_FIND_DATAW w32fd;
371 HANDLE hFind;
372 #ifndef _NO_EXTENSIONS
373 HANDLE hFile;
374 #endif
375
376 WCHAR buffer[MAX_PATH], *p;
377 for(p=buffer; *path; )
378 *p++ = *path++;
379
380 *p++ = '\\';
381 p[0] = '*';
382 p[1] = '\0';
383
384 hFind = FindFirstFileW(buffer, &w32fd);
385
386 if (hFind != INVALID_HANDLE_VALUE) {
387 do {
388 #ifdef _NO_EXTENSIONS
389 /* hide directory entry "." */
390 if (w32fd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) {
391 LPCWSTR name = w32fd.cFileName;
392
393 if (name[0]=='.' && name[1]=='\0')
394 continue;
395 }
396 #endif
397 entry = alloc_entry();
398
399 if (!first_entry)
400 first_entry = entry;
401
402 if (last)
403 last->next = entry;
404
405 memcpy(&entry->data, &w32fd, sizeof(WIN32_FIND_DATAW));
406 entry->down = NULL;
407 entry->up = dir;
408 entry->expanded = FALSE;
409 entry->scanned = FALSE;
410 entry->level = level;
411
412 #ifndef _NO_EXTENSIONS
413 entry->etype = ET_WINDOWS;
414 entry->bhfi_valid = FALSE;
415
416 lstrcpyW(p, entry->data.cFileName);
417
418 hFile = CreateFileW(buffer, GENERIC_READ, FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
419 0, OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, 0);
420
421 if (hFile != INVALID_HANDLE_VALUE) {
422 if (GetFileInformationByHandle(hFile, &entry->bhfi))
423 entry->bhfi_valid = TRUE;
424
425 CloseHandle(hFile);
426 }
427 #endif
428
429 last = entry;
430 } while(FindNextFileW(hFind, &w32fd));
431
432 if (last)
433 last->next = NULL;
434
435 FindClose(hFind);
436 }
437
438 dir->down = first_entry;
439 dir->scanned = TRUE;
440 }
441
442
443 static Entry* find_entry_win(Entry* dir, LPCWSTR name)
444 {
445 Entry* entry;
446
447 for(entry=dir->down; entry; entry=entry->next) {
448 LPCWSTR p = name;
449 LPCWSTR q = entry->data.cFileName;
450
451 do {
452 if (!*p || *p == '\\' || *p == '/')
453 return entry;
454 } while(tolower(*p++) == tolower(*q++));
455
456 p = name;
457 q = entry->data.cAlternateFileName;
458
459 do {
460 if (!*p || *p == '\\' || *p == '/')
461 return entry;
462 } while(tolower(*p++) == tolower(*q++));
463 }
464
465 return 0;
466 }
467
468
469 static Entry* read_tree_win(Root* root, LPCWSTR path, SORT_ORDER sortOrder, HWND hwnd)
470 {
471 WCHAR buffer[MAX_PATH];
472 Entry* entry = &root->entry;
473 LPCWSTR s = path;
474 PWSTR d = buffer;
475
476 HCURSOR old_cursor = SetCursor(LoadCursorW(0, (LPCWSTR)IDC_WAIT));
477
478 #ifndef _NO_EXTENSIONS
479 entry->etype = ET_WINDOWS;
480 #endif
481
482 while(entry) {
483 while(*s && *s != '\\' && *s != '/')
484 *d++ = *s++;
485
486 while(*s == '\\' || *s == '/')
487 s++;
488
489 *d++ = '\\';
490 *d = '\0';
491
492 read_directory(entry, buffer, sortOrder, hwnd);
493
494 if (entry->down)
495 entry->expanded = TRUE;
496
497 if (!*s)
498 break;
499
500 entry = find_entry_win(entry, s);
501 }
502
503 SetCursor(old_cursor);
504
505 return entry;
506 }
507
508
509 #if !defined(_NO_EXTENSIONS) && defined(__WINE__)
510
511 static BOOL time_to_filetime(const time_t* t, FILETIME* ftime)
512 {
513 struct tm* tm = gmtime(t);
514 SYSTEMTIME stime;
515
516 if (!tm)
517 return FALSE;
518
519 stime.wYear = tm->tm_year+1900;
520 stime.wMonth = tm->tm_mon+1;
521 /* stime.wDayOfWeek */
522 stime.wDay = tm->tm_mday;
523 stime.wHour = tm->tm_hour;
524 stime.wMinute = tm->tm_min;
525 stime.wSecond = tm->tm_sec;
526
527 return SystemTimeToFileTime(&stime, ftime);
528 }
529
530 static void read_directory_unix(Entry* dir, LPCWSTR path)
531 {
532 Entry* first_entry = NULL;
533 Entry* last = NULL;
534 Entry* entry;
535 DIR* pdir;
536
537 int level = dir->level + 1;
538 char cpath[MAX_PATH];
539
540 WideCharToMultiByte(CP_UNIXCP, 0, path, -1, cpath, MAX_PATH, NULL, NULL);
541 pdir = opendir(cpath);
542
543 if (pdir) {
544 struct stat st;
545 struct dirent* ent;
546 char buffer[MAX_PATH], *p;
547 const char* s;
548
549 for(p=buffer,s=cpath; *s; )
550 *p++ = *s++;
551
552 if (p==buffer || p[-1]!='/')
553 *p++ = '/';
554
555 while((ent=readdir(pdir))) {
556 entry = alloc_entry();
557
558 if (!first_entry)
559 first_entry = entry;
560
561 if (last)
562 last->next = entry;
563
564 entry->etype = ET_UNIX;
565
566 strcpy(p, ent->d_name);
567 MultiByteToWideChar(CP_UNIXCP, 0, p, -1, entry->data.cFileName, MAX_PATH);
568
569 if (!stat(buffer, &st)) {
570 entry->data.dwFileAttributes = p[0]=='.'? FILE_ATTRIBUTE_HIDDEN: 0;
571
572 if (S_ISDIR(st.st_mode))
573 entry->data.dwFileAttributes |= FILE_ATTRIBUTE_DIRECTORY;
574
575 entry->data.nFileSizeLow = st.st_size & 0xFFFFFFFF;
576 entry->data.nFileSizeHigh = st.st_size >> 32;
577
578 memset(&entry->data.ftCreationTime, 0, sizeof(FILETIME));
579 time_to_filetime(&st.st_atime, &entry->data.ftLastAccessTime);
580 time_to_filetime(&st.st_mtime, &entry->data.ftLastWriteTime);
581
582 entry->bhfi.nFileIndexLow = ent->d_ino;
583 entry->bhfi.nFileIndexHigh = 0;
584
585 entry->bhfi.nNumberOfLinks = st.st_nlink;
586
587 entry->bhfi_valid = TRUE;
588 } else {
589 entry->data.nFileSizeLow = 0;
590 entry->data.nFileSizeHigh = 0;
591 entry->bhfi_valid = FALSE;
592 }
593
594 entry->down = NULL;
595 entry->up = dir;
596 entry->expanded = FALSE;
597 entry->scanned = FALSE;
598 entry->level = level;
599
600 last = entry;
601 }
602
603 if (last)
604 last->next = NULL;
605
606 closedir(pdir);
607 }
608
609 dir->down = first_entry;
610 dir->scanned = TRUE;
611 }
612
613 static Entry* find_entry_unix(Entry* dir, LPCWSTR name)
614 {
615 Entry* entry;
616
617 for(entry=dir->down; entry; entry=entry->next) {
618 LPCWSTR p = name;
619 LPCWSTR q = entry->data.cFileName;
620
621 do {
622 if (!*p || *p == '/')
623 return entry;
624 } while(*p++ == *q++);
625 }
626
627 return 0;
628 }
629
630 static Entry* read_tree_unix(Root* root, LPCWSTR path, SORT_ORDER sortOrder, HWND hwnd)
631 {
632 WCHAR buffer[MAX_PATH];
633 Entry* entry = &root->entry;
634 LPCWSTR s = path;
635 PWSTR d = buffer;
636
637 HCURSOR old_cursor = SetCursor(LoadCursorW(0, (LPCWSTR)IDC_WAIT));
638
639 entry->etype = ET_UNIX;
640
641 while(entry) {
642 while(*s && *s != '/')
643 *d++ = *s++;
644
645 while(*s == '/')
646 s++;
647
648 *d++ = '/';
649 *d = '\0';
650
651 read_directory(entry, buffer, sortOrder, hwnd);
652
653 if (entry->down)
654 entry->expanded = TRUE;
655
656 if (!*s)
657 break;
658
659 entry = find_entry_unix(entry, s);
660 }
661
662 SetCursor(old_cursor);
663
664 return entry;
665 }
666
667 #endif /* !defined(_NO_EXTENSIONS) && defined(__WINE__) */
668
669
670 #ifdef _SHELL_FOLDERS
671
672 static void free_strret(STRRET* str)
673 {
674 if (str->uType == STRRET_WSTR)
675 IMalloc_Free(Globals.iMalloc, str->UNION_MEMBER(pOleStr));
676 }
677
678 static LPWSTR wcscpyn(LPWSTR dest, LPCWSTR source, size_t count)
679 {
680 LPCWSTR s;
681 LPWSTR d = dest;
682
683 for(s=source; count&&(*d++=*s++); )
684 count--;
685
686 return dest;
687 }
688
689 static void get_strretW(STRRET* str, const SHITEMID* shiid, LPWSTR buffer, int len)
690 {
691 switch(str->uType) {
692 case STRRET_WSTR:
693 wcscpyn(buffer, str->UNION_MEMBER(pOleStr), len);
694 break;
695
696 case STRRET_OFFSET:
697 MultiByteToWideChar(CP_ACP, 0, (LPCSTR)shiid+str->UNION_MEMBER(uOffset), -1, buffer, len);
698 break;
699
700 case STRRET_CSTR:
701 MultiByteToWideChar(CP_ACP, 0, str->UNION_MEMBER(cStr), -1, buffer, len);
702 }
703 }
704
705
706 static HRESULT name_from_pidl(IShellFolder* folder, LPITEMIDLIST pidl, LPWSTR buffer, int len, SHGDNF flags)
707 {
708 STRRET str;
709
710 HRESULT hr = IShellFolder_GetDisplayNameOf(folder, pidl, flags, &str);
711
712 if (SUCCEEDED(hr)) {
713 get_strretW(&str, &pidl->mkid, buffer, len);
714 free_strret(&str);
715 } else
716 buffer[0] = '\0';
717
718 return hr;
719 }
720
721
722 static HRESULT path_from_pidlW(IShellFolder* folder, LPITEMIDLIST pidl, LPWSTR buffer, int len)
723 {
724 STRRET str;
725
726 /* SHGDN_FORPARSING: get full path of id list */
727 HRESULT hr = IShellFolder_GetDisplayNameOf(folder, pidl, SHGDN_FORPARSING, &str);
728
729 if (SUCCEEDED(hr)) {
730 get_strretW(&str, &pidl->mkid, buffer, len);
731 free_strret(&str);
732 } else
733 buffer[0] = '\0';
734
735 return hr;
736 }
737
738
739 /* create an item id list from a file system path */
740
741 static LPITEMIDLIST get_path_pidl(LPWSTR path, HWND hwnd)
742 {
743 LPITEMIDLIST pidl;
744 HRESULT hr;
745 ULONG len;
746 LPWSTR buffer = path;
747
748 hr = IShellFolder_ParseDisplayName(Globals.iDesktop, hwnd, NULL, buffer, &len, &pidl, NULL);
749 if (FAILED(hr))
750 return NULL;
751
752 return pidl;
753 }
754
755
756 /* convert an item id list from relative to absolute (=relative to the desktop) format */
757
758 static LPITEMIDLIST get_to_absolute_pidl(Entry* entry, HWND hwnd)
759 {
760 if (entry->up && entry->up->etype==ET_SHELL) {
761 LPITEMIDLIST idl = NULL;
762
763 while (entry->up) {
764 idl = ILCombine(ILClone(entry->pidl), idl);
765 entry = entry->up;
766 }
767
768 return idl;
769 } else if (entry->etype == ET_WINDOWS) {
770 WCHAR path[MAX_PATH];
771
772 get_path(entry, path);
773
774 return get_path_pidl(path, hwnd);
775 } else if (entry->pidl)
776 return ILClone(entry->pidl);
777
778 return NULL;
779 }
780
781
782 static HICON extract_icon(IShellFolder* folder, LPCITEMIDLIST pidl)
783 {
784 IExtractIconW* pExtract;
785
786 if (SUCCEEDED(IShellFolder_GetUIObjectOf(folder, 0, 1, (LPCITEMIDLIST*)&pidl, &IID_IExtractIconW, 0, (LPVOID*)&pExtract))) {
787 WCHAR path[_MAX_PATH];
788 unsigned flags;
789 HICON hicon;
790 int idx;
791
792 if (SUCCEEDED(IExtractIconW_GetIconLocation(pExtract, GIL_FORSHELL, path, _MAX_PATH, &idx, &flags))) {
793 if (!(flags & GIL_NOTFILENAME)) {
794 if (idx == -1)
795 idx = 0; /* special case for some control panel applications */
796
797 if ((int)ExtractIconExW(path, idx, 0, &hicon, 1) > 0)
798 flags &= ~GIL_DONTCACHE;
799 } else {
800 HICON hIconLarge = 0;
801
802 HRESULT hr = IExtractIconW_Extract(pExtract, path, idx, &hIconLarge, &hicon, MAKELONG(0/*GetSystemMetrics(SM_CXICON)*/,GetSystemMetrics(SM_CXSMICON)));
803
804 if (SUCCEEDED(hr))
805 DestroyIcon(hIconLarge);
806 }
807
808 return hicon;
809 }
810 }
811
812 return 0;
813 }
814
815
816 static Entry* find_entry_shell(Entry* dir, LPCITEMIDLIST pidl)
817 {
818 Entry* entry;
819
820 for(entry=dir->down; entry; entry=entry->next) {
821 if (entry->pidl->mkid.cb == pidl->mkid.cb &&
822 !memcmp(entry->pidl, pidl, entry->pidl->mkid.cb))
823 return entry;
824 }
825
826 return 0;
827 }
828
829 static Entry* read_tree_shell(Root* root, LPITEMIDLIST pidl, SORT_ORDER sortOrder, HWND hwnd)
830 {
831 Entry* entry = &root->entry;
832 Entry* next;
833 LPITEMIDLIST next_pidl = pidl;
834 IShellFolder* folder;
835 IShellFolder* child = NULL;
836 HRESULT hr;
837
838 HCURSOR old_cursor = SetCursor(LoadCursorW(0, (LPCWSTR)IDC_WAIT));
839
840 #ifndef _NO_EXTENSIONS
841 entry->etype = ET_SHELL;
842 #endif
843
844 folder = Globals.iDesktop;
845
846 while(entry) {
847 entry->pidl = next_pidl;
848 entry->folder = folder;
849
850 if (!pidl->mkid.cb)
851 break;
852
853 /* copy first element of item idlist */
854 next_pidl = IMalloc_Alloc(Globals.iMalloc, pidl->mkid.cb+sizeof(USHORT));
855 memcpy(next_pidl, pidl, pidl->mkid.cb);
856 ((LPITEMIDLIST)((LPBYTE)next_pidl+pidl->mkid.cb))->mkid.cb = 0;
857
858 hr = IShellFolder_BindToObject(folder, next_pidl, 0, &IID_IShellFolder, (void**)&child);
859 if (FAILED(hr))
860 break;
861
862 read_directory(entry, NULL, sortOrder, hwnd);
863
864 if (entry->down)
865 entry->expanded = TRUE;
866
867 next = find_entry_shell(entry, next_pidl);
868 if (!next)
869 break;
870
871 folder = child;
872 entry = next;
873
874 /* go to next element */
875 pidl = (LPITEMIDLIST) ((LPBYTE)pidl+pidl->mkid.cb);
876 }
877
878 SetCursor(old_cursor);
879
880 return entry;
881 }
882
883
884 static void fill_w32fdata_shell(IShellFolder* folder, LPCITEMIDLIST pidl, SFGAOF attribs, WIN32_FIND_DATAW* w32fdata)
885 {
886 if (!(attribs & SFGAO_FILESYSTEM) ||
887 FAILED(SHGetDataFromIDListW(folder, pidl, SHGDFIL_FINDDATA, w32fdata, sizeof(WIN32_FIND_DATAW)))) {
888 WIN32_FILE_ATTRIBUTE_DATA fad;
889 IDataObject* pDataObj;
890
891 STGMEDIUM medium = {0, {0}, 0};
892 FORMATETC fmt = {Globals.cfStrFName, 0, DVASPECT_CONTENT, -1, TYMED_HGLOBAL};
893
894 HRESULT hr = IShellFolder_GetUIObjectOf(folder, 0, 1, &pidl, &IID_IDataObject, 0, (LPVOID*)&pDataObj);
895
896 if (SUCCEEDED(hr)) {
897 hr = IDataObject_GetData(pDataObj, &fmt, &medium);
898
899 IDataObject_Release(pDataObj);
900
901 if (SUCCEEDED(hr)) {
902 LPCWSTR path = GlobalLock(medium.UNION_MEMBER(hGlobal));
903 UINT sem_org = SetErrorMode(SEM_FAILCRITICALERRORS);
904
905 if (GetFileAttributesExW(path, GetFileExInfoStandard, &fad)) {
906 w32fdata->dwFileAttributes = fad.dwFileAttributes;
907 w32fdata->ftCreationTime = fad.ftCreationTime;
908 w32fdata->ftLastAccessTime = fad.ftLastAccessTime;
909 w32fdata->ftLastWriteTime = fad.ftLastWriteTime;
910
911 if (!(fad.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)) {
912 w32fdata->nFileSizeLow = fad.nFileSizeLow;
913 w32fdata->nFileSizeHigh = fad.nFileSizeHigh;
914 }
915 }
916
917 SetErrorMode(sem_org);
918
919 GlobalUnlock(medium.UNION_MEMBER(hGlobal));
920 GlobalFree(medium.UNION_MEMBER(hGlobal));
921 }
922 }
923 }
924
925 if (attribs & (SFGAO_FOLDER|SFGAO_HASSUBFOLDER))
926 w32fdata->dwFileAttributes |= FILE_ATTRIBUTE_DIRECTORY;
927
928 if (attribs & SFGAO_READONLY)
929 w32fdata->dwFileAttributes |= FILE_ATTRIBUTE_READONLY;
930
931 if (attribs & SFGAO_COMPRESSED)
932 w32fdata->dwFileAttributes |= FILE_ATTRIBUTE_COMPRESSED;
933 }
934
935
936 static void read_directory_shell(Entry* dir, HWND hwnd)
937 {
938 IShellFolder* folder = dir->folder;
939 int level = dir->level + 1;
940 HRESULT hr;
941
942 IShellFolder* child;
943 IEnumIDList* idlist;
944
945 Entry* first_entry = NULL;
946 Entry* last = NULL;
947 Entry* entry;
948
949 if (!folder)
950 return;
951
952 hr = IShellFolder_EnumObjects(folder, hwnd, SHCONTF_FOLDERS|SHCONTF_NONFOLDERS|SHCONTF_INCLUDEHIDDEN|SHCONTF_SHAREABLE|SHCONTF_STORAGE, &idlist);
953
954 if (SUCCEEDED(hr)) {
955 for(;;) {
956 #define FETCH_ITEM_COUNT 32
957 LPITEMIDLIST pidls[FETCH_ITEM_COUNT];
958 SFGAOF attribs;
959 ULONG cnt = 0;
960 ULONG n;
961
962 memset(pidls, 0, sizeof(pidls));
963
964 hr = IEnumIDList_Next(idlist, FETCH_ITEM_COUNT, pidls, &cnt);
965 if (FAILED(hr))
966 break;
967
968 if (hr == S_FALSE)
969 break;
970
971 for(n=0; n<cnt; ++n) {
972 entry = alloc_entry();
973
974 if (!first_entry)
975 first_entry = entry;
976
977 if (last)
978 last->next = entry;
979
980 memset(&entry->data, 0, sizeof(WIN32_FIND_DATAW));
981 entry->bhfi_valid = FALSE;
982
983 attribs = ~SFGAO_FILESYSTEM; /*SFGAO_HASSUBFOLDER|SFGAO_FOLDER; SFGAO_FILESYSTEM sorgt dafür, daß "My Documents" anstatt von "Martin's Documents" angezeigt wird */
984
985 hr = IShellFolder_GetAttributesOf(folder, 1, (LPCITEMIDLIST*)&pidls[n], &attribs);
986
987 if (SUCCEEDED(hr)) {
988 if (attribs != (SFGAOF)~SFGAO_FILESYSTEM) {
989 fill_w32fdata_shell(folder, pidls[n], attribs, &entry->data);
990
991 entry->bhfi_valid = TRUE;
992 } else
993 attribs = 0;
994 } else
995 attribs = 0;
996
997 entry->pidl = pidls[n];
998
999 if (entry->data.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) {
1000 hr = IShellFolder_BindToObject(folder, pidls[n], 0, &IID_IShellFolder, (void**)&child);
1001
1002 if (SUCCEEDED(hr))
1003 entry->folder = child;
1004 else
1005 entry->folder = NULL;
1006 }
1007 else
1008 entry->folder = NULL;
1009
1010 if (!entry->data.cFileName[0])
1011 /*hr = */name_from_pidl(folder, pidls[n], entry->data.cFileName, MAX_PATH, /*SHGDN_INFOLDER*/0x2000/*0x2000=SHGDN_INCLUDE_NONFILESYS*/);
1012
1013 /* get display icons for files and virtual objects */
1014 if (!(entry->data.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) ||
1015 !(attribs & SFGAO_FILESYSTEM)) {
1016 entry->hicon = extract_icon(folder, pidls[n]);
1017
1018 if (!entry->hicon)
1019 entry->hicon = (HICON)-1; /* don't try again later */
1020 }
1021
1022 entry->down = NULL;
1023 entry->up = dir;
1024 entry->expanded = FALSE;
1025 entry->scanned = FALSE;
1026 entry->level = level;
1027
1028 #ifndef _NO_EXTENSIONS
1029 entry->etype = ET_SHELL;
1030 entry->bhfi_valid = FALSE;
1031 #endif
1032
1033 last = entry;
1034 }
1035 }
1036
1037 IEnumIDList_Release(idlist);
1038 }
1039
1040 if (last)
1041 last->next = NULL;
1042
1043 dir->down = first_entry;
1044 dir->scanned = TRUE;
1045 }
1046
1047 #endif /* _SHELL_FOLDERS */
1048
1049
1050 /* sort order for different directory/file types */
1051 enum TYPE_ORDER {
1052 TO_DIR = 0,
1053 TO_DOT = 1,
1054 TO_DOTDOT = 2,
1055 TO_OTHER_DIR = 3,
1056 TO_FILE = 4
1057 };
1058
1059 /* distinguish between ".", ".." and any other directory names */
1060 static int TypeOrderFromDirname(LPCWSTR name)
1061 {
1062 if (name[0] == '.') {
1063 if (name[1] == '\0')
1064 return TO_DOT; /* "." */
1065
1066 if (name[1]=='.' && name[2]=='\0')
1067 return TO_DOTDOT; /* ".." */
1068 }
1069
1070 return TO_OTHER_DIR; /* anything else */
1071 }
1072
1073 /* directories first... */
1074 static int compareType(const WIN32_FIND_DATAW* fd1, const WIN32_FIND_DATAW* fd2)
1075 {
1076 int order1 = fd1->dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY? TO_DIR: TO_FILE;
1077 int order2 = fd2->dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY? TO_DIR: TO_FILE;
1078
1079 /* Handle "." and ".." as special case and move them at the very first beginning. */
1080 if (order1==TO_DIR && order2==TO_DIR) {
1081 order1 = TypeOrderFromDirname(fd1->cFileName);
1082 order2 = TypeOrderFromDirname(fd2->cFileName);
1083 }
1084
1085 return order2==order1? 0: order1<order2? -1: 1;
1086 }
1087
1088
1089 static int compareName(const void* arg1, const void* arg2)
1090 {
1091 const WIN32_FIND_DATAW* fd1 = &(*(const Entry* const*)arg1)->data;
1092 const WIN32_FIND_DATAW* fd2 = &(*(const Entry* const*)arg2)->data;
1093
1094 int cmp = compareType(fd1, fd2);
1095 if (cmp)
1096 return cmp;
1097
1098 return lstrcmpiW(fd1->cFileName, fd2->cFileName);
1099 }
1100
1101 static int compareExt(const void* arg1, const void* arg2)
1102 {
1103 const WIN32_FIND_DATAW* fd1 = &(*(const Entry* const*)arg1)->data;
1104 const WIN32_FIND_DATAW* fd2 = &(*(const Entry* const*)arg2)->data;
1105 const WCHAR *name1, *name2, *ext1, *ext2;
1106
1107 int cmp = compareType(fd1, fd2);
1108 if (cmp)
1109 return cmp;
1110
1111 name1 = fd1->cFileName;
1112 name2 = fd2->cFileName;
1113
1114 ext1 = strrchrW(name1, '.');
1115 ext2 = strrchrW(name2, '.');
1116
1117 if (ext1)
1118 ext1++;
1119 else
1120 ext1 = sEmpty;
1121
1122 if (ext2)
1123 ext2++;
1124 else
1125 ext2 = sEmpty;
1126
1127 cmp = lstrcmpiW(ext1, ext2);
1128 if (cmp)
1129 return cmp;
1130
1131 return lstrcmpiW(name1, name2);
1132 }
1133
1134 static int compareSize(const void* arg1, const void* arg2)
1135 {
1136 const WIN32_FIND_DATAW* fd1 = &(*(const Entry* const*)arg1)->data;
1137 const WIN32_FIND_DATAW* fd2 = &(*(const Entry* const*)arg2)->data;
1138
1139 int cmp = compareType(fd1, fd2);
1140 if (cmp)
1141 return cmp;
1142
1143 cmp = fd2->nFileSizeHigh - fd1->nFileSizeHigh;
1144
1145 if (cmp < 0)
1146 return -1;
1147 else if (cmp > 0)
1148 return 1;
1149
1150 cmp = fd2->nFileSizeLow - fd1->nFileSizeLow;
1151
1152 return cmp<0? -1: cmp>0? 1: 0;
1153 }
1154
1155 static int compareDate(const void* arg1, const void* arg2)
1156 {
1157 const WIN32_FIND_DATAW* fd1 = &(*(const Entry* const*)arg1)->data;
1158 const WIN32_FIND_DATAW* fd2 = &(*(const Entry* const*)arg2)->data;
1159
1160 int cmp = compareType(fd1, fd2);
1161 if (cmp)
1162 return cmp;
1163
1164 return CompareFileTime(&fd2->ftLastWriteTime, &fd1->ftLastWriteTime);
1165 }
1166
1167
1168 static int (*sortFunctions[])(const void* arg1, const void* arg2) = {
1169 compareName, /* SORT_NAME */
1170 compareExt, /* SORT_EXT */
1171 compareSize, /* SORT_SIZE */
1172 compareDate /* SORT_DATE */
1173 };
1174
1175
1176 static void SortDirectory(Entry* dir, SORT_ORDER sortOrder)
1177 {
1178 Entry* entry = dir->down;
1179 Entry** array, **p;
1180 int len;
1181
1182 len = 0;
1183 for(entry=dir->down; entry; entry=entry->next)
1184 len++;
1185
1186 if (len) {
1187 array = HeapAlloc(GetProcessHeap(), 0, len*sizeof(Entry*));
1188
1189 p = array;
1190 for(entry=dir->down; entry; entry=entry->next)
1191 *p++ = entry;
1192
1193 /* call qsort with the appropriate compare function */
1194 qsort(array, len, sizeof(array[0]), sortFunctions[sortOrder]);
1195
1196 dir->down = array[0];
1197
1198 for(p=array; --len; p++)
1199 p[0]->next = p[1];
1200
1201 (*p)->next = 0;
1202
1203 HeapFree(GetProcessHeap(), 0, array);
1204 }
1205 }
1206
1207
1208 static void read_directory(Entry* dir, LPCWSTR path, SORT_ORDER sortOrder, HWND hwnd)
1209 {
1210 WCHAR buffer[MAX_PATH];
1211 Entry* entry;
1212 LPCWSTR s;
1213 PWSTR d;
1214
1215 #ifdef _SHELL_FOLDERS
1216 if (dir->etype == ET_SHELL)
1217 {
1218 read_directory_shell(dir, hwnd);
1219
1220 if (Globals.prescan_node) {
1221 s = path;
1222 d = buffer;
1223
1224 while(*s)
1225 *d++ = *s++;
1226
1227 *d++ = '\\';
1228
1229 for(entry=dir->down; entry; entry=entry->next)
1230 if (entry->data.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) {
1231 read_directory_shell(entry, hwnd);
1232 SortDirectory(entry, sortOrder);
1233 }
1234 }
1235 }
1236 else
1237 #endif
1238 #if !defined(_NO_EXTENSIONS) && defined(__WINE__)
1239 if (dir->etype == ET_UNIX)
1240 {
1241 read_directory_unix(dir, path);
1242
1243 if (Globals.prescan_node) {
1244 s = path;
1245 d = buffer;
1246
1247 while(*s)
1248 *d++ = *s++;
1249
1250 *d++ = '/';
1251
1252 for(entry=dir->down; entry; entry=entry->next)
1253 if (entry->data.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) {
1254 lstrcpyW(d, entry->data.cFileName);
1255 read_directory_unix(entry, buffer);
1256 SortDirectory(entry, sortOrder);
1257 }
1258 }
1259 }
1260 else
1261 #endif
1262 {
1263 read_directory_win(dir, path);
1264
1265 if (Globals.prescan_node) {
1266 s = path;
1267 d = buffer;
1268
1269 while(*s)
1270 *d++ = *s++;
1271
1272 *d++ = '\\';
1273
1274 for(entry=dir->down; entry; entry=entry->next)
1275 if (entry->data.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) {
1276 lstrcpyW(d, entry->data.cFileName);
1277 read_directory_win(entry, buffer);
1278 SortDirectory(entry, sortOrder);
1279 }
1280 }
1281 }
1282
1283 SortDirectory(dir, sortOrder);
1284 }
1285
1286
1287 static Entry* read_tree(Root* root, LPCWSTR path, LPITEMIDLIST pidl, LPWSTR drv, SORT_ORDER sortOrder, HWND hwnd)
1288 {
1289 #if !defined(_NO_EXTENSIONS) && defined(__WINE__)
1290 static const WCHAR sSlash[] = {'/', '\0'};
1291 #endif
1292 static const WCHAR sBackslash[] = {'\\', '\0'};
1293
1294 #ifdef _SHELL_FOLDERS
1295 if (pidl)
1296 {
1297 /* read shell namespace tree */
1298 root->drive_type = DRIVE_UNKNOWN;
1299 drv[0] = '\\';
1300 drv[1] = '\0';
1301 load_string(root->volname, sizeof(root->volname)/sizeof(root->volname[0]), IDS_DESKTOP);
1302 root->fs_flags = 0;
1303 load_string(root->fs, sizeof(root->fs)/sizeof(root->fs[0]), IDS_SHELL);
1304
1305 return read_tree_shell(root, pidl, sortOrder, hwnd);
1306 }
1307 else
1308 #endif
1309 #if !defined(_NO_EXTENSIONS) && defined(__WINE__)
1310 if (*path == '/')
1311 {
1312 /* read unix file system tree */
1313 root->drive_type = GetDriveTypeW(path);
1314
1315 lstrcatW(drv, sSlash);
1316 load_string(root->volname, sizeof(root->volname)/sizeof(root->volname[0]), IDS_ROOT_FS);
1317 root->fs_flags = 0;
1318 load_string(root->fs, sizeof(root->fs)/sizeof(root->fs[0]), IDS_UNIXFS);
1319
1320 lstrcpyW(root->path, sSlash);
1321
1322 return read_tree_unix(root, path, sortOrder, hwnd);
1323 }
1324 #endif
1325
1326 /* read WIN32 file system tree */
1327 root->drive_type = GetDriveTypeW(path);
1328
1329 lstrcatW(drv, sBackslash);
1330 GetVolumeInformationW(drv, root->volname, _MAX_FNAME, 0, 0, &root->fs_flags, root->fs, _MAX_DIR);
1331
1332 lstrcpyW(root->path, drv);
1333
1334 return read_tree_win(root, path, sortOrder, hwnd);
1335 }
1336
1337
1338 /* flags to filter different file types */
1339 enum TYPE_FILTER {
1340 TF_DIRECTORIES = 0x01,
1341 TF_PROGRAMS = 0x02,
1342 TF_DOCUMENTS = 0x04,
1343 TF_OTHERS = 0x08,
1344 TF_HIDDEN = 0x10,
1345 TF_ALL = 0x1F
1346 };
1347
1348
1349 static ChildWnd* alloc_child_window(LPCWSTR path, LPITEMIDLIST pidl, HWND hwnd)
1350 {
1351 WCHAR drv[_MAX_DRIVE+1], dir[_MAX_DIR], name[_MAX_FNAME], ext[_MAX_EXT];
1352 WCHAR dir_path[MAX_PATH];
1353 WCHAR b1[BUFFER_LEN];
1354 static const WCHAR sAsterics[] = {'*', '\0'};
1355
1356 ChildWnd* child = HeapAlloc(GetProcessHeap(), 0, sizeof(ChildWnd));
1357 Root* root = &child->root;
1358 Entry* entry;
1359
1360 memset(child, 0, sizeof(ChildWnd));
1361
1362 child->left.treePane = TRUE;
1363 child->left.visible_cols = 0;
1364
1365 child->right.treePane = FALSE;
1366 #ifndef _NO_EXTENSIONS
1367 child->right.visible_cols = COL_SIZE|COL_DATE|COL_TIME|COL_ATTRIBUTES|COL_INDEX|COL_LINKS;
1368 #else
1369 child->right.visible_cols = COL_SIZE|COL_DATE|COL_TIME|COL_ATTRIBUTES;
1370 #endif
1371
1372 child->pos.length = sizeof(WINDOWPLACEMENT);
1373 child->pos.flags = 0;
1374 child->pos.showCmd = SW_SHOWNORMAL;
1375 child->pos.rcNormalPosition.left = CW_USEDEFAULT;
1376 child->pos.rcNormalPosition.top = CW_USEDEFAULT;
1377 child->pos.rcNormalPosition.right = CW_USEDEFAULT;
1378 child->pos.rcNormalPosition.bottom = CW_USEDEFAULT;
1379
1380 child->focus_pane = 0;
1381 child->split_pos = DEFAULT_SPLIT_POS;
1382 child->sortOrder = SORT_NAME;
1383 child->header_wdths_ok = FALSE;
1384
1385 if (path)
1386 {
1387 lstrcpyW(child->path, path);
1388
1389 _wsplitpath(path, drv, dir, name, ext);
1390 }
1391
1392 lstrcpyW(child->filter_pattern, sAsterics);
1393 child->filter_flags = TF_ALL;
1394
1395 root->entry.level = 0;
1396
1397 lstrcpyW(dir_path, drv);
1398 lstrcatW(dir_path, dir);
1399 entry = read_tree(root, dir_path, pidl, drv, child->sortOrder, hwnd);
1400
1401 #ifdef _SHELL_FOLDERS
1402 if (root->entry.etype == ET_SHELL)
1403 load_string(root->entry.data.cFileName, sizeof(root->entry.data.cFileName)/sizeof(root->entry.data.cFileName[0]), IDS_DESKTOP);
1404 else
1405 #endif
1406 wsprintfW(root->entry.data.cFileName, RS(b1,IDS_TITLEFMT), drv, root->fs);
1407
1408 root->entry.data.dwFileAttributes = FILE_ATTRIBUTE_DIRECTORY;
1409
1410 child->left.root = &root->entry;
1411 child->right.root = NULL;
1412
1413 set_curdir(child, entry, 0, hwnd);
1414
1415 return child;
1416 }
1417
1418
1419 /* free all memory associated with a child window */
1420 static void free_child_window(ChildWnd* child)
1421 {
1422 free_entries(&child->root.entry);
1423 HeapFree(GetProcessHeap(), 0, child);
1424 }
1425
1426
1427 /* get full path of specified directory entry */
1428 static void get_path(Entry* dir, PWSTR path)
1429 {
1430 Entry* entry;
1431 int len = 0;
1432 int level = 0;
1433
1434 #ifdef _SHELL_FOLDERS
1435 if (dir->etype == ET_SHELL)
1436 {
1437 SFGAOF attribs;
1438 HRESULT hr = S_OK;
1439
1440 path[0] = '\0';
1441
1442 attribs = 0;
1443
1444 if (dir->folder)
1445 hr = IShellFolder_GetAttributesOf(dir->folder, 1, (LPCITEMIDLIST*)&dir->pidl, &attribs);
1446
1447 if (SUCCEEDED(hr) && (attribs&SFGAO_FILESYSTEM)) {
1448 IShellFolder* parent = dir->up? dir->up->folder: Globals.iDesktop;
1449
1450 hr = path_from_pidlW(parent, dir->pidl, path, MAX_PATH);
1451 }
1452 }
1453 else
1454 #endif
1455 {
1456 for(entry=dir; entry; level++) {
1457 LPCWSTR name;
1458 int l;
1459
1460 {
1461 LPCWSTR s;
1462 name = entry->data.cFileName;
1463 s = name;
1464
1465 for(l=0; *s && *s != '/' && *s != '\\'; s++)
1466 l++;
1467 }
1468
1469 if (entry->up) {
1470 if (l > 0) {
1471 memmove(path+l+1, path, len*sizeof(WCHAR));
1472 memcpy(path+1, name, l*sizeof(WCHAR));
1473 len += l+1;
1474
1475 #ifndef _NO_EXTENSIONS
1476 if (entry->etype == ET_UNIX)
1477 path[0] = '/';
1478 else
1479 #endif
1480 path[0] = '\\';
1481 }
1482
1483 entry = entry->up;
1484 } else {
1485 memmove(path+l, path, len*sizeof(WCHAR));
1486 memcpy(path, name, l*sizeof(WCHAR));
1487 len += l;
1488 break;
1489 }
1490 }
1491
1492 if (!level) {
1493 #ifndef _NO_EXTENSIONS
1494 if (entry->etype == ET_UNIX)
1495 path[len++] = '/';
1496 else
1497 #endif
1498 path[len++] = '\\';
1499 }
1500
1501 path[len] = '\0';
1502 }
1503 }
1504
1505 static windowOptions load_registry_settings(void)
1506 {
1507 DWORD size;
1508 DWORD type;
1509 HKEY hKey;
1510 windowOptions opts;
1511 LOGFONTW logfont;
1512
1513 RegOpenKeyExW( HKEY_CURRENT_USER, registry_key,
1514 0, KEY_QUERY_VALUE, &hKey );
1515
1516 size = sizeof(DWORD);
1517
1518 if( RegQueryValueExW( hKey, reg_start_x, NULL, &type,
1519 (LPBYTE) &opts.start_x, &size ) != ERROR_SUCCESS )
1520 opts.start_x = CW_USEDEFAULT;
1521
1522 if( RegQueryValueExW( hKey, reg_start_y, NULL, &type,
1523 (LPBYTE) &opts.start_y, &size ) != ERROR_SUCCESS )
1524 opts.start_y = CW_USEDEFAULT;
1525
1526 if( RegQueryValueExW( hKey, reg_width, NULL, &type,
1527 (LPBYTE) &opts.width, &size ) != ERROR_SUCCESS )
1528 opts.width = CW_USEDEFAULT;
1529
1530 if( RegQueryValueExW( hKey, reg_height, NULL, &type,
1531 (LPBYTE) &opts.height, &size ) != ERROR_SUCCESS )
1532 opts.height = CW_USEDEFAULT;
1533 size=sizeof(logfont);
1534 if( RegQueryValueExW( hKey, reg_logfont, NULL, &type,
1535 (LPBYTE) &logfont, &size ) != ERROR_SUCCESS )
1536 GetObjectW(GetStockObject(DEFAULT_GUI_FONT),sizeof(logfont),&logfont);
1537
1538 RegCloseKey( hKey );
1539
1540 Globals.hfont = CreateFontIndirectW(&logfont);
1541 return opts;
1542 }
1543
1544 static void save_registry_settings(void)
1545 {
1546 WINDOWINFO wi;
1547 HKEY hKey;
1548 INT width, height;
1549 LOGFONTW logfont;
1550
1551 wi.cbSize = sizeof( WINDOWINFO );
1552 GetWindowInfo(Globals.hMainWnd, &wi);
1553 width = wi.rcWindow.right - wi.rcWindow.left;
1554 height = wi.rcWindow.bottom - wi.rcWindow.top;
1555
1556 if ( RegOpenKeyExW( HKEY_CURRENT_USER, registry_key,
1557 0, KEY_SET_VALUE, &hKey ) != ERROR_SUCCESS )
1558 {
1559 /* Unable to save registry settings - try to create key */
1560 if ( RegCreateKeyExW( HKEY_CURRENT_USER, registry_key,
1561 0, NULL, REG_OPTION_NON_VOLATILE,
1562 KEY_SET_VALUE, NULL, &hKey, NULL ) != ERROR_SUCCESS )
1563 {
1564 /* FIXME: Cannot create key */
1565 return;
1566 }
1567 }
1568 /* Save all of the settings */
1569 RegSetValueExW( hKey, reg_start_x, 0, REG_DWORD,
1570 (LPBYTE) &wi.rcWindow.left, sizeof(DWORD) );
1571 RegSetValueExW( hKey, reg_start_y, 0, REG_DWORD,
1572 (LPBYTE) &wi.rcWindow.top, sizeof(DWORD) );
1573 RegSetValueExW( hKey, reg_width, 0, REG_DWORD,
1574 (LPBYTE) &width, sizeof(DWORD) );
1575 RegSetValueExW( hKey, reg_height, 0, REG_DWORD,
1576 (LPBYTE) &height, sizeof(DWORD) );
1577 GetObjectW(Globals.hfont, sizeof(logfont), &logfont);
1578 RegSetValueExW( hKey, reg_logfont, 0, REG_BINARY,
1579 (LPBYTE)&logfont, sizeof(LOGFONTW) );
1580
1581 /* TODO: Save more settings here (List vs. Detailed View, etc.) */
1582 RegCloseKey( hKey );
1583 }
1584
1585 static void resize_frame_rect(HWND hwnd, PRECT prect)
1586 {
1587 int new_top;
1588 RECT rt;
1589
1590 if (IsWindowVisible(Globals.htoolbar)) {
1591 SendMessageW(Globals.htoolbar, WM_SIZE, 0, 0);
1592 GetClientRect(Globals.htoolbar, &rt);
1593 prect->top = rt.bottom+3;
1594 prect->bottom -= rt.bottom+3;
1595 }
1596
1597 if (IsWindowVisible(Globals.hdrivebar)) {
1598 SendMessageW(Globals.hdrivebar, WM_SIZE, 0, 0);
1599 GetClientRect(Globals.hdrivebar, &rt);
1600 new_top = --prect->top + rt.bottom+3;
1601 MoveWindow(Globals.hdrivebar, 0, prect->top, rt.right, new_top, TRUE);
1602 prect->top = new_top;
1603 prect->bottom -= rt.bottom+2;
1604 }
1605
1606 if (IsWindowVisible(Globals.hstatusbar)) {
1607 int parts[] = {300, 500};
1608
1609 SendMessageW(Globals.hstatusbar, WM_SIZE, 0, 0);
1610 SendMessageW(Globals.hstatusbar, SB_SETPARTS, 2, (LPARAM)&parts);
1611 GetClientRect(Globals.hstatusbar, &rt);
1612 prect->bottom -= rt.bottom;
1613 }
1614
1615 MoveWindow(Globals.hmdiclient, prect->left-1,prect->top-1,prect->right+2,prect->bottom+1, TRUE);
1616 }
1617
1618 static void resize_frame(HWND hwnd, int cx, int cy)
1619 {
1620 RECT rect;
1621
1622 rect.left = 0;
1623 rect.top = 0;
1624 rect.right = cx;
1625 rect.bottom = cy;
1626
1627 resize_frame_rect(hwnd, &rect);
1628 }
1629
1630 static void resize_frame_client(HWND hwnd)
1631 {
1632 RECT rect;
1633
1634 GetClientRect(hwnd, &rect);
1635
1636 resize_frame_rect(hwnd, &rect);
1637 }
1638
1639
1640 static HHOOK hcbthook;
1641 static ChildWnd* newchild = NULL;
1642
1643 static LRESULT CALLBACK CBTProc(int code, WPARAM wparam, LPARAM lparam)
1644 {
1645 if (code==HCBT_CREATEWND && newchild) {
1646 ChildWnd* child = newchild;
1647 newchild = NULL;
1648
1649 child->hwnd = (HWND) wparam;
1650 SetWindowLongPtrW(child->hwnd, GWLP_USERDATA, (LPARAM)child);
1651 }
1652
1653 return CallNextHookEx(hcbthook, code, wparam, lparam);
1654 }
1655
1656 static HWND create_child_window(ChildWnd* child)
1657 {
1658 MDICREATESTRUCTW mcs;
1659 int idx;
1660
1661 mcs.szClass = sWINEFILETREE;
1662 mcs.szTitle = child->path;
1663 mcs.hOwner = Globals.hInstance;
1664 mcs.x = child->pos.rcNormalPosition.left;
1665 mcs.y = child->pos.rcNormalPosition.top;
1666 mcs.cx = child->pos.rcNormalPosition.right-child->pos.rcNormalPosition.left;
1667 mcs.cy = child->pos.rcNormalPosition.bottom-child->pos.rcNormalPosition.top;
1668 mcs.style = 0;
1669 mcs.lParam = 0;
1670
1671 hcbthook = SetWindowsHookExW(WH_CBT, CBTProc, 0, GetCurrentThreadId());
1672
1673 newchild = child;
1674 child->hwnd = (HWND)SendMessageW(Globals.hmdiclient, WM_MDICREATE, 0, (LPARAM)&mcs);
1675 if (!child->hwnd) {
1676 UnhookWindowsHookEx(hcbthook);
1677 return 0;
1678 }
1679
1680 UnhookWindowsHookEx(hcbthook);
1681
1682 SendMessageW(child->left.hwnd, LB_SETITEMHEIGHT, 1, max(Globals.spaceSize.cy,IMAGE_HEIGHT+3));
1683 SendMessageW(child->right.hwnd, LB_SETITEMHEIGHT, 1, max(Globals.spaceSize.cy,IMAGE_HEIGHT+3));
1684
1685 idx = SendMessageW(child->left.hwnd, LB_FINDSTRING, 0, (LPARAM)child->left.cur);
1686 SendMessageW(child->left.hwnd, LB_SETCURSEL, idx, 0);
1687
1688 return child->hwnd;
1689 }
1690
1691 #define RFF_NODEFAULT 0x02 /* No default item selected. */
1692
1693 static void WineFile_OnRun( HWND hwnd )
1694 {
1695 static const WCHAR shell32_dll[] = {'S','H','E','L','L','3','2','.','D','L','L',0};
1696 void (WINAPI *pRunFileDlgAW )(HWND, HICON, LPWSTR, LPWSTR, LPWSTR, DWORD);
1697 HMODULE hshell = GetModuleHandleW( shell32_dll );
1698
1699 pRunFileDlgAW = (void*)GetProcAddress(hshell, (LPCSTR)61);
1700 if (pRunFileDlgAW) pRunFileDlgAW( hwnd, 0, NULL, NULL, NULL, RFF_NODEFAULT);
1701 }
1702
1703 static INT_PTR CALLBACK DestinationDlgProc(HWND hwnd, UINT nmsg, WPARAM wparam, LPARAM lparam)
1704 {
1705 WCHAR b1[BUFFER_LEN], b2[BUFFER_LEN];
1706
1707 switch(nmsg) {
1708 case WM_INITDIALOG:
1709 SetWindowLongPtrW(hwnd, GWLP_USERDATA, lparam);
1710 SetWindowTextW(GetDlgItem(hwnd, 201), (LPCWSTR)lparam);
1711 return 1;
1712
1713 case WM_COMMAND: {
1714 int id = (int)wparam;
1715
1716 switch(id) {
1717 case IDOK: {
1718 LPWSTR dest = (LPWSTR)GetWindowLongPtrW(hwnd, GWLP_USERDATA);
1719 GetWindowTextW(GetDlgItem(hwnd, 201), dest, MAX_PATH);
1720 EndDialog(hwnd, id);
1721 break;}
1722
1723 case IDCANCEL:
1724 EndDialog(hwnd, id);
1725 break;
1726
1727 case 254:
1728 MessageBoxW(hwnd, RS(b1,IDS_NO_IMPL), RS(b2,IDS_WINEFILE), MB_OK);
1729 break;
1730 }
1731
1732 return 1;
1733 }
1734 }
1735
1736 return 0;
1737 }
1738
1739
1740 struct FilterDialog {
1741 WCHAR pattern[MAX_PATH];
1742 int flags;
1743 };
1744
1745 static INT_PTR CALLBACK FilterDialogDlgProc(HWND hwnd, UINT nmsg, WPARAM wparam, LPARAM lparam)
1746 {
1747 static struct FilterDialog* dlg;
1748
1749 switch(nmsg) {
1750 case WM_INITDIALOG:
1751 dlg = (struct FilterDialog*) lparam;
1752 SetWindowTextW(GetDlgItem(hwnd, IDC_VIEW_PATTERN), dlg->pattern);
1753 set_check(hwnd, IDC_VIEW_TYPE_DIRECTORIES, dlg->flags&TF_DIRECTORIES);
1754 set_check(hwnd, IDC_VIEW_TYPE_PROGRAMS, dlg->flags&TF_PROGRAMS);
1755 set_check(hwnd, IDC_VIEW_TYPE_DOCUMENTS, dlg->flags&TF_DOCUMENTS);
1756 set_check(hwnd, IDC_VIEW_TYPE_OTHERS, dlg->flags&TF_OTHERS);
1757 set_check(hwnd, IDC_VIEW_TYPE_HIDDEN, dlg->flags&TF_HIDDEN);
1758 return 1;
1759
1760 case WM_COMMAND: {
1761 int id = (int)wparam;
1762
1763 if (id == IDOK) {
1764 int flags = 0;
1765
1766 GetWindowTextW(GetDlgItem(hwnd, IDC_VIEW_PATTERN), dlg->pattern, MAX_PATH);
1767
1768 flags |= get_check(hwnd, IDC_VIEW_TYPE_DIRECTORIES) ? TF_DIRECTORIES : 0;
1769 flags |= get_check(hwnd, IDC_VIEW_TYPE_PROGRAMS) ? TF_PROGRAMS : 0;
1770 flags |= get_check(hwnd, IDC_VIEW_TYPE_DOCUMENTS) ? TF_DOCUMENTS : 0;
1771 flags |= get_check(hwnd, IDC_VIEW_TYPE_OTHERS) ? TF_OTHERS : 0;
1772 flags |= get_check(hwnd, IDC_VIEW_TYPE_HIDDEN) ? TF_HIDDEN : 0;
1773
1774 dlg->flags = flags;
1775
1776 EndDialog(hwnd, id);
1777 } else if (id == IDCANCEL)
1778 EndDialog(hwnd, id);
1779
1780 return 1;}
1781 }
1782
1783 return 0;
1784 }
1785
1786
1787 struct PropertiesDialog {
1788 WCHAR path[MAX_PATH];
1789 Entry entry;
1790 void* pVersionData;
1791 };
1792
1793 /* Structure used to store enumerated languages and code pages. */
1794 struct LANGANDCODEPAGE {
1795 WORD wLanguage;
1796 WORD wCodePage;
1797 } *lpTranslate;
1798
1799 static LPCSTR InfoStrings[] = {
1800 "Comments",
1801 "CompanyName",
1802 "FileDescription",
1803 "FileVersion",
1804 "InternalName",
1805 "LegalCopyright",
1806 "LegalTrademarks",
1807 "OriginalFilename",
1808 "PrivateBuild",
1809 "ProductName",
1810 "ProductVersion",
1811 "SpecialBuild",
1812 NULL
1813 };
1814
1815 static void PropDlg_DisplayValue(HWND hlbox, HWND hedit)
1816 {
1817 int idx = SendMessageW(hlbox, LB_GETCURSEL, 0, 0);
1818
1819 if (idx != LB_ERR) {
1820 LPCWSTR pValue = (LPCWSTR)SendMessageW(hlbox, LB_GETITEMDATA, idx, 0);
1821
1822 if (pValue)
1823 SetWindowTextW(hedit, pValue);
1824 }
1825 }
1826
1827 static void CheckForFileInfo(struct PropertiesDialog* dlg, HWND hwnd, LPCWSTR strFilename)
1828 {
1829 static WCHAR sBackSlash[] = {'\\','\0'};
1830 static WCHAR sTranslation[] = {'\\','V','a','r','F','i','l','e','I','n','f','o','\\','T','r','a','n','s','l','a','t','i','o','n','\0'};
1831 static WCHAR sStringFileInfo[] = {'\\','S','t','r','i','n','g','F','i','l','e','I','n','f','o','\\',
1832 '%','0','4','x','%','0','4','x','\\','%','s','\0'};
1833 DWORD dwVersionDataLen = GetFileVersionInfoSizeW(strFilename, NULL);
1834
1835 if (dwVersionDataLen) {
1836 dlg->pVersionData = HeapAlloc(GetProcessHeap(), 0, dwVersionDataLen);
1837
1838 if (GetFileVersionInfoW(strFilename, 0, dwVersionDataLen, dlg->pVersionData)) {
1839 LPVOID pVal;
1840 UINT nValLen;
1841
1842 if (VerQueryValueW(dlg->pVersionData, sBackSlash, &pVal, &nValLen)) {
1843 if (nValLen == sizeof(VS_FIXEDFILEINFO)) {
1844 VS_FIXEDFILEINFO* pFixedFileInfo = (VS_FIXEDFILEINFO*)pVal;
1845 char buffer[BUFFER_LEN];
1846
1847 sprintf(buffer, "%d.%d.%d.%d",
1848 HIWORD(pFixedFileInfo->dwFileVersionMS), LOWORD(pFixedFileInfo->dwFileVersionMS),
1849 HIWORD(pFixedFileInfo->dwFileVersionLS), LOWORD(pFixedFileInfo->dwFileVersionLS));
1850
1851 SetDlgItemTextA(hwnd, IDC_STATIC_PROP_VERSION, buffer);
1852 }
1853 }
1854
1855 /* Read the list of languages and code pages. */
1856 if (VerQueryValueW(dlg->pVersionData, sTranslation, &pVal, &nValLen)) {
1857 struct LANGANDCODEPAGE* pTranslate = (struct LANGANDCODEPAGE*)pVal;
1858 struct LANGANDCODEPAGE* pEnd = (struct LANGANDCODEPAGE*)((LPBYTE)pVal+nValLen);
1859
1860 HWND hlbox = GetDlgItem(hwnd, IDC_LIST_PROP_VERSION_TYPES);
1861
1862 /* Read the file description for each language and code page. */
1863 for(; pTranslate<pEnd; ++pTranslate) {
1864 LPCSTR* p;
1865
1866 for(p=InfoStrings; *p; ++p) {
1867 WCHAR subblock[200];
1868 WCHAR infoStr[100];
1869 LPCWSTR pTxt;
1870 UINT nValLen;
1871
1872 LPCSTR pInfoString = *p;
1873 MultiByteToWideChar(CP_ACP, 0, pInfoString, -1, infoStr, 100);
1874 wsprintfW(subblock, sStringFileInfo, pTranslate->wLanguage, pTranslate->wCodePage, infoStr);
1875
1876 /* Retrieve file description for language and code page */
1877 if (VerQueryValueW(dlg->pVersionData, subblock, (PVOID)&pTxt, &nValLen)) {
1878 int idx = SendMessageW(hlbox, LB_ADDSTRING, 0L, (LPARAM)infoStr);
1879 SendMessageW(hlbox, LB_SETITEMDATA, idx, (LPARAM)pTxt);
1880 }
1881 }
1882 }
1883
1884 SendMessageW(hlbox, LB_SETCURSEL, 0, 0);
1885
1886 PropDlg_DisplayValue(hlbox, GetDlgItem(hwnd,IDC_LIST_PROP_VERSION_VALUES));
1887 }
1888 }
1889 }
1890 }
1891
1892 static INT_PTR CALLBACK PropertiesDialogDlgProc(HWND hwnd, UINT nmsg, WPARAM wparam, LPARAM lparam)
1893 {
1894 static struct PropertiesDialog* dlg;
1895
1896 switch(nmsg) {
1897 case WM_INITDIALOG: {
1898 static const WCHAR sByteFmt[] = {'%','s',' ','B','y','t','e','s','\0'};
1899 WCHAR b1[BUFFER_LEN], b2[BUFFER_LEN];
1900 LPWIN32_FIND_DATAW pWFD;
1901
1902 dlg = (struct PropertiesDialog*) lparam;
1903 pWFD = (LPWIN32_FIND_DATAW)&dlg->entry.data;
1904
1905 GetWindowTextW(hwnd, b1, MAX_PATH);
1906 wsprintfW(b2, b1, pWFD->cFileName);
1907 SetWindowTextW(hwnd, b2);
1908
1909 format_date(&pWFD->ftLastWriteTime, b1, COL_DATE|COL_TIME);
1910 SetWindowTextW(GetDlgItem(hwnd, IDC_STATIC_PROP_LASTCHANGE), b1);
1911
1912 format_longlong( b1, ((ULONGLONG)pWFD->nFileSizeHigh << 32) | pWFD->nFileSizeLow );
1913 wsprintfW(b2, sByteFmt, b1);
1914 SetWindowTextW(GetDlgItem(hwnd, IDC_STATIC_PROP_SIZE), b2);
1915
1916 SetWindowTextW(GetDlgItem(hwnd, IDC_STATIC_PROP_FILENAME), pWFD->cFileName);
1917 SetWindowTextW(GetDlgItem(hwnd, IDC_STATIC_PROP_PATH), dlg->path);
1918
1919 set_check(hwnd, IDC_CHECK_READONLY, pWFD->dwFileAttributes&FILE_ATTRIBUTE_READONLY);
1920 set_check(hwnd, IDC_CHECK_ARCHIVE, pWFD->dwFileAttributes&FILE_ATTRIBUTE_ARCHIVE);
1921 set_check(hwnd, IDC_CHECK_COMPRESSED, pWFD->dwFileAttributes&FILE_ATTRIBUTE_COMPRESSED);
1922 set_check(hwnd, IDC_CHECK_HIDDEN, pWFD->dwFileAttributes&FILE_ATTRIBUTE_HIDDEN);
1923 set_check(hwnd, IDC_CHECK_SYSTEM, pWFD->dwFileAttributes&FILE_ATTRIBUTE_SYSTEM);
1924
1925 CheckForFileInfo(dlg, hwnd, dlg->path);
1926 return 1;}
1927
1928 case WM_COMMAND: {
1929 int id = (int)wparam;
1930
1931 switch(HIWORD(wparam)) {
1932 case LBN_SELCHANGE: {
1933 HWND hlbox = GetDlgItem(hwnd, IDC_LIST_PROP_VERSION_TYPES);
1934 PropDlg_DisplayValue(hlbox, GetDlgItem(hwnd,IDC_LIST_PROP_VERSION_VALUES));
1935 break;
1936 }
1937
1938 case BN_CLICKED:
1939 if (id==IDOK || id==IDCANCEL)
1940 EndDialog(hwnd, id);
1941 }
1942
1943 return 1;}
1944
1945 case WM_NCDESTROY:
1946 HeapFree(GetProcessHeap(), 0, dlg->pVersionData);
1947 dlg->pVersionData = NULL;
1948 break;
1949 }
1950
1951 return 0;
1952 }
1953
1954 static void show_properties_dlg(Entry* entry, HWND hwnd)
1955 {
1956 struct PropertiesDialog dlg;
1957
1958 memset(&dlg, 0, sizeof(struct PropertiesDialog));
1959 get_path(entry, dlg.path);
1960 memcpy(&dlg.entry, entry, sizeof(Entry));
1961
1962 DialogBoxParamW(Globals.hInstance, MAKEINTRESOURCEW(IDD_DIALOG_PROPERTIES), hwnd, PropertiesDialogDlgProc, (LPARAM)&dlg);
1963 }
1964
1965
1966 #ifndef _NO_EXTENSIONS
1967
1968 static struct FullScreenParameters {
1969 BOOL mode;
1970 RECT orgPos;
1971 BOOL wasZoomed;
1972 } g_fullscreen = {
1973 FALSE, /* mode */
1974 {0, 0, 0, 0},
1975 FALSE
1976 };
1977
1978 static void frame_get_clientspace(HWND hwnd, PRECT prect)
1979 {
1980 RECT rt;
1981
1982 if (!IsIconic(hwnd))
1983 GetClientRect(hwnd, prect);
1984 else {
1985 WINDOWPLACEMENT wp;
1986
1987 GetWindowPlacement(hwnd, &wp);
1988
1989 prect->left = prect->top = 0;
1990 prect->right = wp.rcNormalPosition.right-wp.rcNormalPosition.left-
1991 2*(GetSystemMetrics(SM_CXSIZEFRAME)+GetSystemMetrics(SM_CXEDGE));
1992 prect->bottom = wp.rcNormalPosition.bottom-wp.rcNormalPosition.top-
1993 2*(GetSystemMetrics(SM_CYSIZEFRAME)+GetSystemMetrics(SM_CYEDGE))-
1994 GetSystemMetrics(SM_CYCAPTION)-GetSystemMetrics(SM_CYMENUSIZE);
1995 }
1996
1997 if (IsWindowVisible(Globals.htoolbar)) {
1998 GetClientRect(Globals.htoolbar, &rt);
1999 prect->top += rt.bottom+2;
2000 }
2001
2002 if (IsWindowVisible(Globals.hdrivebar)) {
2003 GetClientRect(Globals.hdrivebar, &rt);
2004 prect->top += rt.bottom+2;
2005 }
2006
2007 if (IsWindowVisible(Globals.hstatusbar)) {
2008 GetClientRect(Globals.hstatusbar, &rt);
2009 prect->bottom -= rt.bottom;
2010 }
2011 }
2012
2013 static BOOL toggle_fullscreen(HWND hwnd)
2014 {
2015 RECT rt;
2016
2017 if ((g_fullscreen.mode=!g_fullscreen.mode)) {
2018 GetWindowRect(hwnd, &g_fullscreen.orgPos);
2019 g_fullscreen.wasZoomed = IsZoomed(hwnd);
2020
2021 Frame_CalcFrameClient(hwnd, &rt);
2022 MapWindowPoints( hwnd, 0, (POINT *)&rt, 2 );
2023
2024 rt.left = g_fullscreen.orgPos.left-rt.left;
2025 rt.top = g_fullscreen.orgPos.top-rt.top;
2026 rt.right = GetSystemMetrics(SM_CXSCREEN)+g_fullscreen.orgPos.right-rt.right;
2027 rt.bottom = GetSystemMetrics(SM_CYSCREEN)+g_fullscreen.orgPos.bottom-rt.bottom;
2028
2029 MoveWindow(hwnd, rt.left, rt.top, rt.right-rt.left, rt.bottom-rt.top, TRUE);
2030 } else {
2031 MoveWindow(hwnd, g_fullscreen.orgPos.left, g_fullscreen.orgPos.top,
2032 g_fullscreen.orgPos.right-g_fullscreen.orgPos.left,
2033 g_fullscreen.orgPos.bottom-g_fullscreen.orgPos.top, TRUE);
2034
2035 if (g_fullscreen.wasZoomed)
2036 ShowWindow(hwnd, WS_MAXIMIZE);
2037 }
2038
2039 return g_fullscreen.mode;
2040 }
2041
2042 static void fullscreen_move(HWND hwnd)
2043 {
2044 RECT rt, pos;
2045 GetWindowRect(hwnd, &pos);
2046
2047 Frame_CalcFrameClient(hwnd, &rt);
2048 MapWindowPoints( hwnd, 0, (POINT *)&rt, 2 );
2049
2050 rt.left = pos.left-rt.left;
2051 rt.top = pos.top-rt.top;
2052 rt.right = GetSystemMetrics(SM_CXSCREEN)+pos.right-rt.right;
2053 rt.bottom = GetSystemMetrics(SM_CYSCREEN)+pos.bottom-rt.bottom;
2054
2055 MoveWindow(hwnd, rt.left, rt.top, rt.right-rt.left, rt.bottom-rt.top, TRUE);
2056 }
2057
2058 #endif
2059
2060
2061 static void toggle_child(HWND hwnd, UINT cmd, HWND hchild)
2062 {
2063 BOOL vis = IsWindowVisible(hchild);
2064
2065 CheckMenuItem(Globals.hMenuOptions, cmd, vis?MF_BYCOMMAND:MF_BYCOMMAND|MF_CHECKED);
2066
2067 ShowWindow(hchild, vis?SW_HIDE:SW_SHOW);
2068
2069 #ifndef _NO_EXTENSIONS
2070 if (g_fullscreen.mode)
2071 fullscreen_move(hwnd);
2072 #endif
2073
2074 resize_frame_client(hwnd);
2075 }
2076
2077 static BOOL activate_drive_window(LPCWSTR path)
2078 {
2079 WCHAR drv1[_MAX_DRIVE], drv2[_MAX_DRIVE];
2080 HWND child_wnd;
2081
2082 _wsplitpath(path, drv1, 0, 0, 0);
2083
2084 /* search for a already open window for the same drive */
2085 for(child_wnd=GetNextWindow(Globals.hmdiclient,GW_CHILD); child_wnd; child_wnd=GetNextWindow(child_wnd, GW_HWNDNEXT)) {
2086 ChildWnd* child = (ChildWnd*)GetWindowLongPtrW(child_wnd, GWLP_USERDATA);
2087
2088 if (child) {
2089 _wsplitpath(child->root.path, drv2, 0, 0, 0);
2090
2091 if (!lstrcmpiW(drv2, drv1)) {
2092 SendMessageW(Globals.hmdiclient, WM_MDIACTIVATE, (WPARAM)child_wnd, 0);
2093
2094 if (IsIconic(child_wnd))
2095 ShowWindow(child_wnd, SW_SHOWNORMAL);
2096
2097 return TRUE;
2098 }
2099 }
2100 }
2101
2102 return FALSE;
2103 }
2104
2105 static BOOL activate_fs_window(LPCWSTR filesys)
2106 {
2107 HWND child_wnd;
2108
2109 /* search for a already open window of the given file system name */
2110 for(child_wnd=GetNextWindow(Globals.hmdiclient,GW_CHILD); child_wnd; child_wnd=GetNextWindow(child_wnd, GW_HWNDNEXT)) {
2111 ChildWnd* child = (ChildWnd*) GetWindowLongPtrW(child_wnd, GWLP_USERDATA);
2112
2113 if (child) {
2114 if (!lstrcmpiW(child->root.fs, filesys)) {
2115 SendMessageW(Globals.hmdiclient, WM_MDIACTIVATE, (WPARAM)child_wnd, 0);
2116
2117 if (IsIconic(child_wnd))
2118 ShowWindow(child_wnd, SW_SHOWNORMAL);
2119
2120 return TRUE;
2121 }
2122 }
2123 }
2124
2125 return FALSE;
2126 }
2127
2128 static LRESULT CALLBACK FrameWndProc(HWND hwnd, UINT nmsg, WPARAM wparam, LPARAM lparam)
2129 {
2130 WCHAR b1[BUFFER_LEN], b2[BUFFER_LEN];
2131
2132 switch(nmsg) {
2133 case WM_CLOSE:
2134 if (Globals.saveSettings)
2135 save_registry_settings();
2136
2137 DestroyWindow(hwnd);
2138
2139 /* clear handle variables */
2140 Globals.hMenuFrame = 0;
2141 Globals.hMenuView = 0;
2142 Globals.hMenuOptions = 0;
2143 Globals.hMainWnd = 0;
2144 Globals.hmdiclient = 0;
2145 Globals.hdrivebar = 0;
2146 break;
2147
2148 case WM_DESTROY:
2149 PostQuitMessage(0);
2150 break;
2151
2152 case WM_INITMENUPOPUP: {
2153 HWND hwndClient = (HWND)SendMessageW(Globals.hmdiclient, WM_MDIGETACTIVE, 0, 0);
2154
2155 if (!SendMessageW(hwndClient, WM_INITMENUPOPUP, wparam, lparam))
2156 return 0;
2157 break;}
2158
2159 case WM_COMMAND: {
2160 UINT cmd = LOWORD(wparam);
2161 HWND hwndClient = (HWND)SendMessageW(Globals.hmdiclient, WM_MDIGETACTIVE, 0, 0);
2162
2163 if (SendMessageW(hwndClient, WM_DISPATCH_COMMAND, wparam, lparam))
2164 break;
2165
2166 if (cmd>=ID_DRIVE_FIRST && cmd<=ID_DRIVE_FIRST+0xFF) {
2167 WCHAR drv[_MAX_DRIVE], path[MAX_PATH];
2168 ChildWnd* child;
2169 LPCWSTR root = Globals.drives;
2170 int i;
2171
2172 for(i=cmd-ID_DRIVE_FIRST; i--; root++)
2173 while(*root)
2174 root++;
2175
2176 if (activate_drive_window(root))
2177 return 0;
2178
2179 _wsplitpath(root, drv, 0, 0, 0);
2180
2181 if (!SetCurrentDirectoryW(drv)) {
2182 display_error(hwnd, GetLastError());
2183 return 0;
2184 }
2185
2186 GetCurrentDirectoryW(MAX_PATH, path); /*TODO: store last directory per drive */
2187 child = alloc_child_window(path, NULL, hwnd);
2188
2189 if (!create_child_window(child))
2190 HeapFree(GetProcessHeap(), 0, child);
2191 } else switch(cmd) {
2192 case ID_FILE_EXIT:
2193 SendMessageW(hwnd, WM_CLOSE, 0, 0);
2194 break;
2195
2196 case ID_WINDOW_NEW: {
2197 WCHAR path[MAX_PATH];
2198 ChildWnd* child;
2199
2200 GetCurrentDirectoryW(MAX_PATH, path);
2201 child = alloc_child_window(path, NULL, hwnd);
2202
2203 if (!create_child_window(child))
2204 HeapFree(GetProcessHeap(), 0, child);
2205 break;}
2206
2207 case ID_REFRESH:
2208 refresh_drives();
2209 break;
2210
2211 case ID_WINDOW_CASCADE:
2212 SendMessageW(Globals.hmdiclient, WM_MDICASCADE, 0, 0);
2213 break;
2214
2215 case ID_WINDOW_TILE_HORZ:
2216 SendMessageW(Globals.hmdiclient, WM_MDITILE, MDITILE_HORIZONTAL, 0);
2217 break;
2218
2219 case ID_WINDOW_TILE_VERT:
2220 SendMessageW(Globals.hmdiclient, WM_MDITILE, MDITILE_VERTICAL, 0);
2221 break;
2222
2223 case ID_WINDOW_ARRANGE:
2224 SendMessageW(Globals.hmdiclient, WM_MDIICONARRANGE, 0, 0);
2225 break;
2226
2227 case ID_SELECT_FONT:
2228 choose_font(hwnd);
2229 break;
2230
2231 case ID_VIEW_TOOL_BAR:
2232 toggle_child(hwnd, cmd, Globals.htoolbar);
2233 break;
2234
2235 case ID_VIEW_DRIVE_BAR:
2236 toggle_child(hwnd, cmd, Globals.hdrivebar);
2237 break;
2238
2239 case ID_VIEW_STATUSBAR:
2240 toggle_child(hwnd, cmd, Globals.hstatusbar);
2241 break;
2242
2243 case ID_VIEW_SAVESETTINGS:
2244 Globals.saveSettings = !Globals.saveSettings;
2245 CheckMenuItem(Globals.hMenuOptions, ID_VIEW_SAVESETTINGS,
2246 Globals.saveSettings ? MF_CHECKED : MF_UNCHECKED );
2247 break;
2248
2249 case ID_RUN:
2250 WineFile_OnRun( hwnd );
2251 break;
2252
2253 case ID_CONNECT_NETWORK_DRIVE: {
2254 DWORD ret = WNetConnectionDialog(hwnd, RESOURCETYPE_DISK);
2255 if (ret == NO_ERROR)
2256 refresh_drives();
2257 else if (ret != (DWORD)-1) {
2258 if (ret == ERROR_EXTENDED_ERROR)
2259 display_network_error(hwnd);
2260 else
2261 display_error(hwnd, ret);
2262 }
2263 break;}
2264
2265 case ID_DISCONNECT_NETWORK_DRIVE: {
2266 DWORD ret = WNetDisconnectDialog(hwnd, RESOURCETYPE_DISK);
2267 if (ret == NO_ERROR)
2268 refresh_drives();
2269 else if (ret != (DWORD)-1) {
2270 if (ret == ERROR_EXTENDED_ERROR)
2271 display_network_error(hwnd);
2272 else
2273 display_error(hwnd, ret);
2274 }
2275 break;}
2276
2277 case ID_FORMAT_DISK: {
2278 UINT sem_org = SetErrorMode(0); /* Get the current Error Mode settings. */
2279 SetErrorMode(sem_org & ~SEM_FAILCRITICALERRORS); /* Force O/S to handle */
2280 SHFormatDrive(hwnd, 0 /* A: */, SHFMT_ID_DEFAULT, 0);
2281 SetErrorMode(sem_org); /* Put it back the way it was. */
2282 break;}
2283
2284 case ID_HELP:
2285 WinHelpW(hwnd, RS(b1,IDS_WINEFILE), HELP_INDEX, 0);
2286 break;
2287
2288 #ifndef _NO_EXTENSIONS
2289 case ID_VIEW_FULLSCREEN:
2290 CheckMenuItem(Globals.hMenuOptions, cmd, toggle_fullscreen(hwnd)?MF_CHECKED:0);
2291 break;
2292
2293 #ifdef __WINE__
2294 case ID_DRIVE_UNIX_FS: {
2295 WCHAR path[MAX_PATH];
2296 char cpath[MAX_PATH];
2297 ChildWnd* child;
2298
2299 if (activate_fs_window(RS(b1,IDS_UNIXFS)))
2300 break;
2301
2302 getcwd(cpath, MAX_PATH);
2303 MultiByteToWideChar(CP_UNIXCP, 0, cpath, -1, path, MAX_PATH);
2304 child = alloc_child_window(path, NULL, hwnd);
2305
2306 if (!create_child_window(child))
2307 HeapFree(GetProcessHeap(), 0, child);
2308 break;}
2309 #endif
2310 #ifdef _SHELL_FOLDERS
2311 case ID_DRIVE_SHELL_NS: {
2312 WCHAR path[MAX_PATH];
2313 ChildWnd* child;
2314
2315 if (activate_fs_window(RS(b1,IDS_SHELL)))
2316 break;
2317
2318 GetCurrentDirectoryW(MAX_PATH, path);
2319 child = alloc_child_window(path, get_path_pidl(path,hwnd), hwnd);
2320
2321 if (!create_child_window(child))
2322 HeapFree(GetProcessHeap(), 0, child);
2323 break;}
2324 #endif
2325 #endif
2326
2327 /*TODO: There are even more menu items! */
2328
2329 case ID_ABOUT:
2330 ShellAboutW(hwnd, RS(b1,IDS_WINEFILE), NULL,
2331 LoadImageW( Globals.hInstance, MAKEINTRESOURCEW(IDI_WINEFILE),
2332 IMAGE_ICON, 48, 48, LR_SHARED ));
2333 break;
2334
2335 default:
2336 /*TODO: if (wParam >= PM_FIRST_LANGUAGE && wParam <= PM_LAST_LANGUAGE)
2337 STRING_SelectLanguageByNumber(wParam - PM_FIRST_LANGUAGE);
2338 else */if ((cmd<IDW_FIRST_CHILD || cmd>=IDW_FIRST_CHILD+0x100) &&
2339 (cmd<SC_SIZE || cmd>SC_RESTORE))
2340 MessageBoxW(hwnd, RS(b2,IDS_NO_IMPL), RS(b1,IDS_WINEFILE), MB_OK);
2341
2342 return DefFrameProcW(hwnd, Globals.hmdiclient, nmsg, wparam, lparam);
2343 }
2344 break;}
2345
2346 case WM_SIZE:
2347 resize_frame(hwnd, LOWORD(lparam), HIWORD(lparam));
2348 break; /* do not pass message to DefFrameProcW */
2349
2350 case WM_DEVICECHANGE:
2351 SendMessageW(hwnd, WM_COMMAND, MAKELONG(ID_REFRESH,0), 0);
2352 break;
2353
2354 #ifndef _NO_EXTENSIONS
2355 case WM_GETMINMAXINFO: {
2356 LPMINMAXINFO lpmmi = (LPMINMAXINFO)lparam;
2357
2358 lpmmi->ptMaxTrackSize.x <<= 1;/*2*GetSystemMetrics(SM_CXSCREEN) / SM_CXVIRTUALSCREEN */
2359 lpmmi->ptMaxTrackSize.y <<= 1;/*2*GetSystemMetrics(SM_CYSCREEN) / SM_CYVIRTUALSCREEN */
2360 break;}
2361
2362 case FRM_CALC_CLIENT:
2363 frame_get_clientspace(hwnd, (PRECT)lparam);
2364 return TRUE;
2365 #endif /* _NO_EXTENSIONS */
2366
2367 default:
2368 return DefFrameProcW(hwnd, Globals.hmdiclient, nmsg, wparam, lparam);
2369 }
2370
2371 return 0;
2372 }
2373
2374
2375 static WCHAR g_pos_names[COLUMNS][20] = {
2376 {'\0'} /* symbol */
2377 };
2378
2379 static const int g_pos_align[] = {
2380 0,
2381 HDF_LEFT, /* Name */
2382 HDF_RIGHT, /* Size */
2383 HDF_LEFT, /* CDate */
2384 #ifndef _NO_EXTENSIONS
2385 HDF_LEFT, /* ADate */
2386 HDF_LEFT, /* MDate */
2387 HDF_LEFT, /* Index */
2388 HDF_CENTER, /* Links */
2389 #endif
2390 HDF_CENTER, /* Attributes */
2391 #ifndef _NO_EXTENSIONS
2392 HDF_LEFT /* Security */
2393 #endif
2394 };
2395
2396 static void resize_tree(ChildWnd* child, int cx, int cy)
2397 {
2398 HDWP hdwp = BeginDeferWindowPos(4);
2399 RECT rt;
2400
2401 rt.left = 0;
2402 rt.top = 0;
2403 rt.right = cx;
2404 rt.bottom = cy;
2405
2406 cx = child->split_pos + SPLIT_WIDTH/2;
2407
2408 #ifndef _NO_EXTENSIONS
2409 {
2410 WINDOWPOS wp;
2411 HD_LAYOUT hdl;
2412
2413 hdl.prc = &rt;
2414 hdl.pwpos = &wp;
2415
2416 SendMessageW(child->left.hwndHeader, HDM_LAYOUT, 0, (LPARAM)&hdl);
2417
2418 DeferWindowPos(hdwp, child->left.hwndHeader, wp.hwndInsertAfter,
2419 wp.x-1, wp.y, child->split_pos-SPLIT_WIDTH/2+1, wp.cy, wp.flags);
2420 DeferWindowPos(hdwp, child->right.hwndHeader, wp.hwndInsertAfter,
2421 rt.left+cx+1, wp.y, wp.cx-cx+2, wp.cy, wp.flags);
2422 }
2423 #endif /* _NO_EXTENSIONS */
2424
2425 DeferWindowPos(hdwp, child->left.hwnd, 0, rt.left, rt.top, child->split_pos-SPLIT_WIDTH/2-rt.left, rt.bottom-rt.top, SWP_NOZORDER|SWP_NOACTIVATE);
2426 DeferWindowPos(hdwp, child->right.hwnd, 0, rt.left+cx+1, rt.top, rt.right-cx, rt.bottom-rt.top, SWP_NOZORDER|SWP_NOACTIVATE);
2427
2428 EndDeferWindowPos(hdwp);
2429 }
2430
2431
2432 #ifndef _NO_EXTENSIONS
2433
2434 static HWND create_header(HWND parent, Pane* pane, UINT id)
2435 {
2436 HDITEMW hdi;
2437 int idx;
2438
2439 HWND hwnd = CreateWindowW(WC_HEADERW, 0, WS_CHILD|WS_VISIBLE|HDS_HORZ|HDS_FULLDRAG/*TODO: |HDS_BUTTONS + sort orders*/,
2440 0, 0, 0, 0, parent, (HMENU)ULongToHandle(id), Globals.hInstance, 0);
2441 if (!hwnd)
2442 return 0;
2443
2444 SendMessageW(hwnd, WM_SETFONT, (WPARAM)GetStockObject(DEFAULT_GUI_FONT), FALSE);
2445
2446 hdi.mask = HDI_TEXT|HDI_WIDTH|HDI_FORMAT;
2447
2448 for(idx=0; idx<COLUMNS; idx++) {
2449 hdi.pszText = g_pos_names[idx];
2450 hdi.fmt = HDF_STRING | g_pos_align[idx];
2451 hdi.cxy = pane->widths[idx];
2452 SendMessageW(hwnd, HDM_INSERTITEMW, idx, (LPARAM)&hdi);
2453 }
2454
2455 return hwnd;
2456 }
2457
2458 #endif /* _NO_EXTENSIONS */
2459
2460
2461 static void init_output(HWND hwnd)
2462 {
2463 static const WCHAR s1000[] = {'1','0','0','0','\0'};
2464 WCHAR b[16];
2465 HFONT old_font;
2466 HDC hdc = GetDC(hwnd);
2467
2468 if (GetNumberFormatW(LOCALE_USER_DEFAULT, 0, s1000, 0, b, 16) > 4)
2469 Globals.num_sep = b[1];
2470 else
2471 Globals.num_sep = '.';
2472
2473 old_font = SelectObject(hdc, Globals.hfont);
2474 GetTextExtentPoint32W(hdc, sSpace, 1, &Globals.spaceSize);
2475 SelectObject(hdc, old_font);
2476 ReleaseDC(hwnd, hdc);
2477 }
2478
2479 static void draw_item(Pane* pane, LPDRAWITEMSTRUCT dis, Entry* entry, int calcWidthCol);
2480
2481
2482 /* calculate preferred width for all visible columns */
2483
2484 static BOOL calc_widths(Pane* pane, BOOL anyway)
2485 {
2486 int col, x, cx, spc=3*Globals.spaceSize.cx;
2487 int entries = SendMessageW(pane->hwnd, LB_GETCOUNT, 0, 0);
2488 int orgWidths[COLUMNS];
2489 int orgPositions[COLUMNS+1];
2490 HFONT hfontOld;
2491 HDC hdc;
2492 int cnt;
2493
2494 if (!anyway) {
2495 memcpy(orgWidths, pane->widths, sizeof(orgWidths));
2496 memcpy(orgPositions, pane->positions, sizeof(orgPositions));
2497 }
2498
2499 for(col=0; col<COLUMNS; col++)
2500 pane->widths[col] = 0;
2501
2502 hdc = GetDC(pane->hwnd);
2503 hfontOld = SelectObject(hdc, Globals.hfont);
2504
2505 for(cnt=0; cnt<entries; cnt++) {
2506 Entry* entry = (Entry*)SendMessageW(pane->hwnd, LB_GETITEMDATA, cnt, 0);
2507
2508 DRAWITEMSTRUCT dis;
2509
2510 dis.CtlType = 0;
2511 dis.CtlID = 0;
2512 dis.itemID = 0;
2513 dis.itemAction = 0;
2514 dis.itemState = 0;
2515 dis.hwndItem = pane->hwnd;
2516 dis.hDC = hdc;
2517 dis.rcItem.left = 0;
2518 dis.rcItem.top = 0;
2519 dis.rcItem.right = 0;
2520 dis.rcItem.bottom = 0;
2521 /*dis.itemData = 0; */
2522
2523 draw_item(pane, &dis, entry, COLUMNS);
2524 }
2525
2526 SelectObject(hdc, hfontOld);
2527 ReleaseDC(pane->hwnd, hdc);
2528
2529 x = 0;
2530 for(col=0; col<COLUMNS; col++) {
2531 pane->positions[col] = x;
2532 cx = pane->widths[col];
2533
2534 if (cx) {
2535 cx += spc;
2536
2537 if (cx < IMAGE_WIDTH)
2538 cx = IMAGE_WIDTH;
2539
2540 pane->widths[col] = cx;
2541 }
2542
2543 x += cx;
2544 }
2545
2546 pane->positions[COLUMNS] = x;
2547
2548 SendMessageW(pane->hwnd, LB_SETHORIZONTALEXTENT, x, 0);
2549
2550 /* no change? */
2551 if (!anyway && !memcmp(orgWidths, pane->widths, sizeof(orgWidths)))
2552 return FALSE;
2553
2554 /* don't move, if only collapsing an entry */
2555 if (!anyway && pane->widths[0]<orgWidths[0] &&
2556 !memcmp(orgWidths+1, pane->widths+1, sizeof(orgWidths)-sizeof(int))) {
2557 pane->widths[0] = orgWidths[0];
2558 memcpy(pane->positions, orgPositions, sizeof(orgPositions));
2559
2560 return FALSE;
2561 }
2562
2563 InvalidateRect(pane->hwnd, 0, TRUE);
2564
2565 return TRUE;
2566 }
2567
2568
2569 /* calculate one preferred column width */
2570
2571 static void calc_single_width(Pane* pane, int col)
2572 {
2573 HFONT hfontOld;
2574 int x, cx;
2575 int entries = SendMessageW(pane->hwnd, LB_GETCOUNT, 0, 0);
2576 int cnt;
2577 HDC hdc;
2578
2579 pane->widths[col] = 0;
2580
2581 hdc = GetDC(pane->hwnd);
2582 hfontOld = SelectObject(hdc, Globals.hfont);
2583
2584 for(cnt=0; cnt<entries; cnt++) {
2585 Entry* entry = (Entry*)SendMessageW(pane->hwnd, LB_GETITEMDATA, cnt, 0);
2586 DRAWITEMSTRUCT dis;
2587
2588 dis.CtlType = 0;
2589 dis.CtlID = 0;
2590 dis.itemID = 0;
2591 dis.itemAction = 0;
2592 dis.itemState = 0;
2593 dis.hwndItem = pane->hwnd;
2594 dis.hDC = hdc;
2595 dis.rcItem.left = 0;
2596 dis.rcItem.top = 0;
2597 dis.rcItem.right = 0;
2598 dis.rcItem.bottom = 0;
2599 /*dis.itemData = 0; */
2600
2601 draw_item(pane, &dis, entry, col);
2602 }
2603
2604 SelectObject(hdc, hfontOld);
2605 ReleaseDC(pane->hwnd, hdc);
2606
2607 cx = pane->widths[col];
2608
2609 if (cx) {
2610 cx += 3*Globals.spaceSize.cx;
2611
2612 if (cx < IMAGE_WIDTH)
2613 cx = IMAGE_WIDTH;
2614 }
2615
2616 pane->widths[col] = cx;
2617
2618 x = pane->positions[col] + cx;
2619
2620 for(; col<COLUMNS-1; ) {
2621 pane->positions[++col] = x;
2622 x += pane->widths[col];
2623 }
2624
2625 SendMessageW(pane->hwnd, LB_SETHORIZONTALEXTENT, x, 0);
2626 }
2627
2628
2629 static BOOL pattern_match(LPCWSTR str, LPCWSTR pattern)
2630 {
2631 for( ; *str&&*pattern; str++,pattern++) {
2632 if (*pattern == '*') {
2633 do pattern++;
2634 while(*pattern == '*');
2635
2636 if (!*pattern)
2637 return TRUE;
2638
2639 for(; *str; str++)
2640 if (*str==*pattern && pattern_match(str, pattern))
2641 return TRUE;
2642
2643 return FALSE;
2644 }
2645 else if (*str!=*pattern && *pattern!='?')
2646 return FALSE;
2647 }
2648
2649 if (*str || *pattern)
2650 if (*pattern!='*' || pattern[1]!='\0')
2651 return FALSE;
2652
2653 return TRUE;
2654 }
2655
2656 static BOOL pattern_imatch(LPCWSTR str, LPCWSTR pattern)
2657 {
2658 WCHAR b1[BUFFER_LEN], b2[BUFFER_LEN];
2659
2660 lstrcpyW(b1, str);
2661 lstrcpyW(b2, pattern);
2662 CharUpperW(b1);
2663 CharUpperW(b2);
2664
2665 return pattern_match(b1, b2);
2666 }
2667
2668
2669 enum FILE_TYPE {
2670 FT_OTHER = 0,
2671 FT_EXECUTABLE = 1,
2672 FT_DOCUMENT = 2
2673 };
2674
2675 static enum FILE_TYPE get_file_type(LPCWSTR filename);
2676
2677
2678 /* insert listbox entries after index idx */
2679
2680 static int insert_entries(Pane* pane, Entry* dir, LPCWSTR pattern, int filter_flags, int idx)
2681 {
2682 Entry* entry = dir;
2683
2684 if (!entry)
2685 return idx;
2686
2687 ShowWindow(pane->hwnd, SW_HIDE);
2688
2689 for(; entry; entry=entry->next) {
2690 #ifndef _LEFT_FILES
2691 if (pane->treePane && !(entry->data.dwFileAttributes&FILE_ATTRIBUTE_DIRECTORY))
2692 continue;
2693 #endif
2694
2695 if (entry->data.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) {
2696 /* don't display entries "." and ".." in the left pane */
2697 if (pane->treePane && entry->data.cFileName[0] == '.')
2698 if (
2699 #ifndef _NO_EXTENSIONS
2700 entry->data.cFileName[1] == '\0' ||
2701 #endif
2702 (entry->data.cFileName[1] == '.' && entry->data.cFileName[2] == '\0'))
2703 continue;
2704
2705 /* filter directories in right pane */
2706 if (!pane->treePane && !(filter_flags&TF_DIRECTORIES))
2707 continue;
2708 }
2709
2710 /* filter using the file name pattern */
2711 if (pattern)
2712 if (!pattern_imatch(entry->data.cFileName, pattern))
2713 continue;
2714
2715 /* filter system and hidden files */
2716 if (!(filter_flags&TF_HIDDEN) && (entry->data.dwFileAttributes&(FILE_ATTRIBUTE_HIDDEN|FILE_ATTRIBUTE_SYSTEM)))
2717 continue;
2718
2719 /* filter looking at the file type */
2720 if ((filter_flags&(TF_PROGRAMS|TF_DOCUMENTS|TF_OTHERS)) != (TF_PROGRAMS|TF_DOCUMENTS|TF_OTHERS))
2721 switch(get_file_type(entry->data.cFileName)) {
2722 case FT_EXECUTABLE:
2723 if (!(filter_flags & TF_PROGRAMS))
2724 continue;
2725 break;
2726
2727 case FT_DOCUMENT:
2728 if (!(filter_flags & TF_DOCUMENTS))
2729 continue;
2730 break;
2731
2732 default: /* TF_OTHERS */
2733 if (!(filter_flags & TF_OTHERS))
2734 continue;
2735 }
2736
2737 if (idx != -1)
2738 idx++;
2739
2740 SendMessageW(pane->hwnd, LB_INSERTSTRING, idx, (LPARAM)entry);
2741
2742 if (pane->treePane && entry->expanded)
2743 idx = insert_entries(pane, entry->down, pattern, filter_flags, idx);
2744 }
2745
2746 ShowWindow(pane->hwnd, SW_SHOW);
2747
2748 return idx;
2749 }
2750
2751
2752 static void format_bytes(LPWSTR buffer, LONGLONG bytes)
2753 {
2754 static const WCHAR sFmtGB[] = {'%', '.', '1', 'f', ' ', 'G', 'B', '\0'};
2755 static const WCHAR sFmtMB[] = {'%', '.', '1', 'f', ' ', 'M', 'B', '\0'};
2756 static const WCHAR sFmtkB[] = {'%', '.', '1', 'f', ' ', 'k', 'B', '\0'};
2757 static const WCHAR sFmtB[] = {'%', 'u', 0};
2758
2759 float fBytes = (float)bytes;
2760
2761 if (bytes >= 1073741824) /* 1 GB */
2762 sprintfW(buffer, sFmtGB, fBytes/1073741824.f+.5f);
2763 else if (bytes >= 1048576) /* 1 MB */
2764 sprintfW(buffer, sFmtMB, fBytes/1048576.f+.5f);
2765 else if (bytes >= 1024) /* 1 kB */
2766 sprintfW(buffer, sFmtkB, fBytes/1024.f+.5f);
2767 else
2768 sprintfW(buffer, sFmtB, (DWORD)bytes);
2769 }
2770
2771 static void set_space_status(void)
2772 {
2773 ULARGE_INTEGER ulFreeBytesToCaller, ulTotalBytes, ulFreeBytes;
2774 WCHAR fmt[64], b1[64], b2[64], buffer[BUFFER_LEN];
2775
2776 if (GetDiskFreeSpaceExW(NULL, &ulFreeBytesToCaller, &ulTotalBytes, &ulFreeBytes)) {
2777 format_bytes(b1, ulFreeBytesToCaller.QuadPart);
2778 format_bytes(b2, ulTotalBytes.QuadPart);
2779 wsprintfW(buffer, RS(fmt,IDS_FREE_SPACE_FMT), b1, b2);
2780 } else
2781 lstrcpyW(buffer, sQMarks);
2782
2783 SendMessageW(Globals.hstatusbar, SB_SETTEXTW, 0, (LPARAM)buffer);
2784 }
2785
2786
2787 static WNDPROC g_orgTreeWndProc;
2788
2789 static void create_tree_window(HWND parent, Pane* pane, UINT id, UINT id_header, LPCWSTR pattern, int filter_flags)
2790 {
2791 static const WCHAR sListBox[] = {'L','i','s','t','B','o','x','\0'};
2792
2793 static int s_init = 0;
2794 Entry* entry = pane->root;
2795
2796 pane->hwnd = CreateWindowW(sListBox, sEmpty, WS_CHILD|WS_VISIBLE|WS_HSCROLL|WS_VSCROLL|
2797 LBS_DISABLENOSCROLL|LBS_NOINTEGRALHEIGHT|LBS_OWNERDRAWFIXED|LBS_NOTIFY,
2798 0, 0, 0, 0, parent, (HMENU)ULongToHandle(id), Globals.hInstance, 0);
2799
2800 SetWindowLongPtrW(pane->hwnd, GWLP_USERDATA, (LPARAM)pane);
2801 g_orgTreeWndProc = (WNDPROC)SetWindowLongPtrW(pane->hwnd, GWLP_WNDPROC, (LPARAM)TreeWndProc);
2802
2803 SendMessageW(pane->hwnd, WM_SETFONT, (WPARAM)Globals.hfont, FALSE);
2804
2805 /* insert entries into listbox */
2806 if (entry)
2807 insert_entries(pane, entry, pattern, filter_flags, -1);
2808
2809 /* calculate column widths */
2810 if (!s_init) {
2811 s_init = 1;
2812 init_output(pane->hwnd);
2813 }
2814
2815 calc_widths(pane, TRUE);
2816
2817 #ifndef _NO_EXTENSIONS
2818 pane->hwndHeader = create_header(parent, pane, id_header);
2819 #endif
2820 }
2821
2822
2823 static void InitChildWindow(ChildWnd* child)
2824 {
2825 create_tree_window(child->hwnd, &child->left, IDW_TREE_LEFT, IDW_HEADER_LEFT, NULL, TF_ALL);
2826 create_tree_window(child->hwnd, &child->right, IDW_TREE_RIGHT, IDW_HEADER_RIGHT, child->filter_pattern, child->filter_flags);
2827 }
2828
2829
2830 static void format_date(const FILETIME* ft, WCHAR* buffer, int visible_cols)
2831 {
2832 SYSTEMTIME systime;
2833 FILETIME lft;
2834 int len = 0;
2835
2836 *buffer = '\0';
2837
2838 if (!ft->dwLowDateTime && !ft->dwHighDateTime)
2839 return;
2840
2841 if (!FileTimeToLocalFileTime(ft, &lft))
2842 {err: lstrcpyW(buffer,sQMarks); return;}
2843
2844 if (!FileTimeToSystemTime(&lft, &systime))
2845 goto err;
2846
2847 if (visible_cols & COL_DATE) {
2848 len = GetDateFormatW(LOCALE_USER_DEFAULT, 0, &systime, 0, buffer, BUFFER_LEN);
2849 if (!len)
2850 goto err;
2851 }
2852
2853 if (visible_cols & COL_TIME) {
2854 if (len)
2855 buffer[len-1] = ' ';
2856
2857 buffer[len++] = ' ';
2858
2859 if (!GetTimeFormatW(LOCALE_USER_DEFAULT, 0, &systime, 0, buffer+len, BUFFER_LEN-len))
2860 buffer[len] = '\0';
2861 }
2862 }
2863
2864
2865 static void calc_width(Pane* pane, LPDRAWITEMSTRUCT dis, int col, LPCWSTR str)
2866 {
2867 RECT rt = {0, 0, 0, 0};
2868
2869 DrawTextW(dis->hDC, str, -1, &rt, DT_CALCRECT|DT_SINGLELINE|DT_NOPREFIX);
2870
2871 if (rt.right > pane->widths[col])
2872 pane->widths[col] = rt.right;
2873 }
2874
2875 static void calc_tabbed_width(Pane* pane, LPDRAWITEMSTRUCT dis, int col, LPCWSTR str)
2876 {
2877 RECT rt = {0, 0, 0, 0};
2878
2879 /* DRAWTEXTPARAMS dtp = {sizeof(DRAWTEXTPARAMS), 2};
2880 DrawTextExW(dis->hDC, (LPWSTR)str, -1, &rt, DT_CALCRECT|DT_SINGLELINE|DT_NOPREFIX|DT_EXPANDTABS|DT_TABSTOP, &dtp);*/
2881
2882 DrawTextW(dis->hDC, str, -1, &rt, DT_CALCRECT|DT_SINGLELINE|DT_EXPANDTABS|DT_TABSTOP|(2<<8));
2883 /*FIXME rt (0,0) ??? */
2884
2885 if (rt.right > pane->widths[col])
2886 pane->widths[col] = rt.right;
2887 }
2888
2889
2890 static void output_text(Pane* pane, LPDRAWITEMSTRUCT dis, int col, LPCWSTR str, DWORD flags)
2891 {
2892 int x = dis->rcItem.left;
2893 RECT rt;
2894
2895 rt.left = x+pane->positions[col]+Globals.spaceSize.cx;
2896 rt.top = dis->rcItem.top;
2897 rt.right = x+pane->positions[col+1]-Globals.spaceSize.cx;
2898 rt.bottom = dis->rcItem.bottom;
2899
2900 DrawTextW(dis->hDC, str, -1, &rt, DT_SINGLELINE|DT_NOPREFIX|flags);
2901 }
2902
2903 static void output_tabbed_text(Pane* pane, LPDRAWITEMSTRUCT dis, int col, LPCWSTR str)
2904 {
2905 int x = dis->rcItem.left;
2906 RECT rt;
2907
2908 rt.left = x+pane->positions[col]+Globals.spaceSize.cx;
2909 rt.top = dis->rcItem.top;
2910 rt.right = x+pane->positions[col+1]-Globals.spaceSize.cx;
2911 rt.bottom = dis->rcItem.bottom;
2912
2913 /* DRAWTEXTPARAMS dtp = {sizeof(DRAWTEXTPARAMS), 2};
2914 DrawTextExW(dis->hDC, (LPWSTR)str, -1, &rt, DT_SINGLELINE|DT_NOPREFIX|DT_EXPANDTABS|DT_TABSTOP, &dtp);*/
2915
2916 DrawTextW(dis->hDC, str, -1, &rt, DT_SINGLELINE|DT_EXPANDTABS|DT_TABSTOP|(2<<8));
2917 }
2918
2919 static void output_number(Pane* pane, LPDRAWITEMSTRUCT dis, int col, LPCWSTR str)
2920 {
2921 int x = dis->rcItem.left;
2922 RECT rt;
2923 LPCWSTR s = str;
2924 WCHAR b[128];
2925 LPWSTR d = b;
2926 int pos;
2927
2928 rt.left = x+pane->positions[col]+Globals.spaceSize.cx;
2929 rt.top = dis->rcItem.top;
2930 rt.right = x+pane->positions[col+1]-Globals.spaceSize.cx;
2931 rt.bottom = dis->rcItem.bottom;
2932
2933 if (*s)
2934 *d++ = *s++;
2935
2936 /* insert number separator characters */
2937 pos = lstrlenW(s) % 3;
2938
2939 while(*s)
2940 if (pos--)
2941 *d++ = *s++;
2942 else {
2943 *d++ = Globals.num_sep;
2944 pos = 3;
2945 }
2946
2947 DrawTextW(dis->hDC, b, d-b, &rt, DT_RIGHT|DT_SINGLELINE|DT_NOPREFIX|DT_END_ELLIPSIS);
2948 }
2949
2950
2951 static BOOL is_exe_file(LPCWSTR ext)
2952 {
2953 static const WCHAR executable_extensions[][4] = {
2954 {'C','O','M','\0'},
2955 {'E','X','E','\0'},
2956 {'B','A','T','\0'},
2957 {'C','M','D','\0'},
2958 #ifndef _NO_EXTENSIONS
2959 {'C','M','M','\0'},
2960 {'B','T','M','\0'},
2961 {'A','W','K','\0'},
2962 #endif /* _NO_EXTENSIONS */
2963 {'\0'}
2964 };
2965
2966 WCHAR ext_buffer[_MAX_EXT];
2967 const WCHAR (*p)[4];
2968 LPCWSTR s;
2969 LPWSTR d;
2970
2971 for(s=ext+1,d=ext_buffer; (*d=tolower(*s)); s++)
2972 d++;
2973
2974 for(p=executable_extensions; (*p)[0]; p++)
2975 if (!lstrcmpiW(ext_buffer, *p))
2976 return TRUE;
2977
2978 return FALSE;
2979 }
2980
2981 static BOOL is_registered_type(LPCWSTR ext)
2982 {
2983 /* check if there exists a classname for this file extension in the registry */
2984 if (!RegQueryValueW(HKEY_CLASSES_ROOT, ext, NULL, NULL))
2985 return TRUE;
2986
2987 return FALSE;
2988 }
2989
2990 static enum FILE_TYPE get_file_type(LPCWSTR filename)
2991 {
2992 LPCWSTR ext = strrchrW(filename, '.');
2993 if (!ext)
2994 ext = sEmpty;
2995
2996 if (is_exe_file(ext))
2997 return FT_EXECUTABLE;
2998 else if (is_registered_type(ext))
2999 return FT_DOCUMENT;
3000 else
3001 return FT_OTHER;
3002 }
3003
3004
3005 static void draw_item(Pane* pane, LPDRAWITEMSTRUCT dis, Entry* entry, int calcWidthCol)
3006 {
3007 WCHAR buffer[BUFFER_LEN];
3008 DWORD attrs;
3009 int visible_cols = pane->visible_cols;
3010 COLORREF bkcolor, textcolor;
3011 RECT focusRect = dis->rcItem;
3012 HBRUSH hbrush;
3013 enum IMAGE img;
3014 int img_pos, cx;
3015 int col = 0;
3016
3017 if (entry) {
3018 attrs = entry->data.dwFileAttributes;
3019
3020 if (attrs & FILE_ATTRIBUTE_DIRECTORY) {
3021 if (entry->data.cFileName[0] == '.' && entry->data.cFileName[1] == '.'
3022 && entry->data.cFileName[2] == '\0')
3023 img = IMG_FOLDER_UP;
3024 #ifndef _NO_EXTENSIONS
3025 else if (entry->data.cFileName[0] == '.' && entry->data.cFileName[1] == '\0')
3026 img = IMG_FOLDER_CUR;
3027 #endif
3028 else if (
3029 #ifdef _NO_EXTENSIONS
3030 entry->expanded ||
3031 #endif
3032 (pane->treePane && (dis->itemState&ODS_FOCUS)))
3033 img = IMG_OPEN_FOLDER;
3034 else
3035 img = IMG_FOLDER;
3036 } else {
3037 switch(get_file_type(entry->data.cFileName)) {
3038 case FT_EXECUTABLE: img = IMG_EXECUTABLE; break;
3039 case FT_DOCUMENT: img = IMG_DOCUMENT; break;
3040 default: img = IMG_FILE;
3041 }
3042 }
3043 } else {
3044 attrs = 0;
3045 img = IMG_NONE;
3046 }
3047
3048 if (pane->treePane) {
3049 if (entry) {
3050 img_pos = dis->rcItem.left + entry->level*(IMAGE_WIDTH+TREE_LINE_DX);
3051
3052 if (calcWidthCol == -1) {
3053 int x;
3054 int y = dis->rcItem.top + IMAGE_HEIGHT/2;
3055 Entry* up;
3056 RECT rt_clip;
3057 HRGN hrgn_org = CreateRectRgn(0, 0, 0, 0);
3058 HRGN hrgn;
3059
3060 rt_clip.left = dis->rcItem.left;
3061 rt_clip.top = dis->rcItem.top;
3062 rt_clip.right = dis->rcItem.left+pane->widths[col];
3063 rt_clip.bottom = dis->rcItem.bottom;
3064
3065 hrgn = CreateRectRgnIndirect(&rt_clip);
3066
3067 if (!GetClipRgn(dis->hDC, hrgn_org)) {
3068 DeleteObject(hrgn_org);
3069 hrgn_org = 0;
3070 }
3071
3072 /* HGDIOBJ holdPen = SelectObject(dis->hDC, GetStockObject(BLACK_PEN)); */
3073 ExtSelectClipRgn(dis->hDC, hrgn, RGN_AND);
3074 DeleteObject(hrgn);
3075
3076 if ((up=entry->up) != NULL) {
3077 MoveToEx(dis->hDC, img_pos-IMAGE_WIDTH/2, y, 0);
3078 LineTo(dis->hDC, img_pos-2, y);
3079
3080 x = img_pos - IMAGE_WIDTH/2;
3081
3082 do {
3083 x -= IMAGE_WIDTH+TREE_LINE_DX;
3084
3085 if (up->next
3086 #ifndef _LEFT_FILES
3087 && (up->next->data.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
3088 #endif
3089 ) {
3090 MoveToEx(dis->hDC, x, dis->rcItem.top, 0);
3091 LineTo(dis->hDC, x, dis->rcItem.bottom);
3092 }
3093 } while((up=up->up) != NULL);
3094 }
3095
3096 x = img_pos - IMAGE_WIDTH/2;
3097
3098 MoveToEx(dis->hDC, x, dis->rcItem.top, 0);
3099 LineTo(dis->hDC, x, y);
3100
3101 if (entry->next
3102 #ifndef _LEFT_FILES
3103 && (entry->next->data.dwFileAttributes&FILE_ATTRIBUTE_DIRECTORY)
3104 #endif
3105 )
3106 LineTo(dis->hDC, x, dis->rcItem.bottom);
3107
3108 SelectClipRgn(dis->hDC, hrgn_org);
3109 if (hrgn_org) DeleteObject(hrgn_org);
3110 /* SelectObject(dis->hDC, holdPen); */
3111 } else if (calcWidthCol==col || calcWidthCol==COLUMNS) {
3112 int right = img_pos + IMAGE_WIDTH - TREE_LINE_DX;
3113
3114 if (right > pane->widths[col])
3115 pane->widths[col] = right;
3116 }
3117 } else {
3118 img_pos = dis->rcItem.left;
3119 }
3120 } else {
3121 img_pos = dis->rcItem.left;
3122
3123 if (calcWidthCol==col || calcWidthCol==COLUMNS)
3124 pane->widths[col] = IMAGE_WIDTH;
3125 }
3126
3127 if (calcWidthCol == -1) {
3128 focusRect.left = img_pos -2;
3129
3130 #ifdef _NO_EXTENSIONS
3131 if (pane->treePane && entry) {
3132 RECT rt = {0};
3133
3134 DrawTextW(dis->hDC, entry->data.cFileName, -1, &rt, DT_CALCRECT|DT_SINGLELINE|DT_NOPREFIX);
3135
3136 focusRect.right = dis->rcItem.left+pane->positions[col+1]+TREE_LINE_DX + rt.right +2;
3137 }
3138 #else
3139
3140 if (attrs & FILE_ATTRIBUTE_COMPRESSED)
3141 textcolor = COLOR_COMPRESSED;
3142 else
3143 #endif /* _NO_EXTENSIONS */
3144 textcolor = RGB(0,0,0);
3145
3146 if (dis->itemState & ODS_FOCUS) {
3147 textcolor = RGB(255,255,255);
3148 bkcolor = COLOR_SELECTION;
3149 } else {
3150 bkcolor = RGB(255,255,255);
3151 }
3152
3153 hbrush = CreateSolidBrush(bkcolor);
3154 FillRect(dis->hDC, &focusRect, hbrush);
3155 DeleteObject(hbrush);
3156
3157 SetBkMode(dis->hDC, TRANSPARENT);
3158 SetTextColor(dis->hDC, textcolor);
3159
3160 cx = pane->widths[col];
3161
3162 if (cx && img!=IMG_NONE) {
3163 if (cx > IMAGE_WIDTH)
3164 cx = IMAGE_WIDTH;
3165
3166 #ifdef _SHELL_FOLDERS
3167 if (entry->hicon && entry->hicon!=(HICON)-1)
3168 DrawIconEx(dis->hDC, img_pos, dis->rcItem.top, entry->hicon, cx, GetSystemMetrics(SM_CYSMICON), 0, 0, DI_NORMAL);
3169 else
3170 #endif
3171 ImageList_DrawEx(Globals.himl, img, dis->hDC,
3172 img_pos, dis->rcItem.top, cx,
3173 IMAGE_HEIGHT, bkcolor, CLR_DEFAULT, ILD_NORMAL);
3174 }
3175 }
3176
3177 if (!entry)
3178 return;
3179
3180 #ifdef _NO_EXTENSIONS
3181 if (img >= IMG_FOLDER_UP)
3182 return;
3183 #endif
3184
3185 col++;
3186
3187 /* ouput file name */
3188 if (calcWidthCol == -1)
3189 output_text(pane, dis, col, entry->data.cFileName, 0);
3190 else if (calcWidthCol==col || calcWidthCol==COLUMNS)
3191 calc_width(pane, dis, col, entry->data.cFileName);
3192
3193 col++;
3194
3195 #ifdef _NO_EXTENSIONS
3196 if (!pane->treePane) {
3197 #endif
3198
3199 /* display file size */
3200 if (visible_cols & COL_SIZE) {
3201 #ifdef _NO_EXTENSIONS
3202 if (!(attrs&FILE_ATTRIBUTE_DIRECTORY))
3203 #endif
3204 {
3205 format_longlong( buffer, ((ULONGLONG)entry->data.nFileSizeHigh << 32) | entry->data.nFileSizeLow );
3206
3207 if (calcWidthCol == -1)
3208 output_number(pane, dis, col, buffer);
3209 else if (calcWidthCol==col || calcWidthCol==COLUMNS)
3210 calc_width(pane, dis, col, buffer);/*TODO: not ever time enough */
3211 }
3212
3213 col++;
3214 }
3215
3216 /* display file date */
3217 if (visible_cols & (COL_DATE|COL_TIME)) {
3218 #ifndef _NO_EXTENSIONS
3219 format_date(&entry->data.ftCreationTime, buffer, visible_cols);
3220 if (calcWidthCol == -1)
3221 output_text(pane, dis, col, buffer, 0);
3222 else if (calcWidthCol==col || calcWidthCol==COLUMNS)
3223 calc_width(pane, dis, col, buffer);
3224 col++;
3225
3226 format_date(&entry->data.ftLastAccessTime, buffer, visible_cols);
3227 if (calcWidthCol == -1)
3228 output_text(pane, dis, col, buffer, 0);
3229 else if (calcWidthCol==col || calcWidthCol==COLUMNS)
3230 calc_width(pane, dis, col, buffer);
3231 col++;
3232 #endif /* _NO_EXTENSIONS */
3233
3234 format_date(&entry->data.ftLastWriteTime, buffer, visible_cols);
3235 if (calcWidthCol == -1)
3236 output_text(pane, dis, col, buffer, 0);
3237 else if (calcWidthCol==col || calcWidthCol==COLUMNS)
3238 calc_width(pane, dis, col, buffer);
3239 col++;
3240 }
3241
3242 #ifndef _NO_EXTENSIONS
3243 if (entry->bhfi_valid) {
3244 if (visible_cols & COL_INDEX) {
3245 static const WCHAR fmtlow[] = {'%','X',0};
3246 static const WCHAR fmthigh[] = {'%','X','%','0','8','X',0};
3247
3248 if (entry->bhfi.nFileIndexHigh)
3249 wsprintfW(buffer, fmthigh,
3250 entry->bhfi.nFileIndexHigh, entry->bhfi.nFileIndexLow );
3251 else
3252 wsprintfW(buffer, fmtlow, entry->bhfi.nFileIndexLow );
3253
3254 if (calcWidthCol == -1)
3255 output_text(pane, dis, col, buffer, DT_RIGHT);
3256 else if (calcWidthCol==col || calcWidthCol==COLUMNS)
3257 calc_width(pane, dis, col, buffer);
3258
3259 col++;
3260 }
3261
3262 if (visible_cols & COL_LINKS) {
3263 wsprintfW(buffer, sNumFmt, entry->bhfi.nNumberOfLinks);
3264
3265 if (calcWidthCol == -1)
3266 output_text(pane, dis, col, buffer, DT_CENTER);
3267 else if (calcWidthCol==col || calcWidthCol==COLUMNS)
3268 calc_width(pane, dis, col, buffer);
3269
3270 col++;
3271 }
3272 } else
3273 col += 2;
3274 #endif /* _NO_EXTENSIONS */
3275
3276 /* show file attributes */
3277 if (visible_cols & COL_ATTRIBUTES) {
3278 #ifdef _NO_EXTENSIONS
3279 static const WCHAR s4Tabs[] = {' ','\t',' ','\t',' ','\t',' ','\t',' ','\0'};
3280 lstrcpyW(buffer, s4Tabs);
3281 #else
3282 static const WCHAR s11Tabs[] = {' ','\t',' ','\t',' ','\t',' ','\t',' ','\t',' ','\t',' ','\t',' ','\t',' ','\t',' ','\t',' ','\t',' ','\0'};
3283 lstrcpyW(buffer, s11Tabs);
3284 #endif
3285
3286 if (attrs & FILE_ATTRIBUTE_NORMAL) buffer[ 0] = 'N';
3287 else {
3288 if (attrs & FILE_ATTRIBUTE_READONLY) buffer[ 2] = 'R';
3289 if (attrs & FILE_ATTRIBUTE_HIDDEN) buffer[ 4] = 'H';
3290 if (attrs & FILE_ATTRIBUTE_SYSTEM) buffer[ 6] = 'S';
3291 if (attrs & FILE_ATTRIBUTE_ARCHIVE) buffer[ 8] = 'A';
3292 if (attrs & FILE_ATTRIBUTE_COMPRESSED) buffer[10] = 'C';
3293 #ifndef _NO_EXTENSIONS
3294 if (attrs & FILE_ATTRIBUTE_DIRECTORY) buffer[12] = 'D';
3295 if (attrs & FILE_ATTRIBUTE_ENCRYPTED) buffer[14] = 'E';
3296 if (attrs & FILE_ATTRIBUTE_TEMPORARY) buffer[16] = 'T';
3297 if (attrs & FILE_ATTRIBUTE_SPARSE_FILE) buffer[18] = 'P';
3298 if (attrs & FILE_ATTRIBUTE_REPARSE_POINT) buffer[20] = 'Q';
3299 if (attrs & FILE_ATTRIBUTE_OFFLINE) buffer[22] = 'O';
3300 if (attrs & FILE_ATTRIBUTE_NOT_CONTENT_INDEXED) buffer[24] = 'X';
3301 #endif /* _NO_EXTENSIONS */
3302 }
3303
3304 if (calcWidthCol == -1)
3305 output_tabbed_text(pane, dis, col, buffer);
3306 else if (calcWidthCol==col || calcWidthCol==COLUMNS)
3307 calc_tabbed_width(pane, dis, col, buffer);
3308
3309 col++;
3310 }
3311
3312 /*TODO
3313 if (flags.security) {
3314 static const WCHAR sSecTabs[] = {
3315 ' ','\t',' ','\t',' ','\t',' ',
3316 ' ','\t',' ',
3317 ' ','\t',' ','\t',' ','\t',' ',
3318 ' ','\t',' ',
3319 ' ','\t',' ','\t',' ','\t',' ',
3320 '\0'
3321 };
3322
3323 DWORD rights = get_access_mask();
3324
3325 lstrcpyW(buffer, sSecTabs);
3326
3327 if (rights & FILE_READ_DATA) buffer[ 0] = 'R';
3328 if (rights & FILE_WRITE_DATA) buffer[ 2] = 'W';
3329 if (rights & FILE_APPEND_DATA) buffer[ 4] = 'A';
3330 if (rights & FILE_READ_EA) {buffer[6] = 'entry'; buffer[ 7] = 'R';}
3331 if (rights & FILE_WRITE_EA) {buffer[9] = 'entry'; buffer[10] = 'W';}
3332 if (rights & FILE_EXECUTE) buffer[12] = 'X';
3333 if (rights & FILE_DELETE_CHILD) buffer[14] = 'D';
3334 if (rights & FILE_READ_ATTRIBUTES) {buffer[16] = 'a'; buffer[17] = 'R';}
3335 if (rights & FILE_WRITE_ATTRIBUTES) {buffer[19] = 'a'; buffer[20] = 'W';}
3336 if (rights & WRITE_DAC) buffer[22] = 'C';
3337 if (rights & WRITE_OWNER) buffer[24] = 'O';
3338 if (rights & SYNCHRONIZE) buffer[26] = 'S';
3339
3340 output_text(dis, col++, buffer, DT_LEFT, 3, psize);
3341 }
3342
3343 if (flags.description) {
3344 get_description(buffer);
3345 output_text(dis, col++, buffer, 0, psize);
3346 }
3347 */
3348
3349 #ifdef _NO_EXTENSIONS
3350 }
3351
3352 /* draw focus frame */
3353 if ((dis->itemState&ODS_FOCUS) && calcWidthCol==-1) {
3354 /* Currently [04/2000] Wine neither behaves exactly the same */
3355 /* way as WIN 95 nor like Windows NT... */
3356 HGDIOBJ lastBrush;
3357 HPEN lastPen;
3358 HPEN hpen;
3359
3360 if (!(GetVersion() & 0x80000000)) { /* Windows NT? */
3361 LOGBRUSH lb = {PS_SOLID, RGB(255,255,255)};
3362 hpen = ExtCreatePen(PS_COSMETIC|PS_ALTERNATE, 1, &lb, 0, 0);
3363 } else
3364 hpen = CreatePen(PS_DOT, 0, RGB(255,255,255));
3365
3366 lastPen = SelectPen(dis->hDC, hpen);
3367 lastBrush = SelectObject(dis->hDC, GetStockObject(HOLLOW_BRUSH));
3368 SetROP2(dis->hDC, R2_XORPEN);
3369 Rectangle(dis->hDC, focusRect.left, focusRect.top, focusRect.right, focusRect.bottom);
3370 SelectObject(dis->hDC, lastBrush);
3371 SelectObject(dis->hDC, lastPen);
3372 DeleteObject(hpen);
3373 }
3374 #endif /* _NO_EXTENSIONS */
3375 }
3376
3377
3378 #ifdef _NO_EXTENSIONS
3379
3380 static void draw_splitbar(HWND hwnd, int x)
3381 {
3382 RECT rt;
3383 HDC hdc = GetDC(hwnd);
3384
3385 GetClientRect(hwnd, &rt);
3386
3387 rt.left = x - SPLIT_WIDTH/2;
3388 rt.right = x + SPLIT_WIDTH/2+1;
3389
3390 InvertRect(hdc, &rt);
3391
3392 ReleaseDC(hwnd, hdc);
3393 }
3394
3395 #endif /* _NO_EXTENSIONS */
3396
3397
3398 #ifndef _NO_EXTENSIONS
3399
3400 static void set_header(Pane* pane)
3401 {
3402 HDITEMW item;
3403 int scroll_pos = GetScrollPos(pane->hwnd, SB_HORZ);
3404 int i=0, x=0;
3405
3406 item.mask = HDI_WIDTH;
3407 item.cxy = 0;
3408
3409 for(; x+pane->widths[i]<scroll_pos && i<COLUMNS; i++) {
3410 x += pane->widths[i];
3411 SendMessageW(pane->hwndHeader, HDM_SETITEMW, i, (LPARAM)&item);
3412 }
3413
3414 if (i < COLUMNS) {
3415 x += pane->widths[i];
3416 item.cxy = x - scroll_pos;
3417 SendMessageW(pane->hwndHeader, HDM_SETITEMW, i++, (LPARAM)&item);
3418
3419 for(; i<COLUMNS; i++) {
3420 item.cxy = pane->widths[i];
3421 x += pane->widths[i];
3422 SendMessageW(pane->hwndHeader, HDM_SETITEMW, i, (LPARAM)&item);
3423 }
3424 }
3425 }
3426
3427 static LRESULT pane_notify(Pane* pane, NMHDR* pnmh)
3428 {
3429 switch(pnmh->code) {
3430 case HDN_ITEMCHANGEDW: {
3431 LPNMHEADERW phdn = (LPNMHEADERW)pnmh;
3432 int idx = phdn->iItem;
3433 int dx = phdn->pitem->cxy - pane->widths[idx];
3434 int i;
3435
3436 RECT clnt;
3437 GetClientRect(pane->hwnd, &clnt);
3438
3439 pane->widths[idx] += dx;
3440
3441 for(i=idx; ++i<=COLUMNS; )
3442 pane->positions[i] += dx;
3443
3444 {
3445 int scroll_pos = GetScrollPos(pane->hwnd, SB_HORZ);
3446 RECT rt_scr;
3447 RECT rt_clip;
3448
3449 rt_scr.left = pane->positions[idx+1]-scroll_pos;
3450 rt_scr.top = 0;
3451 rt_scr.right = clnt.right;
3452 rt_scr.bottom = clnt.bottom;
3453
3454 rt_clip.left = pane->positions[idx]-scroll_pos;
3455 rt_clip.top = 0;
3456 rt_clip.right = clnt.right;
3457 rt_clip.bottom = clnt.bottom;
3458
3459 if (rt_scr.left < 0) rt_scr.left = 0;
3460 if (rt_clip.left < 0) rt_clip.left = 0;
3461
3462 ScrollWindowEx(pane->hwnd, dx, 0, &rt_scr, &rt_clip, 0, 0, SW_INVALIDATE);
3463
3464 rt_clip.right = pane->positions[idx+1];
3465 RedrawWindow(pane->hwnd, &rt_clip, 0, RDW_INVALIDATE|RDW_UPDATENOW);
3466
3467 if (pnmh->code == HDN_ENDTRACKW) {
3468 SendMessageW(pane->hwnd, LB_SETHORIZONTALEXTENT, pane->positions[COLUMNS], 0);
3469
3470 if (GetScrollPos(pane->hwnd, SB_HORZ) != scroll_pos)
3471 set_header(pane);
3472 }
3473 }
3474
3475 return FALSE;
3476 }
3477
3478 case HDN_DIVIDERDBLCLICKW: {
3479 LPNMHEADERW phdn = (LPNMHEADERW)pnmh;
3480 HDITEMW item;
3481
3482 calc_single_width(pane, phdn->iItem);
3483 item.mask = HDI_WIDTH;
3484 item.cxy = pane->widths[phdn->iItem];
3485
3486 SendMessageW(pane->hwndHeader, HDM_SETITEMW, phdn->iItem, (LPARAM)&item);
3487 InvalidateRect(pane->hwnd, 0, TRUE);
3488 break;}
3489 }
3490
3491 return 0;
3492 }
3493
3494 #endif /* _NO_EXTENSIONS */
3495
3496
3497 static void scan_entry(ChildWnd* child, Entry* entry, int idx, HWND hwnd)
3498 {
3499 WCHAR path[MAX_PATH];
3500 HCURSOR old_cursor = SetCursor(LoadCursorW(0, (LPCWSTR)IDC_WAIT));
3501
3502 /* delete sub entries in left pane */
3503 for(;;) {
3504 LRESULT res = SendMessageW(child->left.hwnd, LB_GETITEMDATA, idx+1, 0);
3505 Entry* sub = (Entry*) res;
3506
3507 if (res==LB_ERR || !sub || sub->level<=entry->level)
3508 break;
3509
3510 SendMessageW(child->left.hwnd, LB_DELETESTRING, idx+1, 0);
3511 }
3512
3513 /* empty right pane */
3514 SendMessageW(child->right.hwnd, LB_RESETCONTENT, 0, 0);
3515
3516 /* release memory */
3517 free_entries(entry);
3518
3519 /* read contents from disk */
3520 #ifdef _SHELL_FOLDERS
3521 if (entry->etype == ET_SHELL)
3522 {
3523 read_directory(entry, NULL, child->sortOrder, hwnd);
3524 }
3525 else
3526 #endif
3527 {
3528 get_path(entry, path);
3529 read_directory(entry, path, child->sortOrder, hwnd);
3530 }
3531
3532 /* insert found entries in right pane */
3533 insert_entries(&child->right, entry->down, child->filter_pattern, child->filter_flags, -1);
3534 calc_widths(&child->right, FALSE);
3535 #ifndef _NO_EXTENSIONS
3536 set_header(&child->right);
3537 #endif
3538
3539 child->header_wdths_ok = FALSE;
3540
3541 SetCursor(old_cursor);
3542 }
3543
3544
3545 /* expand a directory entry */
3546
3547 static BOOL expand_entry(ChildWnd* child, Entry* dir)
3548 {
3549 int idx;
3550 Entry* p;
3551
3552 if (!dir || dir->expanded || !dir->down)
3553 return FALSE;
3554
3555 p = dir->down;
3556
3557 if (p->data.cFileName[0]=='.' && p->data.cFileName[1]=='\0' && p->next) {
3558 p = p->next;
3559
3560 if (p->data.cFileName[0]=='.' && p->data.cFileName[1]=='.' &&
3561 p->data.cFileName[2]=='\0' && p->next)
3562 p = p->next;
3563 }
3564
3565 /* no subdirectories ? */
3566 if (!(p->data.dwFileAttributes&FILE_ATTRIBUTE_DIRECTORY))
3567 return FALSE;
3568
3569 idx = SendMessageW(child->left.hwnd, LB_FINDSTRING, 0, (LPARAM)dir);
3570
3571 dir->expanded = TRUE;
3572
3573 /* insert entries in left pane */
3574 insert_entries(&child->left, p, NULL, TF_ALL, idx);
3575
3576 if (!child->header_wdths_ok) {
3577 if (calc_widths(&child->left, FALSE)) {
3578 #ifndef _NO_EXTENSIONS
3579 set_header(&child->left);
3580 #endif
3581
3582 child->header_wdths_ok = TRUE;
3583 }
3584 }
3585
3586 return TRUE;
3587 }
3588
3589
3590 static void collapse_entry(Pane* pane, Entry* dir)
3591 {
3592 int idx = SendMessageW(pane->hwnd, LB_FINDSTRING, 0, (LPARAM)dir);
3593
3594 ShowWindow(pane->hwnd, SW_HIDE);
3595
3596 /* hide sub entries */
3597 for(;;) {
3598 LRESULT res = SendMessageW(pane->hwnd, LB_GETITEMDATA, idx+1, 0);
3599 Entry* sub = (Entry*) res;
3600
3601 if (res==LB_ERR || !sub || sub->level<=dir->level)
3602 break;
3603
3604 SendMessageW(pane->hwnd, LB_DELETESTRING, idx+1, 0);
3605 }
3606
3607 dir->expanded = FALSE;
3608
3609 ShowWindow(pane->hwnd, SW_SHOW);
3610 }
3611
3612
3613 static void refresh_right_pane(ChildWnd* child)
3614 {
3615 SendMessageW(child->right.hwnd, LB_RESETCONTENT, 0, 0);
3616 insert_entries(&child->right, child->right.root, child->filter_pattern, child->filter_flags, -1);
3617 calc_widths(&child->right, FALSE);
3618
3619 #ifndef _NO_EXTENSIONS
3620 set_header(&child->right);
3621 #endif
3622 }
3623
3624 static void set_curdir(ChildWnd* child, Entry* entry, int idx, HWND hwnd)
3625 {
3626 WCHAR path[MAX_PATH];
3627
3628 if (!entry)
3629 return;
3630
3631 path[0] = '\0';
3632
3633 child->left.cur = entry;
3634
3635 child->right.root = entry->down? entry->down: entry;
3636 child->right.cur = entry;
3637
3638 if (!entry->scanned)
3639 scan_entry(child, entry, idx, hwnd);
3640 else
3641 refresh_right_pane(child);
3642
3643 get_path(entry, path);
3644 lstrcpyW(child->path, path);
3645
3646 if (child->hwnd) /* only change window title, if the window already exists */
3647 SetWindowTextW(child->hwnd, path);
3648
3649 if (path[0])
3650 if (SetCurrentDirectoryW(path))
3651 set_space_status();
3652 }
3653
3654
3655 static void refresh_child(ChildWnd* child)
3656 {
3657 WCHAR path[MAX_PATH], drv[_MAX_DRIVE+1];
3658 Entry* entry;
3659 int idx;
3660
3661 get_path(child->left.cur, path);
3662 _wsplitpath(path, drv, NULL, NULL, NULL);
3663
3664 child->right.root = NULL;
3665
3666 scan_entry(child, &child->root.entry, 0, child->hwnd);
3667
3668 #ifdef _SHELL_FOLDERS
3669
3670 if (child->root.entry.etype == ET_SHELL)
3671 {
3672 LPITEMIDLIST local_pidl = get_path_pidl(path,child->hwnd);
3673 if (local_pidl)
3674 entry = read_tree(&child->root, NULL, local_pidl , drv, child->sortOrder, child->hwnd);
3675 else
3676 entry = NULL;
3677 }
3678 else
3679 #endif
3680 entry = read_tree(&child->root, path, NULL, drv, child->sortOrder, child->hwnd);
3681
3682 if (!entry)
3683 entry = &child->root.entry;
3684
3685 insert_entries(&child->left, child->root.entry.down, NULL, TF_ALL, 0);
3686
3687 set_curdir(child, entry, 0, child->hwnd);
3688
3689 idx = SendMessageW(child->left.hwnd, LB_FINDSTRING, 0, (LPARAM)child->left.cur);
3690 SendMessageW(child->left.hwnd, LB_SETCURSEL, idx, 0);
3691 }
3692
3693
3694 static void create_drive_bar(void)
3695 {
3696 TBBUTTON drivebarBtn = {0, 0, TBSTATE_ENABLED, BTNS_BUTTON, {0, 0}, 0, 0};
3697 #ifndef _NO_EXTENSIONS
3698 WCHAR b1[BUFFER_LEN];
3699 #endif
3700 int btn = 1;
3701 PWSTR p;
3702
3703 GetLogicalDriveStringsW(BUFFER_LEN, Globals.drives);
3704
3705 Globals.hdrivebar = CreateToolbarEx(Globals.hMainWnd, WS_CHILD|WS_VISIBLE|CCS_NOMOVEY|TBSTYLE_LIST,
3706 IDW_DRIVEBAR, 2, Globals.hInstance, IDB_DRIVEBAR, &drivebarBtn,
3707 0, 16, 13, 16, 13, sizeof(TBBUTTON));
3708
3709 #ifndef _NO_EXTENSIONS
3710 #ifdef __WINE__
3711 /* insert unix file system button */
3712 b1[0] = '/';
3713 b1[1] = '\0';
3714 b1[2] = '\0';
3715 SendMessageW(Globals.hdrivebar, TB_ADDSTRINGW, 0, (LPARAM)b1);
3716
3717 drivebarBtn.idCommand = ID_DRIVE_UNIX_FS;
3718 SendMessageW(Globals.hdrivebar, TB_INSERTBUTTONW, btn++, (LPARAM)&drivebarBtn);
3719 drivebarBtn.iString++;
3720 #endif
3721 #ifdef _SHELL_FOLDERS
3722 /* insert shell namespace button */
3723 load_string(b1, sizeof(b1)/sizeof(b1[0]), IDS_SHELL);
3724 b1[lstrlenW(b1)+1] = '\0';
3725 SendMessageW(Globals.hdrivebar, TB_ADDSTRINGW, 0, (LPARAM)b1);
3726
3727 drivebarBtn.idCommand = ID_DRIVE_SHELL_NS;
3728 SendMessageW(Globals.hdrivebar, TB_INSERTBUTTONW, btn++, (LPARAM)&drivebarBtn);
3729 drivebarBtn.iString++;
3730 #endif
3731
3732 /* register windows drive root strings */
3733 SendMessageW(Globals.hdrivebar, TB_ADDSTRINGW, 0, (LPARAM)Globals.drives);
3734 #endif
3735
3736 drivebarBtn.idCommand = ID_DRIVE_FIRST;
3737
3738 for(p=Globals.drives; *p; ) {
3739 #ifdef _NO_EXTENSIONS
3740 /* insert drive letter */
3741 WCHAR b[3] = {tolower(*p)};
3742 SendMessageW(Globals.hdrivebar, TB_ADDSTRINGW, 0, (LPARAM)b);
3743 #endif
3744 switch(GetDriveTypeW(p)) {
3745 case DRIVE_REMOVABLE: drivebarBtn.iBitmap = 1; break;
3746 case DRIVE_CDROM: drivebarBtn.iBitmap = 3; break;
3747 case DRIVE_REMOTE: drivebarBtn.iBitmap = 4; break;
3748 case DRIVE_RAMDISK: drivebarBtn.iBitmap = 5; break;
3749 default:/*DRIVE_FIXED*/ drivebarBtn.iBitmap = 2;
3750 }
3751
3752 SendMessageW(Globals.hdrivebar, TB_INSERTBUTTONW, btn++, (LPARAM)&drivebarBtn);
3753 drivebarBtn.idCommand++;
3754 drivebarBtn.iString++;
3755
3756 while(*p++);
3757 }
3758 }
3759
3760 static void refresh_drives(void)
3761 {
3762 RECT rect;
3763
3764 /* destroy drive bar */
3765 DestroyWindow(Globals.hdrivebar);
3766 Globals.hdrivebar = 0;
3767
3768 /* re-create drive bar */
3769 create_drive_bar();
3770
3771 /* update window layout */
3772 GetClientRect(Globals.hMainWnd, &rect);
3773 SendMessageW(Globals.hMainWnd, WM_SIZE, 0, MAKELONG(rect.right, rect.bottom));
3774 }
3775
3776
3777 static BOOL launch_file(HWND hwnd, LPCWSTR cmd, UINT nCmdShow)
3778 {
3779 HINSTANCE hinst = ShellExecuteW(hwnd, NULL/*operation*/, cmd, NULL/*parameters*/, NULL/*dir*/, nCmdShow);
3780
3781 if (PtrToUlong(hinst) <= 32) {
3782 display_error(hwnd, GetLastError());
3783 return FALSE;
3784 }
3785
3786 return TRUE;
3787 }
3788
3789
3790 static BOOL launch_entry(Entry* entry, HWND hwnd, UINT nCmdShow)
3791 {
3792 WCHAR cmd[MAX_PATH];
3793
3794 #ifdef _SHELL_FOLDERS
3795 if (entry->etype == ET_SHELL) {
3796 BOOL ret = TRUE;
3797
3798 SHELLEXECUTEINFOW shexinfo;
3799
3800 shexinfo.cbSize = sizeof(SHELLEXECUTEINFOW);
3801 shexinfo.fMask = SEE_MASK_IDLIST;
3802 shexinfo.hwnd = hwnd;
3803 shexinfo.lpVerb = NULL;
3804 shexinfo.lpFile = NULL;
3805 shexinfo.lpParameters = NULL;
3806 shexinfo.lpDirectory = NULL;
3807 shexinfo.nShow = nCmdShow;
3808 shexinfo.lpIDList = get_to_absolute_pidl(entry, hwnd);
3809
3810 if (!ShellExecuteExW(&shexinfo)) {
3811 display_error(hwnd, GetLastError());
3812 ret = FALSE;
3813 }
3814
3815 if (shexinfo.lpIDList != entry->pidl)
3816 IMalloc_Free(Globals.iMalloc, shexinfo.lpIDList);
3817
3818 return ret;
3819 }
3820 #endif
3821
3822 get_path(entry, cmd);
3823
3824 /* start program, open document... */
3825 return launch_file(hwnd, cmd, nCmdShow);
3826 }
3827
3828
3829 static void activate_entry(ChildWnd* child, Pane* pane, HWND hwnd)
3830 {
3831 Entry* entry = pane->cur;
3832
3833 if (!entry)
3834 return;
3835
3836 if (entry->data.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) {
3837 int scanned_old = entry->scanned;
3838
3839 if (!scanned_old)
3840 {
3841 int idx = SendMessageW(child->left.hwnd, LB_GETCURSEL, 0, 0);
3842 scan_entry(child, entry, idx, hwnd);
3843 }
3844
3845 #ifndef _NO_EXTENSIONS
3846 if (entry->data.cFileName[0]=='.' && entry->data.cFileName[1]=='\0')
3847 return;
3848 #endif
3849
3850 if (entry->data.cFileName[0]=='.' && entry->data.cFileName[1]=='.' && entry->data.cFileName[2]=='\0') {
3851 entry = child->left.cur->up;
3852 collapse_entry(&child->left, entry);
3853 goto focus_entry;
3854 } else if (entry->expanded)
3855 collapse_entry(pane, child->left.cur);
3856 else {
3857 expand_entry(child, child->left.cur);
3858
3859 if (!pane->treePane) focus_entry: {
3860 int idxstart = SendMessageW(child->left.hwnd, LB_GETCURSEL, 0, 0);
3861 int idx = SendMessageW(child->left.hwnd, LB_FINDSTRING, idxstart, (LPARAM)entry);
3862 SendMessageW(child->left.hwnd, LB_SETCURSEL, idx, 0);
3863 set_curdir(child, entry, idx, hwnd);
3864 }
3865 }
3866
3867 if (!scanned_old) {
3868 calc_widths(pane, FALSE);
3869
3870 #ifndef _NO_EXTENSIONS
3871 set_header(pane);
3872 #endif
3873 }
3874 } else {
3875 if (GetKeyState(VK_MENU) < 0)
3876 show_properties_dlg(entry, child->hwnd);
3877 else
3878 launch_entry(entry, child->hwnd, SW_SHOWNORMAL);
3879 }
3880 }
3881
3882
3883 static BOOL pane_command(Pane* pane, UINT cmd)
3884 {
3885 switch(cmd) {
3886 case ID_VIEW_NAME:
3887 if (pane->visible_cols) {
3888 pane->visible_cols = 0;
3889 calc_widths(pane, TRUE);
3890 #ifndef _NO_EXTENSIONS
3891 set_header(pane);
3892 #endif
3893 InvalidateRect(pane->hwnd, 0, TRUE);
3894 CheckMenuItem(Globals.hMenuView, ID_VIEW_NAME, MF_BYCOMMAND|MF_CHECKED);
3895 CheckMenuItem(Globals.hMenuView, ID_VIEW_ALL_ATTRIBUTES, MF_BYCOMMAND);
3896 CheckMenuItem(Globals.hMenuView, ID_VIEW_SELECTED_ATTRIBUTES, MF_BYCOMMAND);
3897 }
3898 break;
3899
3900 case ID_VIEW_ALL_ATTRIBUTES:
3901 if (pane->visible_cols != COL_ALL) {
3902 pane->visible_cols = COL_ALL;
3903 calc_widths(pane, TRUE);
3904 #ifndef _NO_EXTENSIONS
3905 set_header(pane);
3906 #endif
3907 InvalidateRect(pane->hwnd, 0, TRUE);
3908 CheckMenuItem(Globals.hMenuView, ID_VIEW_NAME, MF_BYCOMMAND);
3909 CheckMenuItem(Globals.hMenuView, ID_VIEW_ALL_ATTRIBUTES, MF_BYCOMMAND|MF_CHECKED);
3910 CheckMenuItem(Globals.hMenuView, ID_VIEW_SELECTED_ATTRIBUTES, MF_BYCOMMAND);
3911 }
3912 break;
3913
3914 #ifndef _NO_EXTENSIONS
3915 case ID_PREFERRED_SIZES: {
3916 calc_widths(pane, TRUE);
3917 set_header(pane);
3918 InvalidateRect(pane->hwnd, 0, TRUE);
3919 break;}
3920 #endif
3921
3922 /* TODO: more command ids... */
3923
3924 default:
3925 return FALSE;
3926 }
3927
3928 return TRUE;
3929 }
3930
3931
3932 static void set_sort_order(ChildWnd* child, SORT_ORDER sortOrder)
3933 {
3934 if (child->sortOrder != sortOrder) {
3935 child->sortOrder = sortOrder;
3936 refresh_child(child);
3937 }
3938 }
3939
3940 static void update_view_menu(ChildWnd* child)
3941 {
3942 CheckMenuItem(Globals.hMenuView, ID_VIEW_SORT_NAME, child->sortOrder==SORT_NAME? MF_CHECKED: MF_UNCHECKED);
3943 CheckMenuItem(Globals.hMenuView, ID_VIEW_SORT_TYPE, child->sortOrder==SORT_EXT? MF_CHECKED: MF_UNCHECKED);
3944 CheckMenuItem(Globals.hMenuView, ID_VIEW_SORT_SIZE, child->sortOrder==SORT_SIZE? MF_CHECKED: MF_UNCHECKED);
3945 CheckMenuItem(Globals.hMenuView, ID_VIEW_SORT_DATE, child->sortOrder==SORT_DATE? MF_CHECKED: MF_UNCHECKED);
3946 }
3947
3948
3949 static BOOL is_directory(LPCWSTR target)
3950 {
3951 /*TODO correctly handle UNIX paths */
3952 DWORD target_attr = GetFileAttributesW(target);
3953
3954 if (target_attr == INVALID_FILE_ATTRIBUTES)
3955 return FALSE;
3956
3957 return target_attr&FILE_ATTRIBUTE_DIRECTORY? TRUE: FALSE;
3958 }
3959
3960 static BOOL prompt_target(Pane* pane, LPWSTR source, LPWSTR target)
3961 {
3962 WCHAR path[MAX_PATH];
3963 int len;
3964
3965 get_path(pane->cur, path);
3966
3967 if (DialogBoxParamW(Globals.hInstance, MAKEINTRESOURCEW(IDD_SELECT_DESTINATION), pane->hwnd, DestinationDlgProc, (LPARAM)path) != IDOK)
3968 return FALSE;
3969
3970 get_path(pane->cur, source);
3971
3972 /* convert relative targets to absolute paths */
3973 if (path[0]!='/' && path[1]!=':') {
3974 get_path(pane->cur->up, target);
3975 len = lstrlenW(target);
3976
3977 if (target[len-1]!='\\' && target[len-1]!='/')
3978 target[len++] = '/';
3979
3980 lstrcpyW(target+len, path);
3981 } else
3982 lstrcpyW(target, path);
3983
3984 /* If the target already exists as directory, create a new target below this. */
3985 if (is_directory(path)) {
3986 WCHAR fname[_MAX_FNAME], ext[_MAX_EXT];
3987 static const WCHAR sAppend[] = {'%','s','/','%','s','%','s','\0'};
3988
3989 _wsplitpath(source, NULL, NULL, fname, ext);
3990
3991 wsprintfW(target, sAppend, path, fname, ext);
3992 }
3993
3994 return TRUE;
3995 }
3996
3997
3998 static IContextMenu2* s_pctxmenu2 = NULL;
3999 static IContextMenu3* s_pctxmenu3 = NULL;
4000
4001 static void CtxMenu_reset(void)
4002 {
4003 s_pctxmenu2 = NULL;
4004 s_pctxmenu3 = NULL;
4005 }
4006
4007 static IContextMenu* CtxMenu_query_interfaces(IContextMenu* pcm1)
4008 {
4009 IContextMenu* pcm = NULL;
4010
4011 CtxMenu_reset();
4012
4013 if (IContextMenu_QueryInterface(pcm1, &IID_IContextMenu3, (void**)&pcm) == NOERROR)
4014 s_pctxmenu3 = (LPCONTEXTMENU3)pcm;
4015 else if (IContextMenu_QueryInterface(pcm1, &IID_IContextMenu2, (void**)&pcm) == NOERROR)
4016 s_pctxmenu2 = (LPCONTEXTMENU2)pcm;
4017
4018 if (pcm) {
4019 IContextMenu_Release(pcm1);
4020 return pcm;
4021 } else
4022 return pcm1;
4023 }
4024
4025 static BOOL CtxMenu_HandleMenuMsg(UINT nmsg, WPARAM wparam, LPARAM lparam)
4026 {
4027 if (s_pctxmenu3) {
4028 if (SUCCEEDED(IContextMenu3_HandleMenuMsg(s_pctxmenu3, nmsg, wparam, lparam)))
4029 return TRUE;
4030 }
4031
4032 if (s_pctxmenu2)
4033 if (SUCCEEDED(IContextMenu2_HandleMenuMsg(s_pctxmenu2, nmsg, wparam, lparam)))
4034 return TRUE;
4035
4036 return FALSE;
4037 }
4038
4039
4040 static HRESULT ShellFolderContextMenu(IShellFolder* shell_folder, HWND hwndParent, int cidl, LPCITEMIDLIST* apidl, int x, int y)
4041 {
4042 IContextMenu* pcm;
4043 BOOL executed = FALSE;
4044
4045 HRESULT hr = IShellFolder_GetUIObjectOf(shell_folder, hwndParent, cidl, apidl, &IID_IContextMenu, NULL, (LPVOID*)&pcm);
4046 /* HRESULT hr = CDefFolderMenu_Create2(dir?dir->_pidl:DesktopFolder(), hwndParent, 1, &pidl, shell_folder, NULL, 0, NULL, &pcm); */
4047
4048 if (SUCCEEDED(hr)) {
4049 HMENU hmenu = CreatePopupMenu();
4050
4051 pcm = CtxMenu_query_interfaces(pcm);
4052
4053 if (hmenu) {
4054 hr = IContextMenu_QueryContextMenu(pcm, hmenu, 0, FCIDM_SHVIEWFIRST, FCIDM_SHVIEWLAST, CMF_NORMAL);
4055
4056 if (SUCCEEDED(hr)) {
4057 UINT idCmd = TrackPopupMenu(hmenu, TPM_LEFTALIGN|TPM_RETURNCMD|TPM_RIGHTBUTTON, x, y, 0, hwndParent, NULL);
4058
4059 CtxMenu_reset();
4060
4061 if (idCmd) {
4062 CMINVOKECOMMANDINFO cmi;
4063
4064 cmi.cbSize = sizeof(CMINVOKECOMMANDINFO);
4065 cmi.fMask = 0;
4066 cmi.hwnd = hwndParent;
4067 cmi.lpVerb = (LPCSTR)(INT_PTR)(idCmd - FCIDM_SHVIEWFIRST);
4068 cmi.lpParameters = NULL;
4069 cmi.lpDirectory = NULL;
4070 cmi.nShow = SW_SHOWNORMAL;
4071 cmi.dwHotKey = 0;
4072 cmi.hIcon = 0;
4073
4074 hr = IContextMenu_InvokeCommand(pcm, &cmi);
4075 executed = TRUE;
4076 }
4077 } else
4078 CtxMenu_reset();
4079 }
4080
4081 IContextMenu_Release(pcm);
4082 }
4083
4084 return FAILED(hr)? hr: executed? S_OK: S_FALSE;
4085 }
4086
4087
4088 static LRESULT CALLBACK ChildWndProc(HWND hwnd, UINT nmsg, WPARAM wparam, LPARAM lparam)
4089 {
4090 ChildWnd* child = (ChildWnd*)GetWindowLongPtrW(hwnd, GWLP_USERDATA);
4091 ASSERT(child);
4092
4093 switch(nmsg) {
4094 case WM_DRAWITEM: {
4095 LPDRAWITEMSTRUCT dis = (LPDRAWITEMSTRUCT)lparam;
4096 Entry* entry = (Entry*) dis->itemData;
4097
4098 if (dis->CtlID == IDW_TREE_LEFT)
4099 draw_item(&child->left, dis, entry, -1);
4100 else if (dis->CtlID == IDW_TREE_RIGHT)
4101 draw_item(&child->right, dis, entry, -1);
4102 else
4103 goto draw_menu_item;
4104
4105 return TRUE;}
4106
4107 case WM_CREATE:
4108 InitChildWindow(child);
4109 break;
4110
4111 case WM_NCDESTROY:
4112 free_child_window(child);
4113 SetWindowLongPtrW(hwnd, GWLP_USERDATA, 0);
4114 break;
4115
4116 case WM_PAINT: {
4117 PAINTSTRUCT ps;
4118 HBRUSH lastBrush;
4119 RECT rt;
4120 GetClientRect(hwnd, &rt);
4121 BeginPaint(hwnd, &ps);
4122 rt.left = child->split_pos-SPLIT_WIDTH/2;
4123 rt.right = child->split_pos+SPLIT_WIDTH/2+1;
4124 lastBrush = SelectObject(ps.hdc, GetStockObject(COLOR_SPLITBAR));
4125 Rectangle(ps.hdc, rt.left, rt.top-1, rt.right, rt.bottom+1);
4126 SelectObject(ps.hdc, lastBrush);
4127 #ifdef _NO_EXTENSIONS
4128 rt.top = rt.bottom - GetSystemMetrics(SM_CYHSCROLL);
4129 FillRect(ps.hdc, &rt, GetStockObject(BLACK_BRUSH));
4130 #endif
4131 EndPaint(hwnd, &ps);
4132 break;}
4133
4134 case WM_SETCURSOR:
4135 if (LOWORD(lparam) == HTCLIENT) {
4136 POINT pt;
4137 GetCursorPos(&pt);
4138 ScreenToClient(hwnd, &pt);
4139
4140 if (pt.x>=child->split_pos-SPLIT_WIDTH/2 && pt.x<child->split_pos+SPLIT_WIDTH/2+1) {
4141 SetCursor(LoadCursorW(0, (LPCWSTR)IDC_SIZEWE));
4142 return TRUE;
4143 }
4144 }
4145 goto def;
4146
4147 case WM_LBUTTONDOWN: {
4148 RECT rt;
4149 int x = (short)LOWORD(lparam);
4150
4151 GetClientRect(hwnd, &rt);
4152
4153 if (x>=child->split_pos-SPLIT_WIDTH/2 && x<child->split_pos+SPLIT_WIDTH/2+1) {
4154 last_split = child->split_pos;
4155 #ifdef _NO_EXTENSIONS
4156 draw_splitbar(hwnd, last_split);
4157 #endif
4158 SetCapture(hwnd);
4159 }
4160
4161 break;}
4162
4163 case WM_LBUTTONUP:
4164 if (GetCapture() == hwnd) {
4165 #ifdef _NO_EXTENSIONS
4166 RECT rt;
4167 int x = (short)LOWORD(lparam);
4168 draw_splitbar(hwnd, last_split);
4169 last_split = -1;
4170 GetClientRect(hwnd, &rt);
4171 child->split_pos = x;
4172 resize_tree(child, rt.right, rt.bottom);
4173 #endif
4174 ReleaseCapture();
4175 }
4176 break;
4177
4178 #ifdef _NO_EXTENSIONS
4179 case WM_CAPTURECHANGED:
4180 if (GetCapture()==hwnd && last_split>=0)
4181 draw_splitbar(hwnd, last_split);
4182 break;
4183 #endif
4184
4185 case WM_KEYDOWN:
4186 if (wparam == VK_ESCAPE)
4187 if (GetCapture() == hwnd) {
4188 RECT rt;
4189 #ifdef _NO_EXTENSIONS
4190 draw_splitbar(hwnd, last_split);
4191 #else
4192 child->split_pos = last_split;
4193 #endif
4194 GetClientRect(hwnd, &rt);
4195 resize_tree(child, rt.right, rt.bottom);
4196 last_split = -1;
4197 ReleaseCapture();
4198 SetCursor(LoadCursorW(0, (LPCWSTR)IDC_ARROW));
4199 }
4200 break;
4201
4202 case WM_MOUSEMOVE:
4203 if (GetCapture() == hwnd) {
4204 RECT rt;
4205 int x = (short)LOWORD(lparam);
4206
4207 #ifdef _NO_EXTENSIONS
4208 HDC hdc = GetDC(hwnd);
4209 GetClientRect(hwnd, &rt);
4210
4211 rt.left = last_split-SPLIT_WIDTH/2;
4212 rt.right = last_split+SPLIT_WIDTH/2+1;
4213 InvertRect(hdc, &rt);
4214
4215 last_split = x;
4216 rt.left = x-SPLIT_WIDTH/2;
4217 rt.right = x+SPLIT_WIDTH/2+1;
4218 InvertRect(hdc, &rt);
4219
4220 ReleaseDC(hwnd, hdc);
4221 #else
4222 GetClientRect(hwnd, &rt);
4223
4224 if (x>=0 && x<rt.right) {
4225 child->split_pos = x;
4226 resize_tree(child, rt.right, rt.bottom);
4227 rt.left = x-SPLIT_WIDTH/2;
4228 rt.right = x+SPLIT_WIDTH/2+1;
4229 InvalidateRect(hwnd, &rt, FALSE);
4230 UpdateWindow(child->left.hwnd);
4231 UpdateWindow(hwnd);
4232 UpdateWindow(child->right.hwnd);
4233 }
4234 #endif
4235 }
4236 break;
4237
4238 #ifndef _NO_EXTENSIONS
4239 case WM_GETMINMAXINFO:
4240 DefMDIChildProcW(hwnd, nmsg, wparam, lparam);
4241
4242 {LPMINMAXINFO lpmmi = (LPMINMAXINFO)lparam;
4243
4244 lpmmi->ptMaxTrackSize.x <<= 1;/*2*GetSystemMetrics(SM_CXSCREEN) / SM_CXVIRTUALSCREEN */
4245 lpmmi->ptMaxTrackSize.y <<= 1;/*2*GetSystemMetrics(SM_CYSCREEN) / SM_CYVIRTUALSCREEN */
4246 break;}
4247 #endif /* _NO_EXTENSIONS */
4248
4249 case WM_SETFOCUS:
4250 if (SetCurrentDirectoryW(child->path))
4251 set_space_status();
4252 SetFocus(child->focus_pane? child->right.hwnd: child->left.hwnd);
4253 break;
4254
4255 case WM_DISPATCH_COMMAND: {
4256 Pane* pane = GetFocus()==child->left.hwnd? &child->left: &child->right;
4257
4258 switch(LOWORD(wparam)) {
4259 case ID_WINDOW_NEW: {
4260 ChildWnd* new_child = alloc_child_window(child->path, NULL, hwnd);
4261
4262 if (!create_child_window(new_child))
4263 HeapFree(GetProcessHeap(), 0, new_child);
4264
4265 break;}
4266
4267 case ID_REFRESH:
4268 refresh_drives();
4269 refresh_child(child);
4270 break;
4271
4272 case ID_ACTIVATE:
4273 activate_entry(child, pane, hwnd);
4274 break;
4275
4276 case ID_FILE_MOVE: {
4277 WCHAR source[BUFFER_LEN], target[BUFFER_LEN];
4278
4279 if (prompt_target(pane, source, target)) {
4280 SHFILEOPSTRUCTW shfo = {hwnd, FO_MOVE, source, target};
4281
4282 source[lstrlenW(source)+1] = '\0';
4283 target[lstrlenW(target)+1] = '\0';
4284
4285 if (!SHFileOperationW(&shfo))
4286 refresh_child(child);
4287 }
4288 break;}
4289
4290 case ID_FILE_COPY: {
4291 WCHAR source[BUFFER_LEN], target[BUFFER_LEN];
4292
4293 if (prompt_target(pane, source, target)) {
4294 SHFILEOPSTRUCTW shfo = {hwnd, FO_COPY, source, target};
4295
4296 source[lstrlenW(source)+1] = '\0';
4297 target[lstrlenW(target)+1] = '\0';
4298
4299 if (!SHFileOperationW(&shfo))
4300 refresh_child(child);
4301 }
4302 break;}
4303
4304 case ID_FILE_DELETE: {
4305 WCHAR path[BUFFER_LEN];
4306 SHFILEOPSTRUCTW shfo = {hwnd, FO_DELETE, path, NULL, FOF_ALLOWUNDO};
4307
4308 get_path(pane->cur, path);
4309
4310 path[lstrlenW(path)+1] = '\0';
4311
4312 if (!SHFileOperationW(&shfo))
4313 refresh_child(child);
4314 break;}
4315
4316 case ID_VIEW_SORT_NAME:
4317 set_sort_order(child, SORT_NAME);
4318 break;
4319
4320 case ID_VIEW_SORT_TYPE:
4321 set_sort_order(child, SORT_EXT);
4322 break;
4323
4324 case ID_VIEW_SORT_SIZE:
4325 set_sort_order(child, SORT_SIZE);
4326 break;
4327
4328 case ID_VIEW_SORT_DATE:
4329 set_sort_order(child, SORT_DATE);
4330 break;
4331
4332 case ID_VIEW_FILTER: {
4333 struct FilterDialog dlg;
4334
4335 memset(&dlg, 0, sizeof(struct FilterDialog));
4336 lstrcpyW(dlg.pattern, child->filter_pattern);
4337 dlg.flags = child->filter_flags;
4338
4339 if (DialogBoxParamW(Globals.hInstance, MAKEINTRESOURCEW(IDD_DIALOG_VIEW_TYPE), hwnd, FilterDialogDlgProc, (LPARAM)&dlg) == IDOK) {
4340 lstrcpyW(child->filter_pattern, dlg.pattern);
4341 child->filter_flags = dlg.flags;
4342 refresh_right_pane(child);
4343 }
4344 break;}
4345
4346 case ID_VIEW_SPLIT: {
4347 last_split = child->split_pos;
4348 #ifdef _NO_EXTENSIONS
4349 draw_splitbar(hwnd, last_split);
4350 #endif
4351 SetCapture(hwnd);
4352 break;}
4353
4354 case ID_EDIT_PROPERTIES:
4355 show_properties_dlg(pane->cur, child->hwnd);
4356 break;
4357
4358 default:
4359 return pane_command(pane, LOWORD(wparam));
4360 }
4361
4362 return TRUE;}
4363
4364 case WM_COMMAND: {
4365 Pane* pane = GetFocus()==child->left.hwnd? &child->left: &child->right;
4366
4367 switch(HIWORD(wparam)) {
4368 case LBN_SELCHANGE: {
4369 int idx = SendMessageW(pane->hwnd, LB_GETCURSEL, 0, 0);
4370 Entry* entry = (Entry*)SendMessageW(pane->hwnd, LB_GETITEMDATA, idx, 0);
4371
4372 if (pane == &child->left)
4373 set_curdir(child, entry, idx, hwnd);
4374 else
4375 pane->cur = entry;
4376 break;}
4377
4378 case LBN_DBLCLK:
4379 activate_entry(child, pane, hwnd);
4380 break;
4381 }
4382 break;}
4383
4384 #ifndef _NO_EXTENSIONS
4385 case WM_NOTIFY: {
4386 NMHDR* pnmh = (NMHDR*) lparam;
4387 return pane_notify(pnmh->idFrom==IDW_HEADER_LEFT? &child->left: &child->right, pnmh);}
4388 #endif
4389
4390 #ifdef _SHELL_FOLDERS
4391 case WM_CONTEXTMENU: {
4392 POINT pt, pt_clnt;
4393 Pane* pane;
4394 int idx;
4395
4396 /* first select the current item in the listbox */
4397 HWND hpanel = (HWND) wparam;
4398 pt_clnt.x = pt.x = (short)LOWORD(lparam);
4399 pt_clnt.y = pt.y = (short)HIWORD(lparam);
4400 ScreenToClient(hpanel, &pt_clnt);
4401 SendMessageW(hpanel, WM_LBUTTONDOWN, 0, MAKELONG(pt_clnt.x, pt_clnt.y));
4402 SendMessageW(hpanel, WM_LBUTTONUP, 0, MAKELONG(pt_clnt.x, pt_clnt.y));
4403
4404 /* now create the popup menu using shell namespace and IContextMenu */
4405 pane = GetFocus()==child->left.hwnd? &child->left: &child->right;
4406 idx = SendMessageW(pane->hwnd, LB_GETCURSEL, 0, 0);
4407
4408 if (idx != -1) {
4409 Entry* entry = (Entry*)SendMessageW(pane->hwnd, LB_GETITEMDATA, idx, 0);
4410
4411 LPITEMIDLIST pidl_abs = get_to_absolute_pidl(entry, hwnd);
4412
4413 if (pidl_abs) {
4414 IShellFolder* parentFolder;
4415 LPCITEMIDLIST pidlLast;
4416
4417 /* get and use the parent folder to display correct context menu in all cases */
4418 if (SUCCEEDED(SHBindToParent(pidl_abs, &IID_IShellFolder, (LPVOID*)&parentFolder, &pidlLast))) {
4419 if (ShellFolderContextMenu(parentFolder, hwnd, 1, &pidlLast, pt.x, pt.y) == S_OK)
4420 refresh_child(child);
4421
4422 IShellFolder_Release(parentFolder);
4423 }
4424
4425 IMalloc_Free(Globals.iMalloc, pidl_abs);
4426 }
4427 }
4428 break;}
4429 #endif
4430
4431 case WM_MEASUREITEM:
4432 draw_menu_item:
4433 if (!wparam) /* Is the message menu-related? */
4434 if (CtxMenu_HandleMenuMsg(nmsg, wparam, lparam))
4435 return TRUE;
4436
4437 break;
4438
4439 case WM_INITMENUPOPUP:
4440 if (CtxMenu_HandleMenuMsg(nmsg, wparam, lparam))
4441 return 0;
4442
4443 update_view_menu(child);
4444 break;
4445
4446 case WM_MENUCHAR: /* only supported by IContextMenu3 */
4447 if (s_pctxmenu3) {
4448 LRESULT lResult = 0;
4449
4450 IContextMenu3_HandleMenuMsg2(s_pctxmenu3, nmsg, wparam, lparam, &lResult);
4451
4452 return lResult;
4453 }
4454
4455 break;
4456
4457 case WM_SIZE:
4458 if (wparam != SIZE_MINIMIZED)
4459 resize_tree(child, LOWORD(lparam), HIWORD(lparam));
4460 /* fall through */
4461
4462 default: def:
4463 return DefMDIChildProcW(hwnd, nmsg, wparam, lparam);
4464 }
4465
4466 return 0;
4467 }
4468
4469
4470 static LRESULT CALLBACK TreeWndProc(HWND hwnd, UINT nmsg, WPARAM wparam, LPARAM lparam)
4471 {
4472 ChildWnd* child = (ChildWnd*)GetWindowLongPtrW(GetParent(hwnd), GWLP_USERDATA);
4473 Pane* pane = (Pane*)GetWindowLongPtrW(hwnd, GWLP_USERDATA);
4474 ASSERT(child);
4475
4476 switch(nmsg) {
4477 #ifndef _NO_EXTENSIONS
4478 case WM_HSCROLL:
4479 set_header(pane);
4480 break;
4481 #endif
4482
4483 case WM_SETFOCUS:
4484 child->focus_pane = pane==&child->right? 1: 0;
4485 SendMessageW(hwnd, LB_SETSEL, TRUE, 1);
4486 /*TODO: check menu items */
4487 break;
4488
4489 case WM_KEYDOWN:
4490 if (wparam == VK_TAB) {
4491 /*TODO: SetFocus(Globals.hdrivebar) */
4492 SetFocus(child->focus_pane? child->left.hwnd: child->right.hwnd);
4493 }
4494 }
4495
4496 return CallWindowProcW(g_orgTreeWndProc, hwnd, nmsg, wparam, lparam);
4497 }
4498
4499
4500 static void InitInstance(HINSTANCE hinstance)
4501 {
4502 static const WCHAR sFont[] = {'M','i','c','r','o','s','o','f','t',' ','S','a','n','s',' ','S','e','r','i','f','\0'};
4503
4504 WNDCLASSEXW wcFrame;
4505 WNDCLASSW wcChild;
4506 int col;
4507
4508 INITCOMMONCONTROLSEX icc = {
4509 sizeof(INITCOMMONCONTROLSEX),
4510 ICC_BAR_CLASSES
4511 };
4512
4513 HDC hdc = GetDC(0);
4514
4515 setlocale(LC_COLLATE, ""); /* set collating rules to local settings for compareName */
4516
4517 InitCommonControlsEx(&icc);
4518
4519
4520 /* register frame window class */
4521
4522 wcFrame.cbSize = sizeof(WNDCLASSEXW);
4523 wcFrame.style = 0;
4524 wcFrame.lpfnWndProc = FrameWndProc;
4525 wcFrame.cbClsExtra = 0;
4526 wcFrame.cbWndExtra = 0;
4527 wcFrame.hInstance = hinstance;
4528 wcFrame.hIcon = LoadIconW(hinstance, MAKEINTRESOURCEW(IDI_WINEFILE));
4529 wcFrame.hCursor = LoadCursorW(0, (LPCWSTR)IDC_ARROW);
4530 wcFrame.hbrBackground = 0;
4531 wcFrame.lpszMenuName = 0;
4532 wcFrame.lpszClassName = sWINEFILEFRAME;
4533 wcFrame.hIconSm = LoadImageW(hinstance, MAKEINTRESOURCEW(IDI_WINEFILE), IMAGE_ICON, GetSystemMetrics(SM_CXSMICON), GetSystemMetrics(SM_CYSMICON), LR_SHARED);
4534
4535 Globals.hframeClass = RegisterClassExW(&wcFrame);
4536
4537
4538 /* register tree windows class */
4539
4540 wcChild.style = CS_CLASSDC|CS_DBLCLKS|CS_VREDRAW;
4541 wcChild.lpfnWndProc = ChildWndProc;
4542 wcChild.cbClsExtra = 0;
4543 wcChild.cbWndExtra = 0;
4544 wcChild.hInstance = hinstance;
4545 wcChild.hIcon = 0;
4546 wcChild.hCursor = LoadCursorW(0, (LPCWSTR)IDC_ARROW);
4547 wcChild.hbrBackground = 0;
4548 wcChild.lpszMenuName = 0;
4549 wcChild.lpszClassName = sWINEFILETREE;
4550
4551 RegisterClassW(&wcChild);
4552
4553
4554 Globals.haccel = LoadAcceleratorsW(hinstance, MAKEINTRESOURCEW(IDA_WINEFILE));
4555
4556 Globals.hfont = CreateFontW(-MulDiv(8,GetDeviceCaps(hdc,LOGPIXELSY),72), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, sFont);
4557
4558 ReleaseDC(0, hdc);
4559
4560 Globals.hInstance = hinstance;
4561
4562 #ifdef _SHELL_FOLDERS
4563 CoInitialize(NULL);
4564 CoGetMalloc(MEMCTX_TASK, &Globals.iMalloc);
4565 SHGetDesktopFolder(&Globals.iDesktop);
4566 Globals.cfStrFName = RegisterClipboardFormatW(CFSTR_FILENAMEW);
4567 #endif
4568
4569 /* load column strings */
4570 col = 1;
4571
4572 load_string(g_pos_names[col++], sizeof(g_pos_names[col])/sizeof(g_pos_names[col][0]), IDS_COL_NAME);
4573 load_string(g_pos_names[col++], sizeof(g_pos_names[col])/sizeof(g_pos_names[col][0]), IDS_COL_SIZE);
4574 load_string(g_pos_names[col++], sizeof(g_pos_names[col])/sizeof(g_pos_names[col][0]), IDS_COL_CDATE);
4575 #ifndef _NO_EXTENSIONS
4576 load_string(g_pos_names[col++], sizeof(g_pos_names[col])/sizeof(g_pos_names[col][0]), IDS_COL_ADATE);
4577 load_string(g_pos_names[col++], sizeof(g_pos_names[col])/sizeof(g_pos_names[col][0]), IDS_COL_MDATE);
4578 load_string(g_pos_names[col++], sizeof(g_pos_names[col])/sizeof(g_pos_names[col][0]), IDS_COL_IDX);
4579 load_string(g_pos_names[col++], sizeof(g_pos_names[col])/sizeof(g_pos_names[col][0]), IDS_COL_LINKS);
4580 #endif
4581 load_string(g_pos_names[col++], sizeof(g_pos_names[col])/sizeof(g_pos_names[col][0]), IDS_COL_ATTR);
4582 #ifndef _NO_EXTENSIONS
4583 load_string(g_pos_names[col++], sizeof(g_pos_names[col])/sizeof(g_pos_names[col][0]), IDS_COL_SEC);
4584 #endif
4585 }
4586
4587
4588 static BOOL show_frame(HWND hwndParent, int cmdshow, LPCWSTR path)
4589 {
4590 static const WCHAR sMDICLIENT[] = {'M','D','I','C','L','I','E','N','T','\0'};
4591
4592 WCHAR buffer[MAX_PATH], b1[BUFFER_LEN];
4593 ChildWnd* child;
4594 HMENU hMenuFrame, hMenuWindow;
4595 windowOptions opts;
4596
4597 CLIENTCREATESTRUCT ccs;
4598
4599 if (Globals.hMainWnd)
4600 return TRUE;
4601
4602 opts = load_registry_settings();
4603 hMenuFrame = LoadMenuW(Globals.hInstance, MAKEINTRESOURCEW(IDM_WINEFILE));
4604 hMenuWindow = GetSubMenu(hMenuFrame, GetMenuItemCount(hMenuFrame)-2);
4605
4606 Globals.hMenuFrame = hMenuFrame;
4607 Globals.hMenuView = GetSubMenu(hMenuFrame, 3);
4608 Globals.hMenuOptions = GetSubMenu(hMenuFrame, 4);
4609
4610 ccs.hWindowMenu = hMenuWindow;
4611 ccs.idFirstChild = IDW_FIRST_CHILD;
4612
4613
4614 /* create main window */
4615 Globals.hMainWnd = CreateWindowExW(0, MAKEINTRESOURCEW(Globals.hframeClass), RS(b1,IDS_WINE_FILE), WS_OVERLAPPEDWINDOW,
4616 opts.start_x, opts.start_y, opts.width, opts.height,
4617 hwndParent, Globals.hMenuFrame, Globals.hInstance, 0/*lpParam*/);
4618
4619
4620 Globals.hmdiclient = CreateWindowExW(0, sMDICLIENT, NULL,
4621 WS_CHILD|WS_CLIPCHILDREN|WS_VSCROLL|WS_HSCROLL|WS_VISIBLE|WS_BORDER,
4622 0, 0, 0, 0,
4623 Globals.hMainWnd, 0, Globals.hInstance, &ccs);
4624
4625 CheckMenuItem(Globals.hMenuOptions, ID_VIEW_DRIVE_BAR, MF_BYCOMMAND|MF_CHECKED);
4626 CheckMenuItem(Globals.hMenuOptions, ID_VIEW_SAVESETTINGS, MF_BYCOMMAND);
4627
4628 create_drive_bar();
4629
4630 {
4631 TBBUTTON toolbarBtns[] = {
4632 {0, 0, 0, BTNS_SEP, {0, 0}, 0, 0},
4633 {0, ID_WINDOW_NEW, TBSTATE_ENABLED, BTNS_BUTTON, {0, 0}, 0, 0},
4634 {1, ID_WINDOW_CASCADE, TBSTATE_ENABLED, BTNS_BUTTON, {0, 0}, 0, 0},
4635 {2, ID_WINDOW_TILE_HORZ, TBSTATE_ENABLED, BTNS_BUTTON, {0, 0}, 0, 0},
4636 {3, ID_WINDOW_TILE_VERT, TBSTATE_ENABLED, BTNS_BUTTON, {0, 0}, 0, 0},
4637 /*TODO
4638 {4, ID_... , TBSTATE_ENABLED, BTNS_BUTTON, {0, 0}, 0, 0},
4639 {5, ID_... , TBSTATE_ENABLED, BTNS_BUTTON, {0, 0}, 0, 0},
4640 */ };
4641
4642 Globals.htoolbar = CreateToolbarEx(Globals.hMainWnd, WS_CHILD|WS_VISIBLE,
4643 IDW_TOOLBAR, 2, Globals.hInstance, IDB_TOOLBAR, toolbarBtns,
4644 sizeof(toolbarBtns)/sizeof(TBBUTTON), 16, 15, 16, 15, sizeof(TBBUTTON));
4645 CheckMenuItem(Globals.hMenuOptions, ID_VIEW_TOOL_BAR, MF_BYCOMMAND|MF_CHECKED);
4646 }
4647
4648 Globals.hstatusbar = CreateStatusWindowW(WS_CHILD|WS_VISIBLE, 0, Globals.hMainWnd, IDW_STATUSBAR);
4649 CheckMenuItem(Globals.hMenuOptions, ID_VIEW_STATUSBAR, MF_BYCOMMAND|MF_CHECKED);
4650
4651 /* CreateStatusWindowW does not accept WS_BORDER
4652 Globals.hstatusbar = CreateWindowExW(WS_EX_NOPARENTNOTIFY, STATUSCLASSNAME, 0,
4653 WS_CHILD|WS_VISIBLE|WS_CLIPSIBLINGS|WS_BORDER|CCS_NODIVIDER, 0,0,0,0,
4654 Globals.hMainWnd, (HMENU)IDW_STATUSBAR, hinstance, 0);*/
4655
4656 /*TODO: read paths from registry */
4657
4658 if (!path || !*path) {
4659 GetCurrentDirectoryW(MAX_PATH, buffer);
4660 path = buffer;
4661 }
4662
4663 ShowWindow(Globals.hMainWnd, cmdshow);
4664
4665 #if defined(_SHELL_FOLDERS) && !defined(__WINE__)
4666 /* Shell Namespace as default: */
4667 child = alloc_child_window(path, get_path_pidl(path,Globals.hMainWnd), Globals.hMainWnd);
4668 #else
4669 child = alloc_child_window(path, NULL, Globals.hMainWnd);
4670 #endif
4671
4672 child->pos.showCmd = SW_SHOWMAXIMIZED;
4673 child->pos.rcNormalPosition.left = 0;
4674 child->pos.rcNormalPosition.top = 0;
4675 child->pos.rcNormalPosition.right = 320;
4676 child->pos.rcNormalPosition.bottom = 280;
4677
4678 if (!create_child_window(child)) {
4679 HeapFree(GetProcessHeap(), 0, child);
4680 return FALSE;
4681 }
4682
4683 SetWindowPlacement(child->hwnd, &child->pos);
4684
4685 Globals.himl = ImageList_LoadImageW(Globals.hInstance, MAKEINTRESOURCEW(IDB_IMAGES), 16, 0, RGB(0,255,0), IMAGE_BITMAP, 0);
4686
4687 Globals.prescan_node = FALSE;
4688
4689 UpdateWindow(Globals.hMainWnd);
4690
4691 if (child->hwnd && path && path[0])
4692 {
4693 int index,count;
4694 WCHAR drv[_MAX_DRIVE+1], dir[_MAX_DIR], name[_MAX_FNAME], ext[_MAX_EXT];
4695 WCHAR fullname[_MAX_FNAME+_MAX_EXT+1];
4696
4697 memset(name,0,sizeof(name));
4698 memset(name,0,sizeof(ext));
4699 _wsplitpath(path, drv, dir, name, ext);
4700 if (name[0])
4701 {
4702 count = SendMessageW(child->right.hwnd, LB_GETCOUNT, 0, 0);
4703 lstrcpyW(fullname,name);
4704 lstrcatW(fullname,ext);
4705
4706 for (index = 0; index < count; index ++)
4707 {
4708 Entry* entry = (Entry*)SendMessageW(child->right.hwnd, LB_GETITEMDATA, index, 0);
4709 if (lstrcmpW(entry->data.cFileName,fullname)==0 ||
4710 lstrcmpW(entry->data.cAlternateFileName,fullname)==0)
4711 {
4712 SendMessageW(child->right.hwnd, LB_SETCURSEL, index, 0);
4713 SetFocus(child->right.hwnd);
4714 break;
4715 }
4716 }
4717 }
4718 }
4719 return TRUE;
4720 }
4721
4722 static void ExitInstance(void)
4723 {
4724 #ifdef _SHELL_FOLDERS
4725 IShellFolder_Release(Globals.iDesktop);
4726 IMalloc_Release(Globals.iMalloc);
4727 CoUninitialize();
4728 #endif
4729
4730 DeleteObject(Globals.hfont);
4731 ImageList_Destroy(Globals.himl);
4732 }
4733
4734 #ifdef _NO_EXTENSIONS
4735
4736 /* search for already running win[e]files */
4737
4738 static int g_foundPrevInstance = 0;
4739
4740 static BOOL CALLBACK EnumWndProc(HWND hwnd, LPARAM lparam)
4741 {
4742 WCHAR cls[128];
4743
4744 GetClassName(hwnd, cls, 128);
4745
4746 if (!lstrcmpW(cls, (LPCWSTR)lparam)) {
4747 g_foundPrevInstance++;
4748 return FALSE;
4749 }
4750
4751 return TRUE;
4752 }
4753
4754 /* search for window of given class name to allow only one running instance */
4755 static int find_window_class(LPCWSTR classname)
4756 {
4757 EnumWindows(EnumWndProc, (LPARAM)classname);
4758
4759 if (g_foundPrevInstance)
4760 return 1;
4761
4762 return 0;
4763 }
4764
4765 #endif
4766
4767 static int winefile_main(HINSTANCE hinstance, int cmdshow, LPCWSTR path)
4768 {
4769 MSG msg;
4770
4771 InitInstance(hinstance);
4772
4773 if( !show_frame(0, cmdshow, path) )
4774 {
4775 ExitInstance();
4776 return 1;
4777 }
4778
4779 while(GetMessageW(&msg, 0, 0, 0)) {
4780 if (Globals.hmdiclient && TranslateMDISysAccel(Globals.hmdiclient, &msg))
4781 continue;
4782
4783 if (Globals.hMainWnd && TranslateAcceleratorW(Globals.hMainWnd, Globals.haccel, &msg))
4784 continue;
4785
4786 TranslateMessage(&msg);
4787 DispatchMessageW(&msg);
4788 }
4789
4790 ExitInstance();
4791
4792 return msg.wParam;
4793 }
4794
4795
4796 #if defined(_MSC_VER)
4797 int APIENTRY wWinMain(HINSTANCE hinstance, HINSTANCE previnstance, LPWSTR cmdline, int cmdshow)
4798 #else
4799 int APIENTRY WinMain(HINSTANCE hinstance, HINSTANCE previnstance, LPSTR cmdline, int cmdshow)
4800 #endif
4801 {
4802 #ifdef _NO_EXTENSIONS
4803 if (find_window_class(sWINEFILEFRAME))
4804 return 1;
4805 #endif
4806
4807 { /* convert ANSI cmdline into WCS path string */
4808 WCHAR buffer[MAX_PATH];
4809 MultiByteToWideChar(CP_ACP, 0, cmdline, -1, buffer, MAX_PATH);
4810 winefile_main(hinstance, cmdshow, buffer);
4811 }
4812
4813 return 0;
4814 }