2 * hhctrl implementation
4 * Copyright 2004 Krzysztof Foltman
5 * Copyright 2007 Jacek Caban 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #include "wine/debug.h"
27 WINE_DEFAULT_DEBUG_CHANNEL(htmlhelp);
29 HINSTANCE hhctrl_hinstance;
30 BOOL hh_process = FALSE;
32 BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD fdwReason, LPVOID lpvReserved)
34 TRACE("(%p,%d,%p)\n", hInstance, fdwReason, lpvReserved);
38 case DLL_PROCESS_ATTACH:
39 hhctrl_hinstance = hInstance;
40 DisableThreadLibraryCalls(hInstance);
42 case DLL_PROCESS_DETACH:
48 static const char *command_to_string(UINT command)
50 #define X(x) case x: return #x
53 X( HH_DISPLAY_TOPIC );
55 X( HH_DISPLAY_INDEX );
56 X( HH_DISPLAY_SEARCH );
59 X( HH_GET_WIN_HANDLE );
60 X( HH_ENUM_INFO_TYPE );
61 X( HH_SET_INFO_TYPE );
66 X( HH_KEYWORD_LOOKUP );
67 X( HH_DISPLAY_TEXT_POPUP );
69 X( HH_TP_HELP_CONTEXTMENU );
70 X( HH_TP_HELP_WM_HELP );
73 X( HH_GET_LAST_ERROR );
74 X( HH_ENUM_CATEGORY );
75 X( HH_ENUM_CATEGORY_IT );
76 X( HH_RESET_IT_FILTER );
77 X( HH_SET_INCLUSIVE_FILTER );
78 X( HH_SET_EXCLUSIVE_FILTER );
81 X( HH_SAFE_DISPLAY_TOPIC );
82 X( HH_PRETRANSLATEMESSAGE );
83 X( HH_SET_GLOBAL_PROPERTY );
84 default: return "???";
89 /******************************************************************
90 * HtmlHelpW (HHCTRL.OCX.15)
92 HWND WINAPI HtmlHelpW(HWND caller, LPCWSTR filename, UINT command, DWORD_PTR data)
94 TRACE("(%p, %s, command=%s, data=%lx)\n",
95 caller, debugstr_w( filename ),
96 command_to_string( command ), data);
100 case HH_DISPLAY_TOPIC:
102 case HH_DISPLAY_SEARCH:{
103 static const WCHAR delimW[] = {':',':',0};
106 WCHAR chm_file[MAX_PATH];
109 FIXME("Not all HH cases handled correctly\n");
111 index = strstrW(filename, delimW);
114 memcpy(chm_file, filename, (index-filename)*sizeof(WCHAR));
115 chm_file[index-filename] = 0;
117 index += 2; /* advance beyond "::" for calling NavigateToChm() later */
121 if (command!=HH_DISPLAY_SEARCH) /* FIXME - use HH_FTS_QUERYW structure in data */
122 index = (const WCHAR*)data;
125 info = CreateHelpViewer(filename);
130 index = info->WinType.pszFile;
132 res = NavigateToChm(info, info->pCHMInfo->szFile, index);
135 ReleaseHelpViewer(info);
138 return info->WinType.hwndHelp;
140 case HH_HELP_CONTEXT: {
144 info = CreateHelpViewer(filename);
148 url = FindContextAlias(info->pCHMInfo, data);
151 ReleaseHelpViewer(info);
155 NavigateToUrl(info, url);
157 return info->WinType.hwndHelp;
159 case HH_PRETRANSLATEMESSAGE: {
160 static BOOL warned = FALSE;
164 FIXME("HH_PRETRANSLATEMESSAGE unimplemented\n");
170 FIXME("HH case %s not handled.\n", command_to_string( command ));
176 /******************************************************************
177 * HtmlHelpA (HHCTRL.OCX.14)
179 HWND WINAPI HtmlHelpA(HWND caller, LPCSTR filename, UINT command, DWORD_PTR data)
181 WCHAR *wfile = NULL, *wdata = NULL;
187 len = MultiByteToWideChar( CP_ACP, 0, filename, -1, NULL, 0 );
188 wfile = heap_alloc(len*sizeof(WCHAR));
189 MultiByteToWideChar( CP_ACP, 0, filename, -1, wfile, len );
196 case HH_ALINK_LOOKUP:
197 case HH_DISPLAY_SEARCH:
198 case HH_DISPLAY_TEXT_POPUP:
199 case HH_GET_LAST_ERROR:
200 case HH_GET_WIN_TYPE:
201 case HH_KEYWORD_LOOKUP:
202 case HH_SET_WIN_TYPE:
204 FIXME("structures not handled yet\n");
207 case HH_DISPLAY_INDEX:
208 case HH_DISPLAY_TOPIC:
210 case HH_GET_WIN_HANDLE:
211 case HH_SAFE_DISPLAY_TOPIC:
212 len = MultiByteToWideChar( CP_ACP, 0, (const char*)data, -1, NULL, 0 );
213 wdata = heap_alloc(len*sizeof(WCHAR));
214 MultiByteToWideChar( CP_ACP, 0, (const char*)data, -1, wdata, len );
218 case HH_HELP_CONTEXT:
220 case HH_PRETRANSLATEMESSAGE:
221 case HH_TP_HELP_CONTEXTMENU:
222 case HH_TP_HELP_WM_HELP:
223 case HH_UNINITIALIZE:
224 /* either scalar or pointer to scalar - do nothing */
228 FIXME("Unknown command: %s (%d)\n", command_to_string(command), command);
233 result = HtmlHelpW( caller, wfile, command, wdata ? (DWORD_PTR)wdata : data );
240 /******************************************************************
241 * doWinMain (HHCTRL.OCX.13)
243 int WINAPI doWinMain(HINSTANCE hInstance, LPSTR szCmdLine)
249 /* FIXME: Check szCmdLine for bad arguments */
250 HtmlHelpA(GetDesktopWindow(), szCmdLine, HH_DISPLAY_TOPIC, 0);
252 while (GetMessageW(&msg, 0, 0, 0))
254 TranslateMessage(&msg);
255 DispatchMessageW(&msg);
261 /******************************************************************
262 * DllGetClassObject (HHCTRL.OCX.@)
264 HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
266 FIXME("(%s %s %p)\n", debugstr_guid(rclsid), debugstr_guid(riid), ppv);
267 return CLASS_E_CLASSNOTAVAILABLE;