urlmon/tests: Don't bother testing unimplemented functions to reduce test output.
[wine] / dlls / shdocvw / iexplore.c
1 /*
2  * SHDOCVW - 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 #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"
33
34 #include "shdocvw.h"
35 #include "mshtmcid.h"
36 #include "shellapi.h"
37
38 #include "wine/debug.h"
39
40 WINE_DEFAULT_DEBUG_CHANNEL(shdocvw);
41
42 #define IDI_APPICON 1
43
44 static const WCHAR szIEWinFrame[] = { 'I','E','F','r','a','m','e',0 };
45
46 /* Windows uses "Microsoft Internet Explorer" */
47 static const WCHAR wszWineInternetExplorer[] =
48         {'W','i','n','e',' ','I','n','t','e','r','n','e','t',' ','E','x','p','l','o','r','e','r',0};
49
50 static INT_PTR CALLBACK ie_dialog_open_proc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
51 {
52     static InternetExplorer* This;
53
54     switch(msg)
55     {
56         case WM_INITDIALOG:
57             This = (InternetExplorer*)lparam;
58             EnableWindow(GetDlgItem(hwnd, IDOK), FALSE);
59             return TRUE;
60
61         case WM_COMMAND:
62             switch(LOWORD(wparam))
63             {
64                 case IDC_BROWSE_OPEN_URL:
65                 {
66                     HWND hwndurl = GetDlgItem(hwnd, IDC_BROWSE_OPEN_URL);
67                     int len = GetWindowTextLengthW(hwndurl);
68
69                     EnableWindow(GetDlgItem(hwnd, IDOK), len ? TRUE : FALSE);
70                     break;
71                 }
72                 case IDOK:
73                 {
74                     HWND hwndurl = GetDlgItem(hwnd, IDC_BROWSE_OPEN_URL);
75                     int len = GetWindowTextLengthW(hwndurl);
76
77                     if(len)
78                     {
79                         VARIANT url;
80
81                         V_VT(&url) = VT_BSTR;
82                         V_BSTR(&url) = SysAllocStringLen(NULL, len);
83
84                         GetWindowTextW(hwndurl, V_BSTR(&url), len);
85                         IWebBrowser2_Navigate2(WEBBROWSER2(This), &url, NULL, NULL, NULL, NULL);
86
87                         SysFreeString(V_BSTR(&url));
88                     }
89                 }
90                 /* fall through */
91                 case IDCANCEL:
92                     EndDialog(hwnd, wparam);
93                     return TRUE;
94             }
95     }
96     return FALSE;
97 }
98
99 static void ie_dialog_about(HWND hwnd)
100 {
101     HICON icon = LoadImageW(GetModuleHandleW(0), MAKEINTRESOURCEW(IDI_APPICON), IMAGE_ICON, 48, 48, LR_SHARED);
102
103     ShellAboutW(hwnd, wszWineInternetExplorer, NULL, icon);
104
105     DestroyIcon(icon);
106 }
107
108 static LRESULT iewnd_OnCreate(HWND hwnd, LPCREATESTRUCTW lpcs)
109 {
110     SetWindowLongPtrW(hwnd, 0, (LONG_PTR) lpcs->lpCreateParams);
111     return 0;
112 }
113
114 static LRESULT iewnd_OnSize(InternetExplorer *This, INT width, INT height)
115 {
116     if(This->doc_host.hwnd)
117         SetWindowPos(This->doc_host.hwnd, NULL, 0, 0, width, height,
118                      SWP_NOZORDER | SWP_NOACTIVATE);
119
120     return 0;
121 }
122
123 static LRESULT iewnd_OnDestroy(InternetExplorer *This)
124 {
125     TRACE("%p\n", This);
126
127     This->frame_hwnd = NULL;
128     PostQuitMessage(0); /* FIXME */
129
130     return 0;
131 }
132
133 static LRESULT CALLBACK iewnd_OnCommand(InternetExplorer *This, HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
134 {
135     switch(LOWORD(wparam))
136     {
137         case ID_BROWSE_OPEN:
138             DialogBoxParamW(shdocvw_hinstance, MAKEINTRESOURCEW(IDD_BROWSE_OPEN), hwnd, ie_dialog_open_proc, (LPARAM)This);
139             break;
140
141         case ID_BROWSE_PRINT:
142             if(This->doc_host.document)
143             {
144                 IOleCommandTarget* target;
145
146                 if(FAILED(IUnknown_QueryInterface(This->doc_host.document, &IID_IOleCommandTarget, (LPVOID*)&target)))
147                     break;
148
149                 IOleCommandTarget_Exec(target, &CGID_MSHTML, IDM_PRINT, OLECMDEXECOPT_DODEFAULT, NULL, NULL);
150
151                 IOleCommandTarget_Release(target);
152             }
153             break;
154
155         case ID_BROWSE_ABOUT:
156             ie_dialog_about(hwnd);
157             break;
158
159         default:
160             return DefWindowProcW(hwnd, msg, wparam, lparam);
161     }
162     return 0;
163 }
164
165 static LRESULT CALLBACK
166 ie_window_proc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
167 {
168     InternetExplorer *This = (InternetExplorer*) GetWindowLongPtrW(hwnd, 0);
169
170     switch (msg)
171     {
172     case WM_CREATE:
173         return iewnd_OnCreate(hwnd, (LPCREATESTRUCTW)lparam);
174     case WM_DESTROY:
175         return iewnd_OnDestroy(This);
176     case WM_SIZE:
177         return iewnd_OnSize(This, LOWORD(lparam), HIWORD(lparam));
178     case WM_COMMAND:
179         return iewnd_OnCommand(This, hwnd, msg, wparam, lparam);
180     case WM_DOCHOSTTASK:
181         return process_dochost_task(&This->doc_host, lparam);
182     }
183     return DefWindowProcW(hwnd, msg, wparam, lparam);
184 }
185
186 void register_iewindow_class(void)
187 {
188     WNDCLASSEXW wc;
189
190     memset(&wc, 0, sizeof wc);
191     wc.cbSize = sizeof(wc);
192     wc.style = 0;
193     wc.lpfnWndProc = ie_window_proc;
194     wc.cbClsExtra = 0;
195     wc.cbWndExtra = sizeof(InternetExplorer*);
196     wc.hInstance = shdocvw_hinstance;
197     wc.hIcon = LoadIconW(GetModuleHandleW(0), MAKEINTRESOURCEW(IDI_APPICON));
198     wc.hIconSm = LoadImageW(GetModuleHandleW(0), MAKEINTRESOURCEW(IDI_APPICON), IMAGE_ICON,
199                             GetSystemMetrics(SM_CXSMICON), GetSystemMetrics(SM_CYSMICON), LR_SHARED);
200     wc.hCursor = LoadCursorW(0, MAKEINTRESOURCEW(IDC_ARROW));
201     wc.hbrBackground = 0;
202     wc.lpszClassName = szIEWinFrame;
203     wc.lpszMenuName = NULL;
204
205     RegisterClassExW(&wc);
206 }
207
208 void unregister_iewindow_class(void)
209 {
210     UnregisterClassW(szIEWinFrame, shdocvw_hinstance);
211 }
212
213 static void create_frame_hwnd(InternetExplorer *This)
214 {
215     This->frame_hwnd = CreateWindowExW(
216             WS_EX_WINDOWEDGE,
217             szIEWinFrame, wszWineInternetExplorer,
218             WS_CLIPCHILDREN | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
219                 | WS_MINIMIZEBOX | WS_MAXIMIZEBOX,
220             CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT,
221             NULL, NULL /* FIXME */, shdocvw_hinstance, This);
222 }
223
224 static IWebBrowser2 *create_ie_window(LPCSTR cmdline)
225 {
226     IWebBrowser2 *wb = NULL;
227
228     InternetExplorer_Create(NULL, &IID_IWebBrowser2, (void**)&wb);
229     if(!wb)
230         return NULL;
231
232     IWebBrowser2_put_Visible(wb, VARIANT_TRUE);
233     IWebBrowser2_put_MenuBar(wb, VARIANT_TRUE);
234
235     if(!*cmdline) {
236         IWebBrowser2_GoHome(wb);
237     }else {
238         VARIANT var_url;
239         DWORD len;
240         int cmdlen;
241
242         if(!strncasecmp(cmdline, "-nohome", 7))
243             cmdline += 7;
244         while(*cmdline == ' ' || *cmdline == '\t')
245             cmdline++;
246         cmdlen = lstrlenA(cmdline);
247         if(cmdlen > 2 && cmdline[0] == '"' && cmdline[cmdlen-1] == '"') {
248             cmdline++;
249             cmdlen -= 2;
250         }
251
252         V_VT(&var_url) = VT_BSTR;
253
254         len = MultiByteToWideChar(CP_ACP, 0, cmdline, cmdlen, NULL, 0);
255         V_BSTR(&var_url) = SysAllocStringLen(NULL, len);
256         MultiByteToWideChar(CP_ACP, 0, cmdline, cmdlen, V_BSTR(&var_url), len);
257
258         /* navigate to the first page */
259         IWebBrowser2_Navigate2(wb, &var_url, NULL, NULL, NULL, NULL);
260
261         SysFreeString(V_BSTR(&var_url));
262     }
263
264     return wb;
265 }
266
267 HRESULT InternetExplorer_Create(IUnknown *pOuter, REFIID riid, void **ppv)
268 {
269     InternetExplorer *ret;
270     HRESULT hres;
271
272     TRACE("(%p %s %p)\n", pOuter, debugstr_guid(riid), ppv);
273
274     ret = heap_alloc_zero(sizeof(InternetExplorer));
275     ret->ref = 0;
276
277     ret->doc_host.disp = (IDispatch*)WEBBROWSER2(ret);
278     DocHost_Init(&ret->doc_host, (IDispatch*)WEBBROWSER2(ret));
279
280     InternetExplorer_WebBrowser_Init(ret);
281
282     create_frame_hwnd(ret);
283     ret->doc_host.frame_hwnd = ret->frame_hwnd;
284
285     hres = IWebBrowser2_QueryInterface(WEBBROWSER2(ret), riid, ppv);
286     if(FAILED(hres)) {
287         heap_free(ret);
288         return hres;
289     }
290
291     return hres;
292 }
293
294 /******************************************************************
295  *              IEWinMain            (SHDOCVW.101)
296  *
297  * Only returns on error.
298  */
299 DWORD WINAPI IEWinMain(LPSTR szCommandLine, int nShowWindow)
300 {
301     IWebBrowser2 *wb = NULL;
302     MSG msg;
303     HRESULT hres;
304
305     TRACE("%s %d\n", debugstr_a(szCommandLine), nShowWindow);
306
307     if(*szCommandLine == '-' || *szCommandLine == '/') {
308         if(!strcasecmp(szCommandLine+1, "regserver"))
309             return register_iexplore(TRUE);
310         if(!strcasecmp(szCommandLine+1, "unregserver"))
311             return register_iexplore(FALSE);
312     }
313
314     CoInitialize(NULL);
315
316     hres = register_class_object(TRUE);
317     if(FAILED(hres)) {
318         CoUninitialize();
319         ExitProcess(1);
320     }
321
322     if(strcasecmp(szCommandLine, "-embedding"))
323         wb = create_ie_window(szCommandLine);
324
325     /* run the message loop for this thread */
326     while (GetMessageW(&msg, 0, 0, 0))
327     {
328         TranslateMessage(&msg);
329         DispatchMessageW(&msg);
330     }
331
332     if(wb)
333         IWebBrowser2_Release(wb);
334
335     register_class_object(FALSE);
336
337     CoUninitialize();
338
339     ExitProcess(0);
340     return 0;
341 }