f9a9ce37c24257b7963459a083d4a9dbc21df451
[reactos.git] / reactos / subsys / system / explorer / explorer.cpp
1 /*
2 * Copyright 2003, 2004, 2005 Martin Fuchs
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 */
18
19
20 //
21 // Explorer clone
22 //
23 // explorer.cpp
24 //
25 // Martin Fuchs, 23.07.2003
26 //
27 // Credits: Thanks to Leon Finker for his explorer cabinet window example
28 //
29
30
31 #include <precomp.h> // <precomp.h> instead of "precomp.h" because the ROS build system needs this to find the precompiled header file (*.gch) in the output directory tree
32
33 #include "resource.h"
34
35 #include <locale.h> // for setlocale()
36
37 #ifndef __WINE__
38 #include <io.h> // for dup2()
39 #include <fcntl.h> // for _O_RDONLY
40 #endif
41
42 #include "dialogs/settings.h" // for MdiSdiDlg
43
44 #include "services/shellservices.h"
45
46
47 extern "C" int initialize_gdb_stub(); // start up GDB stub
48
49
50 DynamicLoadLibFct<void(__stdcall*)(BOOL)> g_SHDOCVW_ShellDDEInit(TEXT("SHDOCVW"), 118);
51
52
53 ExplorerGlobals g_Globals;
54
55
56 ExplorerGlobals::ExplorerGlobals()
57 {
58 _hInstance = 0;
59 _cfStrFName = 0;
60
61 #ifndef ROSSHELL
62 _hframeClass = 0;
63 _hMainWnd = 0;
64 _desktop_mode = false;
65 _prescan_nodes = false;
66 #endif
67
68 _log = NULL;
69 #ifndef __MINGW32__ // SHRestricted() missing in MinGW (as of 29.10.2003)
70 _SHRestricted = 0;
71 #endif
72 _hwndDesktopBar = 0;
73 _hwndShellView = 0;
74 _hwndDesktop = 0;
75 }
76
77
78 void ExplorerGlobals::init(HINSTANCE hInstance)
79 {
80 _hInstance = hInstance;
81
82 #ifndef __MINGW32__ // SHRestricted() missing in MinGW (as of 29.10.2003)
83 _SHRestricted = (DWORD(STDAPICALLTYPE*)(RESTRICTIONS)) GetProcAddress(GetModuleHandle(TEXT("SHELL32")), "SHRestricted");
84 #endif
85
86 _icon_cache.init();
87 }
88
89
90 void ExplorerGlobals::read_persistent()
91 {
92 // read configuration file
93 _cfg_dir.printf(TEXT("%s\\ReactOS"), (LPCTSTR)SpecialFolderFSPath(CSIDL_APPDATA,0));
94 _cfg_path.printf(TEXT("%s\\ros-explorer-cfg.xml"), _cfg_dir.c_str());
95
96 if (!_cfg.read(_cfg_path)) {
97 if (_cfg._last_error != XML_ERROR_NO_ELEMENTS)
98 MessageBox(g_Globals._hwndDesktop, String(_cfg._last_error_msg.c_str()),
99 TEXT("ROS Explorer - reading user settings"), MB_OK);
100
101 _cfg.read(TEXT("explorer-cfg-template.xml"));
102 }
103
104 // read bookmarks
105 _favorites_path.printf(TEXT("%s\\ros-explorer-bookmarks.xml"), _cfg_dir.c_str());
106
107 if (!_favorites.read(_favorites_path)) {
108 _favorites.import_IE_favorites(0);
109 _favorites.write(_favorites_path);
110 }
111 }
112
113 void ExplorerGlobals::write_persistent()
114 {
115 // write configuration file
116 RecursiveCreateDirectory(_cfg_dir);
117
118 _cfg.write(_cfg_path);
119 _favorites.write(_favorites_path);
120 }
121
122
123 XMLPos ExplorerGlobals::get_cfg()
124 {
125 XMLPos cfg_pos(&_cfg);
126
127 cfg_pos.smart_create("explorer-cfg");
128
129 return cfg_pos;
130 }
131
132 XMLPos ExplorerGlobals::get_cfg(const char* path)
133 {
134 XMLPos cfg_pos(&_cfg);
135
136 cfg_pos.smart_create("explorer-cfg");
137 cfg_pos.create_relative(path);
138
139 return cfg_pos;
140 }
141
142
143 void _log_(LPCTSTR txt)
144 {
145 FmtString msg(TEXT("%s\n"), txt);
146
147 if (g_Globals._log)
148 _fputts(msg, g_Globals._log);
149
150 OutputDebugString(msg);
151 }
152
153
154 bool FileTypeManager::is_exe_file(LPCTSTR ext)
155 {
156 static const LPCTSTR s_executable_extensions[] = {
157 TEXT("COM"),
158 TEXT("EXE"),
159 TEXT("BAT"),
160 TEXT("CMD"),
161 TEXT("CMM"),
162 TEXT("BTM"),
163 TEXT("AWK"),
164 0
165 };
166
167 TCHAR ext_buffer[_MAX_EXT];
168 const LPCTSTR* p;
169 LPCTSTR s;
170 LPTSTR d;
171
172 for(s=ext+1,d=ext_buffer; (*d=toupper(*s)); s++)
173 ++d;
174
175 for(p=s_executable_extensions; *p; p++)
176 if (!lstrcmp(ext_buffer, *p))
177 return true;
178
179 return false;
180 }
181
182
183 const FileTypeInfo& FileTypeManager::operator[](String ext)
184 {
185 ext.toLower();
186
187 iterator found = find(ext);
188 if (found != end())
189 return found->second;
190
191 FileTypeInfo& ftype = super::operator[](ext);
192
193 ftype._neverShowExt = false;
194
195 HKEY hkey;
196 TCHAR value[MAX_PATH], display_name[MAX_PATH];
197 LONG valuelen = sizeof(value);
198
199 if (!RegQueryValue(HKEY_CLASSES_ROOT, ext, value, &valuelen)) {
200 ftype._classname = value;
201
202 valuelen = sizeof(display_name);
203 if (!RegQueryValue(HKEY_CLASSES_ROOT, ftype._classname, display_name, &valuelen))
204 ftype._displayname = display_name;
205
206 if (!RegOpenKey(HKEY_CLASSES_ROOT, ftype._classname, &hkey)) {
207 if (!RegQueryValueEx(hkey, TEXT("NeverShowExt"), 0, NULL, NULL, NULL))
208 ftype._neverShowExt = true;
209
210 RegCloseKey(hkey);
211 }
212 }
213
214 return ftype;
215 }
216
217 LPCTSTR FileTypeManager::set_type(Entry* entry, bool dont_hide_ext)
218 {
219 LPCTSTR ext = _tcsrchr(entry->_data.cFileName, TEXT('.'));
220
221 if (ext) {
222 const FileTypeInfo& type = (*this)[ext];
223
224 if (!type._displayname.empty())
225 entry->_type_name = _tcsdup(type._displayname);
226
227 // hide some file extensions
228 if (type._neverShowExt && !dont_hide_ext) {
229 int len = ext - entry->_data.cFileName;
230 entry->_display_name = (LPTSTR) malloc((len+1)*sizeof(TCHAR));
231 lstrcpyn(entry->_display_name, entry->_data.cFileName, len + 1);
232 }
233
234 if (is_exe_file(ext))
235 entry->_data.dwFileAttributes |= ATTRIBUTE_EXECUTABLE;
236 }
237
238 return ext;
239 }
240
241
242 Icon::Icon()
243 : _id(ICID_UNKNOWN),
244 _itype(IT_STATIC),
245 _hicon(0)
246 {
247 }
248
249 Icon::Icon(ICON_ID id, UINT nid) //, int cx, int cy
250 : _id(id),
251 _itype(IT_STATIC),
252 _hicon(ResIcon(nid)) // ResIconEx(nid, cx, cy)
253 {
254 }
255
256 Icon::Icon(ICON_TYPE itype, int id, HICON hIcon)
257 : _id((ICON_ID)id),
258 _itype(itype),
259 _hicon(hIcon)
260 {
261 }
262
263 Icon::Icon(ICON_TYPE itype, int id, int sys_idx)
264 : _id((ICON_ID)id),
265 _itype(itype),
266 _sys_idx(sys_idx)
267 {
268 }
269
270 void Icon::draw(HDC hdc, int x, int y, int cx, int cy, COLORREF bk_color, HBRUSH bk_brush) const
271 {
272 if (_itype == IT_SYSCACHE)
273 ImageList_DrawEx(g_Globals._icon_cache.get_sys_imagelist(), _sys_idx, hdc, x, y, cx, cy, bk_color, CLR_DEFAULT, ILD_NORMAL);
274 else
275 DrawIconEx(hdc, x, y, _hicon, cx, cy, 0, bk_brush, DI_NORMAL);
276 }
277
278 HBITMAP Icon::create_bitmap(COLORREF bk_color, HBRUSH hbrBkgnd, HDC hdc_wnd) const
279 {
280 if (_itype == IT_SYSCACHE) {
281 HIMAGELIST himl = g_Globals._icon_cache.get_sys_imagelist();
282
283 int cx, cy;
284 ImageList_GetIconSize(himl, &cx, &cy);
285
286 HBITMAP hbmp = CreateCompatibleBitmap(hdc_wnd, cx, cy);
287 HDC hdc = CreateCompatibleDC(hdc_wnd);
288 HBITMAP hbmp_old = SelectBitmap(hdc, hbmp);
289 ImageList_DrawEx(himl, _sys_idx, hdc, 0, 0, cx, cy, bk_color, CLR_DEFAULT, ILD_NORMAL);
290 SelectBitmap(hdc, hbmp_old);
291 DeleteDC(hdc);
292
293 return hbmp;
294 } else
295 return create_bitmap_from_icon(_hicon, hbrBkgnd, hdc_wnd);
296 }
297
298
299 int Icon::add_to_imagelist(HIMAGELIST himl, HDC hdc_wnd, COLORREF bk_color, HBRUSH bk_brush) const
300 {
301 int ret;
302
303 if (_itype == IT_SYSCACHE) {
304 HIMAGELIST himl = g_Globals._icon_cache.get_sys_imagelist();
305
306 int cx, cy;
307 ImageList_GetIconSize(himl, &cx, &cy);
308
309 HBITMAP hbmp = CreateCompatibleBitmap(hdc_wnd, cx, cy);
310 HDC hdc = CreateCompatibleDC(hdc_wnd);
311 HBITMAP hbmp_old = SelectBitmap(hdc, hbmp);
312 ImageList_DrawEx(himl, _sys_idx, hdc, 0, 0, cx, cy, bk_color, CLR_DEFAULT, ILD_NORMAL);
313 SelectBitmap(hdc, hbmp_old);
314 DeleteDC(hdc);
315
316 ret = ImageList_Add(himl, hbmp, 0);
317
318 DeleteObject(hbmp);
319 } else
320 ret = ImageList_AddAlphaIcon(himl, _hicon, bk_brush, hdc_wnd);
321
322 return ret;
323 }
324
325 HBITMAP create_bitmap_from_icon(HICON hIcon, HBRUSH hbrush_bkgnd, HDC hdc_wnd/*, bool large_icons*/)
326 {
327 int cx = GetSystemMetrics(SM_CXSMICON); //ICON_SIZE_X;
328 int cy = GetSystemMetrics(SM_CYSMICON); //ICON_SIZE_Y;
329 HBITMAP hbmp = CreateCompatibleBitmap(hdc_wnd, cx, cy);
330
331 MemCanvas canvas;
332 BitmapSelection sel(canvas, hbmp);
333
334 RECT rect = {0, 0, cx, cy};
335 FillRect(canvas, &rect, hbrush_bkgnd);
336
337 DrawIconEx(canvas, 0, 0, hIcon, cx, cy, 0, hbrush_bkgnd, DI_NORMAL);
338
339 return hbmp;
340 }
341
342 HBITMAP create_small_bitmap_from_icon(HICON hIcon, HBRUSH hbrush_bkgnd, HDC hdc_wnd)
343 {
344 int cx = GetSystemMetrics(SM_CXSMICON);
345 int cy = GetSystemMetrics(SM_CYSMICON);
346 HBITMAP hbmp = CreateCompatibleBitmap(hdc_wnd, cx, cy);
347
348 MemCanvas canvas;
349 BitmapSelection sel(canvas, hbmp);
350
351 RECT rect = {0, 0, cx, cy};
352 FillRect(canvas, &rect, hbrush_bkgnd);
353
354 DrawIconEx(canvas, 0, 0, hIcon, cx, cy, 0, hbrush_bkgnd, DI_NORMAL);
355
356 return hbmp;
357 }
358
359 int ImageList_AddAlphaIcon(HIMAGELIST himl, HICON hIcon, HBRUSH hbrush_bkgnd, HDC hdc_wnd)
360 {
361 HBITMAP hbmp = create_bitmap_from_icon(hIcon, hbrush_bkgnd, hdc_wnd);
362
363 int ret = ImageList_Add(himl, hbmp, 0);
364
365 DeleteObject(hbmp);
366
367 return ret;
368 }
369
370
371 int IconCache::s_next_id = ICID_DYNAMIC;
372
373
374 void IconCache::init()
375 {
376 _icons[ICID_NONE] = Icon(IT_STATIC, ICID_NONE, (HICON)0);
377
378 _icons[ICID_FOLDER] = Icon(ICID_FOLDER, IDI_FOLDER);
379 //_icons[ICID_DOCUMENT] = Icon(ICID_DOCUMENT, IDI_DOCUMENT);
380 _icons[ICID_EXPLORER] = Icon(ICID_EXPLORER, IDI_EXPLORER);
381 _icons[ICID_APP] = Icon(ICID_APP, IDI_APPICON);
382
383 _icons[ICID_CONFIG] = Icon(ICID_CONFIG, IDI_CONFIG);
384 _icons[ICID_DOCUMENTS] = Icon(ICID_DOCUMENTS, IDI_DOCUMENTS);
385 _icons[ICID_FAVORITES] = Icon(ICID_FAVORITES, IDI_FAVORITES);
386 _icons[ICID_INFO] = Icon(ICID_INFO, IDI_INFO);
387 _icons[ICID_APPS] = Icon(ICID_APPS, IDI_APPS);
388 _icons[ICID_SEARCH] = Icon(ICID_SEARCH, IDI_SEARCH);
389 _icons[ICID_ACTION] = Icon(ICID_ACTION, IDI_ACTION);
390 _icons[ICID_SEARCH_DOC] = Icon(ICID_SEARCH_DOC, IDI_SEARCH_DOC);
391 _icons[ICID_PRINTER] = Icon(ICID_PRINTER, IDI_PRINTER);
392 _icons[ICID_NETWORK] = Icon(ICID_NETWORK, IDI_NETWORK);
393 _icons[ICID_COMPUTER] = Icon(ICID_COMPUTER, IDI_COMPUTER);
394 _icons[ICID_LOGOFF] = Icon(ICID_LOGOFF, IDI_LOGOFF);
395 _icons[ICID_BOOKMARK] = Icon(ICID_BOOKMARK, IDI_DOT_TRANS);
396 }
397
398
399 const Icon& IconCache::extract(LPCTSTR path, ICONCACHE_FLAGS flags)
400 {
401 // search for matching icon with unchanged flags in the cache
402 CacheKey mapkey(path, flags);
403 PathCacheMap::iterator found = _pathCache.find(mapkey);
404
405 if (found != _pathCache.end())
406 return _icons[found->second];
407
408 // search for matching icon with handle
409 CacheKey mapkey_hicon(path, flags|ICF_HICON);
410 if (flags != mapkey_hicon.second) {
411 found = _pathCache.find(mapkey_hicon);
412
413 if (found != _pathCache.end())
414 return _icons[found->second];
415 }
416
417 // search for matching icon in the system image list cache
418 CacheKey mapkey_syscache(path, flags|ICF_SYSCACHE);
419 if (flags != mapkey_syscache.second) {
420 found = _pathCache.find(mapkey_syscache);
421
422 if (found != _pathCache.end())
423 return _icons[found->second];
424 }
425
426 SHFILEINFO sfi;
427
428 int shgfi_flags = 0;
429
430 if (flags & ICF_OPEN)
431 shgfi_flags |= SHGFI_OPENICON;
432
433 if ((flags&(ICF_LARGE|ICF_OVERLAYS|ICF_HICON)) && !(flags&ICF_SYSCACHE)) {
434 shgfi_flags |= SHGFI_ICON;
435
436 if (!(flags & ICF_LARGE))
437 shgfi_flags |= SHGFI_SMALLICON;
438
439 if (flags & ICF_OVERLAYS)
440 shgfi_flags |= SHGFI_ADDOVERLAYS;
441
442 // get small/big icons with/without overlays
443 if (SHGetFileInfo(path, 0, &sfi, sizeof(sfi), shgfi_flags)) {
444 const Icon& icon = add(sfi.hIcon, IT_CACHED);
445
446 ///@todo limit cache size
447 _pathCache[mapkey_hicon] = icon;
448
449 return icon;
450 }
451 } else {
452 assert(!(flags&ICF_OVERLAYS));
453
454 shgfi_flags |= SHGFI_SYSICONINDEX|SHGFI_SMALLICON;
455
456 // use system image list - the "search program dialog" needs it
457 HIMAGELIST himlSys_small = (HIMAGELIST) SHGetFileInfo(path, 0, &sfi, sizeof(sfi), shgfi_flags);
458
459 if (himlSys_small) {
460 _himlSys_small = himlSys_small;
461
462 const Icon& icon = add(sfi.iIcon/*, IT_SYSCACHE*/);
463
464 ///@todo limit cache size
465 _pathCache[mapkey_syscache] = icon;
466
467 return icon;
468 }
469 }
470
471 return _icons[ICID_NONE];
472 }
473
474 const Icon& IconCache::extract(LPCTSTR path, int idx, ICONCACHE_FLAGS flags)
475 {
476 IdxCacheKey key(path, make_pair(idx, (flags|ICF_HICON)&~ICF_SYSCACHE));
477
478 key.first.toLower();
479
480 IdxCacheMap::iterator found = _idxCache.find(key);
481
482 if (found != _idxCache.end())
483 return _icons[found->second];
484
485 HICON hIcon;
486
487 if ((int)ExtractIconEx(path, idx, NULL, &hIcon, 1) > 0) {
488 const Icon& icon = add(hIcon, IT_CACHED);
489
490 _idxCache[key] = icon;
491
492 return icon;
493 } else {
494
495 ///@todo retreive "http://.../favicon.ico" format icons
496
497 return _icons[ICID_NONE];
498 }
499 }
500
501 const Icon& IconCache::extract(IExtractIcon* pExtract, LPCTSTR path, int idx, ICONCACHE_FLAGS flags)
502 {
503 HICON hIconLarge = 0;
504 HICON hIcon;
505
506 bool large_icons = flags & ICF_LARGE;
507 HRESULT hr = pExtract->Extract(path, idx, &hIconLarge, &hIcon, MAKELONG(GetSystemMetrics(SM_CXICON), ICON_SIZE_X));
508
509 if (hr == NOERROR) { //@@ oder SUCCEEDED(hr) ?
510 if (large_icons) { //@@ OK?
511 if (hIcon)
512 DestroyIcon(hIcon);
513
514 hIcon = hIconLarge;
515 } else {
516 if (hIconLarge)
517 DestroyIcon(hIconLarge);
518 }
519
520 if (hIcon)
521 return add(hIcon); //@@ When do we want not to free this icons?
522 }
523
524 return _icons[ICID_NONE];
525 }
526
527 const Icon& IconCache::add(HICON hIcon, ICON_TYPE type)
528 {
529 int id = ++s_next_id;
530
531 return _icons[id] = Icon(type, id, hIcon);
532 }
533
534 const Icon& IconCache::add(int sys_idx/*, ICON_TYPE type=IT_SYSCACHE*/)
535 {
536 int id = ++s_next_id;
537
538 return _icons[id] = SysCacheIcon(id, sys_idx);
539 }
540
541 const Icon& IconCache::get_icon(int id)
542 {
543 return _icons[id];
544 }
545
546 void IconCache::free_icon(int icon_id)
547 {
548 IconMap::iterator found = _icons.find(icon_id);
549
550 if (found != _icons.end()) {
551 Icon& icon = found->second;
552
553 if (icon.destroy())
554 _icons.erase(found);
555 }
556 }
557
558
559 ResString::ResString(UINT nid)
560 {
561 TCHAR buffer[BUFFER_LEN];
562
563 int len = LoadString(g_Globals._hInstance, nid, buffer, sizeof(buffer)/sizeof(TCHAR));
564
565 super::assign(buffer, len);
566 }
567
568
569 ResIcon::ResIcon(UINT nid)
570 {
571 _hicon = LoadIcon(g_Globals._hInstance, MAKEINTRESOURCE(nid));
572 }
573
574 SmallIcon::SmallIcon(UINT nid)
575 {
576 _hicon = (HICON)LoadImage(g_Globals._hInstance, MAKEINTRESOURCE(nid), IMAGE_ICON, GetSystemMetrics(SM_CXSMICON), GetSystemMetrics(SM_CYSMICON), LR_SHARED);
577 }
578
579 ResIconEx::ResIconEx(UINT nid, int w, int h)
580 {
581 _hicon = (HICON)LoadImage(g_Globals._hInstance, MAKEINTRESOURCE(nid), IMAGE_ICON, w, h, LR_SHARED);
582 }
583
584
585 void SetWindowIcon(HWND hwnd, UINT nid)
586 {
587 HICON hIcon = ResIcon(nid);
588 (void)Window_SetIcon(hwnd, ICON_BIG, hIcon);
589
590 HICON hIconSmall = SmallIcon(nid);
591 (void)Window_SetIcon(hwnd, ICON_SMALL, hIconSmall);
592 }
593
594
595 ResBitmap::ResBitmap(UINT nid)
596 {
597 _hBmp = LoadBitmap(g_Globals._hInstance, MAKEINTRESOURCE(nid));
598 }
599
600
601 #ifndef ROSSHELL
602
603 void explorer_show_frame(int cmdShow, LPTSTR lpCmdLine)
604 {
605 ExplorerCmd cmd;
606
607 if (g_Globals._hMainWnd) {
608 if (IsIconic(g_Globals._hMainWnd))
609 ShowWindow(g_Globals._hMainWnd, SW_RESTORE);
610 else
611 SetForegroundWindow(g_Globals._hMainWnd);
612
613 return;
614 }
615
616 g_Globals._prescan_nodes = false;
617
618 XMLPos explorer_options = g_Globals.get_cfg("general/explorer");
619 XS_String mdiStr = XMLString(explorer_options, "mdi");
620
621 // If there isn't yet the "mdi" setting in the configuration, display MDI/SDI dialog.
622 if (mdiStr.empty())
623 Dialog::DoModal(IDD_MDI_SDI, WINDOW_CREATOR(MdiSdiDlg), g_Globals._hwndDesktop);
624
625 // Now read the MDI attribute again and interpret it as boolean value.
626 cmd._mdi = XMLBool(explorer_options, "mdi", true);
627
628 cmd._cmdShow = cmdShow;
629
630 // parse command line options, which may overwrite the MDI flag
631 if (lpCmdLine)
632 cmd.ParseCmdLine(lpCmdLine);
633
634 // create main window
635 MainFrameBase::Create(cmd);
636 }
637
638 bool ExplorerCmd::ParseCmdLine(LPCTSTR lpCmdLine)
639 {
640 bool ok = true;
641
642 LPCTSTR b = lpCmdLine;
643 LPCTSTR p = b;
644
645 while(*b) {
646 // remove leading space
647 while(_istspace((unsigned)*b))
648 ++b;
649
650 p = b;
651
652 bool quote = false;
653
654 // options are separated by ','
655 for(; *p; ++p) {
656 if (*p == '"') // Quote characters may appear at any position in the command line.
657 quote = !quote;
658 else if (*p==',' && !quote)
659 break;
660 }
661
662 if (p > b) {
663 int l = p - b;
664
665 // remove trailing space
666 while(l>0 && _istspace((unsigned)b[l-1]))
667 --l;
668
669 if (!EvaluateOption(String(b, l)))
670 ok = false;
671
672 if (*p)
673 ++p;
674
675 b = p;
676 }
677 }
678
679 return ok;
680 }
681
682 bool ExplorerCmd::EvaluateOption(LPCTSTR option)
683 {
684 String opt_str;
685
686 // Remove quote characters, as they are evaluated at this point.
687 for(; *option; ++option)
688 if (*option != '"')
689 opt_str += *option;
690
691 option = opt_str;
692
693 if (option[0] == '/') {
694 ++option;
695
696 // option /e for windows in explorer mode
697 if (!_tcsicmp(option, TEXT("e")))
698 _flags |= OWM_EXPLORE;
699 // option /root for rooted explorer windows
700 else if (!_tcsicmp(option, TEXT("root")))
701 _flags |= OWM_ROOTED;
702 // non-standard options: /mdi, /sdi
703 else if (!_tcsicmp(option, TEXT("mdi")))
704 _mdi = true;
705 else if (!_tcsicmp(option, TEXT("sdi")))
706 _mdi = false;
707 else
708 return false;
709 } else {
710 if (!_path.empty())
711 return false;
712
713 _path = opt_str;
714 }
715
716 return true;
717 }
718
719 bool ExplorerCmd::IsValidPath() const
720 {
721 if (!_path.empty()) {
722 DWORD attribs = GetFileAttributes(_path);
723
724 if (attribs!=INVALID_FILE_ATTRIBUTES && (attribs&FILE_ATTRIBUTE_DIRECTORY))
725 return true; // file system path
726 else if (*_path==':' && _path.at(1)==':')
727 return true; // text encoded IDL
728 }
729
730 return false;
731 }
732
733 #else
734
735 void explorer_show_frame(int cmdShow, LPTSTR lpCmdLine)
736 {
737 if (!lpCmdLine)
738 lpCmdLine = TEXT("explorer.exe");
739
740 launch_file(GetDesktopWindow(), lpCmdLine, cmdShow);
741 }
742
743 #endif
744
745
746 PopupMenu::PopupMenu(UINT nid)
747 {
748 HMENU hMenu = LoadMenu(g_Globals._hInstance, MAKEINTRESOURCE(nid));
749 _hmenu = GetSubMenu(hMenu, 0);
750 }
751
752
753 /// "About Explorer" Dialog
754 struct ExplorerAboutDlg : public
755 CtlColorParent<
756 OwnerDrawParent<Dialog>
757 >
758 {
759 typedef CtlColorParent<
760 OwnerDrawParent<Dialog>
761 > super;
762
763 ExplorerAboutDlg(HWND hwnd)
764 : super(hwnd)
765 {
766 SetWindowIcon(hwnd, IDI_REACTOS);
767
768 new FlatButton(hwnd, IDOK);
769
770 _hfont = CreateFont(20, 0, 0, 0, FW_BOLD, TRUE, 0, 0, 0, 0, 0, 0, 0, TEXT("Sans Serif"));
771 new ColorStatic(hwnd, IDC_ROS_EXPLORER, RGB(32,32,128), 0, _hfont);
772
773 new HyperlinkCtrl(hwnd, IDC_WWW);
774
775 FmtString ver_txt(ResString(IDS_EXPLORER_VERSION_STR), (LPCTSTR)ResString(IDS_VERSION_STR));
776 SetWindowText(GetDlgItem(hwnd, IDC_VERSION_TXT), ver_txt);
777
778 HWND hwnd_winver = GetDlgItem(hwnd, IDC_WIN_VERSION);
779 SetWindowText(hwnd_winver, get_windows_version_str());
780 SetWindowFont(hwnd_winver, GetStockFont(DEFAULT_GUI_FONT), FALSE);
781
782 CenterWindow(hwnd);
783 }
784
785 ~ExplorerAboutDlg()
786 {
787 DeleteObject(_hfont);
788 }
789
790 LRESULT WndProc(UINT nmsg, WPARAM wparam, LPARAM lparam)
791 {
792 switch(nmsg) {
793 case WM_PAINT:
794 Paint();
795 break;
796
797 default:
798 return super::WndProc(nmsg, wparam, lparam);
799 }
800
801 return 0;
802 }
803
804 void Paint()
805 {
806 PaintCanvas canvas(_hwnd);
807
808 HICON hicon = (HICON) LoadImage(g_Globals._hInstance, MAKEINTRESOURCE(IDI_REACTOS_BIG), IMAGE_ICON, 0, 0, LR_SHARED);
809
810 DrawIconEx(canvas, 20, 10, hicon, 0, 0, 0, 0, DI_NORMAL);
811 }
812
813 protected:
814 HFONT _hfont;
815 };
816
817 void explorer_about(HWND hwndParent)
818 {
819 Dialog::DoModal(IDD_ABOUT_EXPLORER, WINDOW_CREATOR(ExplorerAboutDlg), hwndParent);
820 }
821
822
823 static void InitInstance(HINSTANCE hInstance)
824 {
825 CONTEXT("InitInstance");
826
827 setlocale(LC_COLLATE, ""); // set collating rules to local settings for compareName
828
829 #ifndef ROSSHELL
830 // register frame window class
831 g_Globals._hframeClass = IconWindowClass(CLASSNAME_FRAME,IDI_EXPLORER);
832
833 // register child window class
834 WindowClass(CLASSNAME_CHILDWND, CS_CLASSDC|CS_DBLCLKS|CS_VREDRAW).Register();
835
836 // register tree window class
837 WindowClass(CLASSNAME_WINEFILETREE, CS_CLASSDC|CS_DBLCLKS|CS_VREDRAW).Register();
838 #endif
839
840 g_Globals._cfStrFName = RegisterClipboardFormat(CFSTR_FILENAME);
841 }
842
843
844 int explorer_main(HINSTANCE hInstance, LPTSTR lpCmdLine, int cmdShow)
845 {
846 CONTEXT("explorer_main");
847
848 // initialize Common Controls library
849 CommonControlInit usingCmnCtrl;
850
851 try {
852 InitInstance(hInstance);
853 } catch(COMException& e) {
854 HandleException(e, GetDesktopWindow());
855 return -1;
856 }
857
858 #ifndef ROSSHELL
859 if (cmdShow != SW_HIDE) {
860 /* // don't maximize if being called from the ROS desktop
861 if (cmdShow == SW_SHOWNORMAL)
862 ///@todo read window placement from registry
863 cmdShow = SW_MAXIMIZE;
864 */
865
866 explorer_show_frame(cmdShow, lpCmdLine);
867 }
868 #endif
869
870 return Window::MessageLoop();
871 }
872
873
874 // MinGW does not provide a Unicode startup routine, so we have to implement an own.
875 #if defined(__MINGW32__) && defined(UNICODE)
876
877 #define _tWinMain wWinMain
878 int WINAPI wWinMain(HINSTANCE, HINSTANCE, LPWSTR, int);
879
880 int main(int argc, char* argv[])
881 {
882 CONTEXT("main");
883
884 STARTUPINFO startupinfo;
885 int nShowCmd = SW_SHOWNORMAL;
886
887 GetStartupInfo(&startupinfo);
888
889 if (startupinfo.dwFlags & STARTF_USESHOWWINDOW)
890 nShowCmd = startupinfo.wShowWindow;
891
892 LPWSTR cmdline = GetCommandLineW();
893
894 while(*cmdline && !_istspace((unsigned)*cmdline))
895 ++cmdline;
896
897 while(_istspace((unsigned)*cmdline))
898 ++cmdline;
899
900 return wWinMain(GetModuleHandle(NULL), 0, cmdline, nShowCmd);
901 }
902
903 #endif // __MINGW && UNICODE
904
905
906 static bool SetShellReadyEvent(LPCTSTR evtName)
907 {
908 HANDLE hEvent = OpenEvent(EVENT_MODIFY_STATE, FALSE, evtName);
909 if (!hEvent)
910 return false;
911
912 SetEvent(hEvent);
913 CloseHandle(hEvent);
914
915 return true;
916 }
917
918
919 int WINAPI _tWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPTSTR lpCmdLine, int nShowCmd)
920 {
921 CONTEXT("WinMain()");
922
923 BOOL any_desktop_running = IsAnyDesktopRunning();
924
925 BOOL startup_desktop;
926
927 // strip extended options from the front of the command line
928 String ext_options;
929
930 while(*lpCmdLine == '-') {
931 while(*lpCmdLine && !_istspace((unsigned)*lpCmdLine))
932 ext_options += *lpCmdLine++;
933
934 while(_istspace((unsigned)*lpCmdLine))
935 ++lpCmdLine;
936 }
937
938 // command line option "-install" to replace previous shell application with ROS Explorer
939 if (_tcsstr(ext_options,TEXT("-install"))) {
940 // install ROS Explorer into the registry
941 TCHAR path[MAX_PATH];
942
943 int l = GetModuleFileName(0, path, COUNTOF(path));
944 if (l) {
945 HKEY hkey;
946
947 if (!RegOpenKey(HKEY_LOCAL_MACHINE, TEXT("SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Winlogon"), &hkey)) {
948
949 ///@todo save previous shell application in config file
950
951 RegSetValueEx(hkey, TEXT("Shell"), 0, REG_SZ, (LPBYTE)path, l*sizeof(TCHAR));
952 RegCloseKey(hkey);
953 }
954
955 if (!RegOpenKey(HKEY_CURRENT_USER, TEXT("SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Winlogon"), &hkey)) {
956
957 ///@todo save previous shell application in config file
958
959 RegSetValueEx(hkey, TEXT("Shell"), 0, REG_SZ, (LPBYTE)TEXT(""), l*sizeof(TCHAR));
960 RegCloseKey(hkey);
961 }
962 }
963
964 HWND shellWindow = GetShellWindow();
965
966 if (shellWindow) {
967 DWORD pid;
968
969 // terminate shell process for NT like systems
970 GetWindowThreadProcessId(shellWindow, &pid);
971 HANDLE hProcess = OpenProcess(PROCESS_ALL_ACCESS, FALSE, pid);
972
973 // On Win 9x it's sufficient to destroy the shell window.
974 DestroyWindow(shellWindow);
975
976 if (TerminateProcess(hProcess, 0))
977 WaitForSingleObject(hProcess, INFINITE);
978
979 CloseHandle(hProcess);
980 }
981
982 startup_desktop = TRUE;
983 } else {
984 // create desktop window and task bar only, if there is no other shell and we are
985 // the first explorer instance
986 // MS Explorer looks additionally into the registry entry HKCU\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\shell,
987 // to decide wether it is currently configured as shell application.
988 startup_desktop = !any_desktop_running;
989 }
990
991
992 bool autostart = !any_desktop_running;
993
994 // disable autostart if the SHIFT key is pressed
995 if (GetAsyncKeyState(VK_SHIFT) < 0)
996 autostart = false;
997
998 #ifdef _DEBUG //MF: disabled for debugging
999 autostart = false;
1000 #endif
1001
1002 // If there is given the command line option "-desktop", create desktop window anyways
1003 if (_tcsstr(ext_options,TEXT("-desktop")))
1004 startup_desktop = TRUE;
1005 #ifndef ROSSHELL
1006 else if (_tcsstr(ext_options,TEXT("-nodesktop")))
1007 startup_desktop = FALSE;
1008
1009 // Don't display cabinet window in desktop mode
1010 if (startup_desktop && !_tcsstr(ext_options,TEXT("-explorer")))
1011 nShowCmd = SW_HIDE;
1012 #endif
1013
1014 if (_tcsstr(ext_options,TEXT("-noautostart")))
1015 autostart = false;
1016 else if (_tcsstr(ext_options,TEXT("-autostart")))
1017 autostart = true;
1018
1019 #ifndef __WINE__
1020 if (_tcsstr(ext_options,TEXT("-console"))) {
1021 AllocConsole();
1022
1023 _dup2(_open_osfhandle((long)GetStdHandle(STD_INPUT_HANDLE), _O_RDONLY), 0);
1024 _dup2(_open_osfhandle((long)GetStdHandle(STD_OUTPUT_HANDLE), 0), 1);
1025 _dup2(_open_osfhandle((long)GetStdHandle(STD_ERROR_HANDLE), 0), 2);
1026
1027 g_Globals._log = _fdopen(1, "w");
1028 setvbuf(g_Globals._log, 0, _IONBF, 0);
1029
1030 LOG(TEXT("starting explorer debug log\n"));
1031 }
1032 #endif
1033
1034
1035 if (startup_desktop) {
1036 // hide the XP login screen (Credit to Nicolas Escuder)
1037 // another undocumented event: "Global\\msgina: ReturnToWelcome"
1038 if (!SetShellReadyEvent(TEXT("msgina: ShellReadyEvent")))
1039 SetShellReadyEvent(TEXT("Global\\msgina: ShellReadyEvent"));
1040 }
1041 #ifdef ROSSHELL
1042 else
1043 return 0; // no shell to launch, so exit immediatelly
1044 #endif
1045
1046
1047 if (!any_desktop_running) {
1048 // launch the shell DDE server
1049 if (g_SHDOCVW_ShellDDEInit)
1050 (*g_SHDOCVW_ShellDDEInit)(TRUE);
1051 }
1052
1053
1054 bool use_gdb_stub = false; // !IsDebuggerPresent();
1055
1056 if (_tcsstr(ext_options,TEXT("-debug")))
1057 use_gdb_stub = true;
1058
1059 if (_tcsstr(ext_options,TEXT("-break"))) {
1060 LOG(TEXT("debugger breakpoint"));
1061 #ifdef _MSC_VER
1062 __asm int 3
1063 #else
1064 asm("int3");
1065 #endif
1066 }
1067
1068 // activate GDB remote debugging stub if no other debugger is running
1069 if (use_gdb_stub) {
1070 LOG(TEXT("waiting for debugger connection...\n"));
1071
1072 initialize_gdb_stub();
1073 }
1074
1075 g_Globals.init(hInstance);
1076
1077 // initialize COM and OLE before creating the desktop window
1078 OleInit usingCOM;
1079
1080 // init common controls library
1081 CommonControlInit usingCmnCtrl;
1082
1083 g_Globals.read_persistent();
1084
1085 if (startup_desktop) {
1086 WaitCursor wait;
1087
1088 g_Globals._desktops.init();
1089
1090 g_Globals._hwndDesktop = DesktopWindow::Create();
1091 #ifdef _USE_HDESK
1092 g_Globals._desktops.get_current_Desktop()->_hwndDesktop = g_Globals._hwndDesktop;
1093 #endif
1094 }
1095
1096 Thread* pSSOThread = NULL;
1097
1098 if (startup_desktop) {
1099 // launch SSO thread to allow message processing independent from the explorer main thread
1100 pSSOThread = new SSOThread;
1101 pSSOThread->Start();
1102 }
1103
1104 /**TODO launching autostart programs can be moved into a background thread. */
1105 if (autostart) {
1106 char* argv[] = {"", "s"}; // call startup routine in SESSION_START mode
1107 startup(2, argv);
1108 }
1109
1110 #ifndef ROSSHELL
1111 if (g_Globals._hwndDesktop)
1112 g_Globals._desktop_mode = true;
1113 #endif
1114
1115
1116 int ret = explorer_main(hInstance, lpCmdLine, nShowCmd);
1117
1118
1119 // write configuration file
1120 g_Globals.write_persistent();
1121
1122 if (pSSOThread) {
1123 pSSOThread->Stop();
1124 delete pSSOThread;
1125 }
1126
1127 if (!any_desktop_running) {
1128 // shutdown the shell DDE server
1129 if (g_SHDOCVW_ShellDDEInit)
1130 (*g_SHDOCVW_ShellDDEInit)(FALSE);
1131 }
1132
1133 return ret;
1134 }