2 * SHDOCVW - Internet Explorer Web Control
4 * Copyright 2001 John R. Sheets (for CodeWeavers)
5 * Copyright 2004 Mike McCormack (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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
29 #define COM_NO_WINDOWS_H
43 #include "wine/unicode.h"
44 #include "wine/debug.h"
48 WINE_DEFAULT_DEBUG_CHANNEL(shdocvw);
50 LONG SHDOCVW_refCount = 0;
52 static const WCHAR szMozDlPath[] = {
53 'S','o','f','t','w','a','r','e','\\','W','i','n','e','\\',
54 's','h','d','o','c','v','w',0
57 DEFINE_GUID( CLSID_MozillaBrowser, 0x1339B54C,0x3453,0x11D2,0x93,0xB9,0x00,0x00,0x00,0x00,0x00,0x00);
59 typedef HRESULT (WINAPI *fnGetClassObject)(REFCLSID rclsid, REFIID iid, LPVOID *ppv);
60 typedef HRESULT (WINAPI *fnCanUnloadNow)(void);
62 HINSTANCE shdocvw_hinstance = 0;
63 static HMODULE SHDOCVW_hshell32 = 0;
64 static HMODULE hMozCtl = (HMODULE)~0UL;
67 /* convert a guid to a wide character string */
68 static void SHDOCVW_guid2wstr( const GUID *guid, LPWSTR wstr )
72 sprintf(str, "{%08lX-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X}",
73 guid->Data1, guid->Data2, guid->Data3,
74 guid->Data4[0], guid->Data4[1], guid->Data4[2], guid->Data4[3],
75 guid->Data4[4], guid->Data4[5], guid->Data4[6], guid->Data4[7] );
76 MultiByteToWideChar( CP_ACP, 0, str, -1, wstr, 40 );
79 static BOOL SHDOCVW_GetMozctlPath( LPWSTR szPath, DWORD sz )
84 static const WCHAR szPre[] = {
85 'S','o','f','t','w','a','r','e','\\',
86 'C','l','a','s','s','e','s','\\',
87 'C','L','S','I','D','\\',0 };
88 static const WCHAR szPost[] = {
89 '\\','I','n','p','r','o','c','S','e','r','v','e','r','3','2',0 };
90 WCHAR szRegPath[(sizeof(szPre)+sizeof(szPost))/sizeof(WCHAR)+40];
92 strcpyW( szRegPath, szPre );
93 SHDOCVW_guid2wstr( &CLSID_MozillaBrowser, &szRegPath[strlenW(szRegPath)] );
94 strcatW( szRegPath, szPost );
96 TRACE("key = %s\n", debugstr_w( szRegPath ) );
98 r = RegOpenKeyW( HKEY_LOCAL_MACHINE, szRegPath, &hkey );
99 if( r != ERROR_SUCCESS )
102 r = RegQueryValueExW( hkey, NULL, NULL, &type, (LPBYTE)szPath, &sz );
103 ret = ( r == ERROR_SUCCESS ) && ( type == REG_SZ );
109 /*************************************************************************
112 BOOL WINAPI DllMain(HINSTANCE hinst, DWORD fdwReason, LPVOID fImpLoad)
114 TRACE("%p 0x%lx %p\n", hinst, fdwReason, fImpLoad);
117 case DLL_PROCESS_ATTACH:
118 shdocvw_hinstance = hinst;
120 case DLL_PROCESS_DETACH:
121 if (SHDOCVW_hshell32) FreeLibrary(SHDOCVW_hshell32);
122 if (hMozCtl && hMozCtl != (HMODULE)~0UL) FreeLibrary(hMozCtl);
128 /*************************************************************************
129 * DllCanUnloadNow (SHDOCVW.@)
131 HRESULT WINAPI DllCanUnloadNow(void)
133 HRESULT moz_can_unload = S_OK;
134 fnCanUnloadNow pCanUnloadNow;
138 pCanUnloadNow = (fnCanUnloadNow)
139 GetProcAddress(hMozCtl, "DllCanUnloadNow");
141 moz_can_unload = pCanUnloadNow();
144 if (moz_can_unload == S_OK && SHDOCVW_refCount == 0)
150 /*************************************************************************
151 * SHDOCVW_TryDownloadMozillaControl
153 typedef struct _IBindStatusCallbackImpl {
154 const IBindStatusCallbackVtbl *vtbl;
158 } IBindStatusCallbackImpl;
160 static HRESULT WINAPI
161 dlQueryInterface( IBindStatusCallback* This, REFIID riid, void** ppvObject )
163 if (ppvObject == NULL) return E_POINTER;
165 if( IsEqualIID(riid, &IID_IUnknown) ||
166 IsEqualIID(riid, &IID_IBindStatusCallback))
168 IBindStatusCallback_AddRef( This );
172 return E_NOINTERFACE;
175 static ULONG WINAPI dlAddRef( IBindStatusCallback* iface )
177 IBindStatusCallbackImpl *This = (IBindStatusCallbackImpl *) iface;
179 SHDOCVW_LockModule();
181 return InterlockedIncrement( &This->ref );
184 static ULONG WINAPI dlRelease( IBindStatusCallback* iface )
186 IBindStatusCallbackImpl *This = (IBindStatusCallbackImpl *) iface;
187 DWORD ref = InterlockedDecrement( &This->ref );
191 DestroyWindow( This->hDialog );
192 HeapFree( GetProcessHeap(), 0, This );
195 SHDOCVW_UnlockModule();
200 static HRESULT WINAPI
201 dlOnStartBinding( IBindStatusCallback* iface, DWORD dwReserved, IBinding* pib)
207 static HRESULT WINAPI
208 dlGetPriority( IBindStatusCallback* iface, LONG* pnPriority)
214 static HRESULT WINAPI
215 dlOnLowResource( IBindStatusCallback* iface, DWORD reserved)
221 static HRESULT WINAPI
222 dlOnProgress( IBindStatusCallback* iface, ULONG ulProgress,
223 ULONG ulProgressMax, ULONG ulStatusCode, LPCWSTR szStatusText)
225 IBindStatusCallbackImpl *This = (IBindStatusCallbackImpl *) iface;
229 hItem = GetDlgItem( This->hDialog, 1000 );
230 if( hItem && ulProgressMax )
231 SendMessageW(hItem,PBM_SETPOS,(ulProgress*100)/ulProgressMax,0);
233 hItem = GetDlgItem(This->hDialog, 104);
235 SendMessageW(hItem,WM_SETTEXT, 0, (LPARAM) szStatusText);
238 r = GetWindowLongPtrW( This->hDialog, GWLP_USERDATA );
239 if( r || GetLastError() )
241 *This->pbCancelled = TRUE;
249 static HRESULT WINAPI
250 dlOnStopBinding( IBindStatusCallback* iface, HRESULT hresult, LPCWSTR szError)
256 static HRESULT WINAPI
257 dlGetBindInfo( IBindStatusCallback* iface, DWORD* grfBINDF, BINDINFO* pbindinfo)
263 static HRESULT WINAPI
264 dlOnDataAvailable( IBindStatusCallback* iface, DWORD grfBSCF,
265 DWORD dwSize, FORMATETC* pformatetc, STGMEDIUM* pstgmed)
271 static HRESULT WINAPI
272 dlOnObjectAvailable( IBindStatusCallback* iface, REFIID riid, IUnknown* punk)
278 static const IBindStatusCallbackVtbl dlVtbl =
293 static IBindStatusCallback* create_dl(HWND dlg, BOOL *pbCancelled)
295 IBindStatusCallbackImpl *This;
297 This = HeapAlloc( GetProcessHeap(), 0, sizeof *This );
298 This->vtbl = &dlVtbl;
301 This->pbCancelled = pbCancelled;
303 return (IBindStatusCallback*) This;
306 static DWORD WINAPI ThreadFunc( LPVOID info )
308 IBindStatusCallback *dl;
309 static const WCHAR szUrlVal[] = {'M','o','z','i','l','l','a','U','r','l',0};
310 WCHAR path[MAX_PATH], szUrl[MAX_PATH];
313 PROCESS_INFORMATION pi;
317 BOOL bCancelled = FALSE;
319 /* find the name of the thing to download */
321 /* @@ Wine registry key: HKCU\Software\Wine\shdocvw */
322 r = RegOpenKeyW( HKEY_CURRENT_USER, szMozDlPath, &hkey );
323 if( r == ERROR_SUCCESS )
326 r = RegQueryValueExW( hkey, szUrlVal, NULL, &type, (LPBYTE)szUrl, &sz );
329 if( r != ERROR_SUCCESS )
332 /* built the path for the download */
333 p = strrchrW( szUrl, '/' );
336 if (!GetTempPathW( MAX_PATH, path ))
338 strcatW( path, p+1 );
341 dl = create_dl(info, &bCancelled);
342 r = URLDownloadToFileW( NULL, szUrl, path, 0, dl );
344 IBindStatusCallback_Release( dl );
345 if( (r != S_OK) || bCancelled )
349 memset( &si, 0, sizeof si );
351 r = CreateProcessW( path, NULL, NULL, NULL, 0, 0, NULL, NULL, &si, &pi );
354 WaitForSingleObject( pi.hProcess, INFINITE );
357 EndDialog( hDlg, 0 );
361 static INT_PTR CALLBACK
362 dlProc ( HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
371 SetWindowLongPtrW( hwndDlg, GWLP_USERDATA, 0 );
372 hItem = GetDlgItem(hwndDlg, 1000);
375 SendMessageW(hItem,PBM_SETRANGE,0,MAKELPARAM(0,100));
376 SendMessageW(hItem,PBM_SETPOS,0,0);
378 hThread = CreateThread(NULL,0,ThreadFunc,hwndDlg,0,&ThreadId);
383 if( wParam == IDCANCEL )
384 SetWindowLongPtrW( hwndDlg, GWLP_USERDATA, 1 );
391 static BOOL SHDOCVW_TryDownloadMozillaControl(void)
395 static const WCHAR szWine[] = { 'W','i','n','e',0 };
398 SetLastError( ERROR_SUCCESS );
399 hsem = CreateSemaphoreA( NULL, 0, 1, "mozctl_install_semaphore");
400 if( GetLastError() != ERROR_ALREADY_EXISTS )
402 LoadStringW( shdocvw_hinstance, 1001, buf, sizeof buf/sizeof(WCHAR) );
403 r = MessageBoxW(NULL, buf, szWine, MB_YESNO | MB_ICONQUESTION);
407 DialogBoxW(shdocvw_hinstance, MAKEINTRESOURCEW(100), 0, dlProc);
410 WaitForSingleObject( hsem, INFINITE );
411 ReleaseSemaphore( hsem, 1, NULL );
417 static BOOL SHDOCVW_TryLoadMozillaControl(void)
419 WCHAR szPath[MAX_PATH];
422 if( hMozCtl != (HMODULE)~0UL )
423 return hMozCtl ? TRUE : FALSE;
427 if( SHDOCVW_GetMozctlPath( szPath, sizeof szPath ) )
429 hMozCtl = LoadLibraryExW(szPath, NULL, LOAD_WITH_ALTERED_SEARCH_PATH);
435 MESSAGE("You need to install the Mozilla ActiveX control to\n");
436 MESSAGE("use Wine's builtin CLSID_WebBrowser from SHDOCVW.DLL\n");
439 SHDOCVW_TryDownloadMozillaControl();
444 /*************************************************************************
445 * DllGetClassObject (SHDOCVW.@)
447 HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
451 if( IsEqualGUID( &CLSID_WebBrowser, rclsid ) &&
452 SHDOCVW_TryLoadMozillaControl() )
455 fnGetClassObject pGetClassObject;
457 TRACE("WebBrowser class %s\n", debugstr_guid(rclsid) );
459 pGetClassObject = (fnGetClassObject)
460 GetProcAddress( hMozCtl, "DllGetClassObject" );
462 if( !pGetClassObject )
463 return CLASS_E_CLASSNOTAVAILABLE;
464 r = pGetClassObject( &CLSID_MozillaBrowser, riid, ppv );
466 TRACE("r = %08lx *ppv = %p\n", r, *ppv );
471 if (IsEqualGUID(&IID_IClassFactory, riid))
473 /* Pass back our shdocvw class factory */
474 *ppv = (LPVOID)&SHDOCVW_ClassFactory;
475 IClassFactory_AddRef((IClassFactory*)&SHDOCVW_ClassFactory);
480 return CLASS_E_CLASSNOTAVAILABLE;
483 /***********************************************************************
484 * DllGetVersion (SHDOCVW.@)
486 HRESULT WINAPI DllGetVersion(DLLVERSIONINFO *info)
488 if (info->cbSize != sizeof(DLLVERSIONINFO)) FIXME("support DLLVERSIONINFO2\n");
490 /* this is what IE6 on Windows 98 reports */
491 info->dwMajorVersion = 6;
492 info->dwMinorVersion = 0;
493 info->dwBuildNumber = 2600;
494 info->dwPlatformID = DLLVER_PLATFORM_WINDOWS;
499 /*************************************************************************
500 * DllInstall (SHDOCVW.@)
502 HRESULT WINAPI DllInstall(BOOL bInstall, LPCWSTR cmdline)
504 FIXME("(%s, %s): stub!\n", bInstall ? "TRUE":"FALSE", debugstr_w(cmdline));
509 /*************************************************************************
510 * SHDOCVW_LoadShell32
512 * makes sure the handle to shell32 is valid
514 BOOL SHDOCVW_LoadShell32(void)
516 if (SHDOCVW_hshell32)
518 return ((SHDOCVW_hshell32 = LoadLibraryA("shell32.dll")) != NULL);
521 /***********************************************************************
524 * Called by Win98 explorer.exe main binary, definitely has 0
527 DWORD WINAPI WinList_Init(void)
529 FIXME("(), stub!\n");
533 /***********************************************************************
536 * Called by Win98 explorer.exe main binary, definitely has only one
539 static BOOL (WINAPI *pShellDDEInit)(BOOL start) = NULL;
541 BOOL WINAPI ShellDDEInit(BOOL start)
543 TRACE("(%d)\n", start);
547 if (!SHDOCVW_LoadShell32())
549 pShellDDEInit = GetProcAddress(SHDOCVW_hshell32, (LPCSTR)188);
553 return pShellDDEInit(start);
558 /***********************************************************************
561 * Called by Win98 explorer.exe main binary, definitely has 0
564 DWORD WINAPI RunInstallUninstallStubs(void)
566 FIXME("(), stub!\n");
570 /***********************************************************************
571 * SetQueryNetSessionCount (SHDOCVW.@)
573 DWORD WINAPI SetQueryNetSessionCount(DWORD arg)
575 FIXME("(%lu), stub!\n", arg);