shdocvw: Add About dialog to IE.
[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 void ie_dialog_about(HWND hwnd)
51 {
52     HICON icon = LoadImageW(GetModuleHandleW(0), MAKEINTRESOURCEW(IDI_APPICON), IMAGE_ICON, 48, 48, LR_SHARED);
53
54     ShellAboutW(hwnd, wszWineInternetExplorer, NULL, icon);
55
56     DestroyIcon(icon);
57 }
58
59 static LRESULT iewnd_OnCreate(HWND hwnd, LPCREATESTRUCTW lpcs)
60 {
61     SetWindowLongPtrW(hwnd, 0, (LONG_PTR) lpcs->lpCreateParams);
62     return 0;
63 }
64
65 static LRESULT iewnd_OnSize(InternetExplorer *This, INT width, INT height)
66 {
67     if(This->doc_host.hwnd)
68         SetWindowPos(This->doc_host.hwnd, NULL, 0, 0, width, height,
69                      SWP_NOZORDER | SWP_NOACTIVATE);
70
71     return 0;
72 }
73
74 static LRESULT iewnd_OnDestroy(InternetExplorer *This)
75 {
76     TRACE("%p\n", This);
77
78     This->frame_hwnd = NULL;
79     PostQuitMessage(0); /* FIXME */
80
81     return 0;
82 }
83
84 static LRESULT CALLBACK iewnd_OnCommand(InternetExplorer *This, HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
85 {
86     switch(LOWORD(wparam))
87     {
88         case ID_BROWSE_PRINT:
89             if(This->doc_host.document)
90             {
91                 IOleCommandTarget* target;
92
93                 if(FAILED(IUnknown_QueryInterface(This->doc_host.document, &IID_IOleCommandTarget, (LPVOID*)&target)))
94                     break;
95
96                 IOleCommandTarget_Exec(target, &CGID_MSHTML, IDM_PRINT, OLECMDEXECOPT_DODEFAULT, NULL, NULL);
97
98                 IOleCommandTarget_Release(target);
99             }
100             break;
101
102         case ID_BROWSE_ABOUT:
103             ie_dialog_about(hwnd);
104             break;
105
106         default:
107             return DefWindowProcW(hwnd, msg, wparam, lparam);
108     }
109     return 0;
110 }
111
112 static LRESULT CALLBACK
113 ie_window_proc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
114 {
115     InternetExplorer *This = (InternetExplorer*) GetWindowLongPtrW(hwnd, 0);
116
117     switch (msg)
118     {
119     case WM_CREATE:
120         return iewnd_OnCreate(hwnd, (LPCREATESTRUCTW)lparam);
121     case WM_DESTROY:
122         return iewnd_OnDestroy(This);
123     case WM_SIZE:
124         return iewnd_OnSize(This, LOWORD(lparam), HIWORD(lparam));
125     case WM_COMMAND:
126         return iewnd_OnCommand(This, hwnd, msg, wparam, lparam);
127     case WM_DOCHOSTTASK:
128         return process_dochost_task(&This->doc_host, lparam);
129     }
130     return DefWindowProcW(hwnd, msg, wparam, lparam);
131 }
132
133 void register_iewindow_class(void)
134 {
135     WNDCLASSEXW wc;
136
137     memset(&wc, 0, sizeof wc);
138     wc.cbSize = sizeof(wc);
139     wc.style = 0;
140     wc.lpfnWndProc = ie_window_proc;
141     wc.cbClsExtra = 0;
142     wc.cbWndExtra = sizeof(InternetExplorer*);
143     wc.hInstance = shdocvw_hinstance;
144     wc.hIcon = LoadIconW(GetModuleHandleW(0), MAKEINTRESOURCEW(IDI_APPICON));
145     wc.hIconSm = LoadImageW(GetModuleHandleW(0), MAKEINTRESOURCEW(IDI_APPICON), IMAGE_ICON,
146                             GetSystemMetrics(SM_CXSMICON), GetSystemMetrics(SM_CYSMICON), LR_SHARED);
147     wc.hCursor = LoadCursorW(0, MAKEINTRESOURCEW(IDC_ARROW));
148     wc.hbrBackground = 0;
149     wc.lpszClassName = szIEWinFrame;
150     wc.lpszMenuName = NULL;
151
152     RegisterClassExW(&wc);
153 }
154
155 void unregister_iewindow_class(void)
156 {
157     UnregisterClassW(szIEWinFrame, shdocvw_hinstance);
158 }
159
160 static void create_frame_hwnd(InternetExplorer *This)
161 {
162     This->frame_hwnd = CreateWindowExW(
163             WS_EX_WINDOWEDGE,
164             szIEWinFrame, wszWineInternetExplorer,
165             WS_CLIPCHILDREN | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME
166                 | WS_MINIMIZEBOX | WS_MAXIMIZEBOX,
167             CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT,
168             NULL, NULL /* FIXME */, shdocvw_hinstance, This);
169 }
170
171 static IWebBrowser2 *create_ie_window(LPCSTR cmdline)
172 {
173     IWebBrowser2 *wb = NULL;
174
175     InternetExplorer_Create(NULL, &IID_IWebBrowser2, (void**)&wb);
176     if(!wb)
177         return NULL;
178
179     IWebBrowser2_put_Visible(wb, VARIANT_TRUE);
180     IWebBrowser2_put_MenuBar(wb, VARIANT_TRUE);
181
182     if(!*cmdline) {
183         IWebBrowser2_GoHome(wb);
184     }else {
185         VARIANT var_url;
186         DWORD len;
187         int cmdlen;
188
189         if(!strncasecmp(cmdline, "-nohome", 7))
190             cmdline += 7;
191         while(*cmdline == ' ' || *cmdline == '\t')
192             cmdline++;
193         cmdlen = lstrlenA(cmdline);
194         if(cmdlen > 2 && cmdline[0] == '"' && cmdline[cmdlen-1] == '"') {
195             cmdline++;
196             cmdlen -= 2;
197         }
198
199         V_VT(&var_url) = VT_BSTR;
200
201         len = MultiByteToWideChar(CP_ACP, 0, cmdline, cmdlen, NULL, 0);
202         V_BSTR(&var_url) = SysAllocStringLen(NULL, len);
203         MultiByteToWideChar(CP_ACP, 0, cmdline, cmdlen, V_BSTR(&var_url), len);
204
205         /* navigate to the first page */
206         IWebBrowser2_Navigate2(wb, &var_url, NULL, NULL, NULL, NULL);
207
208         SysFreeString(V_BSTR(&var_url));
209     }
210
211     return wb;
212 }
213
214 HRESULT InternetExplorer_Create(IUnknown *pOuter, REFIID riid, void **ppv)
215 {
216     InternetExplorer *ret;
217     HRESULT hres;
218
219     TRACE("(%p %s %p)\n", pOuter, debugstr_guid(riid), ppv);
220
221     ret = heap_alloc_zero(sizeof(InternetExplorer));
222     ret->ref = 0;
223
224     ret->doc_host.disp = (IDispatch*)WEBBROWSER2(ret);
225     DocHost_Init(&ret->doc_host, (IDispatch*)WEBBROWSER2(ret));
226
227     InternetExplorer_WebBrowser_Init(ret);
228
229     create_frame_hwnd(ret);
230     ret->doc_host.frame_hwnd = ret->frame_hwnd;
231
232     hres = IWebBrowser2_QueryInterface(WEBBROWSER2(ret), riid, ppv);
233     if(FAILED(hres)) {
234         heap_free(ret);
235         return hres;
236     }
237
238     return hres;
239 }
240
241 /******************************************************************
242  *              IEWinMain            (SHDOCVW.101)
243  *
244  * Only returns on error.
245  */
246 DWORD WINAPI IEWinMain(LPSTR szCommandLine, int nShowWindow)
247 {
248     IWebBrowser2 *wb = NULL;
249     MSG msg;
250     HRESULT hres;
251
252     TRACE("%s %d\n", debugstr_a(szCommandLine), nShowWindow);
253
254     if(*szCommandLine == '-' || *szCommandLine == '/') {
255         if(!strcasecmp(szCommandLine+1, "regserver"))
256             return register_iexplore(TRUE);
257         if(!strcasecmp(szCommandLine+1, "unregserver"))
258             return register_iexplore(FALSE);
259     }
260
261     CoInitialize(NULL);
262
263     hres = register_class_object(TRUE);
264     if(FAILED(hres)) {
265         CoUninitialize();
266         ExitProcess(1);
267     }
268
269     if(strcasecmp(szCommandLine, "-embedding"))
270         wb = create_ie_window(szCommandLine);
271
272     /* run the message loop for this thread */
273     while (GetMessageW(&msg, 0, 0, 0))
274     {
275         TranslateMessage(&msg);
276         DispatchMessageW(&msg);
277     }
278
279     if(wb)
280         IWebBrowser2_Release(wb);
281
282     register_class_object(FALSE);
283
284     CoUninitialize();
285
286     ExitProcess(0);
287     return 0;
288 }