mshtml: Added IHTMLObjectElement::get_vspace implementation.
[wine/multimedia.git] / dlls / shdocvw / iexplore.c
blob3991f572bbaa7f52e5698da289abceebf5a7c999
1 /*
2 * SHDOCVW - Internet Explorer main frame window
4 * Copyright 2006 Mike McCormack (for CodeWeavers)
5 * Copyright 2006 Jacek Caban (for CodeWeavers)
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
22 #define COBJMACROS
24 #include <stdarg.h>
25 #include "windef.h"
26 #include "winbase.h"
27 #include "winuser.h"
28 #include "wingdi.h"
29 #include "winnls.h"
30 #include "ole2.h"
31 #include "exdisp.h"
32 #include "oleidl.h"
34 #include "shdocvw.h"
35 #include "mshtmcid.h"
36 #include "shellapi.h"
37 #include "winreg.h"
38 #include "shlwapi.h"
39 #include "intshcut.h"
41 #include "wine/debug.h"
43 WINE_DEFAULT_DEBUG_CHANNEL(shdocvw);
45 #define IDI_APPICON 1
47 #define DOCHOST_THIS(iface) DEFINE_THIS2(InternetExplorer,doc_host,iface)
49 static const WCHAR szIEWinFrame[] = { 'I','E','F','r','a','m','e',0 };
51 /* Windows uses "Microsoft Internet Explorer" */
52 static const WCHAR wszWineInternetExplorer[] =
53 {'W','i','n','e',' ','I','n','t','e','r','n','e','t',' ','E','x','p','l','o','r','e','r',0};
55 HRESULT update_ie_statustext(InternetExplorer* This, LPCWSTR text)
57 if(!SendMessageW(This->status_hwnd, SB_SETTEXTW, MAKEWORD(SB_SIMPLEID, 0), (LPARAM)text))
58 return E_FAIL;
60 return S_OK;
63 static void adjust_ie_docobj_rect(HWND frame, RECT* rc)
65 HWND hwndRebar = GetDlgItem(frame, IDC_BROWSE_REBAR);
66 HWND hwndStatus = GetDlgItem(frame, IDC_BROWSE_STATUSBAR);
67 INT barHeight = SendMessageW(hwndRebar, RB_GETBARHEIGHT, 0, 0);
69 rc->top += barHeight;
70 rc->bottom -= barHeight;
72 if(IsWindowVisible(hwndStatus))
74 RECT statusrc;
76 GetClientRect(hwndStatus, &statusrc);
77 rc->bottom -= statusrc.bottom - statusrc.top;
81 static HMENU get_tb_menu(HMENU menu)
83 HMENU menu_view = GetSubMenu(menu, 1);
85 return GetSubMenu(menu_view, 0);
88 static HMENU get_fav_menu(HMENU menu)
90 return GetSubMenu(menu, 2);
93 static LPWSTR get_fav_url_from_id(HMENU menu, UINT id)
95 MENUITEMINFOW item;
97 item.cbSize = sizeof(item);
98 item.fMask = MIIM_DATA;
100 if(!GetMenuItemInfoW(menu, id, FALSE, &item))
101 return NULL;
103 return (LPWSTR)item.dwItemData;
106 static void free_fav_menu_data(HMENU menu)
108 LPWSTR url;
109 int i;
111 for(i = 0; (url = get_fav_url_from_id(menu, ID_BROWSE_GOTOFAV_FIRST + i)); i++)
112 heap_free( url );
115 static int get_menu_item_count(HMENU menu)
117 MENUITEMINFOW item;
118 int count = 0;
119 int i;
121 item.cbSize = sizeof(item);
122 item.fMask = MIIM_DATA | MIIM_SUBMENU;
124 for(i = 0; GetMenuItemInfoW(menu, i, TRUE, &item); i++)
126 if(item.hSubMenu)
127 count += get_menu_item_count(item.hSubMenu);
128 else
129 count++;
132 return count;
135 static void add_fav_to_menu(HMENU favmenu, HMENU menu, LPWSTR title, LPCWSTR url)
137 MENUITEMINFOW item;
138 /* Subtract the number of standard elements in the Favorites menu */
139 int favcount = get_menu_item_count(favmenu) - 2;
140 LPWSTR urlbuf;
142 if(favcount > (ID_BROWSE_GOTOFAV_MAX - ID_BROWSE_GOTOFAV_FIRST))
144 FIXME("Add support for more than %d Favorites\n", favcount);
145 return;
148 urlbuf = heap_alloc((lstrlenW(url) + 1) * sizeof(WCHAR));
150 if(!urlbuf)
151 return;
153 lstrcpyW(urlbuf, url);
155 item.cbSize = sizeof(item);
156 item.fMask = MIIM_FTYPE | MIIM_STRING | MIIM_DATA | MIIM_ID;
157 item.fType = MFT_STRING;
158 item.dwTypeData = title;
159 item.wID = ID_BROWSE_GOTOFAV_FIRST + favcount;
160 item.dwItemData = (ULONG_PTR)urlbuf;
161 InsertMenuItemW(menu, -1, TRUE, &item);
164 static void add_favs_to_menu(HMENU favmenu, HMENU menu, LPCWSTR dir)
166 WCHAR path[MAX_PATH*2];
167 const WCHAR search[] = {'*',0};
168 WCHAR* filename;
169 HANDLE findhandle;
170 WIN32_FIND_DATAW finddata;
171 IUniformResourceLocatorW* urlobj;
172 IPersistFile* urlfile;
173 HRESULT res;
175 lstrcpyW(path, dir);
176 PathAppendW(path, search);
178 findhandle = FindFirstFileW(path, &finddata);
180 if(findhandle == INVALID_HANDLE_VALUE)
181 return;
183 res = CoCreateInstance(&CLSID_InternetShortcut, NULL, CLSCTX_INPROC_SERVER, &IID_IUniformResourceLocatorW, (PVOID*)&urlobj);
185 if(SUCCEEDED(res))
186 res = IUnknown_QueryInterface(urlobj, &IID_IPersistFile, (PVOID*)&urlfile);
188 if(SUCCEEDED(res))
190 filename = path + lstrlenW(path) - lstrlenW(search);
194 lstrcpyW(filename, finddata.cFileName);
196 if(finddata.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
198 MENUITEMINFOW item;
199 const WCHAR ignore1[] = {'.','.',0};
200 const WCHAR ignore2[] = {'.',0};
202 if(!lstrcmpW(filename, ignore1) || !lstrcmpW(filename, ignore2))
203 continue;
205 item.cbSize = sizeof(item);
206 item.fMask = MIIM_STRING | MIIM_SUBMENU;
207 item.dwTypeData = filename;
208 item.hSubMenu = CreatePopupMenu();
209 InsertMenuItemW(menu, -1, TRUE, &item);
210 add_favs_to_menu(favmenu, item.hSubMenu, path);
211 } else
213 WCHAR* fileext;
214 WCHAR* url = NULL;
215 const WCHAR urlext[] = {'.','u','r','l',0};
217 if(lstrcmpiW(PathFindExtensionW(filename), urlext))
218 continue;
220 if(FAILED(IPersistFile_Load(urlfile, path, 0)))
221 continue;
223 urlobj->lpVtbl->GetURL(urlobj, &url);
225 if(!url)
226 continue;
228 fileext = filename + lstrlenW(filename) - lstrlenW(urlext);
229 *fileext = 0;
230 add_fav_to_menu(favmenu, menu, filename, url);
232 } while(FindNextFileW(findhandle, &finddata));
235 if(urlfile)
236 IPersistFile_Release(urlfile);
238 if(urlobj)
239 IUnknown_Release(urlobj);
241 FindClose(findhandle);
244 static void add_tbs_to_menu(HMENU menu)
246 HUSKEY toolbar_handle;
247 WCHAR toolbar_key[] = {'S','o','f','t','w','a','r','e','\\',
248 'M','i','c','r','o','s','o','f','t','\\',
249 'I','n','t','e','r','n','e','t',' ',
250 'E','x','p','l','o','r','e','r','\\',
251 'T','o','o','l','b','a','r',0};
253 if(SHRegOpenUSKeyW(toolbar_key, KEY_READ, NULL, &toolbar_handle, TRUE) == ERROR_SUCCESS)
255 HUSKEY classes_handle;
256 WCHAR classes_key[] = {'S','o','f','t','w','a','r','e','\\',
257 'C','l','a','s','s','e','s','\\','C','L','S','I','D',0};
258 WCHAR guid[39];
259 DWORD value_len = sizeof(guid)/sizeof(guid[0]);
260 int i;
262 if(SHRegOpenUSKeyW(classes_key, KEY_READ, NULL, &classes_handle, TRUE) != ERROR_SUCCESS)
264 SHRegCloseUSKey(toolbar_handle);
265 ERR("Failed to open key %s\n", debugstr_w(classes_key));
266 return;
269 for(i = 0; SHRegEnumUSValueW(toolbar_handle, i, guid, &value_len, NULL, NULL, NULL, SHREGENUM_HKLM) == ERROR_SUCCESS; i++)
271 WCHAR tb_name[100];
272 DWORD tb_name_len = sizeof(tb_name)/sizeof(tb_name[0]);
273 HUSKEY tb_class_handle;
274 MENUITEMINFOW item;
275 LSTATUS ret;
276 value_len = sizeof(guid)/sizeof(guid[0]);
278 if(lstrlenW(guid) != 38)
280 TRACE("Found invalid IE toolbar entry: %s\n", debugstr_w(guid));
281 continue;
284 if(SHRegOpenUSKeyW(guid, KEY_READ, classes_handle, &tb_class_handle, TRUE) != ERROR_SUCCESS)
286 ERR("Failed to get class info for %s\n", debugstr_w(guid));
287 continue;
290 ret = SHRegQueryUSValueW(tb_class_handle, NULL, NULL, tb_name, &tb_name_len, TRUE, NULL, 0);
292 SHRegCloseUSKey(tb_class_handle);
294 if(ret != ERROR_SUCCESS)
296 ERR("Failed to get toolbar name for %s\n", debugstr_w(guid));
297 continue;
300 item.cbSize = sizeof(item);
301 item.fMask = MIIM_STRING;
302 item.dwTypeData = tb_name;
303 InsertMenuItemW(menu, GetMenuItemCount(menu), TRUE, &item);
306 SHRegCloseUSKey(classes_handle);
307 SHRegCloseUSKey(toolbar_handle);
311 static HMENU create_ie_menu(void)
313 HMENU menu = LoadMenuW(shdocvw_hinstance, MAKEINTRESOURCEW(IDR_BROWSE_MAIN_MENU));
314 HMENU favmenu = get_fav_menu(menu);
315 WCHAR path[MAX_PATH];
317 add_tbs_to_menu(get_tb_menu(menu));
319 if(SHGetFolderPathW(NULL, CSIDL_COMMON_FAVORITES, NULL, SHGFP_TYPE_CURRENT, path) == S_OK)
320 add_favs_to_menu(favmenu, favmenu, path);
322 if(SHGetFolderPathW(NULL, CSIDL_FAVORITES, NULL, SHGFP_TYPE_CURRENT, path) == S_OK)
323 add_favs_to_menu(favmenu, favmenu, path);
325 return menu;
328 static void ie_navigate(InternetExplorer* This, LPCWSTR url)
330 VARIANT variant;
332 V_VT(&variant) = VT_BSTR;
333 V_BSTR(&variant) = SysAllocString(url);
335 IWebBrowser2_Navigate2(WEBBROWSER2(This), &variant, NULL, NULL, NULL, NULL);
337 SysFreeString(V_BSTR(&variant));
340 static INT_PTR CALLBACK ie_dialog_open_proc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
342 static InternetExplorer* This;
344 switch(msg)
346 case WM_INITDIALOG:
347 This = (InternetExplorer*)lparam;
348 EnableWindow(GetDlgItem(hwnd, IDOK), FALSE);
349 return TRUE;
351 case WM_COMMAND:
352 switch(LOWORD(wparam))
354 case IDC_BROWSE_OPEN_URL:
356 HWND hwndurl = GetDlgItem(hwnd, IDC_BROWSE_OPEN_URL);
357 int len = GetWindowTextLengthW(hwndurl);
359 EnableWindow(GetDlgItem(hwnd, IDOK), len ? TRUE : FALSE);
360 break;
362 case IDOK:
364 HWND hwndurl = GetDlgItem(hwnd, IDC_BROWSE_OPEN_URL);
365 int len = GetWindowTextLengthW(hwndurl);
367 if(len)
369 VARIANT url;
371 V_VT(&url) = VT_BSTR;
372 V_BSTR(&url) = SysAllocStringLen(NULL, len);
374 GetWindowTextW(hwndurl, V_BSTR(&url), len + 1);
375 IWebBrowser2_Navigate2(WEBBROWSER2(This), &url, NULL, NULL, NULL, NULL);
377 SysFreeString(V_BSTR(&url));
380 /* fall through */
381 case IDCANCEL:
382 EndDialog(hwnd, wparam);
383 return TRUE;
386 return FALSE;
389 static void ie_dialog_about(HWND hwnd)
391 HICON icon = LoadImageW(GetModuleHandleW(0), MAKEINTRESOURCEW(IDI_APPICON), IMAGE_ICON, 48, 48, LR_SHARED);
393 ShellAboutW(hwnd, wszWineInternetExplorer, NULL, icon);
395 DestroyIcon(icon);
398 static void add_tb_separator(HWND hwnd)
400 TBBUTTON btn;
402 ZeroMemory(&btn, sizeof(btn));
404 btn.iBitmap = 3;
405 btn.fsStyle = BTNS_SEP;
406 SendMessageW(hwnd, TB_ADDBUTTONSW, 1, (LPARAM)&btn);
409 static void add_tb_button(HWND hwnd, int bmp, int cmd, int strId)
411 TBBUTTON btn;
412 WCHAR buf[30];
414 LoadStringW(shdocvw_hinstance, strId, buf, sizeof(buf)/sizeof(buf[0]));
416 btn.iBitmap = bmp;
417 btn.idCommand = cmd;
418 btn.fsState = TBSTATE_ENABLED;
419 btn.fsStyle = BTNS_SHOWTEXT;
420 btn.dwData = 0;
421 btn.iString = (INT_PTR)buf;
423 SendMessageW(hwnd, TB_ADDBUTTONSW, 1, (LPARAM)&btn);
426 static void create_rebar(HWND hwnd)
428 HWND hwndRebar;
429 HWND hwndAddress;
430 HWND hwndToolbar;
431 REBARINFO rebarinf;
432 REBARBANDINFOW bandinf;
433 WCHAR addr[40];
434 HIMAGELIST imagelist;
435 WCHAR idb_ietoolbar[] = {'I','D','B','_','I','E','T','O','O','L','B','A','R',0};
437 LoadStringW(shdocvw_hinstance, IDS_ADDRESS, addr, sizeof(addr)/sizeof(addr[0]));
439 hwndRebar = CreateWindowExW(WS_EX_TOOLWINDOW, REBARCLASSNAMEW, NULL, WS_CHILD|WS_VISIBLE|WS_CLIPSIBLINGS|WS_CLIPCHILDREN|RBS_VARHEIGHT|CCS_TOP|CCS_NODIVIDER, 0, 0, 0, 0, hwnd, (HMENU)IDC_BROWSE_REBAR, shdocvw_hinstance, NULL);
441 rebarinf.cbSize = sizeof(rebarinf);
442 rebarinf.fMask = 0;
443 rebarinf.himl = NULL;
444 rebarinf.cbSize = sizeof(rebarinf);
446 SendMessageW(hwndRebar, RB_SETBARINFO, 0, (LPARAM)&rebarinf);
448 hwndToolbar = CreateWindowExW(TBSTYLE_EX_MIXEDBUTTONS, TOOLBARCLASSNAMEW, NULL, TBSTYLE_FLAT | WS_CHILD | WS_VISIBLE, 0, 0, 0, 0, hwndRebar, (HMENU)IDC_BROWSE_TOOLBAR, shdocvw_hinstance, NULL);
450 imagelist = ImageList_LoadImageW(shdocvw_hinstance, idb_ietoolbar, 32, 0, CLR_NONE, IMAGE_BITMAP, LR_CREATEDIBSECTION);
452 SendMessageW(hwndToolbar, TB_SETIMAGELIST, 0, (LPARAM)imagelist);
453 SendMessageW(hwndToolbar, TB_BUTTONSTRUCTSIZE, sizeof(TBBUTTON), 0);
454 add_tb_button(hwndToolbar, 0, 0, IDS_TB_BACK);
455 add_tb_button(hwndToolbar, 1, 0, IDS_TB_FORWARD);
456 add_tb_button(hwndToolbar, 2, 0, IDS_TB_STOP);
457 add_tb_button(hwndToolbar, 3, 0, IDS_TB_REFRESH);
458 add_tb_button(hwndToolbar, 4, ID_BROWSE_HOME, IDS_TB_HOME);
459 add_tb_separator(hwndToolbar);
460 add_tb_button(hwndToolbar, 5, ID_BROWSE_PRINT, IDS_TB_PRINT);
461 SendMessageW(hwndToolbar, TB_SETBUTTONSIZE, 0, MAKELPARAM(55,50));
462 SendMessageW(hwndToolbar, TB_AUTOSIZE, 0, 0);
464 bandinf.cbSize = sizeof(bandinf);
465 bandinf.fMask = RBBIM_STYLE | RBBIM_CHILD | RBBIM_CHILDSIZE | RBBIM_SIZE;
466 bandinf.fStyle = RBBS_CHILDEDGE;
467 bandinf.cx = 100;
468 bandinf.cyMinChild = 52;
469 bandinf.hwndChild = hwndToolbar;
471 SendMessageW(hwndRebar, RB_INSERTBANDW, -1, (LPARAM)&bandinf);
473 hwndAddress = CreateWindowExW(0, WC_COMBOBOXEXW, NULL, WS_BORDER|WS_CHILD|WS_VISIBLE|CBS_DROPDOWN, 0, 0, 100,20,hwndRebar, (HMENU)IDC_BROWSE_ADDRESSBAR, shdocvw_hinstance, NULL);
475 bandinf.fMask |= RBBIM_TEXT;
476 bandinf.fStyle = RBBS_CHILDEDGE | RBBS_BREAK;
477 bandinf.lpText = addr;
478 bandinf.cyMinChild = 20;
479 bandinf.hwndChild = hwndAddress;
481 SendMessageW(hwndRebar, RB_INSERTBANDW, -1, (LPARAM)&bandinf);
484 static LRESULT iewnd_OnCreate(HWND hwnd, LPCREATESTRUCTW lpcs)
486 InternetExplorer* This = (InternetExplorer*)lpcs->lpCreateParams;
487 SetWindowLongPtrW(hwnd, 0, (LONG_PTR) lpcs->lpCreateParams);
489 This->menu = create_ie_menu();
491 This->status_hwnd = CreateStatusWindowW(CCS_NODIVIDER|WS_CHILD|WS_VISIBLE, NULL, hwnd, IDC_BROWSE_STATUSBAR);
492 SendMessageW(This->status_hwnd, SB_SIMPLE, TRUE, 0);
494 create_rebar(hwnd);
496 return 0;
499 static LRESULT iewnd_OnSize(InternetExplorer *This, INT width, INT height)
501 HWND hwndRebar = GetDlgItem(This->frame_hwnd, IDC_BROWSE_REBAR);
502 INT barHeight = SendMessageW(hwndRebar, RB_GETBARHEIGHT, 0, 0);
503 RECT docarea = {0, 0, width, height};
505 SendMessageW(This->status_hwnd, WM_SIZE, 0, 0);
507 adjust_ie_docobj_rect(This->frame_hwnd, &docarea);
509 if(This->doc_host.hwnd)
510 SetWindowPos(This->doc_host.hwnd, NULL, docarea.left, docarea.top, docarea.right, docarea.bottom,
511 SWP_NOZORDER | SWP_NOACTIVATE);
513 SetWindowPos(hwndRebar, NULL, 0, 0, width, barHeight, SWP_NOZORDER | SWP_NOACTIVATE);
515 return 0;
518 static LRESULT iewnd_OnNotify(InternetExplorer *This, WPARAM wparam, LPARAM lparam)
520 NMHDR* hdr = (NMHDR*)lparam;
522 if(hdr->idFrom == IDC_BROWSE_ADDRESSBAR && hdr->code == CBEN_ENDEDITW)
524 NMCBEENDEDITW* info = (NMCBEENDEDITW*)lparam;
526 if(info->fChanged && info->iWhy == CBENF_RETURN && info->szText)
528 VARIANT vt;
530 V_VT(&vt) = VT_BSTR;
531 V_BSTR(&vt) = SysAllocString(info->szText);
533 IWebBrowser2_Navigate2(WEBBROWSER2(This), &vt, NULL, NULL, NULL, NULL);
535 SysFreeString(V_BSTR(&vt));
537 return 0;
541 return 0;
544 static LRESULT iewnd_OnDestroy(InternetExplorer *This)
546 HWND hwndRebar = GetDlgItem(This->frame_hwnd, IDC_BROWSE_REBAR);
547 HWND hwndToolbar = GetDlgItem(hwndRebar, IDC_BROWSE_TOOLBAR);
548 HIMAGELIST list = (HIMAGELIST)SendMessageW(hwndToolbar, TB_GETIMAGELIST, 0, 0);
550 TRACE("%p\n", This);
552 free_fav_menu_data(get_fav_menu(This->menu));
553 ImageList_Destroy(list);
554 This->frame_hwnd = NULL;
555 PostQuitMessage(0); /* FIXME */
557 return 0;
560 static LRESULT iewnd_OnCommand(InternetExplorer *This, HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
562 switch(LOWORD(wparam))
564 case ID_BROWSE_OPEN:
565 DialogBoxParamW(shdocvw_hinstance, MAKEINTRESOURCEW(IDD_BROWSE_OPEN), hwnd, ie_dialog_open_proc, (LPARAM)This);
566 break;
568 case ID_BROWSE_PRINT:
569 if(This->doc_host.document)
571 IOleCommandTarget* target;
573 if(FAILED(IUnknown_QueryInterface(This->doc_host.document, &IID_IOleCommandTarget, (LPVOID*)&target)))
574 break;
576 IOleCommandTarget_Exec(target, &CGID_MSHTML, IDM_PRINT, OLECMDEXECOPT_DODEFAULT, NULL, NULL);
578 IOleCommandTarget_Release(target);
580 break;
582 case ID_BROWSE_HOME:
583 IWebBrowser2_GoHome(WEBBROWSER2(This));
584 break;
586 case ID_BROWSE_ABOUT:
587 ie_dialog_about(hwnd);
588 break;
590 case ID_BROWSE_QUIT:
591 iewnd_OnDestroy(This);
592 break;
594 default:
595 if(LOWORD(wparam) >= ID_BROWSE_GOTOFAV_FIRST && LOWORD(wparam) <= ID_BROWSE_GOTOFAV_MAX)
597 LPCWSTR url = get_fav_url_from_id(get_fav_menu(This->menu), LOWORD(wparam));
599 if(url)
600 ie_navigate(This, url);
602 return DefWindowProcW(hwnd, msg, wparam, lparam);
604 return 0;
607 static LRESULT update_addrbar(InternetExplorer *This, LPARAM lparam)
609 HWND hwndRebar = GetDlgItem(This->frame_hwnd, IDC_BROWSE_REBAR);
610 HWND hwndAddress = GetDlgItem(hwndRebar, IDC_BROWSE_ADDRESSBAR);
611 HWND hwndEdit = (HWND)SendMessageW(hwndAddress, CBEM_GETEDITCONTROL, 0, 0);
612 LPCWSTR url = (LPCWSTR)lparam;
614 SendMessageW(hwndEdit, WM_SETTEXT, 0, (LPARAM)url);
616 return 0;
619 static LRESULT CALLBACK
620 ie_window_proc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
622 InternetExplorer *This = (InternetExplorer*) GetWindowLongPtrW(hwnd, 0);
624 switch (msg)
626 case WM_CREATE:
627 return iewnd_OnCreate(hwnd, (LPCREATESTRUCTW)lparam);
628 case WM_DESTROY:
629 return iewnd_OnDestroy(This);
630 case WM_SIZE:
631 return iewnd_OnSize(This, LOWORD(lparam), HIWORD(lparam));
632 case WM_COMMAND:
633 return iewnd_OnCommand(This, hwnd, msg, wparam, lparam);
634 case WM_NOTIFY:
635 return iewnd_OnNotify(This, wparam, lparam);
636 case WM_DOCHOSTTASK:
637 return process_dochost_task(&This->doc_host, lparam);
638 case WM_UPDATEADDRBAR:
639 return update_addrbar(This, lparam);
641 return DefWindowProcW(hwnd, msg, wparam, lparam);
644 void register_iewindow_class(void)
646 WNDCLASSEXW wc;
648 memset(&wc, 0, sizeof wc);
649 wc.cbSize = sizeof(wc);
650 wc.style = 0;
651 wc.lpfnWndProc = ie_window_proc;
652 wc.cbClsExtra = 0;
653 wc.cbWndExtra = sizeof(InternetExplorer*);
654 wc.hInstance = shdocvw_hinstance;
655 wc.hIcon = LoadIconW(GetModuleHandleW(0), MAKEINTRESOURCEW(IDI_APPICON));
656 wc.hIconSm = LoadImageW(GetModuleHandleW(0), MAKEINTRESOURCEW(IDI_APPICON), IMAGE_ICON,
657 GetSystemMetrics(SM_CXSMICON), GetSystemMetrics(SM_CYSMICON), LR_SHARED);
658 wc.hCursor = LoadCursorW(0, MAKEINTRESOURCEW(IDC_ARROW));
659 wc.hbrBackground = 0;
660 wc.lpszClassName = szIEWinFrame;
661 wc.lpszMenuName = NULL;
663 RegisterClassExW(&wc);
666 void unregister_iewindow_class(void)
668 UnregisterClassW(szIEWinFrame, shdocvw_hinstance);
671 static void create_frame_hwnd(InternetExplorer *This)
673 This->frame_hwnd = CreateWindowExW(
674 WS_EX_WINDOWEDGE,
675 szIEWinFrame, wszWineInternetExplorer,
676 WS_CLIPCHILDREN | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
677 | WS_MINIMIZEBOX | WS_MAXIMIZEBOX,
678 CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT,
679 NULL, NULL /* FIXME */, shdocvw_hinstance, This);
682 static IWebBrowser2 *create_ie_window(LPCSTR cmdline)
684 IWebBrowser2 *wb = NULL;
686 InternetExplorer_Create(NULL, &IID_IWebBrowser2, (void**)&wb);
687 if(!wb)
688 return NULL;
690 IWebBrowser2_put_Visible(wb, VARIANT_TRUE);
691 IWebBrowser2_put_MenuBar(wb, VARIANT_TRUE);
693 if(!*cmdline) {
694 IWebBrowser2_GoHome(wb);
695 }else {
696 VARIANT var_url;
697 DWORD len;
698 int cmdlen;
700 if(!strncasecmp(cmdline, "-nohome", 7))
701 cmdline += 7;
702 while(*cmdline == ' ' || *cmdline == '\t')
703 cmdline++;
704 cmdlen = lstrlenA(cmdline);
705 if(cmdlen > 2 && cmdline[0] == '"' && cmdline[cmdlen-1] == '"') {
706 cmdline++;
707 cmdlen -= 2;
710 V_VT(&var_url) = VT_BSTR;
712 len = MultiByteToWideChar(CP_ACP, 0, cmdline, cmdlen, NULL, 0);
713 V_BSTR(&var_url) = SysAllocStringLen(NULL, len);
714 MultiByteToWideChar(CP_ACP, 0, cmdline, cmdlen, V_BSTR(&var_url), len);
716 /* navigate to the first page */
717 IWebBrowser2_Navigate2(wb, &var_url, NULL, NULL, NULL, NULL);
719 SysFreeString(V_BSTR(&var_url));
722 return wb;
725 static void WINAPI DocHostContainer_GetDocObjRect(DocHost* This, RECT* rc)
727 GetClientRect(This->frame_hwnd, rc);
728 adjust_ie_docobj_rect(This->frame_hwnd, rc);
731 static HRESULT WINAPI DocHostContainer_SetStatusText(DocHost* This, LPCWSTR text)
733 InternetExplorer* ie = DOCHOST_THIS(This);
734 return update_ie_statustext(ie, text);
737 static void WINAPI DocHostContainer_SetURL(DocHost* This, LPCWSTR url)
739 SendMessageW(This->frame_hwnd, WM_UPDATEADDRBAR, 0, (LPARAM)url);
742 static const IDocHostContainerVtbl DocHostContainerVtbl = {
743 DocHostContainer_GetDocObjRect,
744 DocHostContainer_SetStatusText,
745 DocHostContainer_SetURL
748 HRESULT InternetExplorer_Create(IUnknown *pOuter, REFIID riid, void **ppv)
750 InternetExplorer *ret;
751 HRESULT hres;
753 TRACE("(%p %s %p)\n", pOuter, debugstr_guid(riid), ppv);
755 ret = heap_alloc_zero(sizeof(InternetExplorer));
756 ret->ref = 0;
758 ret->doc_host.disp = (IDispatch*)WEBBROWSER2(ret);
759 DocHost_Init(&ret->doc_host, (IDispatch*)WEBBROWSER2(ret), &DocHostContainerVtbl);
761 InternetExplorer_WebBrowser_Init(ret);
763 HlinkFrame_Init(&ret->hlink_frame, (IUnknown*)WEBBROWSER2(ret), &ret->doc_host);
765 create_frame_hwnd(ret);
766 ret->doc_host.frame_hwnd = ret->frame_hwnd;
768 hres = IWebBrowser2_QueryInterface(WEBBROWSER2(ret), riid, ppv);
769 if(FAILED(hres)) {
770 heap_free(ret);
771 return hres;
774 return hres;
777 /******************************************************************
778 * IEWinMain (SHDOCVW.101)
780 * Only returns on error.
782 DWORD WINAPI IEWinMain(LPSTR szCommandLine, int nShowWindow)
784 IWebBrowser2 *wb = NULL;
785 MSG msg;
786 HRESULT hres;
788 TRACE("%s %d\n", debugstr_a(szCommandLine), nShowWindow);
790 if(*szCommandLine == '-' || *szCommandLine == '/') {
791 if(!strcasecmp(szCommandLine+1, "regserver"))
792 return register_iexplore(TRUE);
793 if(!strcasecmp(szCommandLine+1, "unregserver"))
794 return register_iexplore(FALSE);
797 CoInitialize(NULL);
799 hres = register_class_object(TRUE);
800 if(FAILED(hres)) {
801 CoUninitialize();
802 ExitProcess(1);
805 if(strcasecmp(szCommandLine, "-embedding"))
806 wb = create_ie_window(szCommandLine);
808 /* run the message loop for this thread */
809 while (GetMessageW(&msg, 0, 0, 0))
811 TranslateMessage(&msg);
812 DispatchMessageW(&msg);
815 if(wb)
816 IWebBrowser2_Release(wb);
818 register_class_object(FALSE);
820 CoUninitialize();
822 ExitProcess(0);
823 return 0;