4 * Copyright 2000, 2003, 2004, 2005 Martin Fuchs
5 * Copyright 2006 Jason Green
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.
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.
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
24 #include "wine/port.h"
26 /* for unix filesystem function calls */
28 #include <sys/types.h>
36 #include "wine/unicode.h"
44 #define _MAX_FNAME 256
45 #define _MAX_DIR _MAX_FNAME
46 #define _MAX_EXT _MAX_FNAME
50 #ifdef NONAMELESSUNION
51 #define UNION_MEMBER(x) DUMMYUNIONNAME.x
53 #define UNION_MEMBER(x) x
58 #define DEFAULT_SPLIT_POS 300
60 #define DEFAULT_SPLIT_POS 200
63 static const WCHAR registry_key
[] = { 'S','o','f','t','w','a','r','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'};
80 typedef struct _Entry
{
89 WIN32_FIND_DATAW data
;
91 #ifndef _NO_EXTENSIONS
92 BY_HANDLE_FILE_INFORMATION bhfi
;
94 enum ENTRY_TYPE etype
;
105 WCHAR path
[MAX_PATH
];
106 WCHAR volname
[_MAX_FNAME
];
116 COL_ATTRIBUTES
= 0x08,
118 #ifdef _NO_EXTENSIONS
119 COL_ALL
= COL_SIZE
|COL_DATE
|COL_TIME
|COL_ATTRIBUTES
|COL_DOSNAMES
123 COL_ALL
= COL_SIZE
|COL_DATE
|COL_TIME
|COL_ATTRIBUTES
|COL_DOSNAMES
|COL_INDEX
|COL_LINKS
136 #ifndef _NO_EXTENSIONS
140 #ifndef _NO_EXTENSIONS
146 int positions
[COLUMNS
+1];
158 int focus_pane
; /* 0: left 1: right */
161 BOOL header_wdths_ok
;
163 WCHAR path
[MAX_PATH
];
164 WCHAR filter_pattern
[MAX_PATH
];
168 SORT_ORDER sortOrder
;
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
);
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
);
186 WINEFILE_GLOBALS Globals
;
188 static int last_split
;
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'};
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'};
200 static void format_longlong(LPWSTR ret
, ULONGLONG val
)
202 WCHAR buffer
[65], *p
= &buffer
[64];
206 *(--p
) = '0' + val
% 10;
213 /* load resource string */
214 static LPWSTR
load_string(LPWSTR buffer
, DWORD size
, UINT id
)
216 LoadStringW(Globals
.hInstance
, id
, buffer
, size
);
220 #define RS(b, i) load_string(b, sizeof(b)/sizeof(b[0]), i)
223 /* display error message for the specified WIN32 error code */
224 static void display_error(HWND hwnd
, DWORD error
)
226 WCHAR b1
[BUFFER_LEN
], b2
[BUFFER_LEN
];
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
);
233 MessageBoxW(hwnd
, RS(b1
,IDS_ERROR
), RS(b2
,IDS_WINEFILE
), MB_OK
);
239 /* display network error message using WNetGetLastErrorW() */
240 static void display_network_error(HWND hwnd
)
242 WCHAR msg
[BUFFER_LEN
], provider
[BUFFER_LEN
], b2
[BUFFER_LEN
];
245 if (WNetGetLastErrorW(&error
, msg
, BUFFER_LEN
, provider
, BUFFER_LEN
) == NO_ERROR
)
246 MessageBoxW(hwnd
, msg
, RS(b2
,IDS_WINEFILE
), MB_OK
);
249 static inline BOOL
get_check(HWND hwnd
, INT id
)
251 return BST_CHECKED
&SendMessageW(GetDlgItem(hwnd
, id
), BM_GETSTATE
, 0, 0);
254 static inline INT
set_check(HWND hwnd
, INT id
, BOOL on
)
256 return SendMessageW(GetDlgItem(hwnd
, id
), BM_SETCHECK
, on
?BST_CHECKED
:BST_UNCHECKED
, 0);
259 static inline void choose_font(HWND hwnd
)
261 WCHAR dlg_name
[BUFFER_LEN
], dlg_info
[BUFFER_LEN
];
265 HDC hdc
= GetDC(hwnd
);
267 GetObjectW(Globals
.hfont
, sizeof(LOGFONTW
), &lFont
);
269 chFont
.lStructSize
= sizeof(CHOOSEFONTW
);
270 chFont
.hwndOwner
= hwnd
;
272 chFont
.lpLogFont
= &lFont
;
273 chFont
.Flags
= CF_SCREENFONTS
| CF_FORCEFONTEXIST
| CF_LIMITSIZE
| CF_NOSCRIPTSEL
| CF_INITTOLOGFONTSTRUCT
;
274 chFont
.rgbColors
= RGB(0,0,0);
275 chFont
.lCustData
= 0;
276 chFont
.lpfnHook
= NULL
;
277 chFont
.lpTemplateName
= NULL
;
278 chFont
.hInstance
= Globals
.hInstance
;
279 chFont
.lpszStyle
= NULL
;
280 chFont
.nFontType
= SIMULATED_FONTTYPE
;
282 chFont
.nSizeMax
= 24;
284 if (ChooseFontW(&chFont
)) {
288 DeleteObject(Globals
.hfont
);
289 Globals
.hfont
= CreateFontIndirectW(&lFont
);
290 hFontOld
= SelectObject(hdc
, Globals
.hfont
);
291 GetTextExtentPoint32W(hdc
, sSpace
, 1, &Globals
.spaceSize
);
293 /* change font in all open child windows */
294 for(childWnd
=GetWindow(Globals
.hmdiclient
,GW_CHILD
); childWnd
; childWnd
=GetNextWindow(childWnd
,GW_HWNDNEXT
)) {
295 ChildWnd
* child
= (ChildWnd
*) GetWindowLongPtrW(childWnd
, GWLP_USERDATA
);
296 SendMessageW(child
->left
.hwnd
, WM_SETFONT
, (WPARAM
)Globals
.hfont
, TRUE
);
297 SendMessageW(child
->right
.hwnd
, WM_SETFONT
, (WPARAM
)Globals
.hfont
, TRUE
);
298 SendMessageW(child
->left
.hwnd
, LB_SETITEMHEIGHT
, 1, max(Globals
.spaceSize
.cy
,IMAGE_HEIGHT
+3));
299 SendMessageW(child
->right
.hwnd
, LB_SETITEMHEIGHT
, 1, max(Globals
.spaceSize
.cy
,IMAGE_HEIGHT
+3));
300 InvalidateRect(child
->left
.hwnd
, NULL
, TRUE
);
301 InvalidateRect(child
->right
.hwnd
, NULL
, TRUE
);
304 SelectObject(hdc
, hFontOld
);
306 else if (CommDlgExtendedError()) {
307 LoadStringW(Globals
.hInstance
, IDS_FONT_SEL_DLG_NAME
, dlg_name
, BUFFER_LEN
);
308 LoadStringW(Globals
.hInstance
, IDS_FONT_SEL_ERROR
, dlg_info
, BUFFER_LEN
);
309 MessageBoxW(hwnd
, dlg_info
, dlg_name
, MB_OK
);
312 ReleaseDC(hwnd
, hdc
);
316 /* allocate and initialise a directory entry */
317 static Entry
* alloc_entry(void)
319 Entry
* entry
= HeapAlloc(GetProcessHeap(), 0, sizeof(Entry
));
321 #ifdef _SHELL_FOLDERS
323 entry
->folder
= NULL
;
330 /* free a directory entry */
331 static void free_entry(Entry
* entry
)
333 #ifdef _SHELL_FOLDERS
334 if (entry
->hicon
&& entry
->hicon
!=(HICON
)-1)
335 DestroyIcon(entry
->hicon
);
337 if (entry
->folder
&& entry
->folder
!=Globals
.iDesktop
)
338 IShellFolder_Release(entry
->folder
);
341 IMalloc_Free(Globals
.iMalloc
, entry
->pidl
);
344 HeapFree(GetProcessHeap(), 0, entry
);
347 /* recursively free all child entries */
348 static void free_entries(Entry
* dir
)
350 Entry
*entry
, *next
=dir
->down
;
366 static void read_directory_win(Entry
* dir
, LPCWSTR path
)
368 Entry
* first_entry
= NULL
;
372 int level
= dir
->level
+ 1;
373 WIN32_FIND_DATAW w32fd
;
375 #ifndef _NO_EXTENSIONS
379 WCHAR buffer
[MAX_PATH
], *p
;
380 for(p
=buffer
; *path
; )
387 hFind
= FindFirstFileW(buffer
, &w32fd
);
389 if (hFind
!= INVALID_HANDLE_VALUE
) {
391 #ifdef _NO_EXTENSIONS
392 /* hide directory entry "." */
393 if (w32fd
.dwFileAttributes
& FILE_ATTRIBUTE_DIRECTORY
) {
394 LPCWSTR name
= w32fd
.cFileName
;
396 if (name
[0]=='.' && name
[1]=='\0')
400 entry
= alloc_entry();
408 memcpy(&entry
->data
, &w32fd
, sizeof(WIN32_FIND_DATAW
));
411 entry
->expanded
= FALSE
;
412 entry
->scanned
= FALSE
;
413 entry
->level
= level
;
415 #ifndef _NO_EXTENSIONS
416 entry
->etype
= ET_WINDOWS
;
417 entry
->bhfi_valid
= FALSE
;
419 lstrcpyW(p
, entry
->data
.cFileName
);
421 hFile
= CreateFileW(buffer
, GENERIC_READ
, FILE_SHARE_READ
|FILE_SHARE_WRITE
|FILE_SHARE_DELETE
,
422 0, OPEN_EXISTING
, FILE_FLAG_BACKUP_SEMANTICS
, 0);
424 if (hFile
!= INVALID_HANDLE_VALUE
) {
425 if (GetFileInformationByHandle(hFile
, &entry
->bhfi
))
426 entry
->bhfi_valid
= TRUE
;
433 } while(FindNextFileW(hFind
, &w32fd
));
441 dir
->down
= first_entry
;
446 static Entry
* find_entry_win(Entry
* dir
, LPCWSTR name
)
450 for(entry
=dir
->down
; entry
; entry
=entry
->next
) {
452 LPCWSTR q
= entry
->data
.cFileName
;
455 if (!*p
|| *p
== '\\' || *p
== '/')
457 } while(tolower(*p
++) == tolower(*q
++));
460 q
= entry
->data
.cAlternateFileName
;
463 if (!*p
|| *p
== '\\' || *p
== '/')
465 } while(tolower(*p
++) == tolower(*q
++));
472 static Entry
* read_tree_win(Root
* root
, LPCWSTR path
, SORT_ORDER sortOrder
, HWND hwnd
)
474 WCHAR buffer
[MAX_PATH
];
475 Entry
* entry
= &root
->entry
;
479 HCURSOR old_cursor
= SetCursor(LoadCursorW(0, (LPCWSTR
)IDC_WAIT
));
481 #ifndef _NO_EXTENSIONS
482 entry
->etype
= ET_WINDOWS
;
486 while(*s
&& *s
!= '\\' && *s
!= '/')
489 while(*s
== '\\' || *s
== '/')
495 read_directory(entry
, buffer
, sortOrder
, hwnd
);
498 entry
->expanded
= TRUE
;
503 entry
= find_entry_win(entry
, s
);
506 SetCursor(old_cursor
);
512 #if !defined(_NO_EXTENSIONS) && defined(__WINE__)
514 static BOOL
time_to_filetime(const time_t* t
, FILETIME
* ftime
)
516 struct tm
* tm
= gmtime(t
);
522 stime
.wYear
= tm
->tm_year
+1900;
523 stime
.wMonth
= tm
->tm_mon
+1;
524 /* stime.wDayOfWeek */
525 stime
.wDay
= tm
->tm_mday
;
526 stime
.wHour
= tm
->tm_hour
;
527 stime
.wMinute
= tm
->tm_min
;
528 stime
.wSecond
= tm
->tm_sec
;
530 return SystemTimeToFileTime(&stime
, ftime
);
533 static void read_directory_unix(Entry
* dir
, LPCWSTR path
)
535 Entry
* first_entry
= NULL
;
540 int level
= dir
->level
+ 1;
541 char cpath
[MAX_PATH
];
543 WideCharToMultiByte(CP_UNIXCP
, 0, path
, -1, cpath
, MAX_PATH
, NULL
, NULL
);
544 pdir
= opendir(cpath
);
549 char buffer
[MAX_PATH
], *p
;
552 for(p
=buffer
,s
=cpath
; *s
; )
555 if (p
==buffer
|| p
[-1]!='/')
558 while((ent
=readdir(pdir
))) {
559 entry
= alloc_entry();
567 entry
->etype
= ET_UNIX
;
569 strcpy(p
, ent
->d_name
);
570 MultiByteToWideChar(CP_UNIXCP
, 0, p
, -1, entry
->data
.cFileName
, MAX_PATH
);
572 if (!stat(buffer
, &st
)) {
573 entry
->data
.dwFileAttributes
= p
[0]=='.'? FILE_ATTRIBUTE_HIDDEN
: 0;
575 if (S_ISDIR(st
.st_mode
))
576 entry
->data
.dwFileAttributes
|= FILE_ATTRIBUTE_DIRECTORY
;
578 entry
->data
.nFileSizeLow
= st
.st_size
& 0xFFFFFFFF;
579 entry
->data
.nFileSizeHigh
= st
.st_size
>> 32;
581 memset(&entry
->data
.ftCreationTime
, 0, sizeof(FILETIME
));
582 time_to_filetime(&st
.st_atime
, &entry
->data
.ftLastAccessTime
);
583 time_to_filetime(&st
.st_mtime
, &entry
->data
.ftLastWriteTime
);
585 entry
->bhfi
.nFileIndexLow
= ent
->d_ino
;
586 entry
->bhfi
.nFileIndexHigh
= 0;
588 entry
->bhfi
.nNumberOfLinks
= st
.st_nlink
;
590 entry
->bhfi_valid
= TRUE
;
592 entry
->data
.nFileSizeLow
= 0;
593 entry
->data
.nFileSizeHigh
= 0;
594 entry
->bhfi_valid
= FALSE
;
599 entry
->expanded
= FALSE
;
600 entry
->scanned
= FALSE
;
601 entry
->level
= level
;
612 dir
->down
= first_entry
;
616 static Entry
* find_entry_unix(Entry
* dir
, LPCWSTR name
)
620 for(entry
=dir
->down
; entry
; entry
=entry
->next
) {
622 LPCWSTR q
= entry
->data
.cFileName
;
625 if (!*p
|| *p
== '/')
627 } while(*p
++ == *q
++);
633 static Entry
* read_tree_unix(Root
* root
, LPCWSTR path
, SORT_ORDER sortOrder
, HWND hwnd
)
635 WCHAR buffer
[MAX_PATH
];
636 Entry
* entry
= &root
->entry
;
640 HCURSOR old_cursor
= SetCursor(LoadCursorW(0, (LPCWSTR
)IDC_WAIT
));
642 entry
->etype
= ET_UNIX
;
645 while(*s
&& *s
!= '/')
654 read_directory(entry
, buffer
, sortOrder
, hwnd
);
657 entry
->expanded
= TRUE
;
662 entry
= find_entry_unix(entry
, s
);
665 SetCursor(old_cursor
);
670 #endif /* !defined(_NO_EXTENSIONS) && defined(__WINE__) */
673 #ifdef _SHELL_FOLDERS
675 static void free_strret(STRRET
* str
)
677 if (str
->uType
== STRRET_WSTR
)
678 IMalloc_Free(Globals
.iMalloc
, str
->UNION_MEMBER(pOleStr
));
681 static LPWSTR
wcscpyn(LPWSTR dest
, LPCWSTR source
, size_t count
)
686 for(s
=source
; count
&&(*d
++=*s
++); )
692 static void get_strretW(STRRET
* str
, const SHITEMID
* shiid
, LPWSTR buffer
, int len
)
696 wcscpyn(buffer
, str
->UNION_MEMBER(pOleStr
), len
);
700 MultiByteToWideChar(CP_ACP
, 0, (LPCSTR
)shiid
+str
->UNION_MEMBER(uOffset
), -1, buffer
, len
);
704 MultiByteToWideChar(CP_ACP
, 0, str
->UNION_MEMBER(cStr
), -1, buffer
, len
);
709 static HRESULT
name_from_pidl(IShellFolder
* folder
, LPITEMIDLIST pidl
, LPWSTR buffer
, int len
, SHGDNF flags
)
713 HRESULT hr
= IShellFolder_GetDisplayNameOf(folder
, pidl
, flags
, &str
);
716 get_strretW(&str
, &pidl
->mkid
, buffer
, len
);
725 static HRESULT
path_from_pidlW(IShellFolder
* folder
, LPITEMIDLIST pidl
, LPWSTR buffer
, int len
)
729 /* SHGDN_FORPARSING: get full path of id list */
730 HRESULT hr
= IShellFolder_GetDisplayNameOf(folder
, pidl
, SHGDN_FORPARSING
, &str
);
733 get_strretW(&str
, &pidl
->mkid
, buffer
, len
);
742 /* create an item id list from a file system path */
744 static LPITEMIDLIST
get_path_pidl(LPWSTR path
, HWND hwnd
)
749 LPWSTR buffer
= path
;
751 hr
= IShellFolder_ParseDisplayName(Globals
.iDesktop
, hwnd
, NULL
, buffer
, &len
, &pidl
, NULL
);
759 /* convert an item id list from relative to absolute (=relative to the desktop) format */
761 static LPITEMIDLIST
get_to_absolute_pidl(Entry
* entry
, HWND hwnd
)
763 if (entry
->up
&& entry
->up
->etype
==ET_SHELL
) {
764 LPITEMIDLIST idl
= NULL
;
767 idl
= ILCombine(ILClone(entry
->pidl
), idl
);
772 } else if (entry
->etype
== ET_WINDOWS
) {
773 WCHAR path
[MAX_PATH
];
775 get_path(entry
, path
);
777 return get_path_pidl(path
, hwnd
);
778 } else if (entry
->pidl
)
779 return ILClone(entry
->pidl
);
785 static HICON
extract_icon(IShellFolder
* folder
, LPCITEMIDLIST pidl
)
787 IExtractIconW
* pExtract
;
789 if (SUCCEEDED(IShellFolder_GetUIObjectOf(folder
, 0, 1, (LPCITEMIDLIST
*)&pidl
, &IID_IExtractIconW
, 0, (LPVOID
*)&pExtract
))) {
790 WCHAR path
[_MAX_PATH
];
795 if (SUCCEEDED(IExtractIconW_GetIconLocation(pExtract
, GIL_FORSHELL
, path
, _MAX_PATH
, &idx
, &flags
))) {
796 if (!(flags
& GIL_NOTFILENAME
)) {
798 idx
= 0; /* special case for some control panel applications */
800 if ((int)ExtractIconExW(path
, idx
, 0, &hicon
, 1) > 0)
801 flags
&= ~GIL_DONTCACHE
;
803 HICON hIconLarge
= 0;
805 HRESULT hr
= IExtractIconW_Extract(pExtract
, path
, idx
, &hIconLarge
, &hicon
, MAKELONG(0/*GetSystemMetrics(SM_CXICON)*/,GetSystemMetrics(SM_CXSMICON
)));
808 DestroyIcon(hIconLarge
);
819 static Entry
* find_entry_shell(Entry
* dir
, LPCITEMIDLIST pidl
)
823 for(entry
=dir
->down
; entry
; entry
=entry
->next
) {
824 if (entry
->pidl
->mkid
.cb
== pidl
->mkid
.cb
&&
825 !memcmp(entry
->pidl
, pidl
, entry
->pidl
->mkid
.cb
))
832 static Entry
* read_tree_shell(Root
* root
, LPITEMIDLIST pidl
, SORT_ORDER sortOrder
, HWND hwnd
)
834 Entry
* entry
= &root
->entry
;
836 LPITEMIDLIST next_pidl
= pidl
;
837 IShellFolder
* folder
;
838 IShellFolder
* child
= NULL
;
841 HCURSOR old_cursor
= SetCursor(LoadCursorW(0, (LPCWSTR
)IDC_WAIT
));
843 #ifndef _NO_EXTENSIONS
844 entry
->etype
= ET_SHELL
;
847 folder
= Globals
.iDesktop
;
850 entry
->pidl
= next_pidl
;
851 entry
->folder
= folder
;
856 /* copy first element of item idlist */
857 next_pidl
= IMalloc_Alloc(Globals
.iMalloc
, pidl
->mkid
.cb
+sizeof(USHORT
));
858 memcpy(next_pidl
, pidl
, pidl
->mkid
.cb
);
859 ((LPITEMIDLIST
)((LPBYTE
)next_pidl
+pidl
->mkid
.cb
))->mkid
.cb
= 0;
861 hr
= IShellFolder_BindToObject(folder
, next_pidl
, 0, &IID_IShellFolder
, (void**)&child
);
865 read_directory(entry
, NULL
, sortOrder
, hwnd
);
868 entry
->expanded
= TRUE
;
870 next
= find_entry_shell(entry
, next_pidl
);
877 /* go to next element */
878 pidl
= (LPITEMIDLIST
) ((LPBYTE
)pidl
+pidl
->mkid
.cb
);
881 SetCursor(old_cursor
);
887 static void fill_w32fdata_shell(IShellFolder
* folder
, LPCITEMIDLIST pidl
, SFGAOF attribs
, WIN32_FIND_DATAW
* w32fdata
)
889 if (!(attribs
& SFGAO_FILESYSTEM
) ||
890 FAILED(SHGetDataFromIDListW(folder
, pidl
, SHGDFIL_FINDDATA
, w32fdata
, sizeof(WIN32_FIND_DATAW
)))) {
891 WIN32_FILE_ATTRIBUTE_DATA fad
;
892 IDataObject
* pDataObj
;
894 STGMEDIUM medium
= {0, {0}, 0};
895 FORMATETC fmt
= {Globals
.cfStrFName
, 0, DVASPECT_CONTENT
, -1, TYMED_HGLOBAL
};
897 HRESULT hr
= IShellFolder_GetUIObjectOf(folder
, 0, 1, &pidl
, &IID_IDataObject
, 0, (LPVOID
*)&pDataObj
);
900 hr
= IDataObject_GetData(pDataObj
, &fmt
, &medium
);
902 IDataObject_Release(pDataObj
);
905 LPCWSTR path
= GlobalLock(medium
.UNION_MEMBER(hGlobal
));
906 UINT sem_org
= SetErrorMode(SEM_FAILCRITICALERRORS
);
908 if (GetFileAttributesExW(path
, GetFileExInfoStandard
, &fad
)) {
909 w32fdata
->dwFileAttributes
= fad
.dwFileAttributes
;
910 w32fdata
->ftCreationTime
= fad
.ftCreationTime
;
911 w32fdata
->ftLastAccessTime
= fad
.ftLastAccessTime
;
912 w32fdata
->ftLastWriteTime
= fad
.ftLastWriteTime
;
914 if (!(fad
.dwFileAttributes
& FILE_ATTRIBUTE_DIRECTORY
)) {
915 w32fdata
->nFileSizeLow
= fad
.nFileSizeLow
;
916 w32fdata
->nFileSizeHigh
= fad
.nFileSizeHigh
;
920 SetErrorMode(sem_org
);
922 GlobalUnlock(medium
.UNION_MEMBER(hGlobal
));
923 GlobalFree(medium
.UNION_MEMBER(hGlobal
));
928 if (attribs
& (SFGAO_FOLDER
|SFGAO_HASSUBFOLDER
))
929 w32fdata
->dwFileAttributes
|= FILE_ATTRIBUTE_DIRECTORY
;
931 if (attribs
& SFGAO_READONLY
)
932 w32fdata
->dwFileAttributes
|= FILE_ATTRIBUTE_READONLY
;
934 if (attribs
& SFGAO_COMPRESSED
)
935 w32fdata
->dwFileAttributes
|= FILE_ATTRIBUTE_COMPRESSED
;
939 static void read_directory_shell(Entry
* dir
, HWND hwnd
)
941 IShellFolder
* folder
= dir
->folder
;
942 int level
= dir
->level
+ 1;
948 Entry
* first_entry
= NULL
;
955 hr
= IShellFolder_EnumObjects(folder
, hwnd
, SHCONTF_FOLDERS
|SHCONTF_NONFOLDERS
|SHCONTF_INCLUDEHIDDEN
|SHCONTF_SHAREABLE
|SHCONTF_STORAGE
, &idlist
);
959 #define FETCH_ITEM_COUNT 32
960 LPITEMIDLIST pidls
[FETCH_ITEM_COUNT
];
965 memset(pidls
, 0, sizeof(pidls
));
967 hr
= IEnumIDList_Next(idlist
, FETCH_ITEM_COUNT
, pidls
, &cnt
);
974 for(n
=0; n
<cnt
; ++n
) {
975 entry
= alloc_entry();
983 memset(&entry
->data
, 0, sizeof(WIN32_FIND_DATAW
));
984 entry
->bhfi_valid
= FALSE
;
986 attribs
= ~SFGAO_FILESYSTEM
; /*SFGAO_HASSUBFOLDER|SFGAO_FOLDER; SFGAO_FILESYSTEM sorgt dafür, daß "My Documents" anstatt von "Martin's Documents" angezeigt wird */
988 hr
= IShellFolder_GetAttributesOf(folder
, 1, (LPCITEMIDLIST
*)&pidls
[n
], &attribs
);
991 if (attribs
!= (SFGAOF
)~SFGAO_FILESYSTEM
) {
992 fill_w32fdata_shell(folder
, pidls
[n
], attribs
, &entry
->data
);
994 entry
->bhfi_valid
= TRUE
;
1000 entry
->pidl
= pidls
[n
];
1002 if (entry
->data
.dwFileAttributes
& FILE_ATTRIBUTE_DIRECTORY
) {
1003 hr
= IShellFolder_BindToObject(folder
, pidls
[n
], 0, &IID_IShellFolder
, (void**)&child
);
1006 entry
->folder
= child
;
1008 entry
->folder
= NULL
;
1011 entry
->folder
= NULL
;
1013 if (!entry
->data
.cFileName
[0])
1014 /*hr = */name_from_pidl(folder
, pidls
[n
], entry
->data
.cFileName
, MAX_PATH
, /*SHGDN_INFOLDER*/0x2000/*0x2000=SHGDN_INCLUDE_NONFILESYS*/);
1016 /* get display icons for files and virtual objects */
1017 if (!(entry
->data
.dwFileAttributes
& FILE_ATTRIBUTE_DIRECTORY
) ||
1018 !(attribs
& SFGAO_FILESYSTEM
)) {
1019 entry
->hicon
= extract_icon(folder
, pidls
[n
]);
1022 entry
->hicon
= (HICON
)-1; /* don't try again later */
1027 entry
->expanded
= FALSE
;
1028 entry
->scanned
= FALSE
;
1029 entry
->level
= level
;
1031 #ifndef _NO_EXTENSIONS
1032 entry
->etype
= ET_SHELL
;
1033 entry
->bhfi_valid
= FALSE
;
1040 IEnumIDList_Release(idlist
);
1046 dir
->down
= first_entry
;
1047 dir
->scanned
= TRUE
;
1050 #endif /* _SHELL_FOLDERS */
1053 /* sort order for different directory/file types */
1062 /* distinguish between ".", ".." and any other directory names */
1063 static int TypeOrderFromDirname(LPCWSTR name
)
1065 if (name
[0] == '.') {
1066 if (name
[1] == '\0')
1067 return TO_DOT
; /* "." */
1069 if (name
[1]=='.' && name
[2]=='\0')
1070 return TO_DOTDOT
; /* ".." */
1073 return TO_OTHER_DIR
; /* anything else */
1076 /* directories first... */
1077 static int compareType(const WIN32_FIND_DATAW
* fd1
, const WIN32_FIND_DATAW
* fd2
)
1079 int order1
= fd1
->dwFileAttributes
& FILE_ATTRIBUTE_DIRECTORY
? TO_DIR
: TO_FILE
;
1080 int order2
= fd2
->dwFileAttributes
& FILE_ATTRIBUTE_DIRECTORY
? TO_DIR
: TO_FILE
;
1082 /* Handle "." and ".." as special case and move them at the very first beginning. */
1083 if (order1
==TO_DIR
&& order2
==TO_DIR
) {
1084 order1
= TypeOrderFromDirname(fd1
->cFileName
);
1085 order2
= TypeOrderFromDirname(fd2
->cFileName
);
1088 return order2
==order1
? 0: order1
<order2
? -1: 1;
1092 static int compareName(const void* arg1
, const void* arg2
)
1094 const WIN32_FIND_DATAW
* fd1
= &(*(const Entry
* const*)arg1
)->data
;
1095 const WIN32_FIND_DATAW
* fd2
= &(*(const Entry
* const*)arg2
)->data
;
1097 int cmp
= compareType(fd1
, fd2
);
1101 return lstrcmpiW(fd1
->cFileName
, fd2
->cFileName
);
1104 static int compareExt(const void* arg1
, const void* arg2
)
1106 const WIN32_FIND_DATAW
* fd1
= &(*(const Entry
* const*)arg1
)->data
;
1107 const WIN32_FIND_DATAW
* fd2
= &(*(const Entry
* const*)arg2
)->data
;
1108 const WCHAR
*name1
, *name2
, *ext1
, *ext2
;
1110 int cmp
= compareType(fd1
, fd2
);
1114 name1
= fd1
->cFileName
;
1115 name2
= fd2
->cFileName
;
1117 ext1
= strrchrW(name1
, '.');
1118 ext2
= strrchrW(name2
, '.');
1130 cmp
= lstrcmpiW(ext1
, ext2
);
1134 return lstrcmpiW(name1
, name2
);
1137 static int compareSize(const void* arg1
, const void* arg2
)
1139 const WIN32_FIND_DATAW
* fd1
= &(*(const Entry
* const*)arg1
)->data
;
1140 const WIN32_FIND_DATAW
* fd2
= &(*(const Entry
* const*)arg2
)->data
;
1142 int cmp
= compareType(fd1
, fd2
);
1146 cmp
= fd2
->nFileSizeHigh
- fd1
->nFileSizeHigh
;
1153 cmp
= fd2
->nFileSizeLow
- fd1
->nFileSizeLow
;
1155 return cmp
<0? -1: cmp
>0? 1: 0;
1158 static int compareDate(const void* arg1
, const void* arg2
)
1160 const WIN32_FIND_DATAW
* fd1
= &(*(const Entry
* const*)arg1
)->data
;
1161 const WIN32_FIND_DATAW
* fd2
= &(*(const Entry
* const*)arg2
)->data
;
1163 int cmp
= compareType(fd1
, fd2
);
1167 return CompareFileTime(&fd2
->ftLastWriteTime
, &fd1
->ftLastWriteTime
);
1171 static int (*sortFunctions
[])(const void* arg1
, const void* arg2
) = {
1172 compareName
, /* SORT_NAME */
1173 compareExt
, /* SORT_EXT */
1174 compareSize
, /* SORT_SIZE */
1175 compareDate
/* SORT_DATE */
1179 static void SortDirectory(Entry
* dir
, SORT_ORDER sortOrder
)
1186 for(entry
=dir
->down
; entry
; entry
=entry
->next
)
1190 array
= HeapAlloc(GetProcessHeap(), 0, len
*sizeof(Entry
*));
1193 for(entry
=dir
->down
; entry
; entry
=entry
->next
)
1196 /* call qsort with the appropriate compare function */
1197 qsort(array
, len
, sizeof(array
[0]), sortFunctions
[sortOrder
]);
1199 dir
->down
= array
[0];
1201 for(p
=array
; --len
; p
++)
1206 HeapFree(GetProcessHeap(), 0, array
);
1211 static void read_directory(Entry
* dir
, LPCWSTR path
, SORT_ORDER sortOrder
, HWND hwnd
)
1213 WCHAR buffer
[MAX_PATH
];
1218 #ifdef _SHELL_FOLDERS
1219 if (dir
->etype
== ET_SHELL
)
1221 read_directory_shell(dir
, hwnd
);
1223 if (Globals
.prescan_node
) {
1232 for(entry
=dir
->down
; entry
; entry
=entry
->next
)
1233 if (entry
->data
.dwFileAttributes
& FILE_ATTRIBUTE_DIRECTORY
) {
1234 read_directory_shell(entry
, hwnd
);
1235 SortDirectory(entry
, sortOrder
);
1241 #if !defined(_NO_EXTENSIONS) && defined(__WINE__)
1242 if (dir
->etype
== ET_UNIX
)
1244 read_directory_unix(dir
, path
);
1246 if (Globals
.prescan_node
) {
1255 for(entry
=dir
->down
; entry
; entry
=entry
->next
)
1256 if (entry
->data
.dwFileAttributes
& FILE_ATTRIBUTE_DIRECTORY
) {
1257 lstrcpyW(d
, entry
->data
.cFileName
);
1258 read_directory_unix(entry
, buffer
);
1259 SortDirectory(entry
, sortOrder
);
1266 read_directory_win(dir
, path
);
1268 if (Globals
.prescan_node
) {
1277 for(entry
=dir
->down
; entry
; entry
=entry
->next
)
1278 if (entry
->data
.dwFileAttributes
& FILE_ATTRIBUTE_DIRECTORY
) {
1279 lstrcpyW(d
, entry
->data
.cFileName
);
1280 read_directory_win(entry
, buffer
);
1281 SortDirectory(entry
, sortOrder
);
1286 SortDirectory(dir
, sortOrder
);
1290 static Entry
* read_tree(Root
* root
, LPCWSTR path
, LPITEMIDLIST pidl
, LPWSTR drv
, SORT_ORDER sortOrder
, HWND hwnd
)
1292 #if !defined(_NO_EXTENSIONS) && defined(__WINE__)
1293 static const WCHAR sSlash
[] = {'/', '\0'};
1295 static const WCHAR sBackslash
[] = {'\\', '\0'};
1297 #ifdef _SHELL_FOLDERS
1300 /* read shell namespace tree */
1301 root
->drive_type
= DRIVE_UNKNOWN
;
1304 load_string(root
->volname
, sizeof(root
->volname
)/sizeof(root
->volname
[0]), IDS_DESKTOP
);
1306 load_string(root
->fs
, sizeof(root
->fs
)/sizeof(root
->fs
[0]), IDS_SHELL
);
1308 return read_tree_shell(root
, pidl
, sortOrder
, hwnd
);
1312 #if !defined(_NO_EXTENSIONS) && defined(__WINE__)
1315 /* read unix file system tree */
1316 root
->drive_type
= GetDriveTypeW(path
);
1318 lstrcatW(drv
, sSlash
);
1319 load_string(root
->volname
, sizeof(root
->volname
)/sizeof(root
->volname
[0]), IDS_ROOT_FS
);
1321 load_string(root
->fs
, sizeof(root
->fs
)/sizeof(root
->fs
[0]), IDS_UNIXFS
);
1323 lstrcpyW(root
->path
, sSlash
);
1325 return read_tree_unix(root
, path
, sortOrder
, hwnd
);
1329 /* read WIN32 file system tree */
1330 root
->drive_type
= GetDriveTypeW(path
);
1332 lstrcatW(drv
, sBackslash
);
1333 GetVolumeInformationW(drv
, root
->volname
, _MAX_FNAME
, 0, 0, &root
->fs_flags
, root
->fs
, _MAX_DIR
);
1335 lstrcpyW(root
->path
, drv
);
1337 return read_tree_win(root
, path
, sortOrder
, hwnd
);
1341 /* flags to filter different file types */
1343 TF_DIRECTORIES
= 0x01,
1345 TF_DOCUMENTS
= 0x04,
1352 static ChildWnd
* alloc_child_window(LPCWSTR path
, LPITEMIDLIST pidl
, HWND hwnd
)
1354 WCHAR drv
[_MAX_DRIVE
+1], dir
[_MAX_DIR
], name
[_MAX_FNAME
], ext
[_MAX_EXT
];
1355 WCHAR dir_path
[MAX_PATH
];
1356 static const WCHAR sAsterics
[] = {'*', '\0'};
1357 static const WCHAR sTitleFmt
[] = {'%','s',' ','-',' ','%','s','\0'};
1359 ChildWnd
* child
= HeapAlloc(GetProcessHeap(), 0, sizeof(ChildWnd
));
1360 Root
* root
= &child
->root
;
1363 memset(child
, 0, sizeof(ChildWnd
));
1365 child
->left
.treePane
= TRUE
;
1366 child
->left
.visible_cols
= 0;
1368 child
->right
.treePane
= FALSE
;
1369 #ifndef _NO_EXTENSIONS
1370 child
->right
.visible_cols
= COL_SIZE
|COL_DATE
|COL_TIME
|COL_ATTRIBUTES
|COL_INDEX
|COL_LINKS
;
1372 child
->right
.visible_cols
= COL_SIZE
|COL_DATE
|COL_TIME
|COL_ATTRIBUTES
;
1375 child
->pos
.length
= sizeof(WINDOWPLACEMENT
);
1376 child
->pos
.flags
= 0;
1377 child
->pos
.showCmd
= SW_SHOWNORMAL
;
1378 child
->pos
.rcNormalPosition
.left
= CW_USEDEFAULT
;
1379 child
->pos
.rcNormalPosition
.top
= CW_USEDEFAULT
;
1380 child
->pos
.rcNormalPosition
.right
= CW_USEDEFAULT
;
1381 child
->pos
.rcNormalPosition
.bottom
= CW_USEDEFAULT
;
1383 child
->focus_pane
= 0;
1384 child
->split_pos
= DEFAULT_SPLIT_POS
;
1385 child
->sortOrder
= SORT_NAME
;
1386 child
->header_wdths_ok
= FALSE
;
1390 lstrcpyW(child
->path
, path
);
1392 _wsplitpath(path
, drv
, dir
, name
, ext
);
1395 lstrcpyW(child
->filter_pattern
, sAsterics
);
1396 child
->filter_flags
= TF_ALL
;
1398 root
->entry
.level
= 0;
1400 lstrcpyW(dir_path
, drv
);
1401 lstrcatW(dir_path
, dir
);
1402 entry
= read_tree(root
, dir_path
, pidl
, drv
, child
->sortOrder
, hwnd
);
1404 #ifdef _SHELL_FOLDERS
1405 if (root
->entry
.etype
== ET_SHELL
)
1406 load_string(root
->entry
.data
.cFileName
, sizeof(root
->entry
.data
.cFileName
)/sizeof(root
->entry
.data
.cFileName
[0]), IDS_DESKTOP
);
1409 wsprintfW(root
->entry
.data
.cFileName
, sTitleFmt
, drv
, root
->fs
);
1411 root
->entry
.data
.dwFileAttributes
= FILE_ATTRIBUTE_DIRECTORY
;
1413 child
->left
.root
= &root
->entry
;
1414 child
->right
.root
= NULL
;
1416 set_curdir(child
, entry
, 0, hwnd
);
1422 /* free all memory associated with a child window */
1423 static void free_child_window(ChildWnd
* child
)
1425 free_entries(&child
->root
.entry
);
1426 HeapFree(GetProcessHeap(), 0, child
);
1430 /* get full path of specified directory entry */
1431 static void get_path(Entry
* dir
, PWSTR path
)
1437 #ifdef _SHELL_FOLDERS
1438 if (dir
->etype
== ET_SHELL
)
1448 hr
= IShellFolder_GetAttributesOf(dir
->folder
, 1, (LPCITEMIDLIST
*)&dir
->pidl
, &attribs
);
1450 if (SUCCEEDED(hr
) && (attribs
&SFGAO_FILESYSTEM
)) {
1451 IShellFolder
* parent
= dir
->up
? dir
->up
->folder
: Globals
.iDesktop
;
1453 hr
= path_from_pidlW(parent
, dir
->pidl
, path
, MAX_PATH
);
1459 for(entry
=dir
; entry
; level
++) {
1465 name
= entry
->data
.cFileName
;
1468 for(l
=0; *s
&& *s
!= '/' && *s
!= '\\'; s
++)
1474 memmove(path
+l
+1, path
, len
*sizeof(WCHAR
));
1475 memcpy(path
+1, name
, l
*sizeof(WCHAR
));
1478 #ifndef _NO_EXTENSIONS
1479 if (entry
->etype
== ET_UNIX
)
1488 memmove(path
+l
, path
, len
*sizeof(WCHAR
));
1489 memcpy(path
, name
, l
*sizeof(WCHAR
));
1496 #ifndef _NO_EXTENSIONS
1497 if (entry
->etype
== ET_UNIX
)
1508 static windowOptions
load_registry_settings(void)
1516 RegOpenKeyExW( HKEY_CURRENT_USER
, registry_key
,
1517 0, KEY_QUERY_VALUE
, &hKey
);
1519 size
= sizeof(DWORD
);
1521 if( RegQueryValueExW( hKey
, reg_start_x
, NULL
, &type
,
1522 (LPBYTE
) &opts
.start_x
, &size
) != ERROR_SUCCESS
)
1523 opts
.start_x
= CW_USEDEFAULT
;
1525 if( RegQueryValueExW( hKey
, reg_start_y
, NULL
, &type
,
1526 (LPBYTE
) &opts
.start_y
, &size
) != ERROR_SUCCESS
)
1527 opts
.start_y
= CW_USEDEFAULT
;
1529 if( RegQueryValueExW( hKey
, reg_width
, NULL
, &type
,
1530 (LPBYTE
) &opts
.width
, &size
) != ERROR_SUCCESS
)
1531 opts
.width
= CW_USEDEFAULT
;
1533 if( RegQueryValueExW( hKey
, reg_height
, NULL
, &type
,
1534 (LPBYTE
) &opts
.height
, &size
) != ERROR_SUCCESS
)
1535 opts
.height
= CW_USEDEFAULT
;
1536 size
=sizeof(logfont
);
1537 if( RegQueryValueExW( hKey
, reg_logfont
, NULL
, &type
,
1538 (LPBYTE
) &logfont
, &size
) != ERROR_SUCCESS
)
1539 GetObjectW(GetStockObject(DEFAULT_GUI_FONT
),sizeof(logfont
),&logfont
);
1541 RegCloseKey( hKey
);
1543 Globals
.hfont
= CreateFontIndirectW(&logfont
);
1547 static void save_registry_settings(void)
1554 wi
.cbSize
= sizeof( WINDOWINFO
);
1555 GetWindowInfo(Globals
.hMainWnd
, &wi
);
1556 width
= wi
.rcWindow
.right
- wi
.rcWindow
.left
;
1557 height
= wi
.rcWindow
.bottom
- wi
.rcWindow
.top
;
1559 if ( RegOpenKeyExW( HKEY_CURRENT_USER
, registry_key
,
1560 0, KEY_SET_VALUE
, &hKey
) != ERROR_SUCCESS
)
1562 /* Unable to save registry settings - try to create key */
1563 if ( RegCreateKeyExW( HKEY_CURRENT_USER
, registry_key
,
1564 0, NULL
, REG_OPTION_NON_VOLATILE
,
1565 KEY_SET_VALUE
, NULL
, &hKey
, NULL
) != ERROR_SUCCESS
)
1567 /* FIXME: Cannot create key */
1571 /* Save all of the settings */
1572 RegSetValueExW( hKey
, reg_start_x
, 0, REG_DWORD
,
1573 (LPBYTE
) &wi
.rcWindow
.left
, sizeof(DWORD
) );
1574 RegSetValueExW( hKey
, reg_start_y
, 0, REG_DWORD
,
1575 (LPBYTE
) &wi
.rcWindow
.top
, sizeof(DWORD
) );
1576 RegSetValueExW( hKey
, reg_width
, 0, REG_DWORD
,
1577 (LPBYTE
) &width
, sizeof(DWORD
) );
1578 RegSetValueExW( hKey
, reg_height
, 0, REG_DWORD
,
1579 (LPBYTE
) &height
, sizeof(DWORD
) );
1580 GetObjectW(Globals
.hfont
, sizeof(logfont
), &logfont
);
1581 RegSetValueExW( hKey
, reg_logfont
, 0, REG_BINARY
,
1582 (LPBYTE
)&logfont
, sizeof(LOGFONTW
) );
1584 /* TODO: Save more settings here (List vs. Detailed View, etc.) */
1585 RegCloseKey( hKey
);
1588 static void resize_frame_rect(HWND hwnd
, PRECT prect
)
1593 if (IsWindowVisible(Globals
.htoolbar
)) {
1594 SendMessageW(Globals
.htoolbar
, WM_SIZE
, 0, 0);
1595 GetClientRect(Globals
.htoolbar
, &rt
);
1596 prect
->top
= rt
.bottom
+3;
1597 prect
->bottom
-= rt
.bottom
+3;
1600 if (IsWindowVisible(Globals
.hdrivebar
)) {
1601 SendMessageW(Globals
.hdrivebar
, WM_SIZE
, 0, 0);
1602 GetClientRect(Globals
.hdrivebar
, &rt
);
1603 new_top
= --prect
->top
+ rt
.bottom
+3;
1604 MoveWindow(Globals
.hdrivebar
, 0, prect
->top
, rt
.right
, new_top
, TRUE
);
1605 prect
->top
= new_top
;
1606 prect
->bottom
-= rt
.bottom
+2;
1609 if (IsWindowVisible(Globals
.hstatusbar
)) {
1610 int parts
[] = {300, 500};
1612 SendMessageW(Globals
.hstatusbar
, WM_SIZE
, 0, 0);
1613 SendMessageW(Globals
.hstatusbar
, SB_SETPARTS
, 2, (LPARAM
)&parts
);
1614 GetClientRect(Globals
.hstatusbar
, &rt
);
1615 prect
->bottom
-= rt
.bottom
;
1618 MoveWindow(Globals
.hmdiclient
, prect
->left
-1,prect
->top
-1,prect
->right
+2,prect
->bottom
+1, TRUE
);
1621 static void resize_frame(HWND hwnd
, int cx
, int cy
)
1630 resize_frame_rect(hwnd
, &rect
);
1633 static void resize_frame_client(HWND hwnd
)
1637 GetClientRect(hwnd
, &rect
);
1639 resize_frame_rect(hwnd
, &rect
);
1643 static HHOOK hcbthook
;
1644 static ChildWnd
* newchild
= NULL
;
1646 static LRESULT CALLBACK
CBTProc(int code
, WPARAM wparam
, LPARAM lparam
)
1648 if (code
==HCBT_CREATEWND
&& newchild
) {
1649 ChildWnd
* child
= newchild
;
1652 child
->hwnd
= (HWND
) wparam
;
1653 SetWindowLongPtrW(child
->hwnd
, GWLP_USERDATA
, (LPARAM
)child
);
1656 return CallNextHookEx(hcbthook
, code
, wparam
, lparam
);
1659 static HWND
create_child_window(ChildWnd
* child
)
1661 MDICREATESTRUCTW mcs
;
1664 mcs
.szClass
= sWINEFILETREE
;
1665 mcs
.szTitle
= child
->path
;
1666 mcs
.hOwner
= Globals
.hInstance
;
1667 mcs
.x
= child
->pos
.rcNormalPosition
.left
;
1668 mcs
.y
= child
->pos
.rcNormalPosition
.top
;
1669 mcs
.cx
= child
->pos
.rcNormalPosition
.right
-child
->pos
.rcNormalPosition
.left
;
1670 mcs
.cy
= child
->pos
.rcNormalPosition
.bottom
-child
->pos
.rcNormalPosition
.top
;
1674 hcbthook
= SetWindowsHookExW(WH_CBT
, CBTProc
, 0, GetCurrentThreadId());
1677 child
->hwnd
= (HWND
)SendMessageW(Globals
.hmdiclient
, WM_MDICREATE
, 0, (LPARAM
)&mcs
);
1679 UnhookWindowsHookEx(hcbthook
);
1683 UnhookWindowsHookEx(hcbthook
);
1685 SendMessageW(child
->left
.hwnd
, LB_SETITEMHEIGHT
, 1, max(Globals
.spaceSize
.cy
,IMAGE_HEIGHT
+3));
1686 SendMessageW(child
->right
.hwnd
, LB_SETITEMHEIGHT
, 1, max(Globals
.spaceSize
.cy
,IMAGE_HEIGHT
+3));
1688 idx
= SendMessageW(child
->left
.hwnd
, LB_FINDSTRING
, 0, (LPARAM
)child
->left
.cur
);
1689 SendMessageW(child
->left
.hwnd
, LB_SETCURSEL
, idx
, 0);
1694 #define RFF_NODEFAULT 0x02 /* No default item selected. */
1696 static void WineFile_OnRun( HWND hwnd
)
1698 static const WCHAR shell32_dll
[] = {'S','H','E','L','L','3','2','.','D','L','L',0};
1699 void (WINAPI
*pRunFileDlgAW
)(HWND
, HICON
, LPWSTR
, LPWSTR
, LPWSTR
, DWORD
);
1700 HMODULE hshell
= GetModuleHandleW( shell32_dll
);
1702 pRunFileDlgAW
= (void*)GetProcAddress(hshell
, (LPCSTR
)61);
1703 if (pRunFileDlgAW
) pRunFileDlgAW( hwnd
, 0, NULL
, NULL
, NULL
, RFF_NODEFAULT
);
1706 static INT_PTR CALLBACK
DestinationDlgProc(HWND hwnd
, UINT nmsg
, WPARAM wparam
, LPARAM lparam
)
1708 WCHAR b1
[BUFFER_LEN
], b2
[BUFFER_LEN
];
1712 SetWindowLongPtrW(hwnd
, GWLP_USERDATA
, lparam
);
1713 SetWindowTextW(GetDlgItem(hwnd
, 201), (LPCWSTR
)lparam
);
1717 int id
= (int)wparam
;
1721 LPWSTR dest
= (LPWSTR
)GetWindowLongPtrW(hwnd
, GWLP_USERDATA
);
1722 GetWindowTextW(GetDlgItem(hwnd
, 201), dest
, MAX_PATH
);
1723 EndDialog(hwnd
, id
);
1727 EndDialog(hwnd
, id
);
1731 MessageBoxW(hwnd
, RS(b1
,IDS_NO_IMPL
), RS(b2
,IDS_WINEFILE
), MB_OK
);
1743 struct FilterDialog
{
1744 WCHAR pattern
[MAX_PATH
];
1748 static INT_PTR CALLBACK
FilterDialogDlgProc(HWND hwnd
, UINT nmsg
, WPARAM wparam
, LPARAM lparam
)
1750 static struct FilterDialog
* dlg
;
1754 dlg
= (struct FilterDialog
*) lparam
;
1755 SetWindowTextW(GetDlgItem(hwnd
, IDC_VIEW_PATTERN
), dlg
->pattern
);
1756 set_check(hwnd
, IDC_VIEW_TYPE_DIRECTORIES
, dlg
->flags
&TF_DIRECTORIES
);
1757 set_check(hwnd
, IDC_VIEW_TYPE_PROGRAMS
, dlg
->flags
&TF_PROGRAMS
);
1758 set_check(hwnd
, IDC_VIEW_TYPE_DOCUMENTS
, dlg
->flags
&TF_DOCUMENTS
);
1759 set_check(hwnd
, IDC_VIEW_TYPE_OTHERS
, dlg
->flags
&TF_OTHERS
);
1760 set_check(hwnd
, IDC_VIEW_TYPE_HIDDEN
, dlg
->flags
&TF_HIDDEN
);
1764 int id
= (int)wparam
;
1769 GetWindowTextW(GetDlgItem(hwnd
, IDC_VIEW_PATTERN
), dlg
->pattern
, MAX_PATH
);
1771 flags
|= get_check(hwnd
, IDC_VIEW_TYPE_DIRECTORIES
) ? TF_DIRECTORIES
: 0;
1772 flags
|= get_check(hwnd
, IDC_VIEW_TYPE_PROGRAMS
) ? TF_PROGRAMS
: 0;
1773 flags
|= get_check(hwnd
, IDC_VIEW_TYPE_DOCUMENTS
) ? TF_DOCUMENTS
: 0;
1774 flags
|= get_check(hwnd
, IDC_VIEW_TYPE_OTHERS
) ? TF_OTHERS
: 0;
1775 flags
|= get_check(hwnd
, IDC_VIEW_TYPE_HIDDEN
) ? TF_HIDDEN
: 0;
1779 EndDialog(hwnd
, id
);
1780 } else if (id
== IDCANCEL
)
1781 EndDialog(hwnd
, id
);
1790 struct PropertiesDialog
{
1791 WCHAR path
[MAX_PATH
];
1796 /* Structure used to store enumerated languages and code pages. */
1797 struct LANGANDCODEPAGE
{
1802 static LPCSTR InfoStrings
[] = {
1818 static void PropDlg_DisplayValue(HWND hlbox
, HWND hedit
)
1820 int idx
= SendMessageW(hlbox
, LB_GETCURSEL
, 0, 0);
1822 if (idx
!= LB_ERR
) {
1823 LPCWSTR pValue
= (LPCWSTR
)SendMessageW(hlbox
, LB_GETITEMDATA
, idx
, 0);
1826 SetWindowTextW(hedit
, pValue
);
1830 static void CheckForFileInfo(struct PropertiesDialog
* dlg
, HWND hwnd
, LPCWSTR strFilename
)
1832 static WCHAR sBackSlash
[] = {'\\','\0'};
1833 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'};
1834 static WCHAR sStringFileInfo
[] = {'\\','S','t','r','i','n','g','F','i','l','e','I','n','f','o','\\',
1835 '%','0','4','x','%','0','4','x','\\','%','s','\0'};
1836 DWORD dwVersionDataLen
= GetFileVersionInfoSizeW(strFilename
, NULL
);
1838 if (dwVersionDataLen
) {
1839 dlg
->pVersionData
= HeapAlloc(GetProcessHeap(), 0, dwVersionDataLen
);
1841 if (GetFileVersionInfoW(strFilename
, 0, dwVersionDataLen
, dlg
->pVersionData
)) {
1845 if (VerQueryValueW(dlg
->pVersionData
, sBackSlash
, &pVal
, &nValLen
)) {
1846 if (nValLen
== sizeof(VS_FIXEDFILEINFO
)) {
1847 VS_FIXEDFILEINFO
* pFixedFileInfo
= (VS_FIXEDFILEINFO
*)pVal
;
1848 char buffer
[BUFFER_LEN
];
1850 sprintf(buffer
, "%d.%d.%d.%d",
1851 HIWORD(pFixedFileInfo
->dwFileVersionMS
), LOWORD(pFixedFileInfo
->dwFileVersionMS
),
1852 HIWORD(pFixedFileInfo
->dwFileVersionLS
), LOWORD(pFixedFileInfo
->dwFileVersionLS
));
1854 SetDlgItemTextA(hwnd
, IDC_STATIC_PROP_VERSION
, buffer
);
1858 /* Read the list of languages and code pages. */
1859 if (VerQueryValueW(dlg
->pVersionData
, sTranslation
, &pVal
, &nValLen
)) {
1860 struct LANGANDCODEPAGE
* pTranslate
= (struct LANGANDCODEPAGE
*)pVal
;
1861 struct LANGANDCODEPAGE
* pEnd
= (struct LANGANDCODEPAGE
*)((LPBYTE
)pVal
+nValLen
);
1863 HWND hlbox
= GetDlgItem(hwnd
, IDC_LIST_PROP_VERSION_TYPES
);
1865 /* Read the file description for each language and code page. */
1866 for(; pTranslate
<pEnd
; ++pTranslate
) {
1869 for(p
=InfoStrings
; *p
; ++p
) {
1870 WCHAR subblock
[200];
1875 LPCSTR pInfoString
= *p
;
1876 MultiByteToWideChar(CP_ACP
, 0, pInfoString
, -1, infoStr
, 100);
1877 wsprintfW(subblock
, sStringFileInfo
, pTranslate
->wLanguage
, pTranslate
->wCodePage
, infoStr
);
1879 /* Retrieve file description for language and code page */
1880 if (VerQueryValueW(dlg
->pVersionData
, subblock
, (PVOID
)&pTxt
, &nValLen
)) {
1881 int idx
= SendMessageW(hlbox
, LB_ADDSTRING
, 0L, (LPARAM
)infoStr
);
1882 SendMessageW(hlbox
, LB_SETITEMDATA
, idx
, (LPARAM
)pTxt
);
1887 SendMessageW(hlbox
, LB_SETCURSEL
, 0, 0);
1889 PropDlg_DisplayValue(hlbox
, GetDlgItem(hwnd
,IDC_LIST_PROP_VERSION_VALUES
));
1895 static INT_PTR CALLBACK
PropertiesDialogDlgProc(HWND hwnd
, UINT nmsg
, WPARAM wparam
, LPARAM lparam
)
1897 static struct PropertiesDialog
* dlg
;
1900 case WM_INITDIALOG
: {
1901 static const WCHAR sByteFmt
[] = {'%','s',' ','B','y','t','e','s','\0'};
1902 WCHAR b1
[BUFFER_LEN
], b2
[BUFFER_LEN
];
1903 LPWIN32_FIND_DATAW pWFD
;
1905 dlg
= (struct PropertiesDialog
*) lparam
;
1906 pWFD
= (LPWIN32_FIND_DATAW
)&dlg
->entry
.data
;
1908 GetWindowTextW(hwnd
, b1
, MAX_PATH
);
1909 wsprintfW(b2
, b1
, pWFD
->cFileName
);
1910 SetWindowTextW(hwnd
, b2
);
1912 format_date(&pWFD
->ftLastWriteTime
, b1
, COL_DATE
|COL_TIME
);
1913 SetWindowTextW(GetDlgItem(hwnd
, IDC_STATIC_PROP_LASTCHANGE
), b1
);
1915 format_longlong( b1
, ((ULONGLONG
)pWFD
->nFileSizeHigh
<< 32) | pWFD
->nFileSizeLow
);
1916 wsprintfW(b2
, sByteFmt
, b1
);
1917 SetWindowTextW(GetDlgItem(hwnd
, IDC_STATIC_PROP_SIZE
), b2
);
1919 SetWindowTextW(GetDlgItem(hwnd
, IDC_STATIC_PROP_FILENAME
), pWFD
->cFileName
);
1920 SetWindowTextW(GetDlgItem(hwnd
, IDC_STATIC_PROP_PATH
), dlg
->path
);
1922 set_check(hwnd
, IDC_CHECK_READONLY
, pWFD
->dwFileAttributes
&FILE_ATTRIBUTE_READONLY
);
1923 set_check(hwnd
, IDC_CHECK_ARCHIVE
, pWFD
->dwFileAttributes
&FILE_ATTRIBUTE_ARCHIVE
);
1924 set_check(hwnd
, IDC_CHECK_COMPRESSED
, pWFD
->dwFileAttributes
&FILE_ATTRIBUTE_COMPRESSED
);
1925 set_check(hwnd
, IDC_CHECK_HIDDEN
, pWFD
->dwFileAttributes
&FILE_ATTRIBUTE_HIDDEN
);
1926 set_check(hwnd
, IDC_CHECK_SYSTEM
, pWFD
->dwFileAttributes
&FILE_ATTRIBUTE_SYSTEM
);
1928 CheckForFileInfo(dlg
, hwnd
, dlg
->path
);
1932 int id
= (int)wparam
;
1934 switch(HIWORD(wparam
)) {
1935 case LBN_SELCHANGE
: {
1936 HWND hlbox
= GetDlgItem(hwnd
, IDC_LIST_PROP_VERSION_TYPES
);
1937 PropDlg_DisplayValue(hlbox
, GetDlgItem(hwnd
,IDC_LIST_PROP_VERSION_VALUES
));
1942 if (id
==IDOK
|| id
==IDCANCEL
)
1943 EndDialog(hwnd
, id
);
1949 HeapFree(GetProcessHeap(), 0, dlg
->pVersionData
);
1950 dlg
->pVersionData
= NULL
;
1957 static void show_properties_dlg(Entry
* entry
, HWND hwnd
)
1959 struct PropertiesDialog dlg
;
1961 memset(&dlg
, 0, sizeof(struct PropertiesDialog
));
1962 get_path(entry
, dlg
.path
);
1963 memcpy(&dlg
.entry
, entry
, sizeof(Entry
));
1965 DialogBoxParamW(Globals
.hInstance
, MAKEINTRESOURCEW(IDD_DIALOG_PROPERTIES
), hwnd
, PropertiesDialogDlgProc
, (LPARAM
)&dlg
);
1969 #ifndef _NO_EXTENSIONS
1971 static struct FullScreenParameters
{
1981 static void frame_get_clientspace(HWND hwnd
, PRECT prect
)
1985 if (!IsIconic(hwnd
))
1986 GetClientRect(hwnd
, prect
);
1990 GetWindowPlacement(hwnd
, &wp
);
1992 prect
->left
= prect
->top
= 0;
1993 prect
->right
= wp
.rcNormalPosition
.right
-wp
.rcNormalPosition
.left
-
1994 2*(GetSystemMetrics(SM_CXSIZEFRAME
)+GetSystemMetrics(SM_CXEDGE
));
1995 prect
->bottom
= wp
.rcNormalPosition
.bottom
-wp
.rcNormalPosition
.top
-
1996 2*(GetSystemMetrics(SM_CYSIZEFRAME
)+GetSystemMetrics(SM_CYEDGE
))-
1997 GetSystemMetrics(SM_CYCAPTION
)-GetSystemMetrics(SM_CYMENUSIZE
);
2000 if (IsWindowVisible(Globals
.htoolbar
)) {
2001 GetClientRect(Globals
.htoolbar
, &rt
);
2002 prect
->top
+= rt
.bottom
+2;
2005 if (IsWindowVisible(Globals
.hdrivebar
)) {
2006 GetClientRect(Globals
.hdrivebar
, &rt
);
2007 prect
->top
+= rt
.bottom
+2;
2010 if (IsWindowVisible(Globals
.hstatusbar
)) {
2011 GetClientRect(Globals
.hstatusbar
, &rt
);
2012 prect
->bottom
-= rt
.bottom
;
2016 static BOOL
toggle_fullscreen(HWND hwnd
)
2020 if ((g_fullscreen
.mode
=!g_fullscreen
.mode
)) {
2021 GetWindowRect(hwnd
, &g_fullscreen
.orgPos
);
2022 g_fullscreen
.wasZoomed
= IsZoomed(hwnd
);
2024 Frame_CalcFrameClient(hwnd
, &rt
);
2025 MapWindowPoints( hwnd
, 0, (POINT
*)&rt
, 2 );
2027 rt
.left
= g_fullscreen
.orgPos
.left
-rt
.left
;
2028 rt
.top
= g_fullscreen
.orgPos
.top
-rt
.top
;
2029 rt
.right
= GetSystemMetrics(SM_CXSCREEN
)+g_fullscreen
.orgPos
.right
-rt
.right
;
2030 rt
.bottom
= GetSystemMetrics(SM_CYSCREEN
)+g_fullscreen
.orgPos
.bottom
-rt
.bottom
;
2032 MoveWindow(hwnd
, rt
.left
, rt
.top
, rt
.right
-rt
.left
, rt
.bottom
-rt
.top
, TRUE
);
2034 MoveWindow(hwnd
, g_fullscreen
.orgPos
.left
, g_fullscreen
.orgPos
.top
,
2035 g_fullscreen
.orgPos
.right
-g_fullscreen
.orgPos
.left
,
2036 g_fullscreen
.orgPos
.bottom
-g_fullscreen
.orgPos
.top
, TRUE
);
2038 if (g_fullscreen
.wasZoomed
)
2039 ShowWindow(hwnd
, WS_MAXIMIZE
);
2042 return g_fullscreen
.mode
;
2045 static void fullscreen_move(HWND hwnd
)
2048 GetWindowRect(hwnd
, &pos
);
2050 Frame_CalcFrameClient(hwnd
, &rt
);
2051 MapWindowPoints( hwnd
, 0, (POINT
*)&rt
, 2 );
2053 rt
.left
= pos
.left
-rt
.left
;
2054 rt
.top
= pos
.top
-rt
.top
;
2055 rt
.right
= GetSystemMetrics(SM_CXSCREEN
)+pos
.right
-rt
.right
;
2056 rt
.bottom
= GetSystemMetrics(SM_CYSCREEN
)+pos
.bottom
-rt
.bottom
;
2058 MoveWindow(hwnd
, rt
.left
, rt
.top
, rt
.right
-rt
.left
, rt
.bottom
-rt
.top
, TRUE
);
2064 static void toggle_child(HWND hwnd
, UINT cmd
, HWND hchild
)
2066 BOOL vis
= IsWindowVisible(hchild
);
2068 CheckMenuItem(Globals
.hMenuOptions
, cmd
, vis
?MF_BYCOMMAND
:MF_BYCOMMAND
|MF_CHECKED
);
2070 ShowWindow(hchild
, vis
?SW_HIDE
:SW_SHOW
);
2072 #ifndef _NO_EXTENSIONS
2073 if (g_fullscreen
.mode
)
2074 fullscreen_move(hwnd
);
2077 resize_frame_client(hwnd
);
2080 static BOOL
activate_drive_window(LPCWSTR path
)
2082 WCHAR drv1
[_MAX_DRIVE
], drv2
[_MAX_DRIVE
];
2085 _wsplitpath(path
, drv1
, 0, 0, 0);
2087 /* search for a already open window for the same drive */
2088 for(child_wnd
=GetNextWindow(Globals
.hmdiclient
,GW_CHILD
); child_wnd
; child_wnd
=GetNextWindow(child_wnd
, GW_HWNDNEXT
)) {
2089 ChildWnd
* child
= (ChildWnd
*)GetWindowLongPtrW(child_wnd
, GWLP_USERDATA
);
2092 _wsplitpath(child
->root
.path
, drv2
, 0, 0, 0);
2094 if (!lstrcmpiW(drv2
, drv1
)) {
2095 SendMessageW(Globals
.hmdiclient
, WM_MDIACTIVATE
, (WPARAM
)child_wnd
, 0);
2097 if (IsIconic(child_wnd
))
2098 ShowWindow(child_wnd
, SW_SHOWNORMAL
);
2108 #ifndef _NO_EXTENSIONS
2109 static BOOL
activate_fs_window(LPCWSTR filesys
)
2113 /* search for a already open window of the given file system name */
2114 for(child_wnd
=GetNextWindow(Globals
.hmdiclient
,GW_CHILD
); child_wnd
; child_wnd
=GetNextWindow(child_wnd
, GW_HWNDNEXT
)) {
2115 ChildWnd
* child
= (ChildWnd
*) GetWindowLongPtrW(child_wnd
, GWLP_USERDATA
);
2118 if (!lstrcmpiW(child
->root
.fs
, filesys
)) {
2119 SendMessageW(Globals
.hmdiclient
, WM_MDIACTIVATE
, (WPARAM
)child_wnd
, 0);
2121 if (IsIconic(child_wnd
))
2122 ShowWindow(child_wnd
, SW_SHOWNORMAL
);
2131 #endif /* _NO_EXTENSIONS */
2133 static LRESULT CALLBACK
FrameWndProc(HWND hwnd
, UINT nmsg
, WPARAM wparam
, LPARAM lparam
)
2135 WCHAR b1
[BUFFER_LEN
], b2
[BUFFER_LEN
];
2139 if (Globals
.saveSettings
)
2140 save_registry_settings();
2142 DestroyWindow(hwnd
);
2144 /* clear handle variables */
2145 Globals
.hMenuFrame
= 0;
2146 Globals
.hMenuView
= 0;
2147 Globals
.hMenuOptions
= 0;
2148 Globals
.hMainWnd
= 0;
2149 Globals
.hmdiclient
= 0;
2150 Globals
.hdrivebar
= 0;
2157 case WM_INITMENUPOPUP
: {
2158 HWND hwndClient
= (HWND
)SendMessageW(Globals
.hmdiclient
, WM_MDIGETACTIVE
, 0, 0);
2160 if (!SendMessageW(hwndClient
, WM_INITMENUPOPUP
, wparam
, lparam
))
2165 UINT cmd
= LOWORD(wparam
);
2166 HWND hwndClient
= (HWND
)SendMessageW(Globals
.hmdiclient
, WM_MDIGETACTIVE
, 0, 0);
2168 if (SendMessageW(hwndClient
, WM_DISPATCH_COMMAND
, wparam
, lparam
))
2171 if (cmd
>=ID_DRIVE_FIRST
&& cmd
<=ID_DRIVE_FIRST
+0xFF) {
2172 WCHAR drv
[_MAX_DRIVE
], path
[MAX_PATH
];
2174 LPCWSTR root
= Globals
.drives
;
2177 for(i
=cmd
-ID_DRIVE_FIRST
; i
--; root
++)
2181 if (activate_drive_window(root
))
2184 _wsplitpath(root
, drv
, 0, 0, 0);
2186 if (!SetCurrentDirectoryW(drv
)) {
2187 display_error(hwnd
, GetLastError());
2191 GetCurrentDirectoryW(MAX_PATH
, path
); /*TODO: store last directory per drive */
2192 child
= alloc_child_window(path
, NULL
, hwnd
);
2194 if (!create_child_window(child
))
2195 HeapFree(GetProcessHeap(), 0, child
);
2196 } else switch(cmd
) {
2198 SendMessageW(hwnd
, WM_CLOSE
, 0, 0);
2201 case ID_WINDOW_NEW
: {
2202 WCHAR path
[MAX_PATH
];
2205 GetCurrentDirectoryW(MAX_PATH
, path
);
2206 child
= alloc_child_window(path
, NULL
, hwnd
);
2208 if (!create_child_window(child
))
2209 HeapFree(GetProcessHeap(), 0, child
);
2216 case ID_WINDOW_CASCADE
:
2217 SendMessageW(Globals
.hmdiclient
, WM_MDICASCADE
, 0, 0);
2220 case ID_WINDOW_TILE_HORZ
:
2221 SendMessageW(Globals
.hmdiclient
, WM_MDITILE
, MDITILE_HORIZONTAL
, 0);
2224 case ID_WINDOW_TILE_VERT
:
2225 SendMessageW(Globals
.hmdiclient
, WM_MDITILE
, MDITILE_VERTICAL
, 0);
2228 case ID_WINDOW_ARRANGE
:
2229 SendMessageW(Globals
.hmdiclient
, WM_MDIICONARRANGE
, 0, 0);
2232 case ID_SELECT_FONT
:
2236 case ID_VIEW_TOOL_BAR
:
2237 toggle_child(hwnd
, cmd
, Globals
.htoolbar
);
2240 case ID_VIEW_DRIVE_BAR
:
2241 toggle_child(hwnd
, cmd
, Globals
.hdrivebar
);
2244 case ID_VIEW_STATUSBAR
:
2245 toggle_child(hwnd
, cmd
, Globals
.hstatusbar
);
2248 case ID_VIEW_SAVESETTINGS
:
2249 Globals
.saveSettings
= !Globals
.saveSettings
;
2250 CheckMenuItem(Globals
.hMenuOptions
, ID_VIEW_SAVESETTINGS
,
2251 Globals
.saveSettings
? MF_CHECKED
: MF_UNCHECKED
);
2255 WineFile_OnRun( hwnd
);
2258 case ID_CONNECT_NETWORK_DRIVE
: {
2259 DWORD ret
= WNetConnectionDialog(hwnd
, RESOURCETYPE_DISK
);
2260 if (ret
== NO_ERROR
)
2262 else if (ret
!= (DWORD
)-1) {
2263 if (ret
== ERROR_EXTENDED_ERROR
)
2264 display_network_error(hwnd
);
2266 display_error(hwnd
, ret
);
2270 case ID_DISCONNECT_NETWORK_DRIVE
: {
2271 DWORD ret
= WNetDisconnectDialog(hwnd
, RESOURCETYPE_DISK
);
2272 if (ret
== NO_ERROR
)
2274 else if (ret
!= (DWORD
)-1) {
2275 if (ret
== ERROR_EXTENDED_ERROR
)
2276 display_network_error(hwnd
);
2278 display_error(hwnd
, ret
);
2283 WinHelpW(hwnd
, RS(b1
,IDS_WINEFILE
), HELP_INDEX
, 0);
2286 #ifndef _NO_EXTENSIONS
2287 case ID_VIEW_FULLSCREEN
:
2288 CheckMenuItem(Globals
.hMenuOptions
, cmd
, toggle_fullscreen(hwnd
)?MF_CHECKED
:0);
2292 case ID_DRIVE_UNIX_FS
: {
2293 WCHAR path
[MAX_PATH
];
2294 char cpath
[MAX_PATH
];
2297 if (activate_fs_window(RS(b1
,IDS_UNIXFS
)))
2300 getcwd(cpath
, MAX_PATH
);
2301 MultiByteToWideChar(CP_UNIXCP
, 0, cpath
, -1, path
, MAX_PATH
);
2302 child
= alloc_child_window(path
, NULL
, hwnd
);
2304 if (!create_child_window(child
))
2305 HeapFree(GetProcessHeap(), 0, child
);
2308 #ifdef _SHELL_FOLDERS
2309 case ID_DRIVE_SHELL_NS
: {
2310 WCHAR path
[MAX_PATH
];
2313 if (activate_fs_window(RS(b1
,IDS_SHELL
)))
2316 GetCurrentDirectoryW(MAX_PATH
, path
);
2317 child
= alloc_child_window(path
, get_path_pidl(path
,hwnd
), hwnd
);
2319 if (!create_child_window(child
))
2320 HeapFree(GetProcessHeap(), 0, child
);
2325 /*TODO: There are even more menu items! */
2328 ShellAboutW(hwnd
, RS(b1
,IDS_WINEFILE
), NULL
,
2329 LoadImageW( Globals
.hInstance
, MAKEINTRESOURCEW(IDI_WINEFILE
),
2330 IMAGE_ICON
, 48, 48, LR_SHARED
));
2334 /*TODO: if (wParam >= PM_FIRST_LANGUAGE && wParam <= PM_LAST_LANGUAGE)
2335 STRING_SelectLanguageByNumber(wParam - PM_FIRST_LANGUAGE);
2336 else */if ((cmd
<IDW_FIRST_CHILD
|| cmd
>=IDW_FIRST_CHILD
+0x100) &&
2337 (cmd
<SC_SIZE
|| cmd
>SC_RESTORE
))
2338 MessageBoxW(hwnd
, RS(b2
,IDS_NO_IMPL
), RS(b1
,IDS_WINEFILE
), MB_OK
);
2340 return DefFrameProcW(hwnd
, Globals
.hmdiclient
, nmsg
, wparam
, lparam
);
2345 resize_frame(hwnd
, LOWORD(lparam
), HIWORD(lparam
));
2346 break; /* do not pass message to DefFrameProcW */
2348 case WM_DEVICECHANGE
:
2349 SendMessageW(hwnd
, WM_COMMAND
, MAKELONG(ID_REFRESH
,0), 0);
2352 #ifndef _NO_EXTENSIONS
2353 case WM_GETMINMAXINFO
: {
2354 LPMINMAXINFO lpmmi
= (LPMINMAXINFO
)lparam
;
2356 lpmmi
->ptMaxTrackSize
.x
<<= 1;/*2*GetSystemMetrics(SM_CXSCREEN) / SM_CXVIRTUALSCREEN */
2357 lpmmi
->ptMaxTrackSize
.y
<<= 1;/*2*GetSystemMetrics(SM_CYSCREEN) / SM_CYVIRTUALSCREEN */
2360 case FRM_CALC_CLIENT
:
2361 frame_get_clientspace(hwnd
, (PRECT
)lparam
);
2363 #endif /* _NO_EXTENSIONS */
2366 return DefFrameProcW(hwnd
, Globals
.hmdiclient
, nmsg
, wparam
, lparam
);
2373 static WCHAR g_pos_names
[COLUMNS
][20] = {
2377 static const int g_pos_align
[] = {
2379 HDF_LEFT
, /* Name */
2380 HDF_RIGHT
, /* Size */
2381 HDF_LEFT
, /* CDate */
2382 #ifndef _NO_EXTENSIONS
2383 HDF_LEFT
, /* ADate */
2384 HDF_LEFT
, /* MDate */
2385 HDF_LEFT
, /* Index */
2386 HDF_CENTER
, /* Links */
2388 HDF_CENTER
, /* Attributes */
2389 #ifndef _NO_EXTENSIONS
2390 HDF_LEFT
/* Security */
2394 static void resize_tree(ChildWnd
* child
, int cx
, int cy
)
2396 HDWP hdwp
= BeginDeferWindowPos(4);
2404 cx
= child
->split_pos
+ SPLIT_WIDTH
/2;
2406 #ifndef _NO_EXTENSIONS
2414 SendMessageW(child
->left
.hwndHeader
, HDM_LAYOUT
, 0, (LPARAM
)&hdl
);
2416 DeferWindowPos(hdwp
, child
->left
.hwndHeader
, wp
.hwndInsertAfter
,
2417 wp
.x
-1, wp
.y
, child
->split_pos
-SPLIT_WIDTH
/2+1, wp
.cy
, wp
.flags
);
2418 DeferWindowPos(hdwp
, child
->right
.hwndHeader
, wp
.hwndInsertAfter
,
2419 rt
.left
+cx
+1, wp
.y
, wp
.cx
-cx
+2, wp
.cy
, wp
.flags
);
2421 #endif /* _NO_EXTENSIONS */
2423 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
);
2424 DeferWindowPos(hdwp
, child
->right
.hwnd
, 0, rt
.left
+cx
+1, rt
.top
, rt
.right
-cx
, rt
.bottom
-rt
.top
, SWP_NOZORDER
|SWP_NOACTIVATE
);
2426 EndDeferWindowPos(hdwp
);
2430 #ifndef _NO_EXTENSIONS
2432 static HWND
create_header(HWND parent
, Pane
* pane
, UINT id
)
2437 HWND hwnd
= CreateWindowW(WC_HEADERW
, 0, WS_CHILD
|WS_VISIBLE
|HDS_HORZ
|HDS_FULLDRAG
/*TODO: |HDS_BUTTONS + sort orders*/,
2438 0, 0, 0, 0, parent
, (HMENU
)ULongToHandle(id
), Globals
.hInstance
, 0);
2442 SendMessageW(hwnd
, WM_SETFONT
, (WPARAM
)GetStockObject(DEFAULT_GUI_FONT
), FALSE
);
2444 hdi
.mask
= HDI_TEXT
|HDI_WIDTH
|HDI_FORMAT
;
2446 for(idx
=0; idx
<COLUMNS
; idx
++) {
2447 hdi
.pszText
= g_pos_names
[idx
];
2448 hdi
.fmt
= HDF_STRING
| g_pos_align
[idx
];
2449 hdi
.cxy
= pane
->widths
[idx
];
2450 SendMessageW(hwnd
, HDM_INSERTITEMW
, idx
, (LPARAM
)&hdi
);
2456 #endif /* _NO_EXTENSIONS */
2459 static void init_output(HWND hwnd
)
2461 static const WCHAR s1000
[] = {'1','0','0','0','\0'};
2464 HDC hdc
= GetDC(hwnd
);
2466 if (GetNumberFormatW(LOCALE_USER_DEFAULT
, 0, s1000
, 0, b
, 16) > 4)
2467 Globals
.num_sep
= b
[1];
2469 Globals
.num_sep
= '.';
2471 old_font
= SelectObject(hdc
, Globals
.hfont
);
2472 GetTextExtentPoint32W(hdc
, sSpace
, 1, &Globals
.spaceSize
);
2473 SelectObject(hdc
, old_font
);
2474 ReleaseDC(hwnd
, hdc
);
2477 static void draw_item(Pane
* pane
, LPDRAWITEMSTRUCT dis
, Entry
* entry
, int calcWidthCol
);
2480 /* calculate preferred width for all visible columns */
2482 static BOOL
calc_widths(Pane
* pane
, BOOL anyway
)
2484 int col
, x
, cx
, spc
=3*Globals
.spaceSize
.cx
;
2485 int entries
= SendMessageW(pane
->hwnd
, LB_GETCOUNT
, 0, 0);
2486 int orgWidths
[COLUMNS
];
2487 int orgPositions
[COLUMNS
+1];
2493 memcpy(orgWidths
, pane
->widths
, sizeof(orgWidths
));
2494 memcpy(orgPositions
, pane
->positions
, sizeof(orgPositions
));
2497 for(col
=0; col
<COLUMNS
; col
++)
2498 pane
->widths
[col
] = 0;
2500 hdc
= GetDC(pane
->hwnd
);
2501 hfontOld
= SelectObject(hdc
, Globals
.hfont
);
2503 for(cnt
=0; cnt
<entries
; cnt
++) {
2504 Entry
* entry
= (Entry
*)SendMessageW(pane
->hwnd
, LB_GETITEMDATA
, cnt
, 0);
2513 dis
.hwndItem
= pane
->hwnd
;
2515 dis
.rcItem
.left
= 0;
2517 dis
.rcItem
.right
= 0;
2518 dis
.rcItem
.bottom
= 0;
2519 /*dis.itemData = 0; */
2521 draw_item(pane
, &dis
, entry
, COLUMNS
);
2524 SelectObject(hdc
, hfontOld
);
2525 ReleaseDC(pane
->hwnd
, hdc
);
2528 for(col
=0; col
<COLUMNS
; col
++) {
2529 pane
->positions
[col
] = x
;
2530 cx
= pane
->widths
[col
];
2535 if (cx
< IMAGE_WIDTH
)
2538 pane
->widths
[col
] = cx
;
2544 pane
->positions
[COLUMNS
] = x
;
2546 SendMessageW(pane
->hwnd
, LB_SETHORIZONTALEXTENT
, x
, 0);
2549 if (!anyway
&& !memcmp(orgWidths
, pane
->widths
, sizeof(orgWidths
)))
2552 /* don't move, if only collapsing an entry */
2553 if (!anyway
&& pane
->widths
[0]<orgWidths
[0] &&
2554 !memcmp(orgWidths
+1, pane
->widths
+1, sizeof(orgWidths
)-sizeof(int))) {
2555 pane
->widths
[0] = orgWidths
[0];
2556 memcpy(pane
->positions
, orgPositions
, sizeof(orgPositions
));
2561 InvalidateRect(pane
->hwnd
, 0, TRUE
);
2567 #ifndef _NO_EXTENSIONS
2568 /* calculate one preferred column width */
2570 static void calc_single_width(Pane
* pane
, int col
)
2574 int entries
= SendMessageW(pane
->hwnd
, LB_GETCOUNT
, 0, 0);
2578 pane
->widths
[col
] = 0;
2580 hdc
= GetDC(pane
->hwnd
);
2581 hfontOld
= SelectObject(hdc
, Globals
.hfont
);
2583 for(cnt
=0; cnt
<entries
; cnt
++) {
2584 Entry
* entry
= (Entry
*)SendMessageW(pane
->hwnd
, LB_GETITEMDATA
, cnt
, 0);
2592 dis
.hwndItem
= pane
->hwnd
;
2594 dis
.rcItem
.left
= 0;
2596 dis
.rcItem
.right
= 0;
2597 dis
.rcItem
.bottom
= 0;
2598 /*dis.itemData = 0; */
2600 draw_item(pane
, &dis
, entry
, col
);
2603 SelectObject(hdc
, hfontOld
);
2604 ReleaseDC(pane
->hwnd
, hdc
);
2606 cx
= pane
->widths
[col
];
2609 cx
+= 3*Globals
.spaceSize
.cx
;
2611 if (cx
< IMAGE_WIDTH
)
2615 pane
->widths
[col
] = cx
;
2617 x
= pane
->positions
[col
] + cx
;
2619 for(; col
<COLUMNS
-1; ) {
2620 pane
->positions
[++col
] = x
;
2621 x
+= pane
->widths
[col
];
2624 SendMessageW(pane
->hwnd
, LB_SETHORIZONTALEXTENT
, x
, 0);
2626 #endif /* _NO_EXTENSIONS */
2629 static BOOL
pattern_match(LPCWSTR str
, LPCWSTR pattern
)
2631 for( ; *str
&&*pattern
; str
++,pattern
++) {
2632 if (*pattern
== '*') {
2634 while(*pattern
== '*');
2640 if (*str
==*pattern
&& pattern_match(str
, pattern
))
2645 else if (*str
!=*pattern
&& *pattern
!='?')
2649 if (*str
|| *pattern
)
2650 if (*pattern
!='*' || pattern
[1]!='\0')
2656 static BOOL
pattern_imatch(LPCWSTR str
, LPCWSTR pattern
)
2658 WCHAR b1
[BUFFER_LEN
], b2
[BUFFER_LEN
];
2661 lstrcpyW(b2
, pattern
);
2665 return pattern_match(b1
, b2
);
2675 static enum FILE_TYPE
get_file_type(LPCWSTR filename
);
2678 /* insert listbox entries after index idx */
2680 static int insert_entries(Pane
* pane
, Entry
* dir
, LPCWSTR pattern
, int filter_flags
, int idx
)
2687 ShowWindow(pane
->hwnd
, SW_HIDE
);
2689 for(; entry
; entry
=entry
->next
) {
2691 if (pane
->treePane
&& !(entry
->data
.dwFileAttributes
&FILE_ATTRIBUTE_DIRECTORY
))
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] == '.')
2699 #ifndef _NO_EXTENSIONS
2700 entry
->data
.cFileName
[1] == '\0' ||
2702 (entry
->data
.cFileName
[1] == '.' && entry
->data
.cFileName
[2] == '\0'))
2705 /* filter directories in right pane */
2706 if (!pane
->treePane
&& !(filter_flags
&TF_DIRECTORIES
))
2710 /* filter using the file name pattern */
2712 if (!pattern_imatch(entry
->data
.cFileName
, pattern
))
2715 /* filter system and hidden files */
2716 if (!(filter_flags
&TF_HIDDEN
) && (entry
->data
.dwFileAttributes
&(FILE_ATTRIBUTE_HIDDEN
|FILE_ATTRIBUTE_SYSTEM
)))
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
)) {
2723 if (!(filter_flags
& TF_PROGRAMS
))
2728 if (!(filter_flags
& TF_DOCUMENTS
))
2732 default: /* TF_OTHERS */
2733 if (!(filter_flags
& TF_OTHERS
))
2740 SendMessageW(pane
->hwnd
, LB_INSERTSTRING
, idx
, (LPARAM
)entry
);
2742 if (pane
->treePane
&& entry
->expanded
)
2743 idx
= insert_entries(pane
, entry
->down
, pattern
, filter_flags
, idx
);
2746 ShowWindow(pane
->hwnd
, SW_SHOW
);
2752 static void format_bytes(LPWSTR buffer
, LONGLONG bytes
)
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};
2759 float fBytes
= (float)bytes
;
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
);
2768 sprintfW(buffer
, sFmtB
, (DWORD
)bytes
);
2771 static void set_space_status(void)
2773 ULARGE_INTEGER ulFreeBytesToCaller
, ulTotalBytes
, ulFreeBytes
;
2774 WCHAR fmt
[64], b1
[64], b2
[64], buffer
[BUFFER_LEN
];
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
);
2781 lstrcpyW(buffer
, sQMarks
);
2783 SendMessageW(Globals
.hstatusbar
, SB_SETTEXTW
, 0, (LPARAM
)buffer
);
2787 static WNDPROC g_orgTreeWndProc
;
2789 static void create_tree_window(HWND parent
, Pane
* pane
, UINT id
, UINT id_header
, LPCWSTR pattern
, int filter_flags
)
2791 static const WCHAR sListBox
[] = {'L','i','s','t','B','o','x','\0'};
2793 static int s_init
= 0;
2794 Entry
* entry
= pane
->root
;
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);
2800 SetWindowLongPtrW(pane
->hwnd
, GWLP_USERDATA
, (LPARAM
)pane
);
2801 g_orgTreeWndProc
= (WNDPROC
)SetWindowLongPtrW(pane
->hwnd
, GWLP_WNDPROC
, (LPARAM
)TreeWndProc
);
2803 SendMessageW(pane
->hwnd
, WM_SETFONT
, (WPARAM
)Globals
.hfont
, FALSE
);
2805 /* insert entries into listbox */
2807 insert_entries(pane
, entry
, pattern
, filter_flags
, -1);
2809 /* calculate column widths */
2812 init_output(pane
->hwnd
);
2815 calc_widths(pane
, TRUE
);
2817 #ifndef _NO_EXTENSIONS
2818 pane
->hwndHeader
= create_header(parent
, pane
, id_header
);
2823 static void InitChildWindow(ChildWnd
* child
)
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
);
2830 static void format_date(const FILETIME
* ft
, WCHAR
* buffer
, int visible_cols
)
2838 if (!ft
->dwLowDateTime
&& !ft
->dwHighDateTime
)
2841 if (!FileTimeToLocalFileTime(ft
, &lft
))
2842 {err
: lstrcpyW(buffer
,sQMarks
); return;}
2844 if (!FileTimeToSystemTime(&lft
, &systime
))
2847 if (visible_cols
& COL_DATE
) {
2848 len
= GetDateFormatW(LOCALE_USER_DEFAULT
, 0, &systime
, 0, buffer
, BUFFER_LEN
);
2853 if (visible_cols
& COL_TIME
) {
2855 buffer
[len
-1] = ' ';
2857 buffer
[len
++] = ' ';
2859 if (!GetTimeFormatW(LOCALE_USER_DEFAULT
, 0, &systime
, 0, buffer
+len
, BUFFER_LEN
-len
))
2865 static void calc_width(Pane
* pane
, LPDRAWITEMSTRUCT dis
, int col
, LPCWSTR str
)
2867 RECT rt
= {0, 0, 0, 0};
2869 DrawTextW(dis
->hDC
, str
, -1, &rt
, DT_CALCRECT
|DT_SINGLELINE
|DT_NOPREFIX
);
2871 if (rt
.right
> pane
->widths
[col
])
2872 pane
->widths
[col
] = rt
.right
;
2875 static void calc_tabbed_width(Pane
* pane
, LPDRAWITEMSTRUCT dis
, int col
, LPCWSTR str
)
2877 RECT rt
= {0, 0, 0, 0};
2879 DrawTextW(dis
->hDC
, str
, -1, &rt
, DT_CALCRECT
|DT_SINGLELINE
|DT_EXPANDTABS
|DT_TABSTOP
|(2<<8));
2880 /*FIXME rt (0,0) ??? */
2882 if (rt
.right
> pane
->widths
[col
])
2883 pane
->widths
[col
] = rt
.right
;
2887 static void output_text(Pane
* pane
, LPDRAWITEMSTRUCT dis
, int col
, LPCWSTR str
, DWORD flags
)
2889 int x
= dis
->rcItem
.left
;
2892 rt
.left
= x
+pane
->positions
[col
]+Globals
.spaceSize
.cx
;
2893 rt
.top
= dis
->rcItem
.top
;
2894 rt
.right
= x
+pane
->positions
[col
+1]-Globals
.spaceSize
.cx
;
2895 rt
.bottom
= dis
->rcItem
.bottom
;
2897 DrawTextW(dis
->hDC
, str
, -1, &rt
, DT_SINGLELINE
|DT_NOPREFIX
|flags
);
2900 static void output_tabbed_text(Pane
* pane
, LPDRAWITEMSTRUCT dis
, int col
, LPCWSTR str
)
2902 int x
= dis
->rcItem
.left
;
2905 rt
.left
= x
+pane
->positions
[col
]+Globals
.spaceSize
.cx
;
2906 rt
.top
= dis
->rcItem
.top
;
2907 rt
.right
= x
+pane
->positions
[col
+1]-Globals
.spaceSize
.cx
;
2908 rt
.bottom
= dis
->rcItem
.bottom
;
2910 DrawTextW(dis
->hDC
, str
, -1, &rt
, DT_SINGLELINE
|DT_EXPANDTABS
|DT_TABSTOP
|(2<<8));
2913 static void output_number(Pane
* pane
, LPDRAWITEMSTRUCT dis
, int col
, LPCWSTR str
)
2915 int x
= dis
->rcItem
.left
;
2922 rt
.left
= x
+pane
->positions
[col
]+Globals
.spaceSize
.cx
;
2923 rt
.top
= dis
->rcItem
.top
;
2924 rt
.right
= x
+pane
->positions
[col
+1]-Globals
.spaceSize
.cx
;
2925 rt
.bottom
= dis
->rcItem
.bottom
;
2930 /* insert number separator characters */
2931 pos
= lstrlenW(s
) % 3;
2937 *d
++ = Globals
.num_sep
;
2941 DrawTextW(dis
->hDC
, b
, d
-b
, &rt
, DT_RIGHT
|DT_SINGLELINE
|DT_NOPREFIX
|DT_END_ELLIPSIS
);
2945 static BOOL
is_exe_file(LPCWSTR ext
)
2947 static const WCHAR executable_extensions
[][4] = {
2952 #ifndef _NO_EXTENSIONS
2956 #endif /* _NO_EXTENSIONS */
2960 WCHAR ext_buffer
[_MAX_EXT
];
2961 const WCHAR (*p
)[4];
2965 for(s
=ext
+1,d
=ext_buffer
; (*d
=tolower(*s
)); s
++)
2968 for(p
=executable_extensions
; (*p
)[0]; p
++)
2969 if (!lstrcmpiW(ext_buffer
, *p
))
2975 static BOOL
is_registered_type(LPCWSTR ext
)
2977 /* check if there exists a classname for this file extension in the registry */
2978 if (!RegQueryValueW(HKEY_CLASSES_ROOT
, ext
, NULL
, NULL
))
2984 static enum FILE_TYPE
get_file_type(LPCWSTR filename
)
2986 LPCWSTR ext
= strrchrW(filename
, '.');
2990 if (is_exe_file(ext
))
2991 return FT_EXECUTABLE
;
2992 else if (is_registered_type(ext
))
2999 static void draw_item(Pane
* pane
, LPDRAWITEMSTRUCT dis
, Entry
* entry
, int calcWidthCol
)
3001 WCHAR buffer
[BUFFER_LEN
];
3003 int visible_cols
= pane
->visible_cols
;
3004 COLORREF bkcolor
, textcolor
;
3005 RECT focusRect
= dis
->rcItem
;
3012 attrs
= entry
->data
.dwFileAttributes
;
3014 if (attrs
& FILE_ATTRIBUTE_DIRECTORY
) {
3015 if (entry
->data
.cFileName
[0] == '.' && entry
->data
.cFileName
[1] == '.'
3016 && entry
->data
.cFileName
[2] == '\0')
3017 img
= IMG_FOLDER_UP
;
3018 #ifndef _NO_EXTENSIONS
3019 else if (entry
->data
.cFileName
[0] == '.' && entry
->data
.cFileName
[1] == '\0')
3020 img
= IMG_FOLDER_CUR
;
3023 #ifdef _NO_EXTENSIONS
3026 (pane
->treePane
&& (dis
->itemState
&ODS_FOCUS
)))
3027 img
= IMG_OPEN_FOLDER
;
3031 switch(get_file_type(entry
->data
.cFileName
)) {
3032 case FT_EXECUTABLE
: img
= IMG_EXECUTABLE
; break;
3033 case FT_DOCUMENT
: img
= IMG_DOCUMENT
; break;
3034 default: img
= IMG_FILE
;
3042 if (pane
->treePane
) {
3044 img_pos
= dis
->rcItem
.left
+ entry
->level
*(IMAGE_WIDTH
+TREE_LINE_DX
);
3046 if (calcWidthCol
== -1) {
3048 int y
= dis
->rcItem
.top
+ IMAGE_HEIGHT
/2;
3051 HRGN hrgn_org
= CreateRectRgn(0, 0, 0, 0);
3054 rt_clip
.left
= dis
->rcItem
.left
;
3055 rt_clip
.top
= dis
->rcItem
.top
;
3056 rt_clip
.right
= dis
->rcItem
.left
+pane
->widths
[col
];
3057 rt_clip
.bottom
= dis
->rcItem
.bottom
;
3059 hrgn
= CreateRectRgnIndirect(&rt_clip
);
3061 if (!GetClipRgn(dis
->hDC
, hrgn_org
)) {
3062 DeleteObject(hrgn_org
);
3066 ExtSelectClipRgn(dis
->hDC
, hrgn
, RGN_AND
);
3069 if ((up
=entry
->up
) != NULL
) {
3070 MoveToEx(dis
->hDC
, img_pos
-IMAGE_WIDTH
/2, y
, 0);
3071 LineTo(dis
->hDC
, img_pos
-2, y
);
3073 x
= img_pos
- IMAGE_WIDTH
/2;
3076 x
-= IMAGE_WIDTH
+TREE_LINE_DX
;
3080 && (up
->next
->data
.dwFileAttributes
& FILE_ATTRIBUTE_DIRECTORY
)
3083 MoveToEx(dis
->hDC
, x
, dis
->rcItem
.top
, 0);
3084 LineTo(dis
->hDC
, x
, dis
->rcItem
.bottom
);
3086 } while((up
=up
->up
) != NULL
);
3089 x
= img_pos
- IMAGE_WIDTH
/2;
3091 MoveToEx(dis
->hDC
, x
, dis
->rcItem
.top
, 0);
3092 LineTo(dis
->hDC
, x
, y
);
3096 && (entry
->next
->data
.dwFileAttributes
&FILE_ATTRIBUTE_DIRECTORY
)
3099 LineTo(dis
->hDC
, x
, dis
->rcItem
.bottom
);
3101 SelectClipRgn(dis
->hDC
, hrgn_org
);
3102 if (hrgn_org
) DeleteObject(hrgn_org
);
3103 } else if (calcWidthCol
==col
|| calcWidthCol
==COLUMNS
) {
3104 int right
= img_pos
+ IMAGE_WIDTH
- TREE_LINE_DX
;
3106 if (right
> pane
->widths
[col
])
3107 pane
->widths
[col
] = right
;
3110 img_pos
= dis
->rcItem
.left
;
3113 img_pos
= dis
->rcItem
.left
;
3115 if (calcWidthCol
==col
|| calcWidthCol
==COLUMNS
)
3116 pane
->widths
[col
] = IMAGE_WIDTH
;
3119 if (calcWidthCol
== -1) {
3120 focusRect
.left
= img_pos
-2;
3122 #ifdef _NO_EXTENSIONS
3123 if (pane
->treePane
&& entry
) {
3126 DrawTextW(dis
->hDC
, entry
->data
.cFileName
, -1, &rt
, DT_CALCRECT
|DT_SINGLELINE
|DT_NOPREFIX
);
3128 focusRect
.right
= dis
->rcItem
.left
+pane
->positions
[col
+1]+TREE_LINE_DX
+ rt
.right
+2;
3132 if (attrs
& FILE_ATTRIBUTE_COMPRESSED
)
3133 textcolor
= COLOR_COMPRESSED
;
3135 #endif /* _NO_EXTENSIONS */
3136 textcolor
= RGB(0,0,0);
3138 if (dis
->itemState
& ODS_FOCUS
) {
3139 textcolor
= RGB(255,255,255);
3140 bkcolor
= COLOR_SELECTION
;
3142 bkcolor
= RGB(255,255,255);
3145 hbrush
= CreateSolidBrush(bkcolor
);
3146 FillRect(dis
->hDC
, &focusRect
, hbrush
);
3147 DeleteObject(hbrush
);
3149 SetBkMode(dis
->hDC
, TRANSPARENT
);
3150 SetTextColor(dis
->hDC
, textcolor
);
3152 cx
= pane
->widths
[col
];
3154 if (cx
&& img
!=IMG_NONE
) {
3155 if (cx
> IMAGE_WIDTH
)
3158 #ifdef _SHELL_FOLDERS
3159 if (entry
->hicon
&& entry
->hicon
!=(HICON
)-1)
3160 DrawIconEx(dis
->hDC
, img_pos
, dis
->rcItem
.top
, entry
->hicon
, cx
, GetSystemMetrics(SM_CYSMICON
), 0, 0, DI_NORMAL
);
3163 ImageList_DrawEx(Globals
.himl
, img
, dis
->hDC
,
3164 img_pos
, dis
->rcItem
.top
, cx
,
3165 IMAGE_HEIGHT
, bkcolor
, CLR_DEFAULT
, ILD_NORMAL
);
3172 #ifdef _NO_EXTENSIONS
3173 if (img
>= IMG_FOLDER_UP
)
3179 /* output file name */
3180 if (calcWidthCol
== -1)
3181 output_text(pane
, dis
, col
, entry
->data
.cFileName
, 0);
3182 else if (calcWidthCol
==col
|| calcWidthCol
==COLUMNS
)
3183 calc_width(pane
, dis
, col
, entry
->data
.cFileName
);
3187 #ifdef _NO_EXTENSIONS
3188 if (!pane
->treePane
) {
3191 /* display file size */
3192 if (visible_cols
& COL_SIZE
) {
3193 #ifdef _NO_EXTENSIONS
3194 if (!(attrs
&FILE_ATTRIBUTE_DIRECTORY
))
3197 format_longlong( buffer
, ((ULONGLONG
)entry
->data
.nFileSizeHigh
<< 32) | entry
->data
.nFileSizeLow
);
3199 if (calcWidthCol
== -1)
3200 output_number(pane
, dis
, col
, buffer
);
3201 else if (calcWidthCol
==col
|| calcWidthCol
==COLUMNS
)
3202 calc_width(pane
, dis
, col
, buffer
);/*TODO: not ever time enough */
3208 /* display file date */
3209 if (visible_cols
& (COL_DATE
|COL_TIME
)) {
3210 #ifndef _NO_EXTENSIONS
3211 format_date(&entry
->data
.ftCreationTime
, buffer
, visible_cols
);
3212 if (calcWidthCol
== -1)
3213 output_text(pane
, dis
, col
, buffer
, 0);
3214 else if (calcWidthCol
==col
|| calcWidthCol
==COLUMNS
)
3215 calc_width(pane
, dis
, col
, buffer
);
3218 format_date(&entry
->data
.ftLastAccessTime
, buffer
, visible_cols
);
3219 if (calcWidthCol
== -1)
3220 output_text(pane
, dis
, col
, buffer
, 0);
3221 else if (calcWidthCol
==col
|| calcWidthCol
==COLUMNS
)
3222 calc_width(pane
, dis
, col
, buffer
);
3224 #endif /* _NO_EXTENSIONS */
3226 format_date(&entry
->data
.ftLastWriteTime
, 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
);
3234 #ifndef _NO_EXTENSIONS
3235 if (entry
->bhfi_valid
) {
3236 if (visible_cols
& COL_INDEX
) {
3237 static const WCHAR fmtlow
[] = {'%','X',0};
3238 static const WCHAR fmthigh
[] = {'%','X','%','0','8','X',0};
3240 if (entry
->bhfi
.nFileIndexHigh
)
3241 wsprintfW(buffer
, fmthigh
,
3242 entry
->bhfi
.nFileIndexHigh
, entry
->bhfi
.nFileIndexLow
);
3244 wsprintfW(buffer
, fmtlow
, entry
->bhfi
.nFileIndexLow
);
3246 if (calcWidthCol
== -1)
3247 output_text(pane
, dis
, col
, buffer
, DT_RIGHT
);
3248 else if (calcWidthCol
==col
|| calcWidthCol
==COLUMNS
)
3249 calc_width(pane
, dis
, col
, buffer
);
3254 if (visible_cols
& COL_LINKS
) {
3255 wsprintfW(buffer
, sNumFmt
, entry
->bhfi
.nNumberOfLinks
);
3257 if (calcWidthCol
== -1)
3258 output_text(pane
, dis
, col
, buffer
, DT_CENTER
);
3259 else if (calcWidthCol
==col
|| calcWidthCol
==COLUMNS
)
3260 calc_width(pane
, dis
, col
, buffer
);
3266 #endif /* _NO_EXTENSIONS */
3268 /* show file attributes */
3269 if (visible_cols
& COL_ATTRIBUTES
) {
3270 #ifdef _NO_EXTENSIONS
3271 static const WCHAR s4Tabs
[] = {' ','\t',' ','\t',' ','\t',' ','\t',' ','\0'};
3272 lstrcpyW(buffer
, s4Tabs
);
3274 static const WCHAR s11Tabs
[] = {' ','\t',' ','\t',' ','\t',' ','\t',' ','\t',' ','\t',' ','\t',' ','\t',' ','\t',' ','\t',' ','\t',' ','\0'};
3275 lstrcpyW(buffer
, s11Tabs
);
3278 if (attrs
& FILE_ATTRIBUTE_NORMAL
) buffer
[ 0] = 'N';
3280 if (attrs
& FILE_ATTRIBUTE_READONLY
) buffer
[ 2] = 'R';
3281 if (attrs
& FILE_ATTRIBUTE_HIDDEN
) buffer
[ 4] = 'H';
3282 if (attrs
& FILE_ATTRIBUTE_SYSTEM
) buffer
[ 6] = 'S';
3283 if (attrs
& FILE_ATTRIBUTE_ARCHIVE
) buffer
[ 8] = 'A';
3284 if (attrs
& FILE_ATTRIBUTE_COMPRESSED
) buffer
[10] = 'C';
3285 #ifndef _NO_EXTENSIONS
3286 if (attrs
& FILE_ATTRIBUTE_DIRECTORY
) buffer
[12] = 'D';
3287 if (attrs
& FILE_ATTRIBUTE_ENCRYPTED
) buffer
[14] = 'E';
3288 if (attrs
& FILE_ATTRIBUTE_TEMPORARY
) buffer
[16] = 'T';
3289 if (attrs
& FILE_ATTRIBUTE_SPARSE_FILE
) buffer
[18] = 'P';
3290 if (attrs
& FILE_ATTRIBUTE_REPARSE_POINT
) buffer
[20] = 'Q';
3291 if (attrs
& FILE_ATTRIBUTE_OFFLINE
) buffer
[22] = 'O';
3292 if (attrs
& FILE_ATTRIBUTE_NOT_CONTENT_INDEXED
) buffer
[24] = 'X';
3293 #endif /* _NO_EXTENSIONS */
3296 if (calcWidthCol
== -1)
3297 output_tabbed_text(pane
, dis
, col
, buffer
);
3298 else if (calcWidthCol
==col
|| calcWidthCol
==COLUMNS
)
3299 calc_tabbed_width(pane
, dis
, col
, buffer
);
3304 #ifdef _NO_EXTENSIONS
3307 /* draw focus frame */
3308 if ((dis
->itemState
&ODS_FOCUS
) && calcWidthCol
==-1) {
3309 /* Currently [04/2000] Wine neither behaves exactly the same */
3310 /* way as WIN 95 nor like Windows NT... */
3315 if (!(GetVersion() & 0x80000000)) { /* Windows NT? */
3316 LOGBRUSH lb
= {PS_SOLID
, RGB(255,255,255)};
3317 hpen
= ExtCreatePen(PS_COSMETIC
|PS_ALTERNATE
, 1, &lb
, 0, 0);
3319 hpen
= CreatePen(PS_DOT
, 0, RGB(255,255,255));
3321 lastPen
= SelectObject(dis
->hDC
, hpen
);
3322 lastBrush
= SelectObject(dis
->hDC
, GetStockObject(HOLLOW_BRUSH
));
3323 SetROP2(dis
->hDC
, R2_XORPEN
);
3324 Rectangle(dis
->hDC
, focusRect
.left
, focusRect
.top
, focusRect
.right
, focusRect
.bottom
);
3325 SelectObject(dis
->hDC
, lastBrush
);
3326 SelectObject(dis
->hDC
, lastPen
);
3329 #endif /* _NO_EXTENSIONS */
3333 #ifdef _NO_EXTENSIONS
3335 static void draw_splitbar(HWND hwnd
, int x
)
3338 HDC hdc
= GetDC(hwnd
);
3340 GetClientRect(hwnd
, &rt
);
3342 rt
.left
= x
- SPLIT_WIDTH
/2;
3343 rt
.right
= x
+ SPLIT_WIDTH
/2+1;
3345 InvertRect(hdc
, &rt
);
3347 ReleaseDC(hwnd
, hdc
);
3350 #endif /* _NO_EXTENSIONS */
3353 #ifndef _NO_EXTENSIONS
3355 static void set_header(Pane
* pane
)
3358 int scroll_pos
= GetScrollPos(pane
->hwnd
, SB_HORZ
);
3361 item
.mask
= HDI_WIDTH
;
3364 for(; x
+pane
->widths
[i
]<scroll_pos
&& i
<COLUMNS
; i
++) {
3365 x
+= pane
->widths
[i
];
3366 SendMessageW(pane
->hwndHeader
, HDM_SETITEMW
, i
, (LPARAM
)&item
);
3370 x
+= pane
->widths
[i
];
3371 item
.cxy
= x
- scroll_pos
;
3372 SendMessageW(pane
->hwndHeader
, HDM_SETITEMW
, i
++, (LPARAM
)&item
);
3374 for(; i
<COLUMNS
; i
++) {
3375 item
.cxy
= pane
->widths
[i
];
3376 x
+= pane
->widths
[i
];
3377 SendMessageW(pane
->hwndHeader
, HDM_SETITEMW
, i
, (LPARAM
)&item
);
3382 static LRESULT
pane_notify(Pane
* pane
, NMHDR
* pnmh
)
3384 switch(pnmh
->code
) {
3385 case HDN_ITEMCHANGEDW
: {
3386 LPNMHEADERW phdn
= (LPNMHEADERW
)pnmh
;
3387 int idx
= phdn
->iItem
;
3388 int dx
= phdn
->pitem
->cxy
- pane
->widths
[idx
];
3392 GetClientRect(pane
->hwnd
, &clnt
);
3394 pane
->widths
[idx
] += dx
;
3396 for(i
=idx
; ++i
<=COLUMNS
; )
3397 pane
->positions
[i
] += dx
;
3400 int scroll_pos
= GetScrollPos(pane
->hwnd
, SB_HORZ
);
3404 rt_scr
.left
= pane
->positions
[idx
+1]-scroll_pos
;
3406 rt_scr
.right
= clnt
.right
;
3407 rt_scr
.bottom
= clnt
.bottom
;
3409 rt_clip
.left
= pane
->positions
[idx
]-scroll_pos
;
3411 rt_clip
.right
= clnt
.right
;
3412 rt_clip
.bottom
= clnt
.bottom
;
3414 if (rt_scr
.left
< 0) rt_scr
.left
= 0;
3415 if (rt_clip
.left
< 0) rt_clip
.left
= 0;
3417 ScrollWindowEx(pane
->hwnd
, dx
, 0, &rt_scr
, &rt_clip
, 0, 0, SW_INVALIDATE
);
3419 rt_clip
.right
= pane
->positions
[idx
+1];
3420 RedrawWindow(pane
->hwnd
, &rt_clip
, 0, RDW_INVALIDATE
|RDW_UPDATENOW
);
3422 if (pnmh
->code
== HDN_ENDTRACKW
) {
3423 SendMessageW(pane
->hwnd
, LB_SETHORIZONTALEXTENT
, pane
->positions
[COLUMNS
], 0);
3425 if (GetScrollPos(pane
->hwnd
, SB_HORZ
) != scroll_pos
)
3433 case HDN_DIVIDERDBLCLICKW
: {
3434 LPNMHEADERW phdn
= (LPNMHEADERW
)pnmh
;
3437 calc_single_width(pane
, phdn
->iItem
);
3438 item
.mask
= HDI_WIDTH
;
3439 item
.cxy
= pane
->widths
[phdn
->iItem
];
3441 SendMessageW(pane
->hwndHeader
, HDM_SETITEMW
, phdn
->iItem
, (LPARAM
)&item
);
3442 InvalidateRect(pane
->hwnd
, 0, TRUE
);
3449 #endif /* _NO_EXTENSIONS */
3452 static void scan_entry(ChildWnd
* child
, Entry
* entry
, int idx
, HWND hwnd
)
3454 WCHAR path
[MAX_PATH
];
3455 HCURSOR old_cursor
= SetCursor(LoadCursorW(0, (LPCWSTR
)IDC_WAIT
));
3457 /* delete sub entries in left pane */
3459 LRESULT res
= SendMessageW(child
->left
.hwnd
, LB_GETITEMDATA
, idx
+1, 0);
3460 Entry
* sub
= (Entry
*) res
;
3462 if (res
==LB_ERR
|| !sub
|| sub
->level
<=entry
->level
)
3465 SendMessageW(child
->left
.hwnd
, LB_DELETESTRING
, idx
+1, 0);
3468 /* empty right pane */
3469 SendMessageW(child
->right
.hwnd
, LB_RESETCONTENT
, 0, 0);
3471 /* release memory */
3472 free_entries(entry
);
3474 /* read contents from disk */
3475 #ifdef _SHELL_FOLDERS
3476 if (entry
->etype
== ET_SHELL
)
3478 read_directory(entry
, NULL
, child
->sortOrder
, hwnd
);
3483 get_path(entry
, path
);
3484 read_directory(entry
, path
, child
->sortOrder
, hwnd
);
3487 /* insert found entries in right pane */
3488 insert_entries(&child
->right
, entry
->down
, child
->filter_pattern
, child
->filter_flags
, -1);
3489 calc_widths(&child
->right
, FALSE
);
3490 #ifndef _NO_EXTENSIONS
3491 set_header(&child
->right
);
3494 child
->header_wdths_ok
= FALSE
;
3496 SetCursor(old_cursor
);
3500 /* expand a directory entry */
3502 static BOOL
expand_entry(ChildWnd
* child
, Entry
* dir
)
3507 if (!dir
|| dir
->expanded
|| !dir
->down
)
3512 if (p
->data
.cFileName
[0]=='.' && p
->data
.cFileName
[1]=='\0' && p
->next
) {
3515 if (p
->data
.cFileName
[0]=='.' && p
->data
.cFileName
[1]=='.' &&
3516 p
->data
.cFileName
[2]=='\0' && p
->next
)
3520 /* no subdirectories ? */
3521 if (!(p
->data
.dwFileAttributes
&FILE_ATTRIBUTE_DIRECTORY
))
3524 idx
= SendMessageW(child
->left
.hwnd
, LB_FINDSTRING
, 0, (LPARAM
)dir
);
3526 dir
->expanded
= TRUE
;
3528 /* insert entries in left pane */
3529 insert_entries(&child
->left
, p
, NULL
, TF_ALL
, idx
);
3531 if (!child
->header_wdths_ok
) {
3532 if (calc_widths(&child
->left
, FALSE
)) {
3533 #ifndef _NO_EXTENSIONS
3534 set_header(&child
->left
);
3537 child
->header_wdths_ok
= TRUE
;
3545 static void collapse_entry(Pane
* pane
, Entry
* dir
)
3547 int idx
= SendMessageW(pane
->hwnd
, LB_FINDSTRING
, 0, (LPARAM
)dir
);
3549 ShowWindow(pane
->hwnd
, SW_HIDE
);
3551 /* hide sub entries */
3553 LRESULT res
= SendMessageW(pane
->hwnd
, LB_GETITEMDATA
, idx
+1, 0);
3554 Entry
* sub
= (Entry
*) res
;
3556 if (res
==LB_ERR
|| !sub
|| sub
->level
<=dir
->level
)
3559 SendMessageW(pane
->hwnd
, LB_DELETESTRING
, idx
+1, 0);
3562 dir
->expanded
= FALSE
;
3564 ShowWindow(pane
->hwnd
, SW_SHOW
);
3568 static void refresh_right_pane(ChildWnd
* child
)
3570 SendMessageW(child
->right
.hwnd
, LB_RESETCONTENT
, 0, 0);
3571 insert_entries(&child
->right
, child
->right
.root
, child
->filter_pattern
, child
->filter_flags
, -1);
3572 calc_widths(&child
->right
, FALSE
);
3574 #ifndef _NO_EXTENSIONS
3575 set_header(&child
->right
);
3579 static void set_curdir(ChildWnd
* child
, Entry
* entry
, int idx
, HWND hwnd
)
3581 WCHAR path
[MAX_PATH
];
3588 child
->left
.cur
= entry
;
3590 child
->right
.root
= entry
->down
? entry
->down
: entry
;
3591 child
->right
.cur
= entry
;
3593 if (!entry
->scanned
)
3594 scan_entry(child
, entry
, idx
, hwnd
);
3596 refresh_right_pane(child
);
3598 get_path(entry
, path
);
3599 lstrcpyW(child
->path
, path
);
3601 if (child
->hwnd
) /* only change window title, if the window already exists */
3602 SetWindowTextW(child
->hwnd
, path
);
3605 if (SetCurrentDirectoryW(path
))
3610 static void refresh_child(ChildWnd
* child
)
3612 WCHAR path
[MAX_PATH
], drv
[_MAX_DRIVE
+1];
3616 get_path(child
->left
.cur
, path
);
3617 _wsplitpath(path
, drv
, NULL
, NULL
, NULL
);
3619 child
->right
.root
= NULL
;
3621 scan_entry(child
, &child
->root
.entry
, 0, child
->hwnd
);
3623 #ifdef _SHELL_FOLDERS
3625 if (child
->root
.entry
.etype
== ET_SHELL
)
3627 LPITEMIDLIST local_pidl
= get_path_pidl(path
,child
->hwnd
);
3629 entry
= read_tree(&child
->root
, NULL
, local_pidl
, drv
, child
->sortOrder
, child
->hwnd
);
3635 entry
= read_tree(&child
->root
, path
, NULL
, drv
, child
->sortOrder
, child
->hwnd
);
3638 entry
= &child
->root
.entry
;
3640 insert_entries(&child
->left
, child
->root
.entry
.down
, NULL
, TF_ALL
, 0);
3642 set_curdir(child
, entry
, 0, child
->hwnd
);
3644 idx
= SendMessageW(child
->left
.hwnd
, LB_FINDSTRING
, 0, (LPARAM
)child
->left
.cur
);
3645 SendMessageW(child
->left
.hwnd
, LB_SETCURSEL
, idx
, 0);
3649 static void create_drive_bar(void)
3651 TBBUTTON drivebarBtn
= {0, 0, TBSTATE_ENABLED
, BTNS_BUTTON
, {0, 0}, 0, 0};
3652 #ifndef _NO_EXTENSIONS
3653 WCHAR b1
[BUFFER_LEN
];
3658 GetLogicalDriveStringsW(BUFFER_LEN
, Globals
.drives
);
3660 Globals
.hdrivebar
= CreateToolbarEx(Globals
.hMainWnd
, WS_CHILD
|WS_VISIBLE
|CCS_NOMOVEY
|TBSTYLE_LIST
,
3661 IDW_DRIVEBAR
, 2, Globals
.hInstance
, IDB_DRIVEBAR
, &drivebarBtn
,
3662 0, 16, 13, 16, 13, sizeof(TBBUTTON
));
3664 #ifndef _NO_EXTENSIONS
3666 /* insert unix file system button */
3670 SendMessageW(Globals
.hdrivebar
, TB_ADDSTRINGW
, 0, (LPARAM
)b1
);
3672 drivebarBtn
.idCommand
= ID_DRIVE_UNIX_FS
;
3673 SendMessageW(Globals
.hdrivebar
, TB_INSERTBUTTONW
, btn
++, (LPARAM
)&drivebarBtn
);
3674 drivebarBtn
.iString
++;
3676 #ifdef _SHELL_FOLDERS
3677 /* insert shell namespace button */
3678 load_string(b1
, sizeof(b1
)/sizeof(b1
[0]), IDS_SHELL
);
3679 b1
[lstrlenW(b1
)+1] = '\0';
3680 SendMessageW(Globals
.hdrivebar
, TB_ADDSTRINGW
, 0, (LPARAM
)b1
);
3682 drivebarBtn
.idCommand
= ID_DRIVE_SHELL_NS
;
3683 SendMessageW(Globals
.hdrivebar
, TB_INSERTBUTTONW
, btn
++, (LPARAM
)&drivebarBtn
);
3684 drivebarBtn
.iString
++;
3687 /* register windows drive root strings */
3688 SendMessageW(Globals
.hdrivebar
, TB_ADDSTRINGW
, 0, (LPARAM
)Globals
.drives
);
3691 drivebarBtn
.idCommand
= ID_DRIVE_FIRST
;
3693 for(p
=Globals
.drives
; *p
; ) {
3694 #ifdef _NO_EXTENSIONS
3695 /* insert drive letter */
3696 WCHAR b
[3] = {tolower(*p
)};
3697 SendMessageW(Globals
.hdrivebar
, TB_ADDSTRINGW
, 0, (LPARAM
)b
);
3699 switch(GetDriveTypeW(p
)) {
3700 case DRIVE_REMOVABLE
: drivebarBtn
.iBitmap
= 1; break;
3701 case DRIVE_CDROM
: drivebarBtn
.iBitmap
= 3; break;
3702 case DRIVE_REMOTE
: drivebarBtn
.iBitmap
= 4; break;
3703 case DRIVE_RAMDISK
: drivebarBtn
.iBitmap
= 5; break;
3704 default:/*DRIVE_FIXED*/ drivebarBtn
.iBitmap
= 2;
3707 SendMessageW(Globals
.hdrivebar
, TB_INSERTBUTTONW
, btn
++, (LPARAM
)&drivebarBtn
);
3708 drivebarBtn
.idCommand
++;
3709 drivebarBtn
.iString
++;
3715 static void refresh_drives(void)
3719 /* destroy drive bar */
3720 DestroyWindow(Globals
.hdrivebar
);
3721 Globals
.hdrivebar
= 0;
3723 /* re-create drive bar */
3726 /* update window layout */
3727 GetClientRect(Globals
.hMainWnd
, &rect
);
3728 SendMessageW(Globals
.hMainWnd
, WM_SIZE
, 0, MAKELONG(rect
.right
, rect
.bottom
));
3732 static BOOL
launch_file(HWND hwnd
, LPCWSTR cmd
, UINT nCmdShow
)
3734 HINSTANCE hinst
= ShellExecuteW(hwnd
, NULL
/*operation*/, cmd
, NULL
/*parameters*/, NULL
/*dir*/, nCmdShow
);
3736 if (PtrToUlong(hinst
) <= 32) {
3737 display_error(hwnd
, GetLastError());
3745 static BOOL
launch_entry(Entry
* entry
, HWND hwnd
, UINT nCmdShow
)
3747 WCHAR cmd
[MAX_PATH
];
3749 #ifdef _SHELL_FOLDERS
3750 if (entry
->etype
== ET_SHELL
) {
3753 SHELLEXECUTEINFOW shexinfo
;
3755 shexinfo
.cbSize
= sizeof(SHELLEXECUTEINFOW
);
3756 shexinfo
.fMask
= SEE_MASK_IDLIST
;
3757 shexinfo
.hwnd
= hwnd
;
3758 shexinfo
.lpVerb
= NULL
;
3759 shexinfo
.lpFile
= NULL
;
3760 shexinfo
.lpParameters
= NULL
;
3761 shexinfo
.lpDirectory
= NULL
;
3762 shexinfo
.nShow
= nCmdShow
;
3763 shexinfo
.lpIDList
= get_to_absolute_pidl(entry
, hwnd
);
3765 if (!ShellExecuteExW(&shexinfo
)) {
3766 display_error(hwnd
, GetLastError());
3770 if (shexinfo
.lpIDList
!= entry
->pidl
)
3771 IMalloc_Free(Globals
.iMalloc
, shexinfo
.lpIDList
);
3777 get_path(entry
, cmd
);
3779 /* start program, open document... */
3780 return launch_file(hwnd
, cmd
, nCmdShow
);
3784 static void activate_entry(ChildWnd
* child
, Pane
* pane
, HWND hwnd
)
3786 Entry
* entry
= pane
->cur
;
3791 if (entry
->data
.dwFileAttributes
& FILE_ATTRIBUTE_DIRECTORY
) {
3792 int scanned_old
= entry
->scanned
;
3796 int idx
= SendMessageW(child
->left
.hwnd
, LB_GETCURSEL
, 0, 0);
3797 scan_entry(child
, entry
, idx
, hwnd
);
3800 #ifndef _NO_EXTENSIONS
3801 if (entry
->data
.cFileName
[0]=='.' && entry
->data
.cFileName
[1]=='\0')
3805 if (entry
->data
.cFileName
[0]=='.' && entry
->data
.cFileName
[1]=='.' && entry
->data
.cFileName
[2]=='\0') {
3806 entry
= child
->left
.cur
->up
;
3807 collapse_entry(&child
->left
, entry
);
3809 } else if (entry
->expanded
)
3810 collapse_entry(pane
, child
->left
.cur
);
3812 expand_entry(child
, child
->left
.cur
);
3814 if (!pane
->treePane
) focus_entry
: {
3815 int idxstart
= SendMessageW(child
->left
.hwnd
, LB_GETCURSEL
, 0, 0);
3816 int idx
= SendMessageW(child
->left
.hwnd
, LB_FINDSTRING
, idxstart
, (LPARAM
)entry
);
3817 SendMessageW(child
->left
.hwnd
, LB_SETCURSEL
, idx
, 0);
3818 set_curdir(child
, entry
, idx
, hwnd
);
3823 calc_widths(pane
, FALSE
);
3825 #ifndef _NO_EXTENSIONS
3830 if (GetKeyState(VK_MENU
) < 0)
3831 show_properties_dlg(entry
, child
->hwnd
);
3833 launch_entry(entry
, child
->hwnd
, SW_SHOWNORMAL
);
3838 static BOOL
pane_command(Pane
* pane
, UINT cmd
)
3842 if (pane
->visible_cols
) {
3843 pane
->visible_cols
= 0;
3844 calc_widths(pane
, TRUE
);
3845 #ifndef _NO_EXTENSIONS
3848 InvalidateRect(pane
->hwnd
, 0, TRUE
);
3849 CheckMenuItem(Globals
.hMenuView
, ID_VIEW_NAME
, MF_BYCOMMAND
|MF_CHECKED
);
3850 CheckMenuItem(Globals
.hMenuView
, ID_VIEW_ALL_ATTRIBUTES
, MF_BYCOMMAND
);
3854 case ID_VIEW_ALL_ATTRIBUTES
:
3855 if (pane
->visible_cols
!= COL_ALL
) {
3856 pane
->visible_cols
= COL_ALL
;
3857 calc_widths(pane
, TRUE
);
3858 #ifndef _NO_EXTENSIONS
3861 InvalidateRect(pane
->hwnd
, 0, TRUE
);
3862 CheckMenuItem(Globals
.hMenuView
, ID_VIEW_NAME
, MF_BYCOMMAND
);
3863 CheckMenuItem(Globals
.hMenuView
, ID_VIEW_ALL_ATTRIBUTES
, MF_BYCOMMAND
|MF_CHECKED
);
3867 #ifndef _NO_EXTENSIONS
3868 case ID_PREFERRED_SIZES
: {
3869 calc_widths(pane
, TRUE
);
3871 InvalidateRect(pane
->hwnd
, 0, TRUE
);
3875 /* TODO: more command ids... */
3885 static void set_sort_order(ChildWnd
* child
, SORT_ORDER sortOrder
)
3887 if (child
->sortOrder
!= sortOrder
) {
3888 child
->sortOrder
= sortOrder
;
3889 refresh_child(child
);
3893 static void update_view_menu(ChildWnd
* child
)
3895 CheckMenuItem(Globals
.hMenuView
, ID_VIEW_SORT_NAME
, child
->sortOrder
==SORT_NAME
? MF_CHECKED
: MF_UNCHECKED
);
3896 CheckMenuItem(Globals
.hMenuView
, ID_VIEW_SORT_TYPE
, child
->sortOrder
==SORT_EXT
? MF_CHECKED
: MF_UNCHECKED
);
3897 CheckMenuItem(Globals
.hMenuView
, ID_VIEW_SORT_SIZE
, child
->sortOrder
==SORT_SIZE
? MF_CHECKED
: MF_UNCHECKED
);
3898 CheckMenuItem(Globals
.hMenuView
, ID_VIEW_SORT_DATE
, child
->sortOrder
==SORT_DATE
? MF_CHECKED
: MF_UNCHECKED
);
3902 static BOOL
is_directory(LPCWSTR target
)
3904 /*TODO correctly handle UNIX paths */
3905 DWORD target_attr
= GetFileAttributesW(target
);
3907 if (target_attr
== INVALID_FILE_ATTRIBUTES
)
3910 return target_attr
&FILE_ATTRIBUTE_DIRECTORY
? TRUE
: FALSE
;
3913 static BOOL
prompt_target(Pane
* pane
, LPWSTR source
, LPWSTR target
)
3915 WCHAR path
[MAX_PATH
];
3918 get_path(pane
->cur
, path
);
3920 if (DialogBoxParamW(Globals
.hInstance
, MAKEINTRESOURCEW(IDD_SELECT_DESTINATION
), pane
->hwnd
, DestinationDlgProc
, (LPARAM
)path
) != IDOK
)
3923 get_path(pane
->cur
, source
);
3925 /* convert relative targets to absolute paths */
3926 if (path
[0]!='/' && path
[1]!=':') {
3927 get_path(pane
->cur
->up
, target
);
3928 len
= lstrlenW(target
);
3930 if (target
[len
-1]!='\\' && target
[len
-1]!='/')
3931 target
[len
++] = '/';
3933 lstrcpyW(target
+len
, path
);
3935 lstrcpyW(target
, path
);
3937 /* If the target already exists as directory, create a new target below this. */
3938 if (is_directory(path
)) {
3939 WCHAR fname
[_MAX_FNAME
], ext
[_MAX_EXT
];
3940 static const WCHAR sAppend
[] = {'%','s','/','%','s','%','s','\0'};
3942 _wsplitpath(source
, NULL
, NULL
, fname
, ext
);
3944 wsprintfW(target
, sAppend
, path
, fname
, ext
);
3951 static IContextMenu2
* s_pctxmenu2
= NULL
;
3952 static IContextMenu3
* s_pctxmenu3
= NULL
;
3954 static void CtxMenu_reset(void)
3960 static IContextMenu
* CtxMenu_query_interfaces(IContextMenu
* pcm1
)
3962 IContextMenu
* pcm
= NULL
;
3966 if (IContextMenu_QueryInterface(pcm1
, &IID_IContextMenu3
, (void**)&pcm
) == NOERROR
)
3967 s_pctxmenu3
= (LPCONTEXTMENU3
)pcm
;
3968 else if (IContextMenu_QueryInterface(pcm1
, &IID_IContextMenu2
, (void**)&pcm
) == NOERROR
)
3969 s_pctxmenu2
= (LPCONTEXTMENU2
)pcm
;
3972 IContextMenu_Release(pcm1
);
3978 static BOOL
CtxMenu_HandleMenuMsg(UINT nmsg
, WPARAM wparam
, LPARAM lparam
)
3981 if (SUCCEEDED(IContextMenu3_HandleMenuMsg(s_pctxmenu3
, nmsg
, wparam
, lparam
)))
3986 if (SUCCEEDED(IContextMenu2_HandleMenuMsg(s_pctxmenu2
, nmsg
, wparam
, lparam
)))
3993 #ifndef _NO_EXTENSIONS
3994 static HRESULT
ShellFolderContextMenu(IShellFolder
* shell_folder
, HWND hwndParent
, int cidl
, LPCITEMIDLIST
* apidl
, int x
, int y
)
3997 BOOL executed
= FALSE
;
3999 HRESULT hr
= IShellFolder_GetUIObjectOf(shell_folder
, hwndParent
, cidl
, apidl
, &IID_IContextMenu
, NULL
, (LPVOID
*)&pcm
);
4001 if (SUCCEEDED(hr
)) {
4002 HMENU hmenu
= CreatePopupMenu();
4004 pcm
= CtxMenu_query_interfaces(pcm
);
4007 hr
= IContextMenu_QueryContextMenu(pcm
, hmenu
, 0, FCIDM_SHVIEWFIRST
, FCIDM_SHVIEWLAST
, CMF_NORMAL
);
4009 if (SUCCEEDED(hr
)) {
4010 UINT idCmd
= TrackPopupMenu(hmenu
, TPM_LEFTALIGN
|TPM_RETURNCMD
|TPM_RIGHTBUTTON
, x
, y
, 0, hwndParent
, NULL
);
4015 CMINVOKECOMMANDINFO cmi
;
4017 cmi
.cbSize
= sizeof(CMINVOKECOMMANDINFO
);
4019 cmi
.hwnd
= hwndParent
;
4020 cmi
.lpVerb
= (LPCSTR
)(INT_PTR
)(idCmd
- FCIDM_SHVIEWFIRST
);
4021 cmi
.lpParameters
= NULL
;
4022 cmi
.lpDirectory
= NULL
;
4023 cmi
.nShow
= SW_SHOWNORMAL
;
4027 hr
= IContextMenu_InvokeCommand(pcm
, &cmi
);
4034 IContextMenu_Release(pcm
);
4037 return FAILED(hr
)? hr
: executed
? S_OK
: S_FALSE
;
4039 #endif /* _NO_EXTENSIONS */
4042 static LRESULT CALLBACK
ChildWndProc(HWND hwnd
, UINT nmsg
, WPARAM wparam
, LPARAM lparam
)
4044 ChildWnd
* child
= (ChildWnd
*)GetWindowLongPtrW(hwnd
, GWLP_USERDATA
);
4049 LPDRAWITEMSTRUCT dis
= (LPDRAWITEMSTRUCT
)lparam
;
4050 Entry
* entry
= (Entry
*) dis
->itemData
;
4052 if (dis
->CtlID
== IDW_TREE_LEFT
)
4053 draw_item(&child
->left
, dis
, entry
, -1);
4054 else if (dis
->CtlID
== IDW_TREE_RIGHT
)
4055 draw_item(&child
->right
, dis
, entry
, -1);
4057 goto draw_menu_item
;
4062 InitChildWindow(child
);
4066 free_child_window(child
);
4067 SetWindowLongPtrW(hwnd
, GWLP_USERDATA
, 0);
4074 GetClientRect(hwnd
, &rt
);
4075 BeginPaint(hwnd
, &ps
);
4076 rt
.left
= child
->split_pos
-SPLIT_WIDTH
/2;
4077 rt
.right
= child
->split_pos
+SPLIT_WIDTH
/2+1;
4078 lastBrush
= SelectObject(ps
.hdc
, GetStockObject(COLOR_SPLITBAR
));
4079 Rectangle(ps
.hdc
, rt
.left
, rt
.top
-1, rt
.right
, rt
.bottom
+1);
4080 SelectObject(ps
.hdc
, lastBrush
);
4081 #ifdef _NO_EXTENSIONS
4082 rt
.top
= rt
.bottom
- GetSystemMetrics(SM_CYHSCROLL
);
4083 FillRect(ps
.hdc
, &rt
, GetStockObject(BLACK_BRUSH
));
4085 EndPaint(hwnd
, &ps
);
4089 if (LOWORD(lparam
) == HTCLIENT
) {
4092 ScreenToClient(hwnd
, &pt
);
4094 if (pt
.x
>=child
->split_pos
-SPLIT_WIDTH
/2 && pt
.x
<child
->split_pos
+SPLIT_WIDTH
/2+1) {
4095 SetCursor(LoadCursorW(0, (LPCWSTR
)IDC_SIZEWE
));
4101 case WM_LBUTTONDOWN
: {
4103 int x
= (short)LOWORD(lparam
);
4105 GetClientRect(hwnd
, &rt
);
4107 if (x
>=child
->split_pos
-SPLIT_WIDTH
/2 && x
<child
->split_pos
+SPLIT_WIDTH
/2+1) {
4108 last_split
= child
->split_pos
;
4109 #ifdef _NO_EXTENSIONS
4110 draw_splitbar(hwnd
, last_split
);
4118 if (GetCapture() == hwnd
) {
4119 #ifdef _NO_EXTENSIONS
4121 int x
= (short)LOWORD(lparam
);
4122 draw_splitbar(hwnd
, last_split
);
4124 GetClientRect(hwnd
, &rt
);
4125 child
->split_pos
= x
;
4126 resize_tree(child
, rt
.right
, rt
.bottom
);
4132 #ifdef _NO_EXTENSIONS
4133 case WM_CAPTURECHANGED
:
4134 if (GetCapture()==hwnd
&& last_split
>=0)
4135 draw_splitbar(hwnd
, last_split
);
4140 if (wparam
== VK_ESCAPE
)
4141 if (GetCapture() == hwnd
) {
4143 #ifdef _NO_EXTENSIONS
4144 draw_splitbar(hwnd
, last_split
);
4146 child
->split_pos
= last_split
;
4148 GetClientRect(hwnd
, &rt
);
4149 resize_tree(child
, rt
.right
, rt
.bottom
);
4152 SetCursor(LoadCursorW(0, (LPCWSTR
)IDC_ARROW
));
4157 if (GetCapture() == hwnd
) {
4159 int x
= (short)LOWORD(lparam
);
4161 #ifdef _NO_EXTENSIONS
4162 HDC hdc
= GetDC(hwnd
);
4163 GetClientRect(hwnd
, &rt
);
4165 rt
.left
= last_split
-SPLIT_WIDTH
/2;
4166 rt
.right
= last_split
+SPLIT_WIDTH
/2+1;
4167 InvertRect(hdc
, &rt
);
4170 rt
.left
= x
-SPLIT_WIDTH
/2;
4171 rt
.right
= x
+SPLIT_WIDTH
/2+1;
4172 InvertRect(hdc
, &rt
);
4174 ReleaseDC(hwnd
, hdc
);
4176 GetClientRect(hwnd
, &rt
);
4178 if (x
>=0 && x
<rt
.right
) {
4179 child
->split_pos
= x
;
4180 resize_tree(child
, rt
.right
, rt
.bottom
);
4181 rt
.left
= x
-SPLIT_WIDTH
/2;
4182 rt
.right
= x
+SPLIT_WIDTH
/2+1;
4183 InvalidateRect(hwnd
, &rt
, FALSE
);
4184 UpdateWindow(child
->left
.hwnd
);
4186 UpdateWindow(child
->right
.hwnd
);
4192 #ifndef _NO_EXTENSIONS
4193 case WM_GETMINMAXINFO
:
4194 DefMDIChildProcW(hwnd
, nmsg
, wparam
, lparam
);
4196 {LPMINMAXINFO lpmmi
= (LPMINMAXINFO
)lparam
;
4198 lpmmi
->ptMaxTrackSize
.x
<<= 1;/*2*GetSystemMetrics(SM_CXSCREEN) / SM_CXVIRTUALSCREEN */
4199 lpmmi
->ptMaxTrackSize
.y
<<= 1;/*2*GetSystemMetrics(SM_CYSCREEN) / SM_CYVIRTUALSCREEN */
4201 #endif /* _NO_EXTENSIONS */
4204 if (SetCurrentDirectoryW(child
->path
))
4206 SetFocus(child
->focus_pane
? child
->right
.hwnd
: child
->left
.hwnd
);
4209 case WM_DISPATCH_COMMAND
: {
4210 Pane
* pane
= GetFocus()==child
->left
.hwnd
? &child
->left
: &child
->right
;
4212 switch(LOWORD(wparam
)) {
4213 case ID_WINDOW_NEW
: {
4214 ChildWnd
* new_child
= alloc_child_window(child
->path
, NULL
, hwnd
);
4216 if (!create_child_window(new_child
))
4217 HeapFree(GetProcessHeap(), 0, new_child
);
4223 refresh_child(child
);
4227 activate_entry(child
, pane
, hwnd
);
4230 case ID_FILE_MOVE
: {
4231 WCHAR source
[BUFFER_LEN
], target
[BUFFER_LEN
];
4233 if (prompt_target(pane
, source
, target
)) {
4234 SHFILEOPSTRUCTW shfo
= {hwnd
, FO_MOVE
, source
, target
};
4236 source
[lstrlenW(source
)+1] = '\0';
4237 target
[lstrlenW(target
)+1] = '\0';
4239 if (!SHFileOperationW(&shfo
))
4240 refresh_child(child
);
4244 case ID_FILE_COPY
: {
4245 WCHAR source
[BUFFER_LEN
], target
[BUFFER_LEN
];
4247 if (prompt_target(pane
, source
, target
)) {
4248 SHFILEOPSTRUCTW shfo
= {hwnd
, FO_COPY
, source
, target
};
4250 source
[lstrlenW(source
)+1] = '\0';
4251 target
[lstrlenW(target
)+1] = '\0';
4253 if (!SHFileOperationW(&shfo
))
4254 refresh_child(child
);
4258 case ID_FILE_DELETE
: {
4259 WCHAR path
[BUFFER_LEN
];
4260 SHFILEOPSTRUCTW shfo
= {hwnd
, FO_DELETE
, path
, NULL
, FOF_ALLOWUNDO
};
4262 get_path(pane
->cur
, path
);
4264 path
[lstrlenW(path
)+1] = '\0';
4266 if (!SHFileOperationW(&shfo
))
4267 refresh_child(child
);
4270 case ID_VIEW_SORT_NAME
:
4271 set_sort_order(child
, SORT_NAME
);
4274 case ID_VIEW_SORT_TYPE
:
4275 set_sort_order(child
, SORT_EXT
);
4278 case ID_VIEW_SORT_SIZE
:
4279 set_sort_order(child
, SORT_SIZE
);
4282 case ID_VIEW_SORT_DATE
:
4283 set_sort_order(child
, SORT_DATE
);
4286 case ID_VIEW_FILTER
: {
4287 struct FilterDialog dlg
;
4289 memset(&dlg
, 0, sizeof(struct FilterDialog
));
4290 lstrcpyW(dlg
.pattern
, child
->filter_pattern
);
4291 dlg
.flags
= child
->filter_flags
;
4293 if (DialogBoxParamW(Globals
.hInstance
, MAKEINTRESOURCEW(IDD_DIALOG_VIEW_TYPE
), hwnd
, FilterDialogDlgProc
, (LPARAM
)&dlg
) == IDOK
) {
4294 lstrcpyW(child
->filter_pattern
, dlg
.pattern
);
4295 child
->filter_flags
= dlg
.flags
;
4296 refresh_right_pane(child
);
4300 case ID_VIEW_SPLIT
: {
4301 last_split
= child
->split_pos
;
4302 #ifdef _NO_EXTENSIONS
4303 draw_splitbar(hwnd
, last_split
);
4308 case ID_EDIT_PROPERTIES
:
4309 show_properties_dlg(pane
->cur
, child
->hwnd
);
4313 return pane_command(pane
, LOWORD(wparam
));
4319 Pane
* pane
= GetFocus()==child
->left
.hwnd
? &child
->left
: &child
->right
;
4321 switch(HIWORD(wparam
)) {
4322 case LBN_SELCHANGE
: {
4323 int idx
= SendMessageW(pane
->hwnd
, LB_GETCURSEL
, 0, 0);
4324 Entry
* entry
= (Entry
*)SendMessageW(pane
->hwnd
, LB_GETITEMDATA
, idx
, 0);
4326 if (pane
== &child
->left
)
4327 set_curdir(child
, entry
, idx
, hwnd
);
4333 activate_entry(child
, pane
, hwnd
);
4338 #ifndef _NO_EXTENSIONS
4340 NMHDR
* pnmh
= (NMHDR
*) lparam
;
4341 return pane_notify(pnmh
->idFrom
==IDW_HEADER_LEFT
? &child
->left
: &child
->right
, pnmh
);}
4344 #ifdef _SHELL_FOLDERS
4345 case WM_CONTEXTMENU
: {
4350 /* first select the current item in the listbox */
4351 HWND hpanel
= (HWND
) wparam
;
4352 pt_clnt
.x
= pt
.x
= (short)LOWORD(lparam
);
4353 pt_clnt
.y
= pt
.y
= (short)HIWORD(lparam
);
4354 ScreenToClient(hpanel
, &pt_clnt
);
4355 SendMessageW(hpanel
, WM_LBUTTONDOWN
, 0, MAKELONG(pt_clnt
.x
, pt_clnt
.y
));
4356 SendMessageW(hpanel
, WM_LBUTTONUP
, 0, MAKELONG(pt_clnt
.x
, pt_clnt
.y
));
4358 /* now create the popup menu using shell namespace and IContextMenu */
4359 pane
= GetFocus()==child
->left
.hwnd
? &child
->left
: &child
->right
;
4360 idx
= SendMessageW(pane
->hwnd
, LB_GETCURSEL
, 0, 0);
4363 Entry
* entry
= (Entry
*)SendMessageW(pane
->hwnd
, LB_GETITEMDATA
, idx
, 0);
4365 LPITEMIDLIST pidl_abs
= get_to_absolute_pidl(entry
, hwnd
);
4368 IShellFolder
* parentFolder
;
4369 LPCITEMIDLIST pidlLast
;
4371 /* get and use the parent folder to display correct context menu in all cases */
4372 if (SUCCEEDED(SHBindToParent(pidl_abs
, &IID_IShellFolder
, (LPVOID
*)&parentFolder
, &pidlLast
))) {
4373 if (ShellFolderContextMenu(parentFolder
, hwnd
, 1, &pidlLast
, pt
.x
, pt
.y
) == S_OK
)
4374 refresh_child(child
);
4376 IShellFolder_Release(parentFolder
);
4379 IMalloc_Free(Globals
.iMalloc
, pidl_abs
);
4385 case WM_MEASUREITEM
:
4387 if (!wparam
) /* Is the message menu-related? */
4388 if (CtxMenu_HandleMenuMsg(nmsg
, wparam
, lparam
))
4393 case WM_INITMENUPOPUP
:
4394 if (CtxMenu_HandleMenuMsg(nmsg
, wparam
, lparam
))
4397 update_view_menu(child
);
4400 case WM_MENUCHAR
: /* only supported by IContextMenu3 */
4402 LRESULT lResult
= 0;
4404 IContextMenu3_HandleMenuMsg2(s_pctxmenu3
, nmsg
, wparam
, lparam
, &lResult
);
4412 if (wparam
!= SIZE_MINIMIZED
)
4413 resize_tree(child
, LOWORD(lparam
), HIWORD(lparam
));
4417 return DefMDIChildProcW(hwnd
, nmsg
, wparam
, lparam
);
4424 static LRESULT CALLBACK
TreeWndProc(HWND hwnd
, UINT nmsg
, WPARAM wparam
, LPARAM lparam
)
4426 ChildWnd
* child
= (ChildWnd
*)GetWindowLongPtrW(GetParent(hwnd
), GWLP_USERDATA
);
4427 Pane
* pane
= (Pane
*)GetWindowLongPtrW(hwnd
, GWLP_USERDATA
);
4431 #ifndef _NO_EXTENSIONS
4438 child
->focus_pane
= pane
==&child
->right
? 1: 0;
4439 SendMessageW(hwnd
, LB_SETSEL
, TRUE
, 1);
4440 /*TODO: check menu items */
4444 if (wparam
== VK_TAB
) {
4445 /*TODO: SetFocus(Globals.hdrivebar) */
4446 SetFocus(child
->focus_pane
? child
->left
.hwnd
: child
->right
.hwnd
);
4450 return CallWindowProcW(g_orgTreeWndProc
, hwnd
, nmsg
, wparam
, lparam
);
4454 static void InitInstance(HINSTANCE hinstance
)
4456 static const WCHAR sFont
[] = {'M','i','c','r','o','s','o','f','t',' ','S','a','n','s',' ','S','e','r','i','f','\0'};
4458 WNDCLASSEXW wcFrame
;
4462 INITCOMMONCONTROLSEX icc
= {
4463 sizeof(INITCOMMONCONTROLSEX
),
4469 setlocale(LC_COLLATE
, ""); /* set collating rules to local settings for compareName */
4471 InitCommonControlsEx(&icc
);
4474 /* register frame window class */
4476 wcFrame
.cbSize
= sizeof(WNDCLASSEXW
);
4478 wcFrame
.lpfnWndProc
= FrameWndProc
;
4479 wcFrame
.cbClsExtra
= 0;
4480 wcFrame
.cbWndExtra
= 0;
4481 wcFrame
.hInstance
= hinstance
;
4482 wcFrame
.hIcon
= LoadIconW(hinstance
, MAKEINTRESOURCEW(IDI_WINEFILE
));
4483 wcFrame
.hCursor
= LoadCursorW(0, (LPCWSTR
)IDC_ARROW
);
4484 wcFrame
.hbrBackground
= 0;
4485 wcFrame
.lpszMenuName
= 0;
4486 wcFrame
.lpszClassName
= sWINEFILEFRAME
;
4487 wcFrame
.hIconSm
= LoadImageW(hinstance
, MAKEINTRESOURCEW(IDI_WINEFILE
), IMAGE_ICON
, GetSystemMetrics(SM_CXSMICON
), GetSystemMetrics(SM_CYSMICON
), LR_SHARED
);
4489 Globals
.hframeClass
= RegisterClassExW(&wcFrame
);
4492 /* register tree windows class */
4494 wcChild
.style
= CS_CLASSDC
|CS_DBLCLKS
|CS_VREDRAW
;
4495 wcChild
.lpfnWndProc
= ChildWndProc
;
4496 wcChild
.cbClsExtra
= 0;
4497 wcChild
.cbWndExtra
= 0;
4498 wcChild
.hInstance
= hinstance
;
4500 wcChild
.hCursor
= LoadCursorW(0, (LPCWSTR
)IDC_ARROW
);
4501 wcChild
.hbrBackground
= 0;
4502 wcChild
.lpszMenuName
= 0;
4503 wcChild
.lpszClassName
= sWINEFILETREE
;
4505 RegisterClassW(&wcChild
);
4508 Globals
.haccel
= LoadAcceleratorsW(hinstance
, MAKEINTRESOURCEW(IDA_WINEFILE
));
4510 Globals
.hfont
= CreateFontW(-MulDiv(8,GetDeviceCaps(hdc
,LOGPIXELSY
),72), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, sFont
);
4514 Globals
.hInstance
= hinstance
;
4516 #ifdef _SHELL_FOLDERS
4518 CoGetMalloc(MEMCTX_TASK
, &Globals
.iMalloc
);
4519 SHGetDesktopFolder(&Globals
.iDesktop
);
4520 Globals
.cfStrFName
= RegisterClipboardFormatW(CFSTR_FILENAMEW
);
4523 /* load column strings */
4526 load_string(g_pos_names
[col
++], sizeof(g_pos_names
[col
])/sizeof(g_pos_names
[col
][0]), IDS_COL_NAME
);
4527 load_string(g_pos_names
[col
++], sizeof(g_pos_names
[col
])/sizeof(g_pos_names
[col
][0]), IDS_COL_SIZE
);
4528 load_string(g_pos_names
[col
++], sizeof(g_pos_names
[col
])/sizeof(g_pos_names
[col
][0]), IDS_COL_CDATE
);
4529 #ifndef _NO_EXTENSIONS
4530 load_string(g_pos_names
[col
++], sizeof(g_pos_names
[col
])/sizeof(g_pos_names
[col
][0]), IDS_COL_ADATE
);
4531 load_string(g_pos_names
[col
++], sizeof(g_pos_names
[col
])/sizeof(g_pos_names
[col
][0]), IDS_COL_MDATE
);
4532 load_string(g_pos_names
[col
++], sizeof(g_pos_names
[col
])/sizeof(g_pos_names
[col
][0]), IDS_COL_IDX
);
4533 load_string(g_pos_names
[col
++], sizeof(g_pos_names
[col
])/sizeof(g_pos_names
[col
][0]), IDS_COL_LINKS
);
4535 load_string(g_pos_names
[col
++], sizeof(g_pos_names
[col
])/sizeof(g_pos_names
[col
][0]), IDS_COL_ATTR
);
4536 #ifndef _NO_EXTENSIONS
4537 load_string(g_pos_names
[col
++], sizeof(g_pos_names
[col
])/sizeof(g_pos_names
[col
][0]), IDS_COL_SEC
);
4542 static BOOL
show_frame(HWND hwndParent
, int cmdshow
, LPCWSTR path
)
4544 static const WCHAR sMDICLIENT
[] = {'M','D','I','C','L','I','E','N','T','\0'};
4546 WCHAR buffer
[MAX_PATH
], b1
[BUFFER_LEN
];
4548 HMENU hMenuFrame
, hMenuWindow
;
4551 CLIENTCREATESTRUCT ccs
;
4553 if (Globals
.hMainWnd
)
4556 opts
= load_registry_settings();
4557 hMenuFrame
= LoadMenuW(Globals
.hInstance
, MAKEINTRESOURCEW(IDM_WINEFILE
));
4558 hMenuWindow
= GetSubMenu(hMenuFrame
, GetMenuItemCount(hMenuFrame
)-2);
4560 Globals
.hMenuFrame
= hMenuFrame
;
4561 Globals
.hMenuView
= GetSubMenu(hMenuFrame
, 2);
4562 Globals
.hMenuOptions
= GetSubMenu(hMenuFrame
, 3);
4564 ccs
.hWindowMenu
= hMenuWindow
;
4565 ccs
.idFirstChild
= IDW_FIRST_CHILD
;
4568 /* create main window */
4569 Globals
.hMainWnd
= CreateWindowExW(0, MAKEINTRESOURCEW(Globals
.hframeClass
), RS(b1
,IDS_WINEFILE
), WS_OVERLAPPEDWINDOW
,
4570 opts
.start_x
, opts
.start_y
, opts
.width
, opts
.height
,
4571 hwndParent
, Globals
.hMenuFrame
, Globals
.hInstance
, 0/*lpParam*/);
4574 Globals
.hmdiclient
= CreateWindowExW(0, sMDICLIENT
, NULL
,
4575 WS_CHILD
|WS_CLIPCHILDREN
|WS_VSCROLL
|WS_HSCROLL
|WS_VISIBLE
|WS_BORDER
,
4577 Globals
.hMainWnd
, 0, Globals
.hInstance
, &ccs
);
4579 CheckMenuItem(Globals
.hMenuOptions
, ID_VIEW_DRIVE_BAR
, MF_BYCOMMAND
|MF_CHECKED
);
4580 CheckMenuItem(Globals
.hMenuOptions
, ID_VIEW_SAVESETTINGS
, MF_BYCOMMAND
);
4585 TBBUTTON toolbarBtns
[] = {
4586 {0, 0, 0, BTNS_SEP
, {0, 0}, 0, 0},
4587 {0, ID_WINDOW_NEW
, TBSTATE_ENABLED
, BTNS_BUTTON
, {0, 0}, 0, 0},
4588 {1, ID_WINDOW_CASCADE
, TBSTATE_ENABLED
, BTNS_BUTTON
, {0, 0}, 0, 0},
4589 {2, ID_WINDOW_TILE_HORZ
, TBSTATE_ENABLED
, BTNS_BUTTON
, {0, 0}, 0, 0},
4590 {3, ID_WINDOW_TILE_VERT
, TBSTATE_ENABLED
, BTNS_BUTTON
, {0, 0}, 0, 0},
4593 Globals
.htoolbar
= CreateToolbarEx(Globals
.hMainWnd
, WS_CHILD
|WS_VISIBLE
,
4594 IDW_TOOLBAR
, 2, Globals
.hInstance
, IDB_TOOLBAR
, toolbarBtns
,
4595 sizeof(toolbarBtns
)/sizeof(TBBUTTON
), 16, 15, 16, 15, sizeof(TBBUTTON
));
4596 CheckMenuItem(Globals
.hMenuOptions
, ID_VIEW_TOOL_BAR
, MF_BYCOMMAND
|MF_CHECKED
);
4599 Globals
.hstatusbar
= CreateStatusWindowW(WS_CHILD
|WS_VISIBLE
, 0, Globals
.hMainWnd
, IDW_STATUSBAR
);
4600 CheckMenuItem(Globals
.hMenuOptions
, ID_VIEW_STATUSBAR
, MF_BYCOMMAND
|MF_CHECKED
);
4602 /*TODO: read paths from registry */
4604 if (!path
|| !*path
) {
4605 GetCurrentDirectoryW(MAX_PATH
, buffer
);
4609 ShowWindow(Globals
.hMainWnd
, cmdshow
);
4611 #if defined(_SHELL_FOLDERS) && !defined(__WINE__)
4612 /* Shell Namespace as default: */
4613 child
= alloc_child_window(path
, get_path_pidl(path
,Globals
.hMainWnd
), Globals
.hMainWnd
);
4615 child
= alloc_child_window(path
, NULL
, Globals
.hMainWnd
);
4618 child
->pos
.showCmd
= SW_SHOWMAXIMIZED
;
4619 child
->pos
.rcNormalPosition
.left
= 0;
4620 child
->pos
.rcNormalPosition
.top
= 0;
4621 child
->pos
.rcNormalPosition
.right
= 320;
4622 child
->pos
.rcNormalPosition
.bottom
= 280;
4624 if (!create_child_window(child
)) {
4625 HeapFree(GetProcessHeap(), 0, child
);
4629 SetWindowPlacement(child
->hwnd
, &child
->pos
);
4631 Globals
.himl
= ImageList_LoadImageW(Globals
.hInstance
, MAKEINTRESOURCEW(IDB_IMAGES
), 16, 0, RGB(0,255,0), IMAGE_BITMAP
, 0);
4633 Globals
.prescan_node
= FALSE
;
4635 UpdateWindow(Globals
.hMainWnd
);
4637 if (child
->hwnd
&& path
&& path
[0])
4640 WCHAR drv
[_MAX_DRIVE
+1], dir
[_MAX_DIR
], name
[_MAX_FNAME
], ext
[_MAX_EXT
];
4641 WCHAR fullname
[_MAX_FNAME
+_MAX_EXT
+1];
4643 memset(name
,0,sizeof(name
));
4644 memset(name
,0,sizeof(ext
));
4645 _wsplitpath(path
, drv
, dir
, name
, ext
);
4648 count
= SendMessageW(child
->right
.hwnd
, LB_GETCOUNT
, 0, 0);
4649 lstrcpyW(fullname
,name
);
4650 lstrcatW(fullname
,ext
);
4652 for (index
= 0; index
< count
; index
++)
4654 Entry
* entry
= (Entry
*)SendMessageW(child
->right
.hwnd
, LB_GETITEMDATA
, index
, 0);
4655 if (lstrcmpW(entry
->data
.cFileName
,fullname
)==0 ||
4656 lstrcmpW(entry
->data
.cAlternateFileName
,fullname
)==0)
4658 SendMessageW(child
->right
.hwnd
, LB_SETCURSEL
, index
, 0);
4659 SetFocus(child
->right
.hwnd
);
4668 static void ExitInstance(void)
4670 #ifdef _SHELL_FOLDERS
4671 IShellFolder_Release(Globals
.iDesktop
);
4672 IMalloc_Release(Globals
.iMalloc
);
4676 DeleteObject(Globals
.hfont
);
4677 ImageList_Destroy(Globals
.himl
);
4680 #ifdef _NO_EXTENSIONS
4682 /* search for already running win[e]files */
4684 static int g_foundPrevInstance
= 0;
4686 static BOOL CALLBACK
EnumWndProc(HWND hwnd
, LPARAM lparam
)
4690 GetClassNameW(hwnd
, cls
, 128);
4692 if (!lstrcmpW(cls
, (LPCWSTR
)lparam
)) {
4693 g_foundPrevInstance
++;
4700 /* search for window of given class name to allow only one running instance */
4701 static int find_window_class(LPCWSTR classname
)
4703 EnumWindows(EnumWndProc
, (LPARAM
)classname
);
4705 if (g_foundPrevInstance
)
4713 static int winefile_main(HINSTANCE hinstance
, int cmdshow
, LPCWSTR path
)
4717 InitInstance(hinstance
);
4719 if( !show_frame(0, cmdshow
, path
) )
4725 while(GetMessageW(&msg
, 0, 0, 0)) {
4726 if (Globals
.hmdiclient
&& TranslateMDISysAccel(Globals
.hmdiclient
, &msg
))
4729 if (Globals
.hMainWnd
&& TranslateAcceleratorW(Globals
.hMainWnd
, Globals
.haccel
, &msg
))
4732 TranslateMessage(&msg
);
4733 DispatchMessageW(&msg
);
4742 #if defined(_MSC_VER)
4743 int APIENTRY
wWinMain(HINSTANCE hinstance
, HINSTANCE previnstance
, LPWSTR cmdline
, int cmdshow
)
4745 int APIENTRY
WinMain(HINSTANCE hinstance
, HINSTANCE previnstance
, LPSTR cmdline
, int cmdshow
)
4748 #ifdef _NO_EXTENSIONS
4749 if (find_window_class(sWINEFILEFRAME
))
4753 { /* convert ANSI cmdline into WCS path string */
4754 WCHAR buffer
[MAX_PATH
];
4755 MultiByteToWideChar(CP_ACP
, 0, cmdline
, -1, buffer
, MAX_PATH
);
4756 winefile_main(hinstance
, cmdshow
, buffer
);