2 * hhctrl implementation
4 * Copyright 2004 Krzysztof Foltman
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #include "wine/debug.h"
26 WINE_DEFAULT_DEBUG_CHANNEL(htmlhelp);
28 HINSTANCE hhctrl_hinstance;
31 BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD fdwReason, LPVOID lpvReserved)
33 TRACE("(%p,%d,%p)\n", hInstance, fdwReason, lpvReserved);
37 case DLL_PROCESS_ATTACH:
38 hhctrl_hinstance = hInstance;
39 DisableThreadLibraryCalls(hInstance);
41 case DLL_PROCESS_DETACH:
47 static const char *command_to_string(UINT command)
49 #define X(x) case x: return #x
52 X( HH_DISPLAY_TOPIC );
54 X( HH_DISPLAY_INDEX );
55 X( HH_DISPLAY_SEARCH );
58 X( HH_GET_WIN_HANDLE );
59 X( HH_ENUM_INFO_TYPE );
60 X( HH_SET_INFO_TYPE );
65 X( HH_KEYWORD_LOOKUP );
66 X( HH_DISPLAY_TEXT_POPUP );
68 X( HH_TP_HELP_CONTEXTMENU );
69 X( HH_TP_HELP_WM_HELP );
72 X( HH_GET_LAST_ERROR );
73 X( HH_ENUM_CATEGORY );
74 X( HH_ENUM_CATEGORY_IT );
75 X( HH_RESET_IT_FILTER );
76 X( HH_SET_INCLUSIVE_FILTER );
77 X( HH_SET_EXCLUSIVE_FILTER );
80 X( HH_PRETRANSLATEMESSAGE );
81 X( HH_SET_GLOBAL_PROPERTY );
82 default: return "???";
87 HWND WINAPI HtmlHelpW(HWND caller, LPCWSTR filename, UINT command, DWORD data)
90 TRACE("(%p, %s, command=%s, data=%d)\n",
91 caller, debugstr_w( filename ),
92 command_to_string( command ), data);
96 case HH_DISPLAY_TOPIC:
98 case HH_DISPLAY_SEARCH:
99 case HH_HELP_CONTEXT: {
103 FIXME("Not all HH cases handled correctly\n");
105 info = CreateHelpViewer(filename);
107 res = NavigateToChm(info, info->pCHMInfo->szFile, info->WinType.pszFile);
109 ReleaseHelpViewer(info);
111 return NULL; /* FIXME */
114 FIXME("HH case %s not handled.\n", command_to_string( command ));
120 HWND WINAPI HtmlHelpA(HWND caller, LPCSTR filename, UINT command, DWORD data)
127 DWORD len = MultiByteToWideChar( CP_ACP, 0, filename, -1, NULL, 0 );
129 wfile = hhctrl_alloc(len*sizeof(WCHAR));
130 MultiByteToWideChar( CP_ACP, 0, filename, -1, wfile, len );
133 result = HtmlHelpW( caller, wfile, command, data );
139 /******************************************************************
140 * doWinMain (hhctrl.ocx.13)
142 int WINAPI doWinMain(HINSTANCE hInstance, LPSTR szCmdLine)
146 LPWSTR filename = strdupAtoW(szCmdLine);
150 /* FIXME: Check szCmdLine for bad arguments */
151 info = CreateHelpViewer(filename);
152 hhctrl_free(filename);
156 NavigateToChm(info, info->pCHMInfo->szFile, info->WinType.pszFile);
158 while (GetMessageW(&msg, 0, 0, 0))
160 TranslateMessage(&msg);
161 DispatchMessageW(&msg);
167 /******************************************************************
168 * DllGetClassObject (hhctrl.ocx.@)
170 HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
172 FIXME("(%s %s %p)\n", debugstr_guid(rclsid), debugstr_guid(riid), ppv);
173 return CLASS_E_CLASSNOTAVAILABLE;