2 * Help Viewer Implementation
4 * Copyright 2005 James Hawkins
5 * Copyright 2007 Jacek Caban for CodeWeavers
6 * Copyright 2011 Owen Rudge for CodeWeavers
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
29 #include "wine/debug.h"
33 WINE_DEFAULT_DEBUG_CHANNEL(htmlhelp);
35 static LRESULT Help_OnSize(HWND hWnd);
36 static void ExpandContract(HHInfo *pHHInfo);
38 /* Window type defaults */
40 #define WINTYPE_DEFAULT_X 280
41 #define WINTYPE_DEFAULT_Y 100
42 #define WINTYPE_DEFAULT_WIDTH 740
43 #define WINTYPE_DEFAULT_HEIGHT 640
44 #define WINTYPE_DEFAULT_NAVWIDTH 250
46 #define TAB_TOP_PADDING 8
47 #define TAB_RIGHT_PADDING 4
49 #define EDIT_HEIGHT 20
51 struct list window_list = LIST_INIT(window_list);
53 static const WCHAR szEmpty[] = {0};
55 struct html_encoded_symbol {
56 const char *html_code;
61 * Table mapping the conversion between HTML encoded symbols and their ANSI code page equivalent.
62 * Note: Add additional entries in proper alphabetical order (a binary search is used on this table).
64 struct html_encoded_symbol html_encoded_symbols[] =
168 static inline BOOL navigation_visible(HHInfo *info)
170 return ((info->WinType.fsWinProperties & HHWIN_PROP_TRI_PANE) && !info->WinType.fNotExpanded);
173 /* Loads a string from the resource file */
174 static LPWSTR HH_LoadString(DWORD dwID)
176 LPWSTR string = NULL;
177 LPCWSTR stringresource;
180 iSize = LoadStringW(hhctrl_hinstance, dwID, (LPWSTR)&stringresource, 0);
182 string = heap_alloc((iSize + 2) * sizeof(WCHAR)); /* some strings (tab text) needs double-null termination */
183 memcpy(string, stringresource, iSize*sizeof(WCHAR));
189 static HRESULT navigate_url(HHInfo *info, LPCWSTR surl)
194 TRACE("%s\n", debugstr_w(surl));
196 V_VT(&url) = VT_BSTR;
197 V_BSTR(&url) = SysAllocString(surl);
199 hres = IWebBrowser2_Navigate2(info->web_browser, &url, 0, 0, 0, 0);
204 TRACE("Navigation failed: %08x\n", hres);
209 BOOL NavigateToUrl(HHInfo *info, LPCWSTR surl)
215 static const WCHAR url_indicator[] = {':', '/', '/', 0};
217 TRACE("%s\n", debugstr_w(surl));
219 if (strstrW(surl, url_indicator)) {
220 hres = navigate_url(info, surl);
223 } /* look up in chm if it doesn't look like a full url */
225 SetChmPath(&chm_path, info->pCHMInfo->szFile, surl);
226 ret = NavigateToChm(info, chm_path.chm_file, chm_path.chm_index);
228 heap_free(chm_path.chm_file);
229 heap_free(chm_path.chm_index);
234 static BOOL AppendFullPathURL(LPCWSTR file, LPWSTR buf, LPCWSTR index)
236 static const WCHAR url_format[] =
237 {'m','k',':','@','M','S','I','T','S','t','o','r','e',':','%','s',':',':','%','s','%','s',0};
238 static const WCHAR slash[] = {'/',0};
239 static const WCHAR empty[] = {0};
240 WCHAR full_path[MAX_PATH];
242 TRACE("%s %p %s\n", debugstr_w(file), buf, debugstr_w(index));
244 if(!GetFullPathNameW(file, sizeof(full_path)/sizeof(full_path[0]), full_path, NULL)) {
245 WARN("GetFullPathName failed: %u\n", GetLastError());
249 wsprintfW(buf, url_format, full_path, (!index || index[0] == '/') ? empty : slash, index);
253 BOOL NavigateToChm(HHInfo *info, LPCWSTR file, LPCWSTR index)
255 WCHAR buf[INTERNET_MAX_URL_LENGTH];
258 TRACE("%p %s %s\n", info, debugstr_w(file), debugstr_w(index));
260 if ((!info->web_browser) || !AppendFullPathURL(file, buf, index))
264 if((ptr = strchrW(buf, '#')))
267 return SUCCEEDED(navigate_url(info, buf));
270 static void DoSync(HHInfo *info)
272 WCHAR buf[INTERNET_MAX_URL_LENGTH];
277 hres = IWebBrowser2_get_LocationURL(info->web_browser, &url);
281 WARN("get_LocationURL failed: %08x\n", hres);
285 /* If we're not currently viewing a page in the active .chm file, abort */
286 if ((!AppendFullPathURL(info->WinType.pszFile, buf, NULL)) || (len = lstrlenW(buf) > lstrlenW(url)))
292 if (lstrcmpiW(buf, url) > 0)
294 static const WCHAR delimW[] = {':',':','/',0};
297 index = strstrW(url, delimW);
300 ActivateContentTopic(info->tabs[TAB_CONTENTS].hwnd, index + 3, info->content); /* skip over ::/ */
308 #define SIZEBAR_WIDTH 4
310 static const WCHAR szSizeBarClass[] = {
311 'H','H',' ','S','i','z','e','B','a','r',0
314 /* Draw the SizeBar */
315 static void SB_OnPaint(HWND hWnd)
321 hdc = BeginPaint(hWnd, &ps);
323 GetClientRect(hWnd, &rc);
328 FrameRect(hdc, &rc, GetStockObject(GRAY_BRUSH));
330 /* white highlight */
331 SelectObject(hdc, GetStockObject(WHITE_PEN));
332 MoveToEx(hdc, rc.right, 1, NULL);
334 LineTo(hdc, 1, rc.bottom - 1);
337 MoveToEx(hdc, 0, rc.bottom, NULL);
338 LineTo(hdc, rc.right, rc.bottom);
343 static void SB_OnLButtonDown(HWND hWnd, WPARAM wParam, LPARAM lParam)
348 static void SB_OnLButtonUp(HWND hWnd, WPARAM wParam, LPARAM lParam)
350 HHInfo *pHHInfo = (HHInfo *)GetWindowLongPtrW(hWnd, 0);
353 pt.x = (short)LOWORD(lParam);
354 pt.y = (short)HIWORD(lParam);
356 /* update the window sizes */
357 pHHInfo->WinType.iNavWidth += pt.x;
363 static void SB_OnMouseMove(HWND hWnd, WPARAM wParam, LPARAM lParam)
365 /* ignore WM_MOUSEMOVE if not dragging the SizeBar */
366 if (!(wParam & MK_LBUTTON))
370 static LRESULT CALLBACK SizeBar_WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
375 SB_OnLButtonDown(hWnd, wParam, lParam);
378 SB_OnLButtonUp(hWnd, wParam, lParam);
381 SB_OnMouseMove(hWnd, wParam, lParam);
387 return DefWindowProcW(hWnd, message, wParam, lParam);
393 static void HH_RegisterSizeBarClass(HHInfo *pHHInfo)
397 wcex.cbSize = sizeof(WNDCLASSEXW);
399 wcex.lpfnWndProc = SizeBar_WndProc;
401 wcex.cbWndExtra = sizeof(LONG_PTR);
402 wcex.hInstance = hhctrl_hinstance;
403 wcex.hIcon = LoadIconW(NULL, (LPCWSTR)IDI_APPLICATION);
404 wcex.hCursor = LoadCursorW(NULL, (LPCWSTR)IDC_SIZEWE);
405 wcex.hbrBackground = (HBRUSH)(COLOR_MENU + 1);
406 wcex.lpszMenuName = NULL;
407 wcex.lpszClassName = szSizeBarClass;
408 wcex.hIconSm = LoadIconW(NULL, (LPCWSTR)IDI_APPLICATION);
410 RegisterClassExW(&wcex);
413 static void SB_GetSizeBarRect(HHInfo *info, RECT *rc)
415 RECT rectWND, rectTB, rectNP;
417 GetClientRect(info->WinType.hwndHelp, &rectWND);
418 GetClientRect(info->WinType.hwndToolBar, &rectTB);
419 GetClientRect(info->WinType.hwndNavigation, &rectNP);
421 rc->left = rectNP.right;
422 rc->top = rectTB.bottom;
423 rc->bottom = rectWND.bottom - rectTB.bottom;
424 rc->right = SIZEBAR_WIDTH;
427 static BOOL HH_AddSizeBar(HHInfo *pHHInfo)
430 HWND hwndParent = pHHInfo->WinType.hwndHelp;
431 DWORD dwStyles = WS_CHILDWINDOW | WS_OVERLAPPED;
432 DWORD dwExStyles = WS_EX_LEFT | WS_EX_LTRREADING | WS_EX_RIGHTSCROLLBAR;
435 if (navigation_visible(pHHInfo))
436 dwStyles |= WS_VISIBLE;
438 SB_GetSizeBarRect(pHHInfo, &rc);
440 hWnd = CreateWindowExW(dwExStyles, szSizeBarClass, szEmpty, dwStyles,
441 rc.left, rc.top, rc.right, rc.bottom,
442 hwndParent, NULL, hhctrl_hinstance, NULL);
446 /* store the pointer to the HH info struct */
447 SetWindowLongPtrW(hWnd, 0, (LONG_PTR)pHHInfo);
449 pHHInfo->hwndSizeBar = hWnd;
455 static const WCHAR szChildClass[] = {
456 'H','H',' ','C','h','i','l','d',0
459 static LRESULT Child_OnPaint(HWND hWnd)
465 hdc = BeginPaint(hWnd, &ps);
467 /* Only paint the Navigation pane, identified by the fact
468 * that it has a child window
470 if (GetWindow(hWnd, GW_CHILD))
472 GetClientRect(hWnd, &rc);
474 /* set the border color */
475 SelectObject(hdc, GetStockObject(DC_PEN));
476 SetDCPenColor(hdc, GetSysColor(COLOR_BTNSHADOW));
478 /* Draw the top border */
479 LineTo(hdc, rc.right, 0);
481 SelectObject(hdc, GetStockObject(WHITE_PEN));
482 MoveToEx(hdc, 0, 1, NULL);
483 LineTo(hdc, rc.right, 1);
491 static void ResizeTabChild(HHInfo *info, int tab)
493 HWND hwnd = info->tabs[tab].hwnd;
498 GetClientRect(info->WinType.hwndNavigation, &rect);
499 SendMessageW(info->hwndTabCtrl, TCM_GETITEMRECT, 0, (LPARAM)&tabrc);
500 cnt = SendMessageW(info->hwndTabCtrl, TCM_GETROWCOUNT, 0, 0);
502 rect.left = TAB_MARGIN;
503 rect.top = TAB_TOP_PADDING + cnt*(tabrc.bottom-tabrc.top) + TAB_MARGIN;
504 rect.right -= TAB_RIGHT_PADDING + TAB_MARGIN;
505 rect.bottom -= TAB_MARGIN;
506 width = rect.right-rect.left;
507 height = rect.bottom-rect.top;
509 SetWindowPos(hwnd, NULL, rect.left, rect.top, width, height,
510 SWP_NOZORDER | SWP_NOACTIVATE);
515 int scroll_width = GetSystemMetrics(SM_CXVSCROLL);
516 int border_width = GetSystemMetrics(SM_CXBORDER);
517 int edge_width = GetSystemMetrics(SM_CXEDGE);
519 /* Resize the tab widget column to perfectly fit the tab window and
520 * leave sufficient space for the scroll widget.
522 SendMessageW(info->tabs[TAB_INDEX].hwnd, LVM_SETCOLUMNWIDTH, 0,
523 width-scroll_width-2*border_width-2*edge_width);
528 int scroll_width = GetSystemMetrics(SM_CXVSCROLL);
529 int border_width = GetSystemMetrics(SM_CXBORDER);
530 int edge_width = GetSystemMetrics(SM_CXEDGE);
533 SetWindowPos(info->search.hwndEdit, NULL, 0, top_pos, width,
534 EDIT_HEIGHT, SWP_NOZORDER | SWP_NOACTIVATE);
535 top_pos += EDIT_HEIGHT + TAB_MARGIN;
536 SetWindowPos(info->search.hwndList, NULL, 0, top_pos, width,
537 height-top_pos, SWP_NOZORDER | SWP_NOACTIVATE);
538 /* Resize the tab widget column to perfectly fit the tab window and
539 * leave sufficient space for the scroll widget.
541 SendMessageW(info->search.hwndList, LVM_SETCOLUMNWIDTH, 0,
542 width-scroll_width-2*border_width-2*edge_width);
549 static LRESULT Child_OnSize(HWND hwnd)
551 HHInfo *info = (HHInfo*)GetWindowLongPtrW(hwnd, 0);
554 if(!info || hwnd != info->WinType.hwndNavigation)
557 GetClientRect(hwnd, &rect);
558 SetWindowPos(info->hwndTabCtrl, HWND_TOP, 0, 0,
559 rect.right - TAB_RIGHT_PADDING,
560 rect.bottom - TAB_TOP_PADDING, SWP_NOMOVE);
562 ResizeTabChild(info, TAB_CONTENTS);
563 ResizeTabChild(info, TAB_INDEX);
564 ResizeTabChild(info, TAB_SEARCH);
568 static LRESULT OnTabChange(HWND hwnd)
570 HHInfo *info = (HHInfo*)GetWindowLongPtrW(hwnd, 0);
571 int tab_id, tab_index, i;
578 if(info->tabs[info->current_tab].hwnd)
579 ShowWindow(info->tabs[info->current_tab].hwnd, SW_HIDE);
581 tab_id = (int) SendMessageW(info->hwndTabCtrl, TCM_GETCURSEL, 0, 0);
582 /* convert the ID of the tab to an index in our tab list */
584 for (i=0; i<TAB_NUMTABS; i++)
586 if (info->tabs[i].id == tab_id)
594 FIXME("Tab ID %d does not correspond to a valid index in the tab list.\n", tab_id);
597 info->current_tab = tab_index;
599 if(info->tabs[info->current_tab].hwnd)
600 ShowWindow(info->tabs[info->current_tab].hwnd, SW_SHOW);
605 static LRESULT OnTopicChange(HHInfo *info, void *user_data)
607 LPCWSTR chmfile = NULL, name = NULL, local = NULL;
612 if(!user_data || !info)
615 switch (info->current_tab)
618 citer = (ContentItem *) user_data;
620 local = citer->local;
622 if(citer->merge.chm_file) {
623 chmfile = citer->merge.chm_file;
626 citer = citer->parent;
630 iiter = (IndexItem *) user_data;
631 if(iiter->nItems == 0) {
632 FIXME("No entries for this item!\n");
635 if(iiter->nItems > 1) {
639 SendMessageW(info->popup.hwndList, LVM_DELETEALLITEMS, 0, 0);
640 for(i=0;i<iiter->nItems;i++) {
641 IndexSubItem *item = &iiter->items[i];
642 WCHAR *name = iiter->keyword;
645 item->name = GetDocumentTitle(info->pCHMInfo, item->local);
648 memset(&lvi, 0, sizeof(lvi));
650 lvi.mask = LVIF_TEXT|LVIF_PARAM;
651 lvi.cchTextMax = strlenW(name)+1;
653 lvi.lParam = (LPARAM) item;
654 SendMessageW(info->popup.hwndList, LVM_INSERTITEMW, 0, (LPARAM)&lvi);
656 ShowWindow(info->popup.hwndPopup, SW_SHOW);
659 name = iiter->items[0].name;
660 local = iiter->items[0].local;
661 chmfile = iiter->merge.chm_file;
664 siter = (SearchItem *) user_data;
665 name = siter->filename;
666 local = siter->filename;
667 chmfile = info->pCHMInfo->szFile;
670 FIXME("Unhandled operation for this tab!\n");
676 FIXME("No help file found for this item!\n");
680 TRACE("name %s loal %s\n", debugstr_w(name), debugstr_w(local));
682 NavigateToChm(info, chmfile, local);
686 /* Capture the Enter/Return key and send it up to Child_WndProc as an NM_RETURN message */
687 static LRESULT CALLBACK EditChild_WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
689 WNDPROC editWndProc = (WNDPROC)GetWindowLongPtrW(hWnd, GWLP_USERDATA);
691 if(message == WM_KEYUP && wParam == VK_RETURN)
695 nmhdr.hwndFrom = hWnd;
696 nmhdr.code = NM_RETURN;
697 SendMessageW(GetParent(GetParent(hWnd)), WM_NOTIFY, wParam, (LPARAM)&nmhdr);
699 return editWndProc(hWnd, message, wParam, lParam);
702 static LRESULT CALLBACK Child_WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
707 return Child_OnPaint(hWnd);
709 return Child_OnSize(hWnd);
711 HHInfo *info = (HHInfo*)GetWindowLongPtrW(hWnd, 0);
712 NMHDR *nmhdr = (NMHDR*)lParam;
714 switch(nmhdr->code) {
716 return OnTabChange(hWnd);
717 case TVN_SELCHANGEDW:
718 return OnTopicChange(info, (void*)((NMTREEVIEWW *)lParam)->itemNew.lParam);
719 case TVN_ITEMEXPANDINGW: {
720 TVITEMW *item = &((NMTREEVIEWW *)lParam)->itemNew;
721 HWND hwndTreeView = info->tabs[TAB_CONTENTS].hwnd;
723 item->mask = TVIF_IMAGE|TVIF_SELECTEDIMAGE;
724 if (item->state & TVIS_EXPANDED)
726 item->iImage = HHTV_FOLDER;
727 item->iSelectedImage = HHTV_FOLDER;
731 item->iImage = HHTV_OPENFOLDER;
732 item->iSelectedImage = HHTV_OPENFOLDER;
734 SendMessageW(hwndTreeView, TVM_SETITEMW, 0, (LPARAM)item);
740 switch(info->current_tab)
743 return OnTopicChange(info, (void*)((NMITEMACTIVATE *)lParam)->lParam);
745 return OnTopicChange(info, (void*)((NMITEMACTIVATE *)lParam)->lParam);
751 switch(info->current_tab) {
753 HWND hwndList = info->tabs[TAB_INDEX].hwnd;
756 lvItem.iItem = (int) SendMessageW(hwndList, LVM_GETSELECTIONMARK, 0, 0);
757 lvItem.mask = TVIF_PARAM;
758 SendMessageW(hwndList, LVM_GETITEMW, 0, (LPARAM)&lvItem);
759 OnTopicChange(info, (void*) lvItem.lParam);
763 if(nmhdr->hwndFrom == info->search.hwndEdit) {
767 len = GetWindowTextA(info->search.hwndEdit, needle, sizeof(needle));
770 FIXME("Unable to get search text.\n");
773 /* Convert the requested text for comparison later against the
774 * lower case version of HTML file contents.
777 needle[i] = tolower(needle[i]);
778 InitSearch(info, needle);
780 }else if(nmhdr->hwndFrom == info->search.hwndList) {
781 HWND hwndList = info->search.hwndList;
784 lvItem.iItem = (int) SendMessageW(hwndList, LVM_GETSELECTIONMARK, 0, 0);
785 lvItem.mask = TVIF_PARAM;
786 SendMessageW(hwndList, LVM_GETITEMW, 0, (LPARAM)&lvItem);
787 OnTopicChange(info, (void*) lvItem.lParam);
798 return DefWindowProcW(hWnd, message, wParam, lParam);
804 static void HH_RegisterChildWndClass(HHInfo *pHHInfo)
808 wcex.cbSize = sizeof(WNDCLASSEXW);
810 wcex.lpfnWndProc = Child_WndProc;
812 wcex.cbWndExtra = sizeof(LONG_PTR);
813 wcex.hInstance = hhctrl_hinstance;
814 wcex.hIcon = LoadIconW(NULL, (LPCWSTR)IDI_APPLICATION);
815 wcex.hCursor = LoadCursorW(NULL, (LPCWSTR)IDC_ARROW);
816 wcex.hbrBackground = (HBRUSH)(COLOR_BTNFACE + 1);
817 wcex.lpszMenuName = NULL;
818 wcex.lpszClassName = szChildClass;
819 wcex.hIconSm = LoadIconW(NULL, (LPCWSTR)IDI_APPLICATION);
821 RegisterClassExW(&wcex);
828 static void DisplayPopupMenu(HHInfo *info)
831 TBBUTTONINFOW button;
837 menu = LoadMenuW(hhctrl_hinstance, MAKEINTRESOURCEW(MENU_POPUP));
842 submenu = GetSubMenu(menu, 0);
844 /* Update the Show/Hide menu item */
845 item.cbSize = sizeof(MENUITEMINFOW);
846 item.fMask = MIIM_FTYPE | MIIM_STATE | MIIM_STRING;
847 item.fType = MFT_STRING;
848 item.fState = MF_ENABLED;
850 if (info->WinType.fNotExpanded)
851 item.dwTypeData = HH_LoadString(IDS_SHOWTABS);
853 item.dwTypeData = HH_LoadString(IDS_HIDETABS);
855 SetMenuItemInfoW(submenu, IDTB_EXPAND, FALSE, &item);
856 heap_free(item.dwTypeData);
858 /* Find the index toolbar button */
859 button.cbSize = sizeof(TBBUTTONINFOW);
860 button.dwMask = TBIF_COMMAND;
861 index = SendMessageW(info->WinType.hwndToolBar, TB_GETBUTTONINFOW, IDTB_OPTIONS, (LPARAM) &button);
867 SendMessageW(info->WinType.hwndToolBar, TB_GETITEMRECT, index, (LPARAM) &rect);
869 coords.x = rect.left;
870 coords.y = rect.bottom;
872 ClientToScreen(info->WinType.hwndToolBar, &coords);
873 TrackPopupMenu(submenu, TPM_LEFTALIGN | TPM_TOPALIGN | TPM_LEFTBUTTON | TPM_NOANIMATION, coords.x, coords.y, 0, info->WinType.hwndHelp, NULL);
876 static void TB_OnClick(HWND hWnd, DWORD dwID)
878 HHInfo *info = (HHInfo *)GetWindowLongPtrW(hWnd, 0);
883 DoPageAction(info, WB_STOP);
886 DoPageAction(info, WB_REFRESH);
889 DoPageAction(info, WB_GOBACK);
892 NavigateToChm(info, info->pCHMInfo->szFile, info->WinType.pszHome);
895 DoPageAction(info, WB_GOFORWARD);
898 DoPageAction(info, WB_PRINT);
902 ExpandContract(info);
908 DisplayPopupMenu(info);
916 /* These are officially unimplemented as of the Windows 7 SDK */
918 case IDTB_BROWSE_FWD:
919 case IDTB_BROWSE_BACK:
930 static void TB_AddButton(TBBUTTON *pButtons, DWORD dwIndex, DWORD dwID, DWORD dwBitmap)
932 pButtons[dwIndex].iBitmap = dwBitmap;
933 pButtons[dwIndex].idCommand = dwID;
934 pButtons[dwIndex].fsState = TBSTATE_ENABLED;
935 pButtons[dwIndex].fsStyle = BTNS_BUTTON;
936 pButtons[dwIndex].dwData = 0;
937 pButtons[dwIndex].iString = 0;
940 static void TB_AddButtonsFromFlags(HHInfo *pHHInfo, TBBUTTON *pButtons, DWORD dwButtonFlags, LPDWORD pdwNumButtons)
942 int nHistBitmaps = 0, nStdBitmaps = 0, nHHBitmaps = 0;
943 HWND hToolbar = pHHInfo->WinType.hwndToolBar;
948 tbAB.hInst = HINST_COMMCTRL;
949 tbAB.nID = IDB_HIST_LARGE_COLOR;
950 nHistBitmaps = SendMessageW(hToolbar, TB_ADDBITMAP, 0, (LPARAM)&tbAB);
951 tbAB.nID = IDB_STD_LARGE_COLOR;
952 nStdBitmaps = SendMessageW(hToolbar, TB_ADDBITMAP, 0, (LPARAM)&tbAB);
953 /* hhctrl.ocx bitmaps */
954 tbAB.hInst = hhctrl_hinstance;
955 tbAB.nID = IDB_HHTOOLBAR;
956 nHHBitmaps = SendMessageW(hToolbar, TB_ADDBITMAP, HHTB_NUMBITMAPS, (LPARAM)&tbAB);
960 unsupported = dwButtonFlags & (HHWIN_BUTTON_BROWSE_FWD |
961 HHWIN_BUTTON_BROWSE_BCK | HHWIN_BUTTON_NOTES | HHWIN_BUTTON_CONTENTS |
962 HHWIN_BUTTON_INDEX | HHWIN_BUTTON_SEARCH | HHWIN_BUTTON_HISTORY |
963 HHWIN_BUTTON_FAVORITES | HHWIN_BUTTON_JUMP1 | HHWIN_BUTTON_JUMP2 |
964 HHWIN_BUTTON_ZOOM | HHWIN_BUTTON_TOC_NEXT | HHWIN_BUTTON_TOC_PREV);
966 FIXME("got asked for unsupported buttons: %06x\n", unsupported);
968 if (dwButtonFlags & HHWIN_BUTTON_EXPAND)
970 TB_AddButton(pButtons, (*pdwNumButtons)++, IDTB_EXPAND, nHHBitmaps + HHTB_EXPAND);
971 TB_AddButton(pButtons, (*pdwNumButtons)++, IDTB_CONTRACT, nHHBitmaps + HHTB_CONTRACT);
973 if (pHHInfo->WinType.fNotExpanded)
974 pButtons[1].fsState |= TBSTATE_HIDDEN;
976 pButtons[0].fsState |= TBSTATE_HIDDEN;
979 if (dwButtonFlags & HHWIN_BUTTON_BACK)
980 TB_AddButton(pButtons, (*pdwNumButtons)++, IDTB_BACK, nHistBitmaps + HIST_BACK);
982 if (dwButtonFlags & HHWIN_BUTTON_FORWARD)
983 TB_AddButton(pButtons, (*pdwNumButtons)++, IDTB_FORWARD, nHistBitmaps + HIST_FORWARD);
985 if (dwButtonFlags & HHWIN_BUTTON_STOP)
986 TB_AddButton(pButtons, (*pdwNumButtons)++, IDTB_STOP, nHHBitmaps + HHTB_STOP);
988 if (dwButtonFlags & HHWIN_BUTTON_REFRESH)
989 TB_AddButton(pButtons, (*pdwNumButtons)++, IDTB_REFRESH, nHHBitmaps + HHTB_REFRESH);
991 if (dwButtonFlags & HHWIN_BUTTON_HOME)
992 TB_AddButton(pButtons, (*pdwNumButtons)++, IDTB_HOME, nHHBitmaps + HHTB_HOME);
994 if (dwButtonFlags & HHWIN_BUTTON_SYNC)
995 TB_AddButton(pButtons, (*pdwNumButtons)++, IDTB_SYNC, nHHBitmaps + HHTB_SYNC);
997 if (dwButtonFlags & HHWIN_BUTTON_OPTIONS)
998 TB_AddButton(pButtons, (*pdwNumButtons)++, IDTB_OPTIONS, nStdBitmaps + STD_PROPERTIES);
1000 if (dwButtonFlags & HHWIN_BUTTON_PRINT)
1001 TB_AddButton(pButtons, (*pdwNumButtons)++, IDTB_PRINT, nStdBitmaps + STD_PRINT);
1004 static BOOL HH_AddToolbar(HHInfo *pHHInfo)
1007 HWND hwndParent = pHHInfo->WinType.hwndHelp;
1009 TBBUTTON buttons[IDTB_TOC_PREV - IDTB_EXPAND];
1010 DWORD dwStyles, dwExStyles;
1011 DWORD dwNumButtons, dwIndex;
1013 if (pHHInfo->WinType.fsWinProperties & HHWIN_PARAM_TB_FLAGS)
1014 toolbarFlags = pHHInfo->WinType.fsToolBarFlags;
1016 toolbarFlags = HHWIN_DEF_BUTTONS;
1018 dwStyles = WS_CHILDWINDOW | TBSTYLE_FLAT | TBSTYLE_WRAPABLE | TBSTYLE_TOOLTIPS | CCS_NODIVIDER;
1019 dwExStyles = WS_EX_LEFT | WS_EX_LTRREADING | WS_EX_RIGHTSCROLLBAR;
1021 hToolbar = CreateWindowExW(dwExStyles, TOOLBARCLASSNAMEW, NULL, dwStyles,
1022 0, 0, 0, 0, hwndParent, NULL,
1023 hhctrl_hinstance, NULL);
1026 pHHInfo->WinType.hwndToolBar = hToolbar;
1028 SendMessageW(hToolbar, TB_SETBITMAPSIZE, 0, MAKELONG(ICON_SIZE, ICON_SIZE));
1029 SendMessageW(hToolbar, TB_BUTTONSTRUCTSIZE, sizeof(TBBUTTON), 0);
1030 SendMessageW(hToolbar, WM_SETFONT, (WPARAM)pHHInfo->hFont, TRUE);
1032 TB_AddButtonsFromFlags(pHHInfo, buttons, toolbarFlags, &dwNumButtons);
1034 for (dwIndex = 0; dwIndex < dwNumButtons; dwIndex++)
1036 LPWSTR szBuf = HH_LoadString(buttons[dwIndex].idCommand);
1037 DWORD dwLen = strlenW(szBuf);
1038 szBuf[dwLen + 1] = 0; /* Double-null terminate */
1040 buttons[dwIndex].iString = (DWORD)SendMessageW(hToolbar, TB_ADDSTRINGW, 0, (LPARAM)szBuf);
1044 SendMessageW(hToolbar, TB_ADDBUTTONSW, dwNumButtons, (LPARAM)buttons);
1045 SendMessageW(hToolbar, TB_AUTOSIZE, 0, 0);
1046 if (pHHInfo->WinType.fsWinProperties & HHWIN_PROP_TRI_PANE)
1047 ShowWindow(hToolbar, SW_SHOW);
1052 /* Navigation Pane */
1054 static void NP_GetNavigationRect(HHInfo *pHHInfo, RECT *rc)
1056 HWND hwndParent = pHHInfo->WinType.hwndHelp;
1057 HWND hwndToolbar = pHHInfo->WinType.hwndToolBar;
1058 RECT rectWND, rectTB;
1060 GetClientRect(hwndParent, &rectWND);
1061 GetClientRect(hwndToolbar, &rectTB);
1064 rc->top = rectTB.bottom;
1065 rc->bottom = rectWND.bottom - rectTB.bottom;
1067 if (!(pHHInfo->WinType.fsValidMembers & HHWIN_PARAM_NAV_WIDTH) &&
1068 pHHInfo->WinType.iNavWidth == 0)
1070 pHHInfo->WinType.iNavWidth = WINTYPE_DEFAULT_NAVWIDTH;
1073 rc->right = pHHInfo->WinType.iNavWidth;
1076 static DWORD NP_CreateTab(HINSTANCE hInstance, HWND hwndTabCtrl, DWORD index)
1079 LPWSTR tabText = HH_LoadString(index);
1082 tie.mask = TCIF_TEXT;
1083 tie.pszText = tabText;
1085 ret = SendMessageW( hwndTabCtrl, TCM_INSERTITEMW, index, (LPARAM)&tie );
1091 static BOOL HH_AddNavigationPane(HHInfo *info)
1093 HWND hWnd, hwndTabCtrl;
1094 HWND hwndParent = info->WinType.hwndHelp;
1095 DWORD dwStyles = WS_CHILDWINDOW;
1096 DWORD dwExStyles = WS_EX_LEFT | WS_EX_LTRREADING | WS_EX_RIGHTSCROLLBAR;
1099 if (navigation_visible(info))
1100 dwStyles |= WS_VISIBLE;
1102 NP_GetNavigationRect(info, &rc);
1104 hWnd = CreateWindowExW(dwExStyles, szChildClass, szEmpty, dwStyles,
1105 rc.left, rc.top, rc.right, rc.bottom,
1106 hwndParent, NULL, hhctrl_hinstance, NULL);
1110 SetWindowLongPtrW(hWnd, 0, (LONG_PTR)info);
1112 hwndTabCtrl = CreateWindowExW(dwExStyles, WC_TABCONTROLW, szEmpty, dwStyles | WS_VISIBLE,
1114 rc.right - TAB_RIGHT_PADDING,
1115 rc.bottom - TAB_TOP_PADDING,
1116 hWnd, NULL, hhctrl_hinstance, NULL);
1120 if (*info->WinType.pszToc)
1121 info->tabs[TAB_CONTENTS].id = NP_CreateTab(hhctrl_hinstance, hwndTabCtrl, IDS_CONTENTS);
1123 if (*info->WinType.pszIndex)
1124 info->tabs[TAB_INDEX].id = NP_CreateTab(hhctrl_hinstance, hwndTabCtrl, IDS_INDEX);
1126 if (info->WinType.fsWinProperties & HHWIN_PROP_TAB_SEARCH)
1127 info->tabs[TAB_SEARCH].id = NP_CreateTab(hhctrl_hinstance, hwndTabCtrl, IDS_SEARCH);
1129 if (info->WinType.fsWinProperties & HHWIN_PROP_TAB_FAVORITES)
1130 info->tabs[TAB_FAVORITES].id = NP_CreateTab(hhctrl_hinstance, hwndTabCtrl, IDS_FAVORITES);
1132 SendMessageW(hwndTabCtrl, WM_SETFONT, (WPARAM)info->hFont, TRUE);
1134 info->hwndTabCtrl = hwndTabCtrl;
1135 info->WinType.hwndNavigation = hWnd;
1141 static void HP_GetHTMLRect(HHInfo *info, RECT *rc)
1143 RECT rectTB, rectWND, rectNP, rectSB;
1145 GetClientRect(info->WinType.hwndHelp, &rectWND);
1146 GetClientRect(info->hwndSizeBar, &rectSB);
1150 if (navigation_visible(info))
1152 GetClientRect(info->WinType.hwndNavigation, &rectNP);
1153 rc->left += rectNP.right + rectSB.right;
1155 if (info->WinType.fsWinProperties & HHWIN_PROP_TRI_PANE)
1157 GetClientRect(info->WinType.hwndToolBar, &rectTB);
1158 rc->top += rectTB.bottom;
1160 rc->right = rectWND.right - rc->left;
1161 rc->bottom = rectWND.bottom - rc->top;
1164 static BOOL HH_AddHTMLPane(HHInfo *pHHInfo)
1167 HWND hwndParent = pHHInfo->WinType.hwndHelp;
1168 DWORD dwStyles = WS_CHILDWINDOW | WS_VISIBLE | WS_CLIPCHILDREN;
1169 DWORD dwExStyles = WS_EX_LEFT | WS_EX_LTRREADING | WS_EX_RIGHTSCROLLBAR | WS_EX_CLIENTEDGE;
1172 HP_GetHTMLRect(pHHInfo, &rc);
1174 hWnd = CreateWindowExW(dwExStyles, szChildClass, szEmpty, dwStyles,
1175 rc.left, rc.top, rc.right, rc.bottom,
1176 hwndParent, NULL, hhctrl_hinstance, NULL);
1180 if (!InitWebBrowser(pHHInfo, hWnd))
1183 /* store the pointer to the HH info struct */
1184 SetWindowLongPtrW(hWnd, 0, (LONG_PTR)pHHInfo);
1186 ShowWindow(hWnd, SW_SHOW);
1189 pHHInfo->WinType.hwndHTML = hWnd;
1193 static BOOL AddContentTab(HHInfo *info)
1195 HIMAGELIST hImageList;
1199 if(info->tabs[TAB_CONTENTS].id == -1)
1200 return TRUE; /* No "Contents" tab */
1201 hWnd = CreateWindowExW(WS_EX_CLIENTEDGE, WC_TREEVIEWW, szEmpty, WS_CHILD | WS_BORDER | TVS_LINESATROOT
1202 | TVS_SHOWSELALWAYS | TVS_HASBUTTONS, 50, 50, 100, 100,
1203 info->WinType.hwndNavigation, NULL, hhctrl_hinstance, NULL);
1205 ERR("Could not create treeview control\n");
1209 hImageList = ImageList_Create(16, 16, ILC_COLOR32, 0, HHTV_NUMBITMAPS);
1210 hBitmap = LoadBitmapW(hhctrl_hinstance, MAKEINTRESOURCEW(IDB_HHTREEVIEW));
1211 ImageList_Add(hImageList, hBitmap, NULL);
1212 SendMessageW(hWnd, TVM_SETIMAGELIST, TVSIL_NORMAL, (LPARAM)hImageList);
1214 info->contents.hImageList = hImageList;
1215 info->tabs[TAB_CONTENTS].hwnd = hWnd;
1216 ResizeTabChild(info, TAB_CONTENTS);
1217 ShowWindow(hWnd, SW_SHOW);
1222 static BOOL AddIndexTab(HHInfo *info)
1224 char hidden_column[] = "Column";
1227 if(info->tabs[TAB_INDEX].id == -1)
1228 return TRUE; /* No "Index" tab */
1229 info->tabs[TAB_INDEX].hwnd = CreateWindowExW(WS_EX_CLIENTEDGE, WC_LISTVIEWW,
1230 szEmpty, WS_CHILD | WS_BORDER | LVS_SINGLESEL | LVS_REPORT | LVS_NOCOLUMNHEADER, 50, 50, 100, 100,
1231 info->WinType.hwndNavigation, NULL, hhctrl_hinstance, NULL);
1232 if(!info->tabs[TAB_INDEX].hwnd) {
1233 ERR("Could not create ListView control\n");
1236 memset(&lvc, 0, sizeof(lvc));
1237 lvc.mask = LVCF_TEXT;
1238 lvc.pszText = hidden_column;
1239 if(SendMessageW(info->tabs[TAB_INDEX].hwnd, LVM_INSERTCOLUMNA, 0, (LPARAM) &lvc) == -1)
1241 ERR("Could not create ListView column\n");
1245 ResizeTabChild(info, TAB_INDEX);
1246 ShowWindow(info->tabs[TAB_INDEX].hwnd, SW_HIDE);
1251 static BOOL AddSearchTab(HHInfo *info)
1253 HWND hwndList, hwndEdit, hwndContainer;
1254 char hidden_column[] = "Column";
1255 WNDPROC editWndProc;
1258 if(info->tabs[TAB_SEARCH].id == -1)
1259 return TRUE; /* No "Search" tab */
1260 hwndContainer = CreateWindowExW(WS_EX_CONTROLPARENT, szChildClass, szEmpty,
1261 WS_CHILD, 0, 0, 0, 0, info->WinType.hwndNavigation,
1262 NULL, hhctrl_hinstance, NULL);
1263 if(!hwndContainer) {
1264 ERR("Could not create search window container control.\n");
1267 hwndEdit = CreateWindowExW(WS_EX_CLIENTEDGE, WC_EDITW, szEmpty, WS_CHILD
1268 | WS_VISIBLE | ES_LEFT | SS_NOTIFY, 0, 0, 0, 0,
1269 hwndContainer, NULL, hhctrl_hinstance, NULL);
1271 ERR("Could not create search ListView control.\n");
1274 if(SendMessageW(hwndEdit, WM_SETFONT, (WPARAM) info->hFont, (LPARAM) FALSE) == -1)
1276 ERR("Could not set font for edit control.\n");
1279 editWndProc = (WNDPROC) SetWindowLongPtrW(hwndEdit, GWLP_WNDPROC, (LONG_PTR)EditChild_WndProc);
1281 ERR("Could not redirect messages for edit control.\n");
1284 SetWindowLongPtrW(hwndEdit, GWLP_USERDATA, (LONG_PTR)editWndProc);
1285 hwndList = CreateWindowExW(WS_EX_CLIENTEDGE, WC_LISTVIEWW, szEmpty,
1286 WS_CHILD | WS_VISIBLE | WS_BORDER | LVS_SINGLESEL
1287 | LVS_REPORT | LVS_NOCOLUMNHEADER, 0, 0, 0, 0,
1288 hwndContainer, NULL, hhctrl_hinstance, NULL);
1290 ERR("Could not create search ListView control.\n");
1293 memset(&lvc, 0, sizeof(lvc));
1294 lvc.mask = LVCF_TEXT;
1295 lvc.pszText = hidden_column;
1296 if(SendMessageW(hwndList, LVM_INSERTCOLUMNA, 0, (LPARAM) &lvc) == -1)
1298 ERR("Could not create ListView column\n");
1302 info->search.hwndEdit = hwndEdit;
1303 info->search.hwndList = hwndList;
1304 info->search.hwndContainer = hwndContainer;
1305 info->tabs[TAB_SEARCH].hwnd = hwndContainer;
1307 SetWindowLongPtrW(hwndContainer, 0, (LONG_PTR)info);
1309 ResizeTabChild(info, TAB_SEARCH);
1314 /* The Index tab's sub-topic popup */
1316 static void ResizePopupChild(HHInfo *info)
1318 int scroll_width = GetSystemMetrics(SM_CXVSCROLL);
1319 int border_width = GetSystemMetrics(SM_CXBORDER);
1320 int edge_width = GetSystemMetrics(SM_CXEDGE);
1327 GetClientRect(info->popup.hwndPopup, &rect);
1328 SetWindowPos(info->popup.hwndCallback, HWND_TOP, 0, 0,
1329 rect.right, rect.bottom, SWP_NOMOVE);
1331 rect.left = TAB_MARGIN;
1332 rect.top = TAB_TOP_PADDING + TAB_MARGIN;
1333 rect.right -= TAB_RIGHT_PADDING + TAB_MARGIN;
1334 rect.bottom -= TAB_MARGIN;
1335 width = rect.right-rect.left;
1336 height = rect.bottom-rect.top;
1338 SetWindowPos(info->popup.hwndList, NULL, rect.left, rect.top, width, height,
1339 SWP_NOZORDER | SWP_NOACTIVATE);
1341 SendMessageW(info->popup.hwndList, LVM_SETCOLUMNWIDTH, 0,
1342 width-scroll_width-2*border_width-2*edge_width);
1345 static LRESULT CALLBACK HelpPopup_WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
1347 HHInfo *info = (HHInfo *)GetWindowLongPtrW(hWnd, 0);
1352 ResizePopupChild(info);
1355 DestroyWindow(hWnd);
1358 ShowWindow(hWnd, SW_HIDE);
1362 return DefWindowProcW(hWnd, message, wParam, lParam);
1368 static LRESULT CALLBACK PopupChild_WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
1373 NMHDR *nmhdr = (NMHDR*)lParam;
1377 HHInfo *info = (HHInfo*)GetWindowLongPtrW(hWnd, 0);
1380 if(info == 0 || lParam == 0)
1382 iter = (IndexSubItem*) ((NMITEMACTIVATE *)lParam)->lParam;
1385 NavigateToChm(info, info->index->merge.chm_file, iter->local);
1386 ShowWindow(info->popup.hwndPopup, SW_HIDE);
1390 HHInfo *info = (HHInfo*)GetWindowLongPtrW(hWnd, 0);
1397 lvItem.iItem = (int) SendMessageW(info->popup.hwndList, LVM_GETSELECTIONMARK, 0, 0);
1398 lvItem.mask = TVIF_PARAM;
1399 SendMessageW(info->popup.hwndList, LVM_GETITEMW, 0, (LPARAM)&lvItem);
1400 iter = (IndexSubItem*) lvItem.lParam;
1401 NavigateToChm(info, info->index->merge.chm_file, iter->local);
1402 ShowWindow(info->popup.hwndPopup, SW_HIDE);
1409 return DefWindowProcW(hWnd, message, wParam, lParam);
1415 static BOOL AddIndexPopup(HHInfo *info)
1417 static const WCHAR szPopupChildClass[] = {'H','H',' ','P','o','p','u','p',' ','C','h','i','l','d',0};
1418 static const WCHAR windowCaptionW[] = {'S','e','l','e','c','t',' ','T','o','p','i','c',':',0};
1419 static const WCHAR windowClassW[] = {'H','H',' ','P','o','p','u','p',0};
1420 HWND hwndList, hwndPopup, hwndCallback;
1421 char hidden_column[] = "Column";
1425 if(info->tabs[TAB_INDEX].id == -1)
1426 return TRUE; /* No "Index" tab */
1428 wcex.cbSize = sizeof(WNDCLASSEXW);
1429 wcex.style = CS_HREDRAW | CS_VREDRAW;
1430 wcex.lpfnWndProc = HelpPopup_WndProc;
1431 wcex.cbClsExtra = 0;
1432 wcex.cbWndExtra = sizeof(LONG_PTR);
1433 wcex.hInstance = hhctrl_hinstance;
1434 wcex.hIcon = LoadIconW(NULL, (LPCWSTR)IDI_APPLICATION);
1435 wcex.hCursor = LoadCursorW(NULL, (LPCWSTR)IDC_ARROW);
1436 wcex.hbrBackground = (HBRUSH)(COLOR_MENU + 1);
1437 wcex.lpszMenuName = NULL;
1438 wcex.lpszClassName = windowClassW;
1439 wcex.hIconSm = LoadIconW(NULL, (LPCWSTR)IDI_APPLICATION);
1440 RegisterClassExW(&wcex);
1442 wcex.cbSize = sizeof(WNDCLASSEXW);
1444 wcex.lpfnWndProc = PopupChild_WndProc;
1445 wcex.cbClsExtra = 0;
1446 wcex.cbWndExtra = sizeof(LONG_PTR);
1447 wcex.hInstance = hhctrl_hinstance;
1448 wcex.hIcon = LoadIconW(NULL, (LPCWSTR)IDI_APPLICATION);
1449 wcex.hCursor = LoadCursorW(NULL, (LPCWSTR)IDC_ARROW);
1450 wcex.hbrBackground = (HBRUSH)(COLOR_BTNFACE + 1);
1451 wcex.lpszMenuName = NULL;
1452 wcex.lpszClassName = szPopupChildClass;
1453 wcex.hIconSm = LoadIconW(NULL, (LPCWSTR)IDI_APPLICATION);
1454 RegisterClassExW(&wcex);
1456 hwndPopup = CreateWindowExW(WS_EX_LEFT | WS_EX_LTRREADING | WS_EX_APPWINDOW
1457 | WS_EX_WINDOWEDGE | WS_EX_RIGHTSCROLLBAR,
1458 windowClassW, windowCaptionW, WS_POPUPWINDOW
1459 | WS_OVERLAPPEDWINDOW | WS_VISIBLE
1460 | WS_CLIPSIBLINGS | WS_CLIPCHILDREN, CW_USEDEFAULT,
1461 CW_USEDEFAULT, 300, 200, info->WinType.hwndHelp,
1462 NULL, hhctrl_hinstance, NULL);
1466 hwndCallback = CreateWindowExW(WS_EX_LEFT | WS_EX_LTRREADING | WS_EX_RIGHTSCROLLBAR,
1467 szPopupChildClass, szEmpty, WS_CHILDWINDOW | WS_VISIBLE,
1469 hwndPopup, NULL, hhctrl_hinstance, NULL);
1473 ShowWindow(hwndPopup, SW_HIDE);
1474 hwndList = CreateWindowExW(WS_EX_CLIENTEDGE, WC_LISTVIEWW, szEmpty,
1475 WS_CHILD | WS_BORDER | LVS_SINGLESEL | LVS_REPORT
1476 | LVS_NOCOLUMNHEADER, 50, 50, 100, 100,
1477 hwndCallback, NULL, hhctrl_hinstance, NULL);
1479 ERR("Could not create popup ListView control\n");
1482 memset(&lvc, 0, sizeof(lvc));
1483 lvc.mask = LVCF_TEXT;
1484 lvc.pszText = hidden_column;
1485 if(SendMessageW(hwndList, LVM_INSERTCOLUMNA, 0, (LPARAM) &lvc) == -1)
1487 ERR("Could not create popup ListView column\n");
1491 info->popup.hwndCallback = hwndCallback;
1492 info->popup.hwndPopup = hwndPopup;
1493 info->popup.hwndList = hwndList;
1494 SetWindowLongPtrW(hwndPopup, 0, (LONG_PTR)info);
1495 SetWindowLongPtrW(hwndCallback, 0, (LONG_PTR)info);
1497 ResizePopupChild(info);
1498 ShowWindow(hwndList, SW_SHOW);
1505 static void ExpandContract(HHInfo *pHHInfo)
1509 pHHInfo->WinType.fNotExpanded = !pHHInfo->WinType.fNotExpanded;
1510 GetWindowRect(pHHInfo->WinType.hwndHelp, &r);
1511 NP_GetNavigationRect(pHHInfo, &nav);
1513 /* hide/show both the nav bar and the size bar */
1514 if (pHHInfo->WinType.fNotExpanded)
1516 ShowWindow(pHHInfo->WinType.hwndNavigation, SW_HIDE);
1517 ShowWindow(pHHInfo->hwndSizeBar, SW_HIDE);
1518 r.left = r.left + nav.right;
1520 SendMessageW(pHHInfo->WinType.hwndToolBar, TB_HIDEBUTTON, IDTB_EXPAND, MAKELPARAM(FALSE, 0));
1521 SendMessageW(pHHInfo->WinType.hwndToolBar, TB_HIDEBUTTON, IDTB_CONTRACT, MAKELPARAM(TRUE, 0));
1525 ShowWindow(pHHInfo->WinType.hwndNavigation, SW_SHOW);
1526 ShowWindow(pHHInfo->hwndSizeBar, SW_SHOW);
1527 r.left = r.left - nav.right;
1529 SendMessageW(pHHInfo->WinType.hwndToolBar, TB_HIDEBUTTON, IDTB_EXPAND, MAKELPARAM(TRUE, 0));
1530 SendMessageW(pHHInfo->WinType.hwndToolBar, TB_HIDEBUTTON, IDTB_CONTRACT, MAKELPARAM(FALSE, 0));
1533 MoveWindow(pHHInfo->WinType.hwndHelp, r.left, r.top, r.right-r.left, r.bottom-r.top, TRUE);
1536 static LRESULT Help_OnSize(HWND hWnd)
1538 HHInfo *pHHInfo = (HHInfo *)GetWindowLongPtrW(hWnd, 0);
1545 if (navigation_visible(pHHInfo))
1547 NP_GetNavigationRect(pHHInfo, &rc);
1548 SetWindowPos(pHHInfo->WinType.hwndNavigation, HWND_TOP, 0, 0,
1549 rc.right, rc.bottom, SWP_NOMOVE);
1551 SB_GetSizeBarRect(pHHInfo, &rc);
1552 SetWindowPos(pHHInfo->hwndSizeBar, HWND_TOP, rc.left, rc.top,
1553 rc.right, rc.bottom, SWP_SHOWWINDOW);
1557 HP_GetHTMLRect(pHHInfo, &rc);
1558 SetWindowPos(pHHInfo->WinType.hwndHTML, HWND_TOP, rc.left, rc.top,
1559 rc.right, rc.bottom, SWP_SHOWWINDOW);
1561 /* Resize browser window taking the frame size into account */
1562 dwSize = GetSystemMetrics(SM_CXFRAME);
1563 ResizeWebBrowser(pHHInfo, rc.right - dwSize, rc.bottom - dwSize);
1568 void UpdateHelpWindow(HHInfo *info)
1570 if (!info->WinType.hwndHelp)
1573 WARN("Only the size of the window is currently updated.\n");
1574 if (info->WinType.fsValidMembers & HHWIN_PARAM_RECT)
1576 RECT *rect = &info->WinType.rcWindowPos;
1577 INT x, y, width, height;
1581 width = rect->right - x;
1582 height = rect->bottom - y;
1583 SetWindowPos(info->WinType.hwndHelp, NULL, rect->left, rect->top, width, height,
1584 SWP_NOZORDER | SWP_NOACTIVATE);
1588 static LRESULT CALLBACK Help_WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
1593 if (HIWORD(wParam) == BN_CLICKED)
1594 TB_OnClick(hWnd, LOWORD(wParam));
1597 return Help_OnSize(hWnd);
1599 ReleaseHelpViewer((HHInfo *)GetWindowLongPtrW(hWnd, 0));
1607 return DefWindowProcW(hWnd, message, wParam, lParam);
1613 static BOOL HH_CreateHelpWindow(HHInfo *info)
1615 HWND hWnd, parent = 0;
1616 RECT winPos = info->WinType.rcWindowPos;
1618 DWORD dwStyles, dwExStyles;
1619 DWORD x, y, width = 0, height = 0;
1622 static const WCHAR windowClassW[] = {
1623 'H','H',' ', 'P','a','r','e','n','t',0
1626 wcex.cbSize = sizeof(WNDCLASSEXW);
1627 wcex.style = CS_HREDRAW | CS_VREDRAW;
1628 wcex.lpfnWndProc = Help_WndProc;
1629 wcex.cbClsExtra = 0;
1630 wcex.cbWndExtra = sizeof(LONG_PTR);
1631 wcex.hInstance = hhctrl_hinstance;
1632 wcex.hIcon = LoadIconW(NULL, (LPCWSTR)IDI_APPLICATION);
1633 wcex.hCursor = LoadCursorW(NULL, (LPCWSTR)IDC_ARROW);
1634 wcex.hbrBackground = (HBRUSH)(COLOR_MENU + 1);
1635 wcex.lpszMenuName = NULL;
1636 wcex.lpszClassName = windowClassW;
1637 wcex.hIconSm = LoadIconW(NULL, (LPCWSTR)IDI_APPLICATION);
1639 RegisterClassExW(&wcex);
1641 /* Read in window parameters if available */
1642 if (info->WinType.fsValidMembers & HHWIN_PARAM_STYLES)
1644 dwStyles = info->WinType.dwStyles;
1645 if (!(info->WinType.dwStyles & WS_CHILD))
1646 dwStyles |= WS_OVERLAPPEDWINDOW;
1649 dwStyles = WS_OVERLAPPEDWINDOW | WS_VISIBLE |
1650 WS_CLIPSIBLINGS | WS_CLIPCHILDREN;
1652 if (info->WinType.fsValidMembers & HHWIN_PARAM_EXSTYLES)
1653 dwExStyles = info->WinType.dwExStyles;
1655 dwExStyles = WS_EX_LEFT | WS_EX_LTRREADING | WS_EX_APPWINDOW |
1656 WS_EX_WINDOWEDGE | WS_EX_RIGHTSCROLLBAR;
1658 if (info->WinType.fsValidMembers & HHWIN_PARAM_RECT)
1662 width = winPos.right - x;
1663 height = winPos.bottom - y;
1665 if (!width || !height)
1667 x = WINTYPE_DEFAULT_X;
1668 y = WINTYPE_DEFAULT_Y;
1669 width = WINTYPE_DEFAULT_WIDTH;
1670 height = WINTYPE_DEFAULT_HEIGHT;
1673 if (!(info->WinType.fsWinProperties & HHWIN_PROP_TRI_PANE) && info->WinType.fNotExpanded)
1675 if (!(info->WinType.fsValidMembers & HHWIN_PARAM_NAV_WIDTH) &&
1676 info->WinType.iNavWidth == 0)
1678 info->WinType.iNavWidth = WINTYPE_DEFAULT_NAVWIDTH;
1681 x += info->WinType.iNavWidth;
1682 width -= info->WinType.iNavWidth;
1686 caption = info->WinType.pszCaption;
1687 if (!*caption) caption = info->pCHMInfo->defTitle;
1689 if (info->WinType.dwStyles & WS_CHILD)
1690 parent = info->WinType.hwndCaller;
1692 hWnd = CreateWindowExW(dwExStyles, windowClassW, caption,
1693 dwStyles, x, y, width, height, parent, NULL, hhctrl_hinstance, NULL);
1697 ShowWindow(hWnd, SW_SHOW);
1700 /* store the pointer to the HH info struct */
1701 SetWindowLongPtrW(hWnd, 0, (LONG_PTR)info);
1703 info->WinType.hwndHelp = hWnd;
1707 static void HH_CreateFont(HHInfo *pHHInfo)
1711 GetObjectW(GetStockObject(DEFAULT_GUI_FONT), sizeof(LOGFONTW), &lf);
1712 lf.lfWeight = FW_NORMAL;
1713 lf.lfItalic = FALSE;
1714 lf.lfUnderline = FALSE;
1716 pHHInfo->hFont = CreateFontIndirectW(&lf);
1719 static void HH_InitRequiredControls(DWORD dwControls)
1721 INITCOMMONCONTROLSEX icex;
1723 icex.dwSize = sizeof(INITCOMMONCONTROLSEX);
1724 icex.dwICC = dwControls;
1725 InitCommonControlsEx(&icex);
1728 /* Creates the whole package */
1729 static BOOL CreateViewer(HHInfo *pHHInfo)
1731 HH_CreateFont(pHHInfo);
1733 if (!HH_CreateHelpWindow(pHHInfo))
1736 HH_InitRequiredControls(ICC_BAR_CLASSES);
1738 if (!HH_AddToolbar(pHHInfo))
1741 HH_RegisterChildWndClass(pHHInfo);
1743 if (!HH_AddNavigationPane(pHHInfo))
1746 HH_RegisterSizeBarClass(pHHInfo);
1748 if (!HH_AddSizeBar(pHHInfo))
1751 if (!HH_AddHTMLPane(pHHInfo))
1754 if (!AddContentTab(pHHInfo))
1757 if (!AddIndexTab(pHHInfo))
1760 if (!AddIndexPopup(pHHInfo))
1763 if (!AddSearchTab(pHHInfo))
1766 InitContent(pHHInfo);
1769 pHHInfo->viewer_initialized = TRUE;
1773 void wintype_stringsW_free(struct wintype_stringsW *stringsW)
1775 heap_free(stringsW->pszType);
1776 heap_free(stringsW->pszCaption);
1777 heap_free(stringsW->pszToc);
1778 heap_free(stringsW->pszIndex);
1779 heap_free(stringsW->pszFile);
1780 heap_free(stringsW->pszHome);
1781 heap_free(stringsW->pszJump1);
1782 heap_free(stringsW->pszJump2);
1783 heap_free(stringsW->pszUrlJump1);
1784 heap_free(stringsW->pszUrlJump2);
1787 void wintype_stringsA_free(struct wintype_stringsA *stringsA)
1789 heap_free(stringsA->pszType);
1790 heap_free(stringsA->pszCaption);
1791 heap_free(stringsA->pszToc);
1792 heap_free(stringsA->pszIndex);
1793 heap_free(stringsA->pszFile);
1794 heap_free(stringsA->pszHome);
1795 heap_free(stringsA->pszJump1);
1796 heap_free(stringsA->pszJump2);
1797 heap_free(stringsA->pszUrlJump1);
1798 heap_free(stringsA->pszUrlJump2);
1799 heap_free(stringsA->pszCustomTabs);
1802 void ReleaseHelpViewer(HHInfo *info)
1804 TRACE("(%p)\n", info);
1809 list_remove(&info->entry);
1811 wintype_stringsA_free(&info->stringsA);
1812 wintype_stringsW_free(&info->stringsW);
1815 CloseCHM(info->pCHMInfo);
1817 ReleaseWebBrowser(info);
1818 ReleaseContent(info);
1820 ReleaseSearch(info);
1822 if(info->contents.hImageList)
1823 ImageList_Destroy(info->contents.hImageList);
1824 if(info->WinType.hwndHelp)
1825 DestroyWindow(info->WinType.hwndHelp);
1831 HHInfo *CreateHelpViewer(HHInfo *info, LPCWSTR filename, HWND caller)
1833 BOOL add_to_window_list = FALSE;
1838 info = heap_alloc_zero(sizeof(HHInfo));
1839 add_to_window_list = TRUE;
1842 /* Set the invalid tab ID (-1) as the default value for all
1843 * of the tabs, this matches a failed TCM_INSERTITEM call.
1845 for(i=0;i<sizeof(info->tabs)/sizeof(HHTab);i++)
1846 info->tabs[i].id = -1;
1848 OleInitialize(NULL);
1850 info->pCHMInfo = OpenCHM(filename);
1851 if(!info->pCHMInfo) {
1852 ReleaseHelpViewer(info);
1856 if (!LoadWinTypeFromCHM(info)) {
1857 ReleaseHelpViewer(info);
1860 info->WinType.hwndCaller = caller;
1862 if(!info->viewer_initialized && !CreateViewer(info)) {
1863 ReleaseHelpViewer(info);
1867 if(add_to_window_list)
1868 list_add_tail(&window_list, &info->entry);
1874 * Search the table of HTML entities and return the corresponding ANSI symbol.
1876 static char find_html_symbol(const char *entity, int entity_len)
1878 int max = sizeof(html_encoded_symbols)/sizeof(html_encoded_symbols[0])-1;
1883 int pos = (min+max)/2;
1884 const char *encoded_symbol = html_encoded_symbols[pos].html_code;
1885 dir = strncmp(encoded_symbol, entity, entity_len);
1886 if(dir == 0 && !encoded_symbol[entity_len]) return html_encoded_symbols[pos].ansi_symbol;
1896 * Decode a string containing HTML encoded characters into a unicode string.
1898 WCHAR *decode_html(const char *html_fragment, int html_fragment_len, UINT code_page)
1900 const char *h = html_fragment;
1901 char *amp, *sem, symbol, *tmp;
1902 int len, tmp_len = 0;
1903 WCHAR *unicode_text;
1905 tmp = heap_alloc(html_fragment_len+1);
1909 amp = strchr(h, '&');
1912 /* Copy the characters prior to the HTML encoded character */
1913 memcpy(&tmp[tmp_len], h, len);
1915 amp++; /* skip ampersand */
1916 sem = strchr(amp, ';');
1917 /* Require a semicolon after the ampersand */
1921 tmp[tmp_len++] = '&';
1924 /* Find the symbol either by using the ANSI character number (prefixed by the pound symbol)
1925 * or by searching the HTML entity table */
1929 char *endnum = NULL;
1932 tmp = (char) strtol(amp, &endnum, 10);
1937 symbol = find_html_symbol(amp, len);
1940 FIXME("Failed to translate HTML encoded character '&%.*s;'.\n", len, amp);
1942 tmp[tmp_len++] = '&';
1945 /* Insert the new symbol */
1947 tmp[tmp_len++] = symbol;
1949 /* Convert any remaining characters */
1950 len = html_fragment_len-(h-html_fragment);
1951 memcpy(&tmp[tmp_len], h, len);
1953 tmp[tmp_len++] = 0; /* NULL-terminate the string */
1955 len = MultiByteToWideChar(code_page, 0, tmp, tmp_len, NULL, 0);
1956 unicode_text = heap_alloc(len*sizeof(WCHAR));
1957 MultiByteToWideChar(code_page, 0, tmp, tmp_len, unicode_text, len);
1959 return unicode_text;