pdh/tests: Rename a counter to make the purpose of the test immediately clear.
[wine] / dlls / ieframe / iexplore.c
1 /*
2  * ieframe - Internet Explorer main frame window
3  *
4  * Copyright 2006 Mike McCormack (for CodeWeavers)
5  * Copyright 2006 Jacek Caban (for CodeWeavers)
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20  */
21
22 #define COBJMACROS
23
24 #include <stdarg.h>
25
26 #include "ieframe.h"
27 #include "resource.h"
28
29 #include "winuser.h"
30 #include "wingdi.h"
31 #include "winnls.h"
32 #include "ole2.h"
33 #include "exdisp.h"
34 #include "oleidl.h"
35
36 #include "mshtmcid.h"
37 #include "shellapi.h"
38 #include "winreg.h"
39 #include "shlwapi.h"
40 #include "intshcut.h"
41 #include "ddeml.h"
42
43 #include "wine/debug.h"
44
45 WINE_DEFAULT_DEBUG_CHANNEL(ieframe);
46
47 #define IDI_APPICON 1
48
49 #define WM_UPDATEADDRBAR    (WM_APP+1)
50
51 static const WCHAR szIEWinFrame[] = { 'I','E','F','r','a','m','e',0 };
52
53 /* Windows uses "Microsoft Internet Explorer" */
54 static const WCHAR wszWineInternetExplorer[] =
55         {'W','i','n','e',' ','I','n','t','e','r','n','e','t',' ','E','x','p','l','o','r','e','r',0};
56
57 static LONG obj_cnt;
58 static DWORD dde_inst;
59 static HSZ ddestr_iexplore, ddestr_openurl;
60 static struct list ie_list = LIST_INIT(ie_list);
61
62 HRESULT update_ie_statustext(InternetExplorer* This, LPCWSTR text)
63 {
64     if(!SendMessageW(This->status_hwnd, SB_SETTEXTW, MAKEWORD(SB_SIMPLEID, 0), (LPARAM)text))
65         return E_FAIL;
66
67     return S_OK;
68 }
69
70 static void adjust_ie_docobj_rect(HWND frame, RECT* rc)
71 {
72     HWND hwndRebar = GetDlgItem(frame, IDC_BROWSE_REBAR);
73     HWND hwndStatus = GetDlgItem(frame, IDC_BROWSE_STATUSBAR);
74     INT barHeight = SendMessageW(hwndRebar, RB_GETBARHEIGHT, 0, 0);
75
76     rc->top += barHeight;
77     rc->bottom -= barHeight;
78
79     if(IsWindowVisible(hwndStatus))
80     {
81         RECT statusrc;
82
83         GetClientRect(hwndStatus, &statusrc);
84         rc->bottom -= statusrc.bottom - statusrc.top;
85     }
86 }
87
88 static HMENU get_tb_menu(HMENU menu)
89 {
90     HMENU menu_view = GetSubMenu(menu, 1);
91
92     return GetSubMenu(menu_view, 0);
93 }
94
95 static HMENU get_fav_menu(HMENU menu)
96 {
97     return GetSubMenu(menu, 2);
98 }
99
100 static LPWSTR get_fav_url_from_id(HMENU menu, UINT id)
101 {
102     MENUITEMINFOW item;
103
104     item.cbSize = sizeof(item);
105     item.fMask = MIIM_DATA;
106
107     if(!GetMenuItemInfoW(menu, id, FALSE, &item))
108         return NULL;
109
110     return (LPWSTR)item.dwItemData;
111 }
112
113 static void free_fav_menu_data(HMENU menu)
114 {
115     LPWSTR url;
116     int i;
117
118     for(i = 0; (url = get_fav_url_from_id(menu, ID_BROWSE_GOTOFAV_FIRST + i)); i++)
119         heap_free( url );
120 }
121
122 static int get_menu_item_count(HMENU menu)
123 {
124     MENUITEMINFOW item;
125     int count = 0;
126     int i;
127
128     item.cbSize = sizeof(item);
129     item.fMask = MIIM_DATA | MIIM_SUBMENU;
130
131     for(i = 0; GetMenuItemInfoW(menu, i, TRUE, &item); i++)
132     {
133         if(item.hSubMenu)
134             count += get_menu_item_count(item.hSubMenu);
135         else
136             count++;
137     }
138
139     return count;
140 }
141
142 static void add_fav_to_menu(HMENU favmenu, HMENU menu, LPWSTR title, LPCWSTR url)
143 {
144     MENUITEMINFOW item;
145     /* Subtract the number of standard elements in the Favorites menu */
146     int favcount = get_menu_item_count(favmenu) - 2;
147     LPWSTR urlbuf;
148
149     if(favcount > (ID_BROWSE_GOTOFAV_MAX - ID_BROWSE_GOTOFAV_FIRST))
150     {
151         FIXME("Add support for more than %d Favorites\n", favcount);
152         return;
153     }
154
155     urlbuf = heap_alloc((lstrlenW(url) + 1) * sizeof(WCHAR));
156
157     if(!urlbuf)
158         return;
159
160     lstrcpyW(urlbuf, url);
161
162     item.cbSize = sizeof(item);
163     item.fMask = MIIM_FTYPE | MIIM_STRING | MIIM_DATA | MIIM_ID;
164     item.fType = MFT_STRING;
165     item.dwTypeData = title;
166     item.wID = ID_BROWSE_GOTOFAV_FIRST + favcount;
167     item.dwItemData = (ULONG_PTR)urlbuf;
168     InsertMenuItemW(menu, -1, TRUE, &item);
169 }
170
171 static void add_favs_to_menu(HMENU favmenu, HMENU menu, LPCWSTR dir)
172 {
173     WCHAR path[MAX_PATH*2];
174     const WCHAR search[] = {'*',0};
175     WCHAR* filename;
176     HANDLE findhandle;
177     WIN32_FIND_DATAW finddata;
178     IUniformResourceLocatorW* urlobj;
179     IPersistFile* urlfile = NULL;
180     HRESULT res;
181
182     lstrcpyW(path, dir);
183     PathAppendW(path, search);
184
185     findhandle = FindFirstFileW(path, &finddata);
186
187     if(findhandle == INVALID_HANDLE_VALUE)
188         return;
189
190     res = CoCreateInstance(&CLSID_InternetShortcut, NULL, CLSCTX_INPROC_SERVER, &IID_IUniformResourceLocatorW, (PVOID*)&urlobj);
191
192     if(SUCCEEDED(res))
193         res = IUnknown_QueryInterface(urlobj, &IID_IPersistFile, (PVOID*)&urlfile);
194
195     if(SUCCEEDED(res))
196     {
197         filename = path + lstrlenW(path) - lstrlenW(search);
198
199         do
200         {
201             lstrcpyW(filename, finddata.cFileName);
202
203             if(finddata.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
204             {
205                 MENUITEMINFOW item;
206                 const WCHAR ignore1[] = {'.','.',0};
207                 const WCHAR ignore2[] = {'.',0};
208
209                 if(!lstrcmpW(filename, ignore1) || !lstrcmpW(filename, ignore2))
210                     continue;
211
212                 item.cbSize = sizeof(item);
213                 item.fMask = MIIM_STRING | MIIM_SUBMENU;
214                 item.dwTypeData = filename;
215                 item.hSubMenu = CreatePopupMenu();
216                 InsertMenuItemW(menu, -1, TRUE, &item);
217                 add_favs_to_menu(favmenu, item.hSubMenu, path);
218             } else
219             {
220                 WCHAR* fileext;
221                 WCHAR* url = NULL;
222                 const WCHAR urlext[] = {'.','u','r','l',0};
223
224                 if(lstrcmpiW(PathFindExtensionW(filename), urlext))
225                     continue;
226
227                 if(FAILED(IPersistFile_Load(urlfile, path, 0)))
228                     continue;
229
230                 urlobj->lpVtbl->GetURL(urlobj, &url);
231
232                 if(!url)
233                     continue;
234
235                 fileext = filename + lstrlenW(filename) - lstrlenW(urlext);
236                 *fileext = 0;
237                 add_fav_to_menu(favmenu, menu, filename, url);
238             }
239         } while(FindNextFileW(findhandle, &finddata));
240     }
241
242     if(urlfile)
243         IPersistFile_Release(urlfile);
244
245     if(urlobj)
246         IUnknown_Release(urlobj);
247
248     FindClose(findhandle);
249 }
250
251 static void add_tbs_to_menu(HMENU menu)
252 {
253     HUSKEY toolbar_handle;
254     WCHAR toolbar_key[] = {'S','o','f','t','w','a','r','e','\\',
255                            'M','i','c','r','o','s','o','f','t','\\',
256                            'I','n','t','e','r','n','e','t',' ',
257                            'E','x','p','l','o','r','e','r','\\',
258                            'T','o','o','l','b','a','r',0};
259
260     if(SHRegOpenUSKeyW(toolbar_key, KEY_READ, NULL, &toolbar_handle, TRUE) == ERROR_SUCCESS)
261     {
262         HUSKEY classes_handle;
263         WCHAR classes_key[] = {'S','o','f','t','w','a','r','e','\\',
264                                'C','l','a','s','s','e','s','\\','C','L','S','I','D',0};
265         WCHAR guid[39];
266         DWORD value_len = sizeof(guid)/sizeof(guid[0]);
267         int i;
268
269         if(SHRegOpenUSKeyW(classes_key, KEY_READ, NULL, &classes_handle, TRUE) != ERROR_SUCCESS)
270         {
271             SHRegCloseUSKey(toolbar_handle);
272             ERR("Failed to open key %s\n", debugstr_w(classes_key));
273             return;
274         }
275
276         for(i = 0; SHRegEnumUSValueW(toolbar_handle, i, guid, &value_len, NULL, NULL, NULL, SHREGENUM_HKLM) == ERROR_SUCCESS; i++)
277         {
278             WCHAR tb_name[100];
279             DWORD tb_name_len = sizeof(tb_name)/sizeof(tb_name[0]);
280             HUSKEY tb_class_handle;
281             MENUITEMINFOW item;
282             LSTATUS ret;
283             value_len = sizeof(guid)/sizeof(guid[0]);
284
285             if(lstrlenW(guid) != 38)
286             {
287                 TRACE("Found invalid IE toolbar entry: %s\n", debugstr_w(guid));
288                 continue;
289             }
290
291             if(SHRegOpenUSKeyW(guid, KEY_READ, classes_handle, &tb_class_handle, TRUE) != ERROR_SUCCESS)
292             {
293                 ERR("Failed to get class info for %s\n", debugstr_w(guid));
294                 continue;
295             }
296
297             ret = SHRegQueryUSValueW(tb_class_handle, NULL, NULL, tb_name, &tb_name_len, TRUE, NULL, 0);
298
299             SHRegCloseUSKey(tb_class_handle);
300
301             if(ret != ERROR_SUCCESS)
302             {
303                 ERR("Failed to get toolbar name for %s\n", debugstr_w(guid));
304                 continue;
305             }
306
307             item.cbSize = sizeof(item);
308             item.fMask = MIIM_STRING;
309             item.dwTypeData = tb_name;
310             InsertMenuItemW(menu, GetMenuItemCount(menu), TRUE, &item);
311         }
312
313         SHRegCloseUSKey(classes_handle);
314         SHRegCloseUSKey(toolbar_handle);
315     }
316 }
317
318 static HMENU create_ie_menu(void)
319 {
320     HMENU menu = LoadMenuW(ieframe_instance, MAKEINTRESOURCEW(IDR_BROWSE_MAIN_MENU));
321     HMENU favmenu = get_fav_menu(menu);
322     WCHAR path[MAX_PATH];
323
324     add_tbs_to_menu(get_tb_menu(menu));
325
326     if(SHGetFolderPathW(NULL, CSIDL_COMMON_FAVORITES, NULL, SHGFP_TYPE_CURRENT, path) == S_OK)
327         add_favs_to_menu(favmenu, favmenu, path);
328
329     if(SHGetFolderPathW(NULL, CSIDL_FAVORITES, NULL, SHGFP_TYPE_CURRENT, path) == S_OK)
330         add_favs_to_menu(favmenu, favmenu, path);
331
332     return menu;
333 }
334
335 static void ie_navigate(InternetExplorer* This, LPCWSTR url)
336 {
337     VARIANT variant;
338
339     V_VT(&variant) = VT_BSTR;
340     V_BSTR(&variant) = SysAllocString(url);
341
342     IWebBrowser2_Navigate2(&This->IWebBrowser2_iface, &variant, NULL, NULL, NULL, NULL);
343
344     SysFreeString(V_BSTR(&variant));
345 }
346
347 static INT_PTR CALLBACK ie_dialog_open_proc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
348 {
349     static InternetExplorer* This;
350
351     switch(msg)
352     {
353         case WM_INITDIALOG:
354             This = (InternetExplorer*)lparam;
355             EnableWindow(GetDlgItem(hwnd, IDOK), FALSE);
356             return TRUE;
357
358         case WM_COMMAND:
359             switch(LOWORD(wparam))
360             {
361                 case IDC_BROWSE_OPEN_URL:
362                 {
363                     HWND hwndurl = GetDlgItem(hwnd, IDC_BROWSE_OPEN_URL);
364                     int len = GetWindowTextLengthW(hwndurl);
365
366                     EnableWindow(GetDlgItem(hwnd, IDOK), len ? TRUE : FALSE);
367                     break;
368                 }
369                 case IDOK:
370                 {
371                     HWND hwndurl = GetDlgItem(hwnd, IDC_BROWSE_OPEN_URL);
372                     int len = GetWindowTextLengthW(hwndurl);
373
374                     if(len)
375                     {
376                         VARIANT url;
377
378                         V_VT(&url) = VT_BSTR;
379                         V_BSTR(&url) = SysAllocStringLen(NULL, len);
380
381                         GetWindowTextW(hwndurl, V_BSTR(&url), len + 1);
382                         IWebBrowser2_Navigate2(&This->IWebBrowser2_iface, &url, NULL, NULL, NULL, NULL);
383
384                         SysFreeString(V_BSTR(&url));
385                     }
386                 }
387                 /* fall through */
388                 case IDCANCEL:
389                     EndDialog(hwnd, wparam);
390                     return TRUE;
391             }
392     }
393     return FALSE;
394 }
395
396 static void ie_dialog_about(HWND hwnd)
397 {
398     HICON icon = LoadImageW(GetModuleHandleW(0), MAKEINTRESOURCEW(IDI_APPICON), IMAGE_ICON, 48, 48, LR_SHARED);
399
400     ShellAboutW(hwnd, wszWineInternetExplorer, NULL, icon);
401
402     DestroyIcon(icon);
403 }
404
405 static void add_tb_separator(HWND hwnd)
406 {
407     TBBUTTON btn;
408
409     ZeroMemory(&btn, sizeof(btn));
410
411     btn.iBitmap = 3;
412     btn.fsStyle = BTNS_SEP;
413     SendMessageW(hwnd, TB_ADDBUTTONSW, 1, (LPARAM)&btn);
414 }
415
416 static void add_tb_button(HWND hwnd, int bmp, int cmd, int strId)
417 {
418     TBBUTTON btn;
419     WCHAR buf[30];
420
421     LoadStringW(ieframe_instance, strId, buf, sizeof(buf)/sizeof(buf[0]));
422
423     btn.iBitmap = bmp;
424     btn.idCommand = cmd;
425     btn.fsState = TBSTATE_ENABLED;
426     btn.fsStyle = BTNS_SHOWTEXT;
427     btn.dwData = 0;
428     btn.iString = (INT_PTR)buf;
429
430     SendMessageW(hwnd, TB_ADDBUTTONSW, 1, (LPARAM)&btn);
431 }
432
433 static void create_rebar(HWND hwnd)
434 {
435     HWND hwndRebar;
436     HWND hwndAddress;
437     HWND hwndToolbar;
438     REBARINFO rebarinf;
439     REBARBANDINFOW bandinf;
440     WCHAR addr[40];
441     HIMAGELIST imagelist;
442     WCHAR idb_ietoolbar[] = {'I','D','B','_','I','E','T','O','O','L','B','A','R',0};
443
444     LoadStringW(ieframe_instance, IDS_ADDRESS, addr, sizeof(addr)/sizeof(addr[0]));
445
446     hwndRebar = CreateWindowExW(WS_EX_TOOLWINDOW, REBARCLASSNAMEW, NULL,
447             WS_CHILD|WS_VISIBLE|WS_CLIPSIBLINGS|WS_CLIPCHILDREN|RBS_VARHEIGHT|CCS_TOP|CCS_NODIVIDER, 0, 0, 0, 0,
448             hwnd, (HMENU)IDC_BROWSE_REBAR, ieframe_instance, NULL);
449
450     rebarinf.cbSize = sizeof(rebarinf);
451     rebarinf.fMask = 0;
452     rebarinf.himl = NULL;
453     rebarinf.cbSize = sizeof(rebarinf);
454
455     SendMessageW(hwndRebar, RB_SETBARINFO, 0, (LPARAM)&rebarinf);
456
457     hwndToolbar = CreateWindowExW(TBSTYLE_EX_MIXEDBUTTONS, TOOLBARCLASSNAMEW, NULL, TBSTYLE_FLAT | WS_CHILD | WS_VISIBLE,
458             0, 0, 0, 0, hwndRebar, (HMENU)IDC_BROWSE_TOOLBAR, ieframe_instance, NULL);
459
460     imagelist = ImageList_LoadImageW(ieframe_instance, idb_ietoolbar, 32, 0, CLR_NONE, IMAGE_BITMAP, LR_CREATEDIBSECTION);
461
462     SendMessageW(hwndToolbar, TB_SETIMAGELIST, 0, (LPARAM)imagelist);
463     SendMessageW(hwndToolbar, TB_BUTTONSTRUCTSIZE, sizeof(TBBUTTON), 0);
464     add_tb_button(hwndToolbar, 0, 0, IDS_TB_BACK);
465     add_tb_button(hwndToolbar, 1, 0, IDS_TB_FORWARD);
466     add_tb_button(hwndToolbar, 2, 0, IDS_TB_STOP);
467     add_tb_button(hwndToolbar, 3, 0, IDS_TB_REFRESH);
468     add_tb_button(hwndToolbar, 4, ID_BROWSE_HOME, IDS_TB_HOME);
469     add_tb_separator(hwndToolbar);
470     add_tb_button(hwndToolbar, 5, ID_BROWSE_PRINT, IDS_TB_PRINT);
471     SendMessageW(hwndToolbar, TB_SETBUTTONSIZE, 0, MAKELPARAM(55,50));
472     SendMessageW(hwndToolbar, TB_AUTOSIZE, 0, 0);
473
474     bandinf.cbSize = sizeof(bandinf);
475     bandinf.fMask = RBBIM_STYLE | RBBIM_CHILD | RBBIM_CHILDSIZE | RBBIM_SIZE;
476     bandinf.fStyle = RBBS_CHILDEDGE;
477     bandinf.cx = 100;
478     bandinf.cyMinChild = 52;
479     bandinf.hwndChild = hwndToolbar;
480
481     SendMessageW(hwndRebar, RB_INSERTBANDW, -1, (LPARAM)&bandinf);
482
483     hwndAddress = CreateWindowExW(0, WC_COMBOBOXEXW, NULL, WS_BORDER|WS_CHILD|WS_VISIBLE|CBS_DROPDOWN,
484             0, 0, 100,20,hwndRebar, (HMENU)IDC_BROWSE_ADDRESSBAR, ieframe_instance, NULL);
485
486     bandinf.fMask |= RBBIM_TEXT;
487     bandinf.fStyle = RBBS_CHILDEDGE | RBBS_BREAK;
488     bandinf.lpText = addr;
489     bandinf.cyMinChild = 20;
490     bandinf.hwndChild = hwndAddress;
491
492     SendMessageW(hwndRebar, RB_INSERTBANDW, -1, (LPARAM)&bandinf);
493 }
494
495 static LRESULT iewnd_OnCreate(HWND hwnd, LPCREATESTRUCTW lpcs)
496 {
497     InternetExplorer* This = (InternetExplorer*)lpcs->lpCreateParams;
498     SetWindowLongPtrW(hwnd, 0, (LONG_PTR) lpcs->lpCreateParams);
499
500     This->menu = create_ie_menu();
501
502     This->status_hwnd = CreateStatusWindowW(WS_VISIBLE|WS_CHILD|SBT_NOBORDERS|CCS_NODIVIDER,
503                                             NULL, hwnd, IDC_BROWSE_STATUSBAR);
504     SendMessageW(This->status_hwnd, SB_SIMPLE, TRUE, 0);
505
506     create_rebar(hwnd);
507
508     return 0;
509 }
510
511 static LRESULT iewnd_OnSize(InternetExplorer *This, INT width, INT height)
512 {
513     HWND hwndRebar = GetDlgItem(This->frame_hwnd, IDC_BROWSE_REBAR);
514     INT barHeight = SendMessageW(hwndRebar, RB_GETBARHEIGHT, 0, 0);
515     RECT docarea = {0, 0, width, height};
516
517     SendMessageW(This->status_hwnd, WM_SIZE, 0, 0);
518
519     adjust_ie_docobj_rect(This->frame_hwnd, &docarea);
520
521     if(This->doc_host->doc_host.hwnd)
522         SetWindowPos(This->doc_host->doc_host.hwnd, NULL, docarea.left, docarea.top, docarea.right, docarea.bottom,
523                      SWP_NOZORDER | SWP_NOACTIVATE);
524
525     SetWindowPos(hwndRebar, NULL, 0, 0, width, barHeight, SWP_NOZORDER | SWP_NOACTIVATE);
526
527     return 0;
528 }
529
530 static LRESULT iewnd_OnNotify(InternetExplorer *This, WPARAM wparam, LPARAM lparam)
531 {
532     NMHDR* hdr = (NMHDR*)lparam;
533
534     if(hdr->idFrom == IDC_BROWSE_ADDRESSBAR && hdr->code == CBEN_ENDEDITW)
535     {
536         NMCBEENDEDITW* info = (NMCBEENDEDITW*)lparam;
537
538         if(info->fChanged && info->iWhy == CBENF_RETURN)
539         {
540             VARIANT vt;
541
542             V_VT(&vt) = VT_BSTR;
543             V_BSTR(&vt) = SysAllocString(info->szText);
544
545             IWebBrowser2_Navigate2(&This->IWebBrowser2_iface, &vt, NULL, NULL, NULL, NULL);
546
547             SysFreeString(V_BSTR(&vt));
548
549             return 0;
550         }
551     }
552
553     return 0;
554 }
555
556 static LRESULT iewnd_OnDestroy(InternetExplorer *This)
557 {
558     HWND hwndRebar = GetDlgItem(This->frame_hwnd, IDC_BROWSE_REBAR);
559     HWND hwndToolbar = GetDlgItem(hwndRebar, IDC_BROWSE_TOOLBAR);
560     HIMAGELIST list = (HIMAGELIST)SendMessageW(hwndToolbar, TB_GETIMAGELIST, 0, 0);
561
562     TRACE("%p\n", This);
563
564     free_fav_menu_data(get_fav_menu(This->menu));
565     ImageList_Destroy(list);
566     This->frame_hwnd = NULL;
567
568     return 0;
569 }
570
571 static LRESULT iewnd_OnCommand(InternetExplorer *This, HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
572 {
573     switch(LOWORD(wparam))
574     {
575         case ID_BROWSE_OPEN:
576             DialogBoxParamW(ieframe_instance, MAKEINTRESOURCEW(IDD_BROWSE_OPEN), hwnd, ie_dialog_open_proc, (LPARAM)This);
577             break;
578
579         case ID_BROWSE_PRINT:
580             if(This->doc_host->doc_host.document)
581             {
582                 IOleCommandTarget* target;
583
584                 if(FAILED(IUnknown_QueryInterface(This->doc_host->doc_host.document, &IID_IOleCommandTarget, (LPVOID*)&target)))
585                     break;
586
587                 IOleCommandTarget_Exec(target, &CGID_MSHTML, IDM_PRINT, OLECMDEXECOPT_DODEFAULT, NULL, NULL);
588
589                 IOleCommandTarget_Release(target);
590             }
591             break;
592
593         case ID_BROWSE_HOME:
594             IWebBrowser2_GoHome(&This->IWebBrowser2_iface);
595             break;
596
597         case ID_BROWSE_ABOUT:
598             ie_dialog_about(hwnd);
599             break;
600
601         case ID_BROWSE_QUIT:
602             ShowWindow(hwnd, SW_HIDE);
603             break;
604
605         default:
606             if(LOWORD(wparam) >= ID_BROWSE_GOTOFAV_FIRST && LOWORD(wparam) <= ID_BROWSE_GOTOFAV_MAX)
607             {
608                 LPCWSTR url = get_fav_url_from_id(get_fav_menu(This->menu), LOWORD(wparam));
609
610                 if(url)
611                     ie_navigate(This, url);
612             }
613             return DefWindowProcW(hwnd, msg, wparam, lparam);
614     }
615     return 0;
616 }
617
618 static LRESULT update_addrbar(InternetExplorer *This, LPARAM lparam)
619 {
620     HWND hwndRebar = GetDlgItem(This->frame_hwnd, IDC_BROWSE_REBAR);
621     HWND hwndAddress = GetDlgItem(hwndRebar, IDC_BROWSE_ADDRESSBAR);
622     HWND hwndEdit = (HWND)SendMessageW(hwndAddress, CBEM_GETEDITCONTROL, 0, 0);
623     LPCWSTR url = (LPCWSTR)lparam;
624
625     SendMessageW(hwndEdit, WM_SETTEXT, 0, (LPARAM)url);
626
627     return 0;
628 }
629
630 static LRESULT WINAPI ie_window_proc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
631 {
632     InternetExplorer *This = (InternetExplorer*) GetWindowLongPtrW(hwnd, 0);
633
634     switch (msg)
635     {
636     case WM_CREATE:
637         return iewnd_OnCreate(hwnd, (LPCREATESTRUCTW)lparam);
638     case WM_CLOSE:
639         TRACE("WM_CLOSE\n");
640         ShowWindow(hwnd, SW_HIDE);
641         return 0;
642     case WM_SHOWWINDOW:
643         TRACE("WM_SHOWWINDOW %lx\n", wparam);
644         if(wparam)
645             IWebBrowser2_AddRef(&This->IWebBrowser2_iface);
646         else
647             IWebBrowser2_Release(&This->IWebBrowser2_iface);
648         break;
649     case WM_DESTROY:
650         return iewnd_OnDestroy(This);
651     case WM_SIZE:
652         return iewnd_OnSize(This, LOWORD(lparam), HIWORD(lparam));
653     case WM_COMMAND:
654         return iewnd_OnCommand(This, hwnd, msg, wparam, lparam);
655     case WM_NOTIFY:
656         return iewnd_OnNotify(This, wparam, lparam);
657     case WM_DOCHOSTTASK:
658         return process_dochost_tasks(&This->doc_host->doc_host);
659     case WM_UPDATEADDRBAR:
660         return update_addrbar(This, lparam);
661     }
662     return DefWindowProcW(hwnd, msg, wparam, lparam);
663 }
664
665 void register_iewindow_class(void)
666 {
667     WNDCLASSEXW wc;
668
669     memset(&wc, 0, sizeof wc);
670     wc.cbSize = sizeof(wc);
671     wc.style = 0;
672     wc.lpfnWndProc = ie_window_proc;
673     wc.cbClsExtra = 0;
674     wc.cbWndExtra = sizeof(InternetExplorer*);
675     wc.hInstance = ieframe_instance;
676     wc.hIcon = LoadIconW(GetModuleHandleW(0), MAKEINTRESOURCEW(IDI_APPICON));
677     wc.hIconSm = LoadImageW(GetModuleHandleW(0), MAKEINTRESOURCEW(IDI_APPICON), IMAGE_ICON,
678                             GetSystemMetrics(SM_CXSMICON), GetSystemMetrics(SM_CYSMICON), LR_SHARED);
679     wc.hCursor = LoadCursorW(0, MAKEINTRESOURCEW(IDC_ARROW));
680     wc.hbrBackground = 0;
681     wc.lpszClassName = szIEWinFrame;
682     wc.lpszMenuName = NULL;
683
684     RegisterClassExW(&wc);
685 }
686
687 void unregister_iewindow_class(void)
688 {
689     UnregisterClassW(szIEWinFrame, ieframe_instance);
690 }
691
692 static void create_frame_hwnd(InternetExplorer *This)
693 {
694     This->frame_hwnd = CreateWindowExW(
695             WS_EX_WINDOWEDGE,
696             szIEWinFrame, wszWineInternetExplorer,
697             WS_CLIPCHILDREN | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
698                 | WS_MINIMIZEBOX | WS_MAXIMIZEBOX,
699             CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT,
700             NULL, NULL /* FIXME */, ieframe_instance, This);
701 }
702
703 static inline IEDocHost *impl_from_DocHost(DocHost *iface)
704 {
705     return CONTAINING_RECORD(iface, IEDocHost, doc_host);
706 }
707
708 static ULONG IEDocHost_addref(DocHost *iface)
709 {
710     IEDocHost *This = impl_from_DocHost(iface);
711     LONG ref = InterlockedIncrement(&This->ref);
712
713     TRACE("(%p) ref=%d\n", This, ref);
714
715     return ref;
716 }
717
718 static ULONG IEDocHost_release(DocHost *iface)
719 {
720     IEDocHost *This = impl_from_DocHost(iface);
721     LONG ref = InterlockedDecrement(&This->ref);
722
723     TRACE("(%p) ref=%d\n", This, ref);
724
725     if(!ref) {
726         if(This->ie)
727             ERR("This->ie is not NULL\n");
728         heap_free(This);
729     }
730
731     return ref;
732 }
733
734 static void WINAPI DocHostContainer_GetDocObjRect(DocHost* This, RECT* rc)
735 {
736     GetClientRect(This->frame_hwnd, rc);
737     adjust_ie_docobj_rect(This->frame_hwnd, rc);
738 }
739
740 static HRESULT WINAPI DocHostContainer_SetStatusText(DocHost *iface, LPCWSTR text)
741 {
742     IEDocHost *This = impl_from_DocHost(iface);
743     return update_ie_statustext(This->ie, text);
744 }
745
746 static void WINAPI DocHostContainer_SetURL(DocHost* iface, LPCWSTR url)
747 {
748     IEDocHost *This = impl_from_DocHost(iface);
749
750     if(!This->ie)
751         return;
752
753     This->ie->nohome = FALSE;
754     SendMessageW(This->ie->frame_hwnd, WM_UPDATEADDRBAR, 0, (LPARAM)url);
755 }
756
757 static HRESULT DocHostContainer_exec(DocHost* This, const GUID *cmd_group, DWORD cmdid, DWORD execopt, VARIANT *in,
758         VARIANT *out)
759 {
760     return S_OK;
761 }
762 static const IDocHostContainerVtbl DocHostContainerVtbl = {
763     IEDocHost_addref,
764     IEDocHost_release,
765     DocHostContainer_GetDocObjRect,
766     DocHostContainer_SetStatusText,
767     DocHostContainer_SetURL,
768     DocHostContainer_exec
769 };
770
771 static HRESULT create_ie(InternetExplorer **ret_obj)
772 {
773     InternetExplorer *ret;
774
775     ret = heap_alloc_zero(sizeof(InternetExplorer));
776     if(!ret)
777         return E_OUTOFMEMORY;
778
779     ret->doc_host = heap_alloc_zero(sizeof(IEDocHost));
780     if(!ret->doc_host) {
781         heap_free(ret);
782         return E_OUTOFMEMORY;
783     }
784
785     ret->ref = 1;
786     ret->doc_host->ref = 1;
787     ret->doc_host->ie = ret;
788
789     DocHost_Init(&ret->doc_host->doc_host, (IDispatch*)&ret->IWebBrowser2_iface, &DocHostContainerVtbl);
790
791     InternetExplorer_WebBrowser_Init(ret);
792
793     HlinkFrame_Init(&ret->hlink_frame, (IUnknown*)&ret->IWebBrowser2_iface, &ret->doc_host->doc_host);
794
795     create_frame_hwnd(ret);
796     ret->doc_host->doc_host.frame_hwnd = ret->frame_hwnd;
797
798     InterlockedIncrement(&obj_cnt);
799     list_add_tail(&ie_list, &ret->entry);
800     *ret_obj = ret;
801     return S_OK;
802 }
803
804 HRESULT WINAPI InternetExplorer_Create(IClassFactory *iface, IUnknown *pOuter, REFIID riid, void **ppv)
805 {
806     InternetExplorer *ret;
807     HRESULT hres;
808
809     TRACE("(%p %s %p)\n", pOuter, debugstr_guid(riid), ppv);
810
811     hres = create_ie(&ret);
812     if(FAILED(hres))
813         return hres;
814
815     hres = IWebBrowser2_QueryInterface(&ret->IWebBrowser2_iface, riid, ppv);
816     IWebBrowser2_Release(&ret->IWebBrowser2_iface);
817     if(FAILED(hres))
818         return hres;
819
820     return S_OK;
821 }
822
823 void released_obj(void)
824 {
825     if(!InterlockedDecrement(&obj_cnt))
826         PostQuitMessage(0);
827 }
828
829 static BOOL create_ie_window(LPCSTR cmdline)
830 {
831     InternetExplorer *ie;
832     HRESULT hres;
833
834     hres = create_ie(&ie);
835     if(FAILED(hres))
836         return FALSE;
837
838     IWebBrowser2_put_Visible(&ie->IWebBrowser2_iface, VARIANT_TRUE);
839     IWebBrowser2_put_MenuBar(&ie->IWebBrowser2_iface, VARIANT_TRUE);
840
841     if(!*cmdline) {
842         IWebBrowser2_GoHome(&ie->IWebBrowser2_iface);
843     }else {
844         VARIANT var_url;
845         DWORD len;
846         int cmdlen;
847
848         while(*cmdline == ' ' || *cmdline == '\t')
849             cmdline++;
850         cmdlen = lstrlenA(cmdline);
851         if(cmdlen > 2 && cmdline[0] == '"' && cmdline[cmdlen-1] == '"') {
852             cmdline++;
853             cmdlen -= 2;
854         }
855
856         if(cmdlen == 7 && !memcmp(cmdline, "-nohome", 7)) {
857             ie->nohome = TRUE;
858         }else {
859             V_VT(&var_url) = VT_BSTR;
860
861             len = MultiByteToWideChar(CP_ACP, 0, cmdline, cmdlen, NULL, 0);
862             V_BSTR(&var_url) = SysAllocStringLen(NULL, len);
863             MultiByteToWideChar(CP_ACP, 0, cmdline, cmdlen, V_BSTR(&var_url), len);
864
865             /* navigate to the first page */
866             IWebBrowser2_Navigate2(&ie->IWebBrowser2_iface, &var_url, NULL, NULL, NULL, NULL);
867
868             SysFreeString(V_BSTR(&var_url));
869         }
870     }
871
872     IWebBrowser2_Release(&ie->IWebBrowser2_iface);
873     return TRUE;
874 }
875
876 static HDDEDATA open_dde_url(WCHAR *dde_url)
877 {
878     InternetExplorer *ie = NULL, *iter;
879     WCHAR *url, *url_end;
880     VARIANT urlv;
881     HRESULT hres;
882
883     TRACE("%s\n", debugstr_w(dde_url));
884
885     url = dde_url;
886     if(*url == '"') {
887         url++;
888         url_end = strchrW(url, '"');
889         if(!url_end) {
890             FIXME("missing string terminator\n");
891             return 0;
892         }
893         *url_end = 0;
894     }else {
895         url_end = strchrW(url, ',');
896         if(url_end)
897             *url_end = 0;
898         else
899             url_end = url + strlenW(url);
900     }
901
902     LIST_FOR_EACH_ENTRY(iter, &ie_list, InternetExplorer, entry) {
903         if(iter->nohome) {
904             IWebBrowser2_AddRef(&iter->IWebBrowser2_iface);
905             ie = iter;
906             break;
907         }
908     }
909
910     if(!ie) {
911         hres = create_ie(&ie);
912         if(FAILED(hres))
913             return 0;
914     }
915
916     IWebBrowser2_put_Visible(&ie->IWebBrowser2_iface, VARIANT_TRUE);
917     IWebBrowser2_put_MenuBar(&ie->IWebBrowser2_iface, VARIANT_TRUE);
918
919     V_VT(&urlv) = VT_BSTR;
920     V_BSTR(&urlv) = SysAllocStringLen(url, url_end-url);
921     if(!V_BSTR(&urlv)) {
922         IWebBrowser2_Release(&ie->IWebBrowser2_iface);
923         return 0;
924     }
925
926     hres = IWebBrowser2_Navigate2(&ie->IWebBrowser2_iface, &urlv, NULL, NULL, NULL, NULL);
927     if(FAILED(hres))
928         return 0;
929
930     IWebBrowser2_Release(&ie->IWebBrowser2_iface);
931     return ULongToHandle(DDE_FACK);
932 }
933
934 static HDDEDATA WINAPI dde_proc(UINT type, UINT uFmt, HCONV hConv, HSZ hsz1, HSZ hsz2, HDDEDATA data,
935         ULONG_PTR dwData1, ULONG_PTR dwData2)
936 {
937     switch(type) {
938     case XTYP_CONNECT:
939         TRACE("XTYP_CONNECT %p\n", hsz1);
940         return ULongToHandle(!DdeCmpStringHandles(hsz1, ddestr_openurl));
941
942     case XTYP_EXECUTE: {
943         WCHAR *url;
944         DWORD size;
945         HDDEDATA ret;
946
947         TRACE("XTYP_EXECUTE %p\n", data);
948
949         size = DdeGetData(data, NULL, 0, 0);
950         if(!size) {
951             WARN("size = 0\n");
952             break;
953         }
954
955         url = heap_alloc(size);
956         if(!url)
957             break;
958
959         if(DdeGetData(data, (BYTE*)url, size, 0) != size) {
960             ERR("error during read\n");
961             break;
962         }
963
964         ret = open_dde_url(url);
965
966         heap_free(url);
967         return ret;
968     }
969
970     case XTYP_REQUEST:
971         FIXME("XTYP_REQUEST\n");
972         break;
973
974     default:
975         TRACE("type %d\n", type);
976     }
977
978     return NULL;
979 }
980
981 static void init_dde(void)
982 {
983     UINT res;
984
985     static const WCHAR iexploreW[] = {'I','E','x','p','l','o','r','e',0};
986     static const WCHAR openurlW[] = {'W','W','W','_','O','p','e','n','U','R','L',0};
987
988     res = DdeInitializeW(&dde_inst, dde_proc, CBF_SKIP_ALLNOTIFICATIONS | CBF_FAIL_ADVISES | CBF_FAIL_POKES, 0);
989     if(res != DMLERR_NO_ERROR) {
990         WARN("DdeInitialize failed: %u\n", res);
991         return;
992     }
993
994     ddestr_iexplore = DdeCreateStringHandleW(dde_inst, iexploreW, CP_WINUNICODE);
995     if(!ddestr_iexplore)
996         WARN("Failed to create string handle: %u\n", DdeGetLastError(dde_inst));
997
998     ddestr_openurl = DdeCreateStringHandleW(dde_inst, openurlW, CP_WINUNICODE);
999     if(!ddestr_openurl)
1000         WARN("Failed to create string handle: %u\n", DdeGetLastError(dde_inst));
1001
1002     res = HandleToULong(DdeNameService(dde_inst, ddestr_iexplore, 0, DNS_REGISTER));
1003     if(res != DMLERR_NO_ERROR)
1004         WARN("DdeNameService failed: %u\n", res);
1005 }
1006
1007 static void release_dde(void)
1008 {
1009     if(ddestr_iexplore)
1010         DdeNameService(dde_inst, ddestr_iexplore, 0, DNS_UNREGISTER);
1011     if(ddestr_openurl)
1012         DdeFreeStringHandle(dde_inst, ddestr_openurl);
1013     if(ddestr_iexplore)
1014         DdeFreeStringHandle(dde_inst, ddestr_iexplore);
1015     DdeUninitialize(dde_inst);
1016 }
1017
1018 /******************************************************************
1019  *              IEWinMain            (ieframe.101)
1020  *
1021  * Only returns on error.
1022  */
1023 DWORD WINAPI IEWinMain(const char *szCommandLine, int nShowWindow)
1024 {
1025     MSG msg;
1026     HRESULT hres;
1027
1028     TRACE("%s %d\n", debugstr_a(szCommandLine), nShowWindow);
1029
1030     CoInitialize(NULL);
1031
1032     hres = register_class_object(TRUE);
1033     if(FAILED(hres)) {
1034         CoUninitialize();
1035         ExitProcess(1);
1036     }
1037
1038     init_dde();
1039
1040     if(strcasecmp(szCommandLine, "-embedding")) {
1041         if(!create_ie_window(szCommandLine)) {
1042             CoUninitialize();
1043             ExitProcess(1);
1044         }
1045     }
1046
1047     /* run the message loop for this thread */
1048     while (GetMessageW(&msg, 0, 0, 0))
1049     {
1050         TranslateMessage(&msg);
1051         DispatchMessageW(&msg);
1052     }
1053
1054     register_class_object(FALSE);
1055     release_dde();
1056
1057     CoUninitialize();
1058
1059     ExitProcess(0);
1060     return 0;
1061 }