SHDOCVW: Mozilla Active X control embedding done right

Mike McCormack mike at codeweavers.com
Fri Feb 13 11:35:40 CST 2004


Hi All,

OK, this time I've done it the right way, and it at least works for one 
or two apps, with a screen shot to prove it.

Screen shot was produced by installing an older version of WinAmp 
(winamp281_full.exe) and the Mozilla ActiveX control version 1.6 from

http://www.iol.ie/~locka/mozilla/mozilla.htm

It would be nice if we could build Mozilla as a winelib app... ;)

Mike


ChangeLog:
* use the Mozilla Active X control in place of the IE6 Active X control
-------------- next part --------------
Index: dlls/shdocvw/shdocvw_main.c
===================================================================
RCS file: /home/wine/wine/dlls/shdocvw/shdocvw_main.c,v
retrieving revision 1.16
diff -u -r1.16 shdocvw_main.c
--- dlls/shdocvw/shdocvw_main.c	2 Oct 2003 04:31:06 -0000	1.16
+++ dlls/shdocvw/shdocvw_main.c	13 Feb 2004 16:28:38 -0000
@@ -18,24 +18,84 @@
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
+#include "config.h"
+
 #define COM_NO_WINDOWS_H
 #include <stdarg.h>
+#include <stdio.h>
 #include <string.h>
 #include "windef.h"
 #include "winbase.h"
 #include "winreg.h"
 #include "winuser.h"
+#include "winnls.h"
 #include "ole2.h"
 #include "shlwapi.h"
 
 #include "shdocvw.h"
+#include "uuids.h"
+
+#include "wine/unicode.h"
 #include "wine/debug.h"
 
+#include "initguid.h"
+
 WINE_DEFAULT_DEBUG_CHANNEL(shdocvw);
 
 HINSTANCE shdocvw_hinstance = 0;
 HMODULE SHDOCVW_hshell32 = 0;
 
+
+
+DEFINE_GUID( CLSID_MozillaBrowser, 0x1339B54C,0x3453,0x11D2,0x93,0xB9,0x00,0x00,0x00,0x00,0x00,0x00);
+
+typedef HRESULT (WINAPI *fnGetClassObject)(REFCLSID rclsid, REFIID iid, LPVOID *ppv);
+
+HMODULE hMozCtl = (HMODULE) -1;
+
+
+/* convert a guid to a wide character string */
+static void SHDOCVW_guid2wstr( const GUID *guid, LPWSTR wstr )
+{
+    char str[40];
+
+    sprintf(str, "{%08lX-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X}",
+           guid->Data1, guid->Data2, guid->Data3,
+           guid->Data4[0], guid->Data4[1], guid->Data4[2], guid->Data4[3],
+           guid->Data4[4], guid->Data4[5], guid->Data4[6], guid->Data4[7] );
+    MultiByteToWideChar( CP_ACP, 0, str, -1, wstr, 40 );
+}
+
+static BOOL SHDOCVW_GetMozctlPath( LPWSTR szPath, DWORD sz )
+{
+    DWORD r, type;
+    BOOL ret = FALSE;
+    HKEY hkey;
+    const WCHAR szPre[] = {
+        'S','o','f','t','w','a','r','e','\\',
+        'C','l','a','s','s','e','s','\\',
+        'C','L','S','I','D','\\',0 };
+    const WCHAR szPost[] = {
+        '\\','I','n','p','r','o','c','S','e','r','v','e','r','3','2',0 };
+    WCHAR szRegPath[(sizeof(szPre)+sizeof(szPost))/sizeof(WCHAR)+40];
+
+    strcpyW( szRegPath, szPre );
+    SHDOCVW_guid2wstr( &CLSID_MozillaBrowser, &szRegPath[strlenW(szRegPath)] );
+    strcatW( szRegPath, szPost );
+
+    TRACE("key = %s\n", debugstr_w( szRegPath ) );
+
+    r = RegOpenKeyW( HKEY_LOCAL_MACHINE, szRegPath, &hkey );
+    if( r != ERROR_SUCCESS )
+        return FALSE;
+
+    r = RegQueryValueExW( hkey, NULL, NULL, &type, (LPBYTE)szPath, &sz );
+    ret = ( r == ERROR_SUCCESS ) && ( type == REG_SZ );
+    RegCloseKey( hkey );
+
+    return ret;
+}
+
 /*************************************************************************
  * SHDOCVW DllMain
  */
@@ -64,12 +124,55 @@
     return S_FALSE;
 }
 
+
+static BOOL SHDOCVW_TryLoadMozillaControl()
+{
+    WCHAR szPath[MAX_PATH];
+
+    if( hMozCtl != (HMODULE) -1 )
+        return hMozCtl ? TRUE : FALSE;
+
+    if( !SHDOCVW_GetMozctlPath( szPath, sizeof szPath ) )
+    {
+        MESSAGE("You need to install the Mozilla ActiveX control to\n");
+        MESSAGE("use Wine's builtin CLSID_WebBrowser from SHDOCVW.DLL\n");
+        return FALSE;
+    }
+    hMozCtl = LoadLibraryExW(szPath, NULL, LOAD_WITH_ALTERED_SEARCH_PATH);
+    if( !hMozCtl )
+    {
+        ERR("Can't load the Mozilla ActiveX control\n");
+        return FALSE;
+    }
+    return TRUE;
+}
+
 /*************************************************************************
  *              DllGetClassObject (SHDOCVW.@)
  */
 HRESULT WINAPI SHDOCVW_DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
 {
     TRACE("\n");
+
+    if( IsEqualGUID( &CLSID_WebBrowser, rclsid ) &&
+        SHDOCVW_TryLoadMozillaControl() )
+    {
+        HRESULT r;
+        fnGetClassObject pGetClassObject;
+
+        TRACE("WebBrowser class %s\n", debugstr_guid(rclsid) );
+
+        pGetClassObject = (fnGetClassObject)
+            GetProcAddress( hMozCtl, "DllGetClassObject" );
+
+        if( !pGetClassObject )
+            return CLASS_E_CLASSNOTAVAILABLE;
+        r = pGetClassObject( &CLSID_MozillaBrowser, riid, ppv );
+
+        TRACE("r = %08lx  *ppv = %p\n", r, *ppv );
+
+        return r;
+    }
 
     if (IsEqualGUID(&IID_IClassFactory, riid))
     {
-------------- next part --------------
A non-text attachment was scrubbed...
Name: winamp-moz-cropped2.png
Type: image/png
Size: 42246 bytes
Desc: not available
Url : http://www.winehq.org/pipermail/wine-patches/attachments/20040213/6adc5dcc/winamp-moz-cropped2.png


More information about the wine-patches mailing list