4 * Copyright 1996 Ulrich Schmid <uschmid@mail.hh.provi.de>
5 * 2002 Sylvain Petreolle <spetreolle@yahoo.fr>
6 * 2002 Eric Pouech <eric.pouech@wanadoo.fr>
7 * 2004 Ken Belleau <jamez@ivic.qc.ca>
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
36 #include "winhelp_res.h"
39 #include "wine/debug.h"
41 WINE_DEFAULT_DEBUG_CHANNEL(winhelp
);
43 static BOOL
WINHELP_RegisterWinClasses(void);
44 static LRESULT CALLBACK
WINHELP_MainWndProc(HWND
, UINT
, WPARAM
, LPARAM
);
45 static LRESULT CALLBACK
WINHELP_TextWndProc(HWND
, UINT
, WPARAM
, LPARAM
);
46 static LRESULT CALLBACK
WINHELP_ButtonBoxWndProc(HWND
, UINT
, WPARAM
, LPARAM
);
47 static LRESULT CALLBACK
WINHELP_ButtonWndProc(HWND
, UINT
, WPARAM
, LPARAM
);
48 static LRESULT CALLBACK
WINHELP_HistoryWndProc(HWND
, UINT
, WPARAM
, LPARAM
);
49 static LRESULT CALLBACK
WINHELP_ShadowWndProc(HWND
, UINT
, WPARAM
, LPARAM
);
50 static void WINHELP_CheckPopup(UINT
);
51 static BOOL
WINHELP_SplitLines(HWND hWnd
, LPSIZE
);
52 static void WINHELP_InitFonts(HWND hWnd
);
53 static void WINHELP_DeleteLines(WINHELP_WINDOW
*);
54 static void WINHELP_DeleteWindow(WINHELP_WINDOW
*);
55 static void WINHELP_SetupText(HWND hWnd
);
56 static WINHELP_LINE_PART
* WINHELP_IsOverLink(WINHELP_WINDOW
*, WPARAM
, LPARAM
);
58 WINHELP_GLOBALS Globals
= {3, NULL
, NULL
, 0, TRUE
, NULL
, NULL
, NULL
, NULL
};
61 /***********************************************************************
63 * WINHELP_GetOpenFileName
65 BOOL
WINHELP_GetOpenFileName(LPSTR lpszFile
, int len
)
67 OPENFILENAME openfilename
;
69 CHAR szzFilter
[2 * MAX_STRING_LEN
+ 100];
74 LoadString(Globals
.hInstance
, STID_HELP_FILES_HLP
, p
, MAX_STRING_LEN
);
78 LoadString(Globals
.hInstance
, STID_ALL_FILES
, p
, MAX_STRING_LEN
);
84 GetCurrentDirectory(sizeof(szDir
), szDir
);
88 openfilename
.lStructSize
= sizeof(OPENFILENAME
);
89 openfilename
.hwndOwner
= NULL
;
90 openfilename
.hInstance
= Globals
.hInstance
;
91 openfilename
.lpstrFilter
= szzFilter
;
92 openfilename
.lpstrCustomFilter
= 0;
93 openfilename
.nMaxCustFilter
= 0;
94 openfilename
.nFilterIndex
= 1;
95 openfilename
.lpstrFile
= lpszFile
;
96 openfilename
.nMaxFile
= len
;
97 openfilename
.lpstrFileTitle
= 0;
98 openfilename
.nMaxFileTitle
= 0;
99 openfilename
.lpstrInitialDir
= szDir
;
100 openfilename
.lpstrTitle
= 0;
101 openfilename
.Flags
= 0;
102 openfilename
.nFileOffset
= 0;
103 openfilename
.nFileExtension
= 0;
104 openfilename
.lpstrDefExt
= 0;
105 openfilename
.lCustData
= 0;
106 openfilename
.lpfnHook
= 0;
107 openfilename
.lpTemplateName
= 0;
109 return GetOpenFileName(&openfilename
);
112 /***********************************************************************
114 * WINHELP_LookupHelpFile
116 HLPFILE
* WINHELP_LookupHelpFile(LPCSTR lpszFile
)
119 char szFullName
[MAX_PATH
];
120 char szAddPath
[MAX_PATH
];
124 * NOTE: This is needed by popup windows only.
125 * In other cases it's not needed but does not hurt though.
127 if (Globals
.active_win
&& Globals
.active_win
->page
&& Globals
.active_win
->page
->file
)
129 strcpy(szAddPath
, Globals
.active_win
->page
->file
->lpszPath
);
130 p
= strrchr(szAddPath
, '\\');
135 * FIXME: Should we swap conditions?
137 if (!SearchPath(NULL
, lpszFile
, ".hlp", MAX_PATH
, szFullName
, NULL
) &&
138 !SearchPath(szAddPath
, lpszFile
, ".hlp", MAX_PATH
, szFullName
, NULL
))
140 if (WINHELP_MessageBoxIDS_s(STID_FILE_NOT_FOUND_s
, lpszFile
, STID_WHERROR
,
141 MB_YESNO
|MB_ICONQUESTION
) != IDYES
)
143 if (!WINHELP_GetOpenFileName(szFullName
, MAX_PATH
))
146 hlpfile
= HLPFILE_ReadHlpFile(szFullName
);
148 WINHELP_MessageBoxIDS_s(STID_HLPFILE_ERROR_s
, lpszFile
,
149 STID_WHERROR
, MB_OK
|MB_ICONSTOP
);
153 /******************************************************************
154 * WINHELP_GetWindowInfo
158 HLPFILE_WINDOWINFO
* WINHELP_GetWindowInfo(HLPFILE
* hlpfile
, LPCSTR name
)
160 static HLPFILE_WINDOWINFO mwi
;
163 if (!name
|| !name
[0])
164 name
= Globals
.active_win
->lpszName
;
167 for (i
= 0; i
< hlpfile
->numWindows
; i
++)
168 if (!strcmp(hlpfile
->windows
[i
].name
, name
))
169 return &hlpfile
->windows
[i
];
171 if (strcmp(name
, "main") != 0)
173 WINE_FIXME("Couldn't find window info for %s\n", name
);
179 strcpy(mwi
.type
, "primary");
180 strcpy(mwi
.name
, "main");
181 if (!LoadString(Globals
.hInstance
, STID_WINE_HELP
,
182 mwi
.caption
, sizeof(mwi
.caption
)))
183 strcpy(mwi
.caption
, hlpfile
->lpszTitle
);
184 mwi
.origin
.x
= mwi
.origin
.y
= mwi
.size
.cx
= mwi
.size
.cy
= CW_USEDEFAULT
;
186 mwi
.win_style
= WS_OVERLAPPEDWINDOW
;
187 mwi
.sr_color
= mwi
.sr_color
= 0xFFFFFF;
192 /******************************************************************
193 * HLPFILE_GetPopupWindowInfo
197 static HLPFILE_WINDOWINFO
* WINHELP_GetPopupWindowInfo(HLPFILE
* hlpfile
, HWND hParentWnd
, POINT
* mouse
)
199 static HLPFILE_WINDOWINFO wi
;
203 wi
.type
[0] = wi
.name
[0] = wi
.caption
[0] = '\0';
205 /* Calculate horizontal size and position of a popup window */
206 GetWindowRect(hParentWnd
, &parent_rect
);
207 wi
.size
.cx
= (parent_rect
.right
- parent_rect
.left
) / 2;
208 wi
.size
.cy
= 10; /* need a non null value, so that border are taken into account while computing */
211 ClientToScreen(hParentWnd
, &wi
.origin
);
212 wi
.origin
.x
-= wi
.size
.cx
/ 2;
213 wi
.origin
.x
= min(wi
.origin
.x
, GetSystemMetrics(SM_CXSCREEN
) - wi
.size
.cx
);
214 wi
.origin
.x
= max(wi
.origin
.x
, 0);
217 wi
.win_style
= WS_POPUP
| WS_BORDER
;
218 wi
.sr_color
= wi
.sr_color
= 0xFFFFFF;
223 /***********************************************************************
227 int PASCAL
WinMain(HINSTANCE hInstance
, HINSTANCE prev
, LPSTR cmdline
, int show
)
232 static CHAR default_wndname
[] = "main";
233 LPSTR wndname
= default_wndname
;
236 Globals
.hInstance
= hInstance
;
239 while (*cmdline
&& (*cmdline
== ' ' || *cmdline
== '-'))
243 if (*cmdline
++ == ' ') continue;
246 if (option
) cmdline
++;
247 while (*cmdline
&& *cmdline
== ' ') cmdline
++;
253 while (*cmdline
&& *cmdline
!= ' ') cmdline
++;
254 if (*cmdline
) *cmdline
++ = '\0';
255 lHash
= HLPFILE_Hash(topic_id
);
260 Globals
.wVersion
= option
- '0';
265 Globals
.isBook
= FALSE
;
269 WINE_FIXME("Unsupported cmd line: %s\n", cmdline
);
274 /* Create primary window */
275 if (!WINHELP_RegisterWinClasses())
277 WINE_FIXME("Couldn't register classes\n");
284 if ((*cmdline
== '"') && (ptr
= strchr(cmdline
+1, '"')))
289 if ((ptr
= strchr(cmdline
, '>')))
294 hlpfile
= WINHELP_LookupHelpFile(cmdline
);
295 if (!hlpfile
) return 0;
298 WINHELP_CreateHelpWindowByHash(hlpfile
, lHash
,
299 WINHELP_GetWindowInfo(hlpfile
, wndname
), show
);
302 while (GetMessage(&msg
, 0, 0, 0))
304 TranslateMessage(&msg
);
305 DispatchMessage(&msg
);
307 for (dll
= Globals
.dlls
; dll
; dll
= dll
->next
)
309 if (dll
->class & DC_INITTERM
) dll
->handler(DW_TERM
, 0, 0);
314 /***********************************************************************
318 static BOOL
WINHELP_RegisterWinClasses(void)
320 WNDCLASS class_main
, class_button_box
, class_text
, class_shadow
, class_history
;
322 class_main
.style
= CS_HREDRAW
| CS_VREDRAW
;
323 class_main
.lpfnWndProc
= WINHELP_MainWndProc
;
324 class_main
.cbClsExtra
= 0;
325 class_main
.cbWndExtra
= sizeof(LONG
);
326 class_main
.hInstance
= Globals
.hInstance
;
327 class_main
.hIcon
= LoadIcon(0, IDI_APPLICATION
);
328 class_main
.hCursor
= LoadCursor(0, IDC_ARROW
);
329 class_main
.hbrBackground
= (HBRUSH
)(COLOR_WINDOW
+1);
330 class_main
.lpszMenuName
= 0;
331 class_main
.lpszClassName
= MAIN_WIN_CLASS_NAME
;
333 class_button_box
= class_main
;
334 class_button_box
.lpfnWndProc
= WINHELP_ButtonBoxWndProc
;
335 class_button_box
.hbrBackground
= (HBRUSH
)(COLOR_BTNFACE
+1);
336 class_button_box
.lpszClassName
= BUTTON_BOX_WIN_CLASS_NAME
;
338 class_text
= class_main
;
339 class_text
.lpfnWndProc
= WINHELP_TextWndProc
;
340 class_text
.hbrBackground
= 0;
341 class_text
.lpszClassName
= TEXT_WIN_CLASS_NAME
;
343 class_shadow
= class_main
;
344 class_shadow
.lpfnWndProc
= WINHELP_ShadowWndProc
;
345 class_shadow
.hbrBackground
= (HBRUSH
)(COLOR_3DDKSHADOW
+1);
346 class_shadow
.lpszClassName
= SHADOW_WIN_CLASS_NAME
;
348 class_history
= class_main
;
349 class_history
.lpfnWndProc
= WINHELP_HistoryWndProc
;
350 class_history
.lpszClassName
= HISTORY_WIN_CLASS_NAME
;
352 return (RegisterClass(&class_main
) &&
353 RegisterClass(&class_button_box
) &&
354 RegisterClass(&class_text
) &&
355 RegisterClass(&class_shadow
) &&
356 RegisterClass(&class_history
));
367 } WINHELP
,*LPWINHELP
;
369 /******************************************************************
370 * WINHELP_HandleCommand
374 static LRESULT
WINHELP_HandleCommand(HWND hSrcWnd
, LPARAM lParam
)
376 COPYDATASTRUCT
* cds
= (COPYDATASTRUCT
*)lParam
;
379 if (cds
->dwData
!= 0xA1DE505)
381 WINE_FIXME("Wrong magic number (%08lx)\n", cds
->dwData
);
385 wh
= (WINHELP
*)cds
->lpData
;
389 char* ptr
= (wh
->ofsFilename
) ? (LPSTR
)wh
+ wh
->ofsFilename
: NULL
;
391 WINE_TRACE("Got[%u]: cmd=%u data=%08x fn=%s\n",
392 wh
->size
, wh
->command
, wh
->data
, ptr
);
398 MACRO_JumpContext(ptr
, "main", wh
->data
);
407 MACRO_JumpContents(ptr
, "main");
410 case HELP_HELPONHELP
:
413 /* case HELP_SETINDEX: */
414 case HELP_SETCONTENTS
:
417 MACRO_SetContents(ptr
, wh
->data
);
420 case HELP_CONTEXTPOPUP
:
423 MACRO_PopupContext(ptr
, wh
->data
);
426 /* case HELP_FORCEFILE:*/
427 /* case HELP_CONTEXTMENU: */
429 /* in fact, should be the topic dialog box */
430 WINE_FIXME("HELP_FINDER: stub\n");
433 MACRO_JumpHash(ptr
, "main", 0);
436 /* case HELP_WM_HELP: */
437 /* case HELP_SETPOPUP_POS: */
439 /* case HELP_COMMAND: */
440 /* case HELP_PARTIALKEY: */
441 /* case HELP_MULTIKEY: */
442 /* case HELP_SETWINPOS: */
444 WINE_FIXME("Unhandled command (%x) for remote winhelp control\n", wh
->command
);
448 /* Always return success for now */
452 /******************************************************************
453 * WINHELP_ReuseWindow
457 static BOOL
WINHELP_ReuseWindow(WINHELP_WINDOW
* win
, WINHELP_WINDOW
* oldwin
,
458 HLPFILE_PAGE
* page
, int nCmdShow
)
462 win
->hMainWnd
= oldwin
->hMainWnd
;
463 win
->hButtonBoxWnd
= oldwin
->hButtonBoxWnd
;
464 win
->hTextWnd
= oldwin
->hTextWnd
;
465 win
->hHistoryWnd
= oldwin
->hHistoryWnd
;
466 oldwin
->hMainWnd
= oldwin
->hButtonBoxWnd
= oldwin
->hTextWnd
= oldwin
->hHistoryWnd
= 0;
467 win
->hBrush
= CreateSolidBrush(win
->info
->sr_color
);
469 SetWindowLong(win
->hMainWnd
, 0, (LONG
)win
);
470 SetWindowLong(win
->hButtonBoxWnd
, 0, (LONG
)win
);
471 SetWindowLong(win
->hTextWnd
, 0, (LONG
)win
);
472 SetWindowLong(win
->hHistoryWnd
, 0, (LONG
)win
);
474 WINHELP_InitFonts(win
->hMainWnd
);
477 SetWindowText(win
->hMainWnd
, page
->file
->lpszTitle
);
479 WINHELP_SetupText(win
->hTextWnd
);
480 InvalidateRect(win
->hTextWnd
, NULL
, TRUE
);
481 SendMessage(win
->hMainWnd
, WM_USER
, 0, 0);
482 ShowWindow(win
->hMainWnd
, nCmdShow
);
483 UpdateWindow(win
->hTextWnd
);
485 if (!(win
->info
->win_style
& WS_POPUP
))
489 memcpy(win
->history
, oldwin
->history
, sizeof(win
->history
));
490 win
->histIndex
= oldwin
->histIndex
;
492 /* FIXME: when using back, we shouldn't update the history... */
496 for (i
= 0; i
< win
->histIndex
; i
++)
497 if (win
->history
[i
] == page
) break;
499 /* if the new page is already in the history, do nothing */
500 if (i
== win
->histIndex
)
502 num
= sizeof(win
->history
) / sizeof(win
->history
[0]);
503 if (win
->histIndex
== num
)
505 /* we're full, remove latest entry */
506 HLPFILE_FreeHlpFile(win
->history
[0]->file
);
507 memmove(&win
->history
[0], &win
->history
[1],
508 (num
- 1) * sizeof(win
->history
[0]));
511 win
->history
[win
->histIndex
++] = page
;
512 page
->file
->wRefCount
++;
513 if (win
->hHistoryWnd
) InvalidateRect(win
->hHistoryWnd
, NULL
, TRUE
);
517 memcpy(win
->back
, oldwin
->back
, sizeof(win
->back
));
518 win
->backIndex
= oldwin
->backIndex
;
522 num
= sizeof(win
->back
) / sizeof(win
->back
[0]);
523 if (win
->backIndex
== num
)
525 /* we're full, remove latest entry */
526 HLPFILE_FreeHlpFile(win
->back
[0]->file
);
527 memmove(&win
->back
[0], &win
->back
[1],
528 (num
- 1) * sizeof(win
->back
[0]));
531 win
->back
[win
->backIndex
++] = page
;
532 page
->file
->wRefCount
++;
536 win
->backIndex
= win
->histIndex
= 0;
538 oldwin
->histIndex
= oldwin
->backIndex
= 0;
539 WINHELP_DeleteWindow(oldwin
);
543 /***********************************************************************
545 * WINHELP_CreateHelpWindow
547 BOOL
WINHELP_CreateHelpWindow(HLPFILE_PAGE
* page
, HLPFILE_WINDOWINFO
* wi
,
550 WINHELP_WINDOW
*win
, *oldwin
;
557 bPrimary
= !lstrcmpi(wi
->name
, "main");
558 bPopup
= wi
->win_style
& WS_POPUP
;
560 /* Initialize WINHELP_WINDOW struct */
561 win
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
,
562 sizeof(WINHELP_WINDOW
) + strlen(wi
->name
) + 1);
563 if (!win
) return FALSE
;
565 win
->next
= Globals
.win_list
;
566 Globals
.win_list
= win
;
568 name
= (char*)win
+ sizeof(WINHELP_WINDOW
);
569 lstrcpy(name
, wi
->name
);
570 win
->lpszName
= name
;
574 win
->hArrowCur
= LoadCursorA(0, (LPSTR
)IDC_ARROW
);
575 win
->hHandCur
= LoadCursorA(0, (LPSTR
)IDC_HAND
);
579 Globals
.active_win
= win
;
581 /* Initialize default pushbuttons */
582 if (bPrimary
&& page
)
584 CHAR buffer
[MAX_STRING_LEN
];
586 LoadString(Globals
.hInstance
, STID_CONTENTS
, buffer
, sizeof(buffer
));
587 MACRO_CreateButton("BTN_CONTENTS", buffer
, "Contents()");
588 LoadString(Globals
.hInstance
, STID_SEARCH
,buffer
, sizeof(buffer
));
589 MACRO_CreateButton("BTN_SEARCH", buffer
, "Search()");
590 LoadString(Globals
.hInstance
, STID_BACK
, buffer
, sizeof(buffer
));
591 MACRO_CreateButton("BTN_BACK", buffer
, "Back()");
592 LoadString(Globals
.hInstance
, STID_HISTORY
, buffer
, sizeof(buffer
));
593 MACRO_CreateButton("BTN_HISTORY", buffer
, "History()");
594 LoadString(Globals
.hInstance
, STID_TOPICS
, buffer
, sizeof(buffer
));
595 MACRO_CreateButton("BTN_TOPICS", buffer
, "Finder()");
598 /* Initialize file specific pushbuttons */
599 if (!(wi
->win_style
& WS_POPUP
) && page
)
601 HLPFILE_MACRO
*macro
;
602 for (macro
= page
->file
->first_macro
; macro
; macro
= macro
->next
)
603 MACRO_ExecuteMacro(macro
->lpszMacro
);
605 for (macro
= page
->first_macro
; macro
; macro
= macro
->next
)
606 MACRO_ExecuteMacro(macro
->lpszMacro
);
609 /* Reuse existing window */
612 for (oldwin
= win
->next
; oldwin
; oldwin
= oldwin
->next
)
614 if (!lstrcmpi(oldwin
->lpszName
, wi
->name
))
616 return WINHELP_ReuseWindow(win
, oldwin
, page
, nCmdShow
);
621 win
->histIndex
= win
->backIndex
= 1;
622 win
->history
[0] = win
->back
[0] = page
;
623 page
->file
->wRefCount
+= 2;
624 strcpy(wi
->caption
, page
->file
->lpszTitle
);
629 if (bPopup
) ex_style
= WS_EX_TOOLWINDOW
;
630 hWnd
= CreateWindowEx(ex_style
, bPopup
? TEXT_WIN_CLASS_NAME
: MAIN_WIN_CLASS_NAME
,
632 bPrimary
? WS_OVERLAPPEDWINDOW
: wi
->win_style
,
633 wi
->origin
.x
, wi
->origin
.y
, wi
->size
.cx
, wi
->size
.cy
,
634 NULL
, bPrimary
? LoadMenu(Globals
.hInstance
, MAKEINTRESOURCE(MAIN_MENU
)) : 0,
635 Globals
.hInstance
, win
);
637 ShowWindow(hWnd
, nCmdShow
);
643 /***********************************************************************
645 * WINHELP_CreateHelpWindowByHash
647 BOOL
WINHELP_CreateHelpWindowByHash(HLPFILE
* hlpfile
, LONG lHash
,
648 HLPFILE_WINDOWINFO
* wi
, int nCmdShow
)
650 HLPFILE_PAGE
* page
= NULL
;
653 page
= lHash
? HLPFILE_PageByHash(hlpfile
, lHash
) :
654 HLPFILE_Contents(hlpfile
);
655 if (page
) page
->file
->wRefCount
++;
656 return WINHELP_CreateHelpWindow(page
, wi
, nCmdShow
);
659 /***********************************************************************
661 * WINHELP_CreateHelpWindowByMap
663 BOOL
WINHELP_CreateHelpWindowByMap(HLPFILE
* hlpfile
, LONG lMap
,
664 HLPFILE_WINDOWINFO
* wi
, int nCmdShow
)
666 HLPFILE_PAGE
* page
= NULL
;
668 page
= HLPFILE_PageByMap(hlpfile
, lMap
);
669 if (page
) page
->file
->wRefCount
++;
670 return WINHELP_CreateHelpWindow(page
, wi
, nCmdShow
);
673 /***********************************************************************
675 * WINHELP_CreateHelpWindowByOffset
677 BOOL
WINHELP_CreateHelpWindowByOffset(HLPFILE
* hlpfile
, LONG lOffset
,
678 HLPFILE_WINDOWINFO
* wi
, int nCmdShow
)
680 HLPFILE_PAGE
* page
= NULL
;
682 page
= HLPFILE_PageByOffset(hlpfile
, lOffset
);
683 if (page
) page
->file
->wRefCount
++;
684 return WINHELP_CreateHelpWindow(page
, wi
, nCmdShow
);
687 /***********************************************************************
689 * WINHELP_MainWndProc
691 static LRESULT CALLBACK
WINHELP_MainWndProc(HWND hWnd
, UINT msg
, WPARAM wParam
, LPARAM lParam
)
694 WINHELP_BUTTON
*button
;
695 RECT rect
, button_box_rect
;
696 INT text_top
, curPos
, min
, max
, dy
, keyDelta
;
698 WINHELP_CheckPopup(msg
);
703 win
= (WINHELP_WINDOW
*) ((LPCREATESTRUCT
) lParam
)->lpCreateParams
;
704 SetWindowLong(hWnd
, 0, (LONG
) win
);
705 win
->hMainWnd
= hWnd
;
709 win
= (WINHELP_WINDOW
*) GetWindowLong(hWnd
, 0);
711 /* Create button box and text Window */
712 CreateWindow(BUTTON_BOX_WIN_CLASS_NAME
, "", WS_CHILD
| WS_VISIBLE
,
713 0, 0, 0, 0, hWnd
, 0, Globals
.hInstance
, win
);
715 CreateWindow(TEXT_WIN_CLASS_NAME
, "", WS_CHILD
| WS_VISIBLE
,
716 0, 0, 0, 0, hWnd
, 0, Globals
.hInstance
, win
);
720 case WM_WINDOWPOSCHANGED
:
721 win
= (WINHELP_WINDOW
*) GetWindowLong(hWnd
, 0);
722 GetClientRect(hWnd
, &rect
);
724 /* Update button box and text Window */
725 SetWindowPos(win
->hButtonBoxWnd
, HWND_TOP
,
727 rect
.right
- rect
.left
,
728 rect
.bottom
- rect
.top
, 0);
730 GetWindowRect(win
->hButtonBoxWnd
, &button_box_rect
);
731 text_top
= rect
.top
+ button_box_rect
.bottom
- button_box_rect
.top
;
733 SetWindowPos(win
->hTextWnd
, HWND_TOP
,
735 rect
.right
- rect
.left
,
736 rect
.bottom
- text_top
, 0);
741 Globals
.active_win
= win
= (WINHELP_WINDOW
*) GetWindowLong(hWnd
, 0);
745 case MNID_FILE_OPEN
: MACRO_FileOpen(); break;
746 case MNID_FILE_PRINT
: MACRO_Print(); break;
747 case MNID_FILE_SETUP
: MACRO_PrinterSetup(); break;
748 case MNID_FILE_EXIT
: MACRO_Exit(); break;
751 case MNID_EDIT_COPYDLG
: MACRO_CopyDialog(); break;
752 case MNID_EDIT_ANNOTATE
:MACRO_Annotate(); break;
755 case MNID_BKMK_DEFINE
: MACRO_BookmarkDefine(); break;
758 case MNID_HELP_HELPON
: MACRO_HelpOn(); break;
759 case MNID_HELP_HELPTOP
: MACRO_HelpOnTop(); break;
760 case MNID_HELP_ABOUT
: MACRO_About(); break;
761 case MNID_HELP_WINE
: ShellAbout(hWnd
, "WINE", "Help", 0); break;
765 for (button
= win
->first_button
; button
; button
= button
->next
)
766 if (wParam
== button
->wParam
) break;
768 MACRO_ExecuteMacro(button
->lpszMacro
);
770 WINHELP_MessageBoxIDS(STID_NOT_IMPLEMENTED
, 0x121, MB_OK
);
775 if (Globals
.hPopupWnd
) DestroyWindow(Globals
.hPopupWnd
);
778 return WINHELP_HandleCommand((HWND
)wParam
, lParam
);
787 keyDelta
= GetSystemMetrics(SM_CXVSCROLL
);
789 keyDelta
= -keyDelta
;
793 win
= (WINHELP_WINDOW
*) GetWindowLong(hWnd
, 0);
794 curPos
= GetScrollPos(win
->hTextWnd
, SB_VERT
);
795 GetScrollRange(win
->hTextWnd
, SB_VERT
, &min
, &max
);
799 GetClientRect(win
->hTextWnd
, &rect
);
800 keyDelta
= (rect
.bottom
- rect
.top
) / 2;
801 if (wParam
== VK_PRIOR
)
802 keyDelta
= -keyDelta
;
808 else if (curPos
< min
)
811 dy
= GetScrollPos(win
->hTextWnd
, SB_VERT
) - curPos
;
812 SetScrollPos(win
->hTextWnd
, SB_VERT
, curPos
, TRUE
);
813 ScrollWindow(win
->hTextWnd
, 0, dy
, NULL
, NULL
);
814 UpdateWindow(win
->hTextWnd
);
823 return DefWindowProc(hWnd
, msg
, wParam
, lParam
);
826 /***********************************************************************
828 * WINHELP_ButtonBoxWndProc
830 static LRESULT CALLBACK
WINHELP_ButtonBoxWndProc(HWND hWnd
, UINT msg
, WPARAM wParam
, LPARAM lParam
)
834 WINHELP_BUTTON
*button
;
838 WINHELP_CheckPopup(msg
);
843 win
= (WINHELP_WINDOW
*) ((LPCREATESTRUCT
) lParam
)->lpCreateParams
;
844 SetWindowLong(hWnd
, 0, (LONG
) win
);
845 win
->hButtonBoxWnd
= hWnd
;
848 case WM_WINDOWPOSCHANGING
:
849 winpos
= (WINDOWPOS
*) lParam
;
850 win
= (WINHELP_WINDOW
*) GetWindowLong(hWnd
, 0);
855 for (button
= win
->first_button
; button
; button
= button
->next
)
861 button
->hWnd
= CreateWindow(STRING_BUTTON
, button
->lpszName
,
862 WS_CHILD
| WS_VISIBLE
| BS_PUSHBUTTON
,
864 hWnd
, (HMENU
) button
->wParam
,
865 Globals
.hInstance
, 0);
867 if (Globals
.button_proc
== NULL
)
868 Globals
.button_proc
= (WNDPROC
) GetWindowLongPtr(button
->hWnd
, GWLP_WNDPROC
);
869 SetWindowLongPtr(button
->hWnd
, GWLP_WNDPROC
, (LONG_PTR
) WINHELP_ButtonWndProc
);
872 hDc
= GetDC(button
->hWnd
);
873 GetTextExtentPoint(hDc
, button
->lpszName
,
874 lstrlen(button
->lpszName
), &textsize
);
875 ReleaseDC(button
->hWnd
, hDc
);
877 button_size
.cx
= max(button_size
.cx
, textsize
.cx
+ BUTTON_CX
);
878 button_size
.cy
= max(button_size
.cy
, textsize
.cy
+ BUTTON_CY
);
883 for (button
= win
->first_button
; button
; button
= button
->next
)
885 SetWindowPos(button
->hWnd
, HWND_TOP
, x
, y
, button_size
.cx
, button_size
.cy
, 0);
887 if (x
+ 2 * button_size
.cx
<= winpos
->cx
)
890 x
= 0, y
+= button_size
.cy
;
892 winpos
->cy
= y
+ (x
? button_size
.cy
: 0);
896 SendMessage(GetParent(hWnd
), msg
, wParam
, lParam
);
907 return SendMessage(GetParent(hWnd
), msg
, wParam
, lParam
);
912 return DefWindowProc(hWnd
, msg
, wParam
, lParam
);
915 /***********************************************************************
917 * WINHELP_ButtonWndProc
919 static LRESULT CALLBACK
WINHELP_ButtonWndProc(HWND hWnd
, UINT msg
, WPARAM wParam
, LPARAM lParam
)
921 if (msg
== WM_KEYDOWN
)
930 return SendMessage(GetParent(hWnd
), msg
, wParam
, lParam
);
934 return CallWindowProc(Globals
.button_proc
, hWnd
, msg
, wParam
, lParam
);
937 /***********************************************************************
939 * WINHELP_TextWndProc
941 static LRESULT CALLBACK
WINHELP_TextWndProc(HWND hWnd
, UINT msg
, WPARAM wParam
, LPARAM lParam
)
945 WINHELP_LINE_PART
*part
;
954 if (msg
!= WM_LBUTTONDOWN
)
955 WINHELP_CheckPopup(msg
);
960 win
= (WINHELP_WINDOW
*) ((LPCREATESTRUCT
) lParam
)->lpCreateParams
;
961 SetWindowLong(hWnd
, 0, (LONG
) win
);
962 win
->hTextWnd
= hWnd
;
963 win
->hBrush
= CreateSolidBrush(win
->info
->sr_color
);
964 if (win
->info
->win_style
& WS_POPUP
) Globals
.hPopupWnd
= win
->hMainWnd
= hWnd
;
965 WINHELP_InitFonts(hWnd
);
969 win
= (WINHELP_WINDOW
*) GetWindowLong(hWnd
, 0);
971 /* Calculate vertical size and position of a popup window */
972 if (win
->info
->win_style
& WS_POPUP
)
975 RECT old_window_rect
;
976 RECT old_client_rect
;
977 SIZE old_window_size
;
978 SIZE old_client_size
;
979 SIZE new_client_size
;
980 SIZE new_window_size
;
982 GetWindowRect(hWnd
, &old_window_rect
);
983 origin
.x
= old_window_rect
.left
;
984 origin
.y
= old_window_rect
.top
;
985 old_window_size
.cx
= old_window_rect
.right
- old_window_rect
.left
;
986 old_window_size
.cy
= old_window_rect
.bottom
- old_window_rect
.top
;
988 GetClientRect(hWnd
, &old_client_rect
);
989 old_client_size
.cx
= old_client_rect
.right
- old_client_rect
.left
;
990 old_client_size
.cy
= old_client_rect
.bottom
- old_client_rect
.top
;
992 new_client_size
= old_client_size
;
993 WINHELP_SplitLines(hWnd
, &new_client_size
);
995 if (origin
.y
+ POPUP_YDISTANCE
+ new_client_size
.cy
<= GetSystemMetrics(SM_CYSCREEN
))
996 origin
.y
+= POPUP_YDISTANCE
;
998 origin
.y
-= POPUP_YDISTANCE
+ new_client_size
.cy
;
1000 new_window_size
.cx
= old_window_size
.cx
- old_client_size
.cx
+ new_client_size
.cx
;
1001 new_window_size
.cy
= old_window_size
.cy
- old_client_size
.cy
+ new_client_size
.cy
;
1004 CreateWindowEx(WS_EX_TOOLWINDOW
, SHADOW_WIN_CLASS_NAME
, "", WS_POPUP
,
1005 origin
.x
+ SHADOW_DX
, origin
.y
+ SHADOW_DY
,
1006 new_window_size
.cx
, new_window_size
.cy
,
1007 0, 0, Globals
.hInstance
, 0);
1009 SetWindowPos(hWnd
, HWND_TOP
, origin
.x
, origin
.y
,
1010 new_window_size
.cx
, new_window_size
.cy
,
1012 SetWindowPos(win
->hShadowWnd
, hWnd
, 0, 0, 0, 0, SWP_NOSIZE
| SWP_NOMOVE
| SWP_NOACTIVATE
);
1013 ShowWindow(win
->hShadowWnd
, SW_NORMAL
);
1014 SetActiveWindow(hWnd
);
1018 case WM_WINDOWPOSCHANGED
:
1019 winpos
= (WINDOWPOS
*) lParam
;
1021 if (!(winpos
->flags
& SWP_NOSIZE
)) WINHELP_SetupText(hWnd
);
1027 UINT scrollLines
= 3;
1028 int curPos
= GetScrollPos(hWnd
, SB_VERT
);
1031 GetScrollRange(hWnd
, SB_VERT
, &min
, &max
);
1033 SystemParametersInfo(SPI_GETWHEELSCROLLLINES
,0, &scrollLines
, 0);
1034 if (wParam
& (MK_SHIFT
| MK_CONTROL
))
1035 return DefWindowProc(hWnd
, msg
, wParam
, lParam
);
1036 wheelDelta
-= GET_WHEEL_DELTA_WPARAM(wParam
);
1037 if (abs(wheelDelta
) >= WHEEL_DELTA
&& scrollLines
) {
1040 curPos
+= wheelDelta
;
1043 else if (curPos
< min
)
1046 dy
= GetScrollPos(hWnd
, SB_VERT
) - curPos
;
1047 SetScrollPos(hWnd
, SB_VERT
, curPos
, TRUE
);
1048 ScrollWindow(hWnd
, 0, dy
, NULL
, NULL
);
1059 INT CurPos
= GetScrollPos(hWnd
, SB_VERT
);
1062 GetScrollRange(hWnd
, SB_VERT
, &Min
, &Max
);
1063 GetClientRect(hWnd
, &rect
);
1065 switch (wParam
& 0xffff)
1068 case SB_THUMBPOSITION
: CurPos
= wParam
>> 16; break;
1069 case SB_TOP
: CurPos
= Min
; break;
1070 case SB_BOTTOM
: CurPos
= Max
; break;
1071 case SB_PAGEUP
: CurPos
-= (rect
.bottom
- rect
.top
) / 2; break;
1072 case SB_PAGEDOWN
: CurPos
+= (rect
.bottom
- rect
.top
) / 2; break;
1073 case SB_LINEUP
: CurPos
-= GetSystemMetrics(SM_CXVSCROLL
); break;
1074 case SB_LINEDOWN
: CurPos
+= GetSystemMetrics(SM_CXVSCROLL
); break;
1075 default: update
= FALSE
;
1081 else if (CurPos
< Min
)
1083 dy
= GetScrollPos(hWnd
, SB_VERT
) - CurPos
;
1084 SetScrollPos(hWnd
, SB_VERT
, CurPos
, TRUE
);
1085 ScrollWindow(hWnd
, 0, dy
, NULL
, NULL
);
1092 hDc
= BeginPaint(hWnd
, &ps
);
1093 win
= (WINHELP_WINDOW
*) GetWindowLong(hWnd
, 0);
1094 scroll_pos
= GetScrollPos(hWnd
, SB_VERT
);
1096 /* No DPtoLP needed - MM_TEXT map mode */
1097 if (ps
.fErase
) FillRect(hDc
, &ps
.rcPaint
, win
->hBrush
);
1098 for (line
= win
->first_line
; line
; line
= line
->next
)
1100 for (part
= &line
->first_part
; part
; part
= part
->next
)
1102 switch (part
->cookie
)
1104 case hlp_line_part_text
:
1105 SelectObject(hDc
, part
->u
.text
.hFont
);
1106 SetTextColor(hDc
, part
->u
.text
.color
);
1107 SetBkColor(hDc
, win
->info
->sr_color
);
1108 TextOut(hDc
, part
->rect
.left
, part
->rect
.top
- scroll_pos
,
1109 part
->u
.text
.lpsText
, part
->u
.text
.wTextLen
);
1110 if (part
->u
.text
.wUnderline
)
1114 switch (part
->u
.text
.wUnderline
)
1116 case 1: /* simple */
1117 case 2: /* double */
1118 hPen
= CreatePen(PS_SOLID
, 1, part
->u
.text
.color
);
1120 case 3: /* dotted */
1121 hPen
= CreatePen(PS_DOT
, 1, part
->u
.text
.color
);
1124 WINE_FIXME("Unknow underline type\n");
1128 SelectObject(hDc
, hPen
);
1129 MoveToEx(hDc
, part
->rect
.left
, part
->rect
.bottom
- scroll_pos
- 1, NULL
);
1130 LineTo(hDc
, part
->rect
.right
, part
->rect
.bottom
- scroll_pos
- 1);
1131 if (part
->u
.text
.wUnderline
== 2)
1133 MoveToEx(hDc
, part
->rect
.left
, part
->rect
.bottom
- scroll_pos
+ 1, NULL
);
1134 LineTo(hDc
, part
->rect
.right
, part
->rect
.bottom
- scroll_pos
+ 1);
1139 case hlp_line_part_bitmap
:
1143 hMemDC
= CreateCompatibleDC(hDc
);
1144 SelectObject(hMemDC
, part
->u
.bitmap
.hBitmap
);
1145 BitBlt(hDc
, part
->rect
.left
, part
->rect
.top
- scroll_pos
,
1146 part
->rect
.right
- part
->rect
.left
, part
->rect
.bottom
- part
->rect
.top
,
1147 hMemDC
, 0, 0, SRCCOPY
);
1151 case hlp_line_part_metafile
:
1158 sz
.cx
= part
->rect
.right
- part
->rect
.left
;
1159 sz
.cy
= part
->rect
.bottom
- part
->rect
.top
;
1160 hMemDC
= CreateCompatibleDC(hDc
);
1161 hBitmap
= CreateCompatibleBitmap(hDc
, sz
.cx
, sz
.cy
);
1162 SelectObject(hMemDC
, hBitmap
);
1163 SelectObject(hMemDC
, win
->hBrush
);
1168 FillRect(hMemDC
, &rc
, win
->hBrush
);
1169 SetMapMode(hMemDC
, part
->u
.metafile
.mm
);
1170 SetWindowExtEx(hMemDC
, sz
.cx
, sz
.cy
, 0);
1171 SetViewportExtEx(hMemDC
, sz
.cx
, sz
.cy
, 0);
1172 SetWindowOrgEx(hMemDC
, 0, 0, 0);
1173 SetViewportOrgEx(hMemDC
, 0, 0, 0);
1174 PlayMetaFile(hMemDC
, part
->u
.metafile
.hMetaFile
);
1175 SetMapMode(hMemDC
, MM_TEXT
);
1176 SetWindowOrgEx(hMemDC
, 0, 0, 0);
1177 SetViewportOrgEx(hMemDC
, 0, 0, 0);
1178 BitBlt(hDc
, part
->rect
.left
, part
->rect
.top
- scroll_pos
,
1179 sz
.cx
, sz
.cy
, hMemDC
, 0, 0, SRCCOPY
);
1181 DeleteObject(hBitmap
);
1188 EndPaint(hWnd
, &ps
);
1192 win
= (WINHELP_WINDOW
*) GetWindowLong(hWnd
, 0);
1194 if (WINHELP_IsOverLink(win
, wParam
, lParam
))
1195 SetCursor(win
->hHandCur
); /* set to hand pointer cursor to indicate a link */
1197 SetCursor(win
->hArrowCur
); /* set to hand pointer cursor to indicate a link */
1201 case WM_LBUTTONDOWN
:
1202 win
= (WINHELP_WINDOW
*) GetWindowLong(hWnd
, 0);
1204 hPopupWnd
= Globals
.hPopupWnd
;
1205 Globals
.hPopupWnd
= 0;
1207 part
= WINHELP_IsOverLink(win
, wParam
, lParam
);
1211 HLPFILE_WINDOWINFO
* wi
;
1213 mouse
.x
= (short)LOWORD(lParam
);
1214 mouse
.y
= (short)HIWORD(lParam
);
1216 if (part
->link
) switch (part
->link
->cookie
)
1219 hlpfile
= WINHELP_LookupHelpFile(part
->link
->lpszString
);
1220 if (part
->link
->window
== -1)
1222 else if (part
->link
->window
< hlpfile
->numWindows
)
1223 wi
= &hlpfile
->windows
[part
->link
->window
];
1226 WINE_WARN("link to window %d/%d\n", part
->link
->window
, hlpfile
->numWindows
);
1229 WINHELP_CreateHelpWindowByHash(hlpfile
, part
->link
->lHash
, wi
,
1232 case hlp_link_popup
:
1233 hlpfile
= WINHELP_LookupHelpFile(part
->link
->lpszString
);
1234 if (hlpfile
) WINHELP_CreateHelpWindowByHash(hlpfile
, part
->link
->lHash
,
1235 WINHELP_GetPopupWindowInfo(hlpfile
, hWnd
, &mouse
),
1238 case hlp_link_macro
:
1239 MACRO_ExecuteMacro(part
->link
->lpszString
);
1242 WINE_FIXME("Unknown link cookie %d\n", part
->link
->cookie
);
1247 DestroyWindow(hPopupWnd
);
1251 win
= (WINHELP_WINDOW
*) GetWindowLong(hWnd
, 0);
1253 if (hWnd
== Globals
.hPopupWnd
) Globals
.hPopupWnd
= 0;
1255 bExit
= (Globals
.wVersion
>= 4 && !lstrcmpi(win
->lpszName
, "main"));
1257 WINHELP_DeleteWindow(win
);
1259 if (bExit
) MACRO_Exit();
1261 if (!Globals
.win_list
)
1266 return DefWindowProc(hWnd
, msg
, wParam
, lParam
);
1269 /******************************************************************
1270 * WINHELP_HistoryWndProc
1274 static LRESULT CALLBACK
WINHELP_HistoryWndProc(HWND hWnd
, UINT msg
, WPARAM wParam
, LPARAM lParam
)
1276 WINHELP_WINDOW
* win
;
1286 win
= (WINHELP_WINDOW
*)((LPCREATESTRUCT
)lParam
)->lpCreateParams
;
1287 SetWindowLong(hWnd
, 0, (LONG
)win
);
1288 win
->hHistoryWnd
= hWnd
;
1291 win
= (WINHELP_WINDOW
*) GetWindowLong(hWnd
, 0);
1293 GetTextMetrics(hDc
, &tm
);
1294 GetWindowRect(hWnd
, &r
);
1296 r
.right
= r
.left
+ 30 * tm
.tmAveCharWidth
;
1297 r
.bottom
= r
.top
+ (sizeof(win
->history
) / sizeof(win
->history
[0])) * tm
.tmHeight
;
1298 AdjustWindowRect(&r
, GetWindowLong(hWnd
, GWL_STYLE
), FALSE
);
1299 if (r
.left
< 0) {r
.right
-= r
.left
; r
.left
= 0;}
1300 if (r
.top
< 0) {r
.bottom
-= r
.top
; r
.top
= 0;}
1302 MoveWindow(hWnd
, r
.left
, r
.top
, r
.right
, r
.bottom
, TRUE
);
1303 ReleaseDC(hWnd
, hDc
);
1305 case WM_LBUTTONDOWN
:
1306 win
= (WINHELP_WINDOW
*) GetWindowLong(hWnd
, 0);
1308 GetTextMetrics(hDc
, &tm
);
1309 i
= HIWORD(lParam
) / tm
.tmHeight
;
1310 if (i
< win
->histIndex
)
1311 WINHELP_CreateHelpWindow(win
->history
[i
], win
->info
, SW_SHOW
);
1312 ReleaseDC(hWnd
, hDc
);
1315 hDc
= BeginPaint(hWnd
, &ps
);
1316 win
= (WINHELP_WINDOW
*) GetWindowLong(hWnd
, 0);
1317 GetTextMetrics(hDc
, &tm
);
1319 for (i
= 0; i
< win
->histIndex
; i
++)
1321 TextOut(hDc
, 0, i
* tm
.tmHeight
, win
->history
[i
]->lpszTitle
,
1322 strlen(win
->history
[i
]->lpszTitle
));
1324 EndPaint(hWnd
, &ps
);
1327 win
= (WINHELP_WINDOW
*) GetWindowLong(hWnd
, 0);
1328 if (hWnd
== win
->hHistoryWnd
)
1329 win
->hHistoryWnd
= 0;
1332 return DefWindowProc(hWnd
, msg
, wParam
, lParam
);
1335 /***********************************************************************
1337 * WINHELP_ShadowWndProc
1339 static LRESULT CALLBACK
WINHELP_ShadowWndProc(HWND hWnd
, UINT msg
, WPARAM wParam
, LPARAM lParam
)
1341 WINHELP_CheckPopup(msg
);
1342 return DefWindowProc(hWnd
, msg
, wParam
, lParam
);
1345 /***********************************************************************
1349 static void WINHELP_SetupText(HWND hWnd
)
1351 HDC hDc
= GetDC(hWnd
);
1355 ShowScrollBar(hWnd
, SB_VERT
, FALSE
);
1356 if (!WINHELP_SplitLines(hWnd
, NULL
))
1358 ShowScrollBar(hWnd
, SB_VERT
, TRUE
);
1359 GetClientRect(hWnd
, &rect
);
1361 WINHELP_SplitLines(hWnd
, &newsize
);
1362 SetScrollRange(hWnd
, SB_VERT
, 0, rect
.top
+ newsize
.cy
- rect
.bottom
, TRUE
);
1366 SetScrollPos(hWnd
, SB_VERT
, 0, FALSE
);
1367 SetScrollRange(hWnd
, SB_VERT
, 0, 0, FALSE
);
1370 ReleaseDC(hWnd
, hDc
);
1373 /***********************************************************************
1375 * WINHELP_AppendText
1377 static BOOL
WINHELP_AppendText(WINHELP_LINE
***linep
, WINHELP_LINE_PART
***partp
,
1378 LPSIZE space
, LPSIZE textsize
,
1379 INT
*line_ascent
, INT ascent
,
1380 LPCSTR text
, UINT textlen
,
1381 HFONT font
, COLORREF color
, HLPFILE_LINK
*link
,
1385 WINHELP_LINE_PART
*part
;
1388 if (!*partp
) /* New line */
1390 *line_ascent
= ascent
;
1392 line
= HeapAlloc(GetProcessHeap(), 0,
1393 sizeof(WINHELP_LINE
) + textlen
);
1394 if (!line
) return FALSE
;
1397 part
= &line
->first_part
;
1398 ptr
= (char*)line
+ sizeof(WINHELP_LINE
);
1400 line
->rect
.top
= (**linep
? (**linep
)->rect
.bottom
: 0) + space
->cy
;
1401 line
->rect
.bottom
= line
->rect
.top
;
1402 line
->rect
.left
= space
->cx
;
1403 line
->rect
.right
= space
->cx
;
1405 if (**linep
) *linep
= &(**linep
)->next
;
1409 else /* Same line */
1413 if (*line_ascent
< ascent
)
1415 WINHELP_LINE_PART
*p
;
1416 for (p
= &line
->first_part
; p
; p
= p
->next
)
1418 p
->rect
.top
+= ascent
- *line_ascent
;
1419 p
->rect
.bottom
+= ascent
- *line_ascent
;
1421 line
->rect
.bottom
+= ascent
- *line_ascent
;
1422 *line_ascent
= ascent
;
1425 part
= HeapAlloc(GetProcessHeap(), 0,
1426 sizeof(WINHELP_LINE_PART
) + textlen
);
1427 if (!part
) return FALSE
;
1429 ptr
= (char*)part
+ sizeof(WINHELP_LINE_PART
);
1432 memcpy(ptr
, text
, textlen
);
1433 part
->cookie
= hlp_line_part_text
;
1434 part
->rect
.left
= line
->rect
.right
+ (*partp
? space
->cx
: 0);
1435 part
->rect
.right
= part
->rect
.left
+ textsize
->cx
;
1436 line
->rect
.right
= part
->rect
.right
;
1438 ((*partp
) ? line
->rect
.top
: line
->rect
.bottom
) + *line_ascent
- ascent
;
1439 part
->rect
.bottom
= part
->rect
.top
+ textsize
->cy
;
1440 line
->rect
.bottom
= max(line
->rect
.bottom
, part
->rect
.bottom
);
1441 part
->u
.text
.lpsText
= ptr
;
1442 part
->u
.text
.wTextLen
= textlen
;
1443 part
->u
.text
.hFont
= font
;
1444 part
->u
.text
.color
= color
;
1445 part
->u
.text
.wUnderline
= underline
;
1447 WINE_TRACE("Appended text '%*.*s'[%d] @ (%d,%d-%d,%d)\n",
1448 part
->u
.text
.wTextLen
,
1449 part
->u
.text
.wTextLen
,
1450 part
->u
.text
.lpsText
,
1451 part
->u
.text
.wTextLen
,
1452 part
->rect
.left
, part
->rect
.top
, part
->rect
.right
, part
->rect
.bottom
);
1455 if (link
) link
->wRefCount
++;
1458 *partp
= &part
->next
;
1465 /***********************************************************************
1467 * WINHELP_AppendGfxObject
1469 static WINHELP_LINE_PART
* WINHELP_AppendGfxObject(WINHELP_LINE
***linep
, WINHELP_LINE_PART
***partp
,
1470 LPSIZE space
, LPSIZE gfxSize
,
1471 HLPFILE_LINK
*link
, unsigned pos
)
1474 WINHELP_LINE_PART
*part
;
1477 if (!*partp
|| pos
== 1) /* New line */
1479 line
= HeapAlloc(GetProcessHeap(), 0, sizeof(WINHELP_LINE
));
1480 if (!line
) return NULL
;
1483 part
= &line
->first_part
;
1485 line
->rect
.top
= (**linep
? (**linep
)->rect
.bottom
: 0) + space
->cy
;
1486 line
->rect
.bottom
= line
->rect
.top
;
1487 line
->rect
.left
= space
->cx
;
1488 line
->rect
.right
= space
->cx
;
1490 if (**linep
) *linep
= &(**linep
)->next
;
1493 ptr
= (char*)line
+ sizeof(WINHELP_LINE
);
1495 else /* Same line */
1497 if (pos
== 2) WINE_FIXME("Left alignment not handled\n");
1500 part
= HeapAlloc(GetProcessHeap(), 0, sizeof(WINHELP_LINE_PART
));
1501 if (!part
) return NULL
;
1503 ptr
= (char*)part
+ sizeof(WINHELP_LINE_PART
);
1506 /* part->cookie should be set by caller (image or metafile) */
1507 part
->rect
.left
= line
->rect
.right
+ (*partp
? space
->cx
: 0);
1508 part
->rect
.right
= part
->rect
.left
+ gfxSize
->cx
;
1509 line
->rect
.right
= part
->rect
.right
;
1510 part
->rect
.top
= (*partp
) ? line
->rect
.top
: line
->rect
.bottom
;
1511 part
->rect
.bottom
= part
->rect
.top
+ gfxSize
->cy
;
1512 line
->rect
.bottom
= max(line
->rect
.bottom
, part
->rect
.bottom
);
1514 WINE_TRACE("Appended gfx @ (%d,%d-%d,%d)\n",
1515 part
->rect
.left
, part
->rect
.top
, part
->rect
.right
, part
->rect
.bottom
);
1518 if (link
) link
->wRefCount
++;
1521 *partp
= &part
->next
;
1529 /***********************************************************************
1531 * WINHELP_SplitLines
1533 static BOOL
WINHELP_SplitLines(HWND hWnd
, LPSIZE newsize
)
1535 WINHELP_WINDOW
*win
= (WINHELP_WINDOW
*) GetWindowLong(hWnd
, 0);
1536 HLPFILE_PARAGRAPH
*p
;
1537 WINHELP_LINE
**line
= &win
->first_line
;
1538 WINHELP_LINE_PART
**part
= 0;
1539 INT line_ascent
= 0;
1544 if (newsize
) newsize
->cx
= newsize
->cy
= 0;
1546 if (!win
->page
) return TRUE
;
1548 WINHELP_DeleteLines(win
);
1550 GetClientRect(hWnd
, &rect
);
1552 rect
.top
+= INTERNAL_BORDER_WIDTH
;
1553 rect
.left
+= INTERNAL_BORDER_WIDTH
;
1554 rect
.right
-= INTERNAL_BORDER_WIDTH
;
1555 rect
.bottom
-= INTERNAL_BORDER_WIDTH
;
1557 space
.cy
= rect
.top
;
1558 space
.cx
= rect
.left
;
1562 for (p
= win
->page
->first_paragraph
; p
; p
= p
->next
)
1566 case para_normal_text
:
1567 case para_debug_text
:
1570 SIZE textsize
= {0, 0};
1571 LPCSTR text
= p
->u
.text
.lpszText
;
1573 UINT len
= strlen(text
);
1574 unsigned underline
= 0;
1577 COLORREF color
= RGB(0, 0, 0);
1579 if (p
->u
.text
.wFont
< win
->page
->file
->numFonts
)
1581 HLPFILE
* hlpfile
= win
->page
->file
;
1583 if (!hlpfile
->fonts
[p
->u
.text
.wFont
].hFont
)
1584 hlpfile
->fonts
[p
->u
.text
.wFont
].hFont
= CreateFontIndirect(&hlpfile
->fonts
[p
->u
.text
.wFont
].LogFont
);
1585 hFont
= hlpfile
->fonts
[p
->u
.text
.wFont
].hFont
;
1586 color
= hlpfile
->fonts
[p
->u
.text
.wFont
].color
;
1590 UINT wFont
= (p
->u
.text
.wFont
< win
->fonts_len
) ? p
->u
.text
.wFont
: 0;
1592 hFont
= win
->fonts
[wFont
];
1595 if (p
->link
&& p
->link
->bClrChange
)
1597 underline
= (p
->link
->cookie
== hlp_link_popup
) ? 3 : 1;
1598 color
= RGB(0, 0x80, 0);
1600 if (p
->cookie
== para_debug_text
) color
= RGB(0xff, 0, 0);
1602 SelectObject(hDc
, hFont
);
1604 GetTextMetrics(hDc
, &tm
);
1606 if (p
->u
.text
.wIndent
)
1608 indent
= p
->u
.text
.wIndent
* 5 * tm
.tmAveCharWidth
;
1610 space
.cx
= rect
.left
+ indent
- 2 * tm
.tmAveCharWidth
;
1613 if (p
->u
.text
.wVSpace
)
1616 space
.cx
= rect
.left
+ indent
;
1617 space
.cy
+= (p
->u
.text
.wVSpace
- 1) * tm
.tmHeight
;
1620 if (p
->u
.text
.wHSpace
)
1622 space
.cx
+= p
->u
.text
.wHSpace
* 2 * tm
.tmAveCharWidth
;
1625 WINE_TRACE("splitting text %s\n", text
);
1629 INT free_width
= rect
.right
- (part
? (*line
)->rect
.right
: rect
.left
) - space
.cx
;
1630 UINT low
= 0, curr
= len
, high
= len
, textlen
= 0;
1636 GetTextExtentPoint(hDc
, text
, curr
, &textsize
);
1638 if (textsize
.cx
<= free_width
) low
= curr
;
1641 if (high
<= low
+ 1) break;
1643 if (textsize
.cx
) curr
= (curr
* free_width
) / textsize
.cx
;
1644 if (curr
<= low
) curr
= low
+ 1;
1645 else if (curr
>= high
) curr
= high
- 1;
1648 while (textlen
&& text
[textlen
] && text
[textlen
] != ' ') textlen
--;
1650 if (!part
&& !textlen
) textlen
= max(low
, 1);
1652 if (free_width
<= 0 || !textlen
)
1655 space
.cx
= rect
.left
+ indent
;
1656 space
.cx
= min(space
.cx
, rect
.right
- rect
.left
- 1);
1660 WINE_TRACE("\t => %d %*s\n", textlen
, textlen
, text
);
1662 if (!WINHELP_AppendText(&line
, &part
, &space
, &textsize
,
1663 &line_ascent
, tm
.tmAscent
,
1664 text
, textlen
, hFont
, color
, p
->link
, underline
) ||
1665 (!newsize
&& (*line
)->rect
.bottom
> rect
.bottom
))
1667 ReleaseDC(hWnd
, hDc
);
1672 newsize
->cx
= max(newsize
->cx
, (*line
)->rect
.right
+ INTERNAL_BORDER_WIDTH
);
1676 if (text
[0] == ' ') text
++, len
--;
1685 WINHELP_LINE_PART
* ref_part
;
1687 if (p
->u
.gfx
.pos
& 0x8000)
1689 space
.cx
= rect
.left
;
1691 space
.cy
+= (*line
)->rect
.bottom
- (*line
)->rect
.top
;
1695 if (p
->cookie
== para_bitmap
)
1699 GetObject(p
->u
.gfx
.u
.bmp
.hBitmap
, sizeof(dibs
), &dibs
);
1700 gfxSize
.cx
= dibs
.dsBm
.bmWidth
;
1701 gfxSize
.cy
= dibs
.dsBm
.bmHeight
;
1705 LPMETAFILEPICT lpmfp
= &p
->u
.gfx
.u
.mfp
;
1706 if (lpmfp
->mm
== MM_ANISOTROPIC
|| lpmfp
->mm
== MM_ISOTROPIC
)
1708 gfxSize
.cx
= MulDiv(lpmfp
->xExt
, GetDeviceCaps(hDc
, HORZRES
),
1709 100*GetDeviceCaps(hDc
, HORZSIZE
));
1710 gfxSize
.cy
= MulDiv(lpmfp
->yExt
, GetDeviceCaps(hDc
, VERTRES
),
1711 100*GetDeviceCaps(hDc
, VERTSIZE
));
1715 gfxSize
.cx
= lpmfp
->xExt
;
1716 gfxSize
.cy
= lpmfp
->yExt
;
1720 free_width
= rect
.right
- ((part
&& *line
) ? (*line
)->rect
.right
: rect
.left
) - space
.cx
;
1721 if (free_width
<= 0)
1724 space
.cx
= rect
.left
;
1725 space
.cx
= min(space
.cx
, rect
.right
- rect
.left
- 1);
1727 ref_part
= WINHELP_AppendGfxObject(&line
, &part
, &space
, &gfxSize
,
1728 p
->link
, p
->u
.gfx
.pos
);
1729 if (!ref_part
|| (!newsize
&& (*line
)->rect
.bottom
> rect
.bottom
))
1733 if (p
->cookie
== para_bitmap
)
1735 ref_part
->cookie
= hlp_line_part_bitmap
;
1736 ref_part
->u
.bitmap
.hBitmap
= p
->u
.gfx
.u
.bmp
.hBitmap
;
1740 ref_part
->cookie
= hlp_line_part_metafile
;
1741 ref_part
->u
.metafile
.hMetaFile
= p
->u
.gfx
.u
.mfp
.hMF
;
1742 ref_part
->u
.metafile
.mm
= p
->u
.gfx
.u
.mfp
.mm
;
1750 newsize
->cy
= (*line
)->rect
.bottom
+ INTERNAL_BORDER_WIDTH
;
1752 ReleaseDC(hWnd
, hDc
);
1756 /***********************************************************************
1758 * WINHELP_CheckPopup
1760 static void WINHELP_CheckPopup(UINT msg
)
1762 if (!Globals
.hPopupWnd
) return;
1767 case WM_LBUTTONDOWN
:
1768 case WM_MBUTTONDOWN
:
1769 case WM_RBUTTONDOWN
:
1770 case WM_NCLBUTTONDOWN
:
1771 case WM_NCMBUTTONDOWN
:
1772 case WM_NCRBUTTONDOWN
:
1773 DestroyWindow(Globals
.hPopupWnd
);
1774 Globals
.hPopupWnd
= 0;
1778 /***********************************************************************
1780 * WINHELP_DeleteLines
1782 static void WINHELP_DeleteLines(WINHELP_WINDOW
*win
)
1784 WINHELP_LINE
*line
, *next_line
;
1785 WINHELP_LINE_PART
*part
, *next_part
;
1786 for (line
= win
->first_line
; line
; line
= next_line
)
1788 next_line
= line
->next
;
1789 for (part
= &line
->first_part
; part
; part
= next_part
)
1791 next_part
= part
->next
;
1792 HLPFILE_FreeLink(part
->link
);
1793 HeapFree(GetProcessHeap(), 0, part
);
1796 win
->first_line
= 0;
1799 /***********************************************************************
1801 * WINHELP_DeleteWindow
1803 static void WINHELP_DeleteWindow(WINHELP_WINDOW
* win
)
1810 for (w
= &Globals
.win_list
; *w
; w
= &(*w
)->next
)
1819 if (Globals
.active_win
== win
)
1821 Globals
.active_win
= Globals
.win_list
;
1822 if (Globals
.win_list
)
1823 SetActiveWindow(Globals
.win_list
->hMainWnd
);
1826 for (b
= win
->first_button
; b
; b
= bp
)
1828 DestroyWindow(b
->hWnd
);
1830 HeapFree(GetProcessHeap(), 0, b
);
1833 if (win
->hShadowWnd
) DestroyWindow(win
->hShadowWnd
);
1834 if (win
->hHistoryWnd
) DestroyWindow(win
->hHistoryWnd
);
1836 DeleteObject(win
->hBrush
);
1838 for (i
= 0; i
< win
->histIndex
; i
++)
1840 HLPFILE_FreeHlpFile(win
->history
[i
]->file
);
1843 for (i
= 0; i
< win
->backIndex
; i
++)
1844 HLPFILE_FreeHlpFile(win
->back
[i
]->file
);
1846 if (win
->page
) HLPFILE_FreeHlpFile(win
->page
->file
);
1847 WINHELP_DeleteLines(win
);
1848 HeapFree(GetProcessHeap(), 0, win
);
1851 /***********************************************************************
1855 static void WINHELP_InitFonts(HWND hWnd
)
1857 WINHELP_WINDOW
*win
= (WINHELP_WINDOW
*) GetWindowLong(hWnd
, 0);
1858 LOGFONT logfontlist
[] = {
1859 {-10, 0, 0, 0, 400, 0, 0, 0, DEFAULT_CHARSET
, 0, 0, 0, 32, "Helv"},
1860 {-12, 0, 0, 0, 700, 0, 0, 0, DEFAULT_CHARSET
, 0, 0, 0, 32, "Helv"},
1861 {-12, 0, 0, 0, 700, 0, 0, 0, DEFAULT_CHARSET
, 0, 0, 0, 32, "Helv"},
1862 {-12, 0, 0, 0, 400, 0, 0, 0, DEFAULT_CHARSET
, 0, 0, 0, 32, "Helv"},
1863 {-12, 0, 0, 0, 700, 0, 0, 0, DEFAULT_CHARSET
, 0, 0, 0, 32, "Helv"},
1864 {-10, 0, 0, 0, 700, 0, 0, 0, DEFAULT_CHARSET
, 0, 0, 0, 32, "Helv"},
1865 { -8, 0, 0, 0, 400, 0, 0, 0, DEFAULT_CHARSET
, 0, 0, 0, 32, "Helv"}};
1866 #define FONTS_LEN (sizeof(logfontlist)/sizeof(*logfontlist))
1868 static HFONT fonts
[FONTS_LEN
];
1869 static BOOL init
= 0;
1871 win
->fonts_len
= FONTS_LEN
;
1878 for (i
= 0; i
< FONTS_LEN
; i
++)
1880 fonts
[i
] = CreateFontIndirect(&logfontlist
[i
]);
1887 /***********************************************************************
1889 * WINHELP_MessageBoxIDS
1891 INT
WINHELP_MessageBoxIDS(UINT ids_text
, UINT ids_title
, WORD type
)
1893 CHAR text
[MAX_STRING_LEN
];
1894 CHAR title
[MAX_STRING_LEN
];
1896 LoadString(Globals
.hInstance
, ids_text
, text
, sizeof(text
));
1897 LoadString(Globals
.hInstance
, ids_title
, title
, sizeof(title
));
1899 return MessageBox(0, text
, title
, type
);
1902 /***********************************************************************
1904 * MAIN_MessageBoxIDS_s
1906 INT
WINHELP_MessageBoxIDS_s(UINT ids_text
, LPCSTR str
, UINT ids_title
, WORD type
)
1908 CHAR text
[MAX_STRING_LEN
];
1909 CHAR title
[MAX_STRING_LEN
];
1910 CHAR newtext
[MAX_STRING_LEN
+ MAX_PATH
];
1912 LoadString(Globals
.hInstance
, ids_text
, text
, sizeof(text
));
1913 LoadString(Globals
.hInstance
, ids_title
, title
, sizeof(title
));
1914 wsprintf(newtext
, text
, str
);
1916 return MessageBox(0, newtext
, title
, type
);
1919 /******************************************************************
1920 * WINHELP_IsOverLink
1924 WINHELP_LINE_PART
* WINHELP_IsOverLink(WINHELP_WINDOW
* win
, WPARAM wParam
, LPARAM lParam
)
1928 WINHELP_LINE_PART
*part
;
1929 int scroll_pos
= GetScrollPos(win
->hTextWnd
, SB_VERT
);
1931 mouse
.x
= LOWORD(lParam
);
1932 mouse
.y
= HIWORD(lParam
);
1933 for (line
= win
->first_line
; line
; line
= line
->next
)
1935 for (part
= &line
->first_part
; part
; part
= part
->next
)
1938 part
->link
->lpszString
&&
1939 part
->rect
.left
<= mouse
.x
&&
1940 part
->rect
.right
>= mouse
.x
&&
1941 part
->rect
.top
<= mouse
.y
+ scroll_pos
&&
1942 part
->rect
.bottom
>= mouse
.y
+ scroll_pos
)
1952 /**************************************************************************
1955 * HLPFILE_BPTreeCallback enumeration function for '|KWBTREE' internal file.
1958 static void cb_KWBTree(void *p
, void **next
, void *cookie
)
1960 HWND hListWnd
= (HWND
)cookie
;
1963 WINE_TRACE("Adding '%s' to search list\n", (char *)p
);
1964 SendMessage(hListWnd
, LB_INSERTSTRING
, -1, (LPARAM
)p
);
1965 count
= SendMessage(hListWnd
, LB_GETCOUNT
, 0, 0);
1966 SendMessage(hListWnd
, LB_SETITEMDATA
, count
-1, (LPARAM
)p
);
1967 *next
= (char*)p
+ strlen((char*)p
) + 7;
1970 /**************************************************************************
1971 * WINHELP_IndexDlgProc
1973 * Index dialog callback function.
1975 * nResult passed to EndDialog:
1977 * >1: valid offset value +2.
1978 * EndDialog itself can return 0 (error).
1980 INT_PTR CALLBACK
WINHELP_SearchDlgProc(HWND hWnd
, UINT msg
, WPARAM wParam
, LPARAM lParam
)
1982 static HLPFILE
*file
;
1989 file
= (HLPFILE
*)lParam
;
1990 HLPFILE_BPTreeEnum(file
->kwbtree
, cb_KWBTree
,
1991 GetDlgItem(hWnd
, IDC_INDEXLIST
));
1994 switch (LOWORD(wParam
))
1997 sel
= SendDlgItemMessage(hWnd
, IDC_INDEXLIST
, LB_GETCURSEL
, 0, 0);
2003 p
= (BYTE
*)SendDlgItemMessage(hWnd
, IDC_INDEXLIST
,
2004 LB_GETITEMDATA
, sel
, 0);
2005 count
= *(short*)((char *)p
+ strlen((char *)p
) + 1);
2008 MessageBox(hWnd
, "count > 1 not supported yet", "Error", MB_OK
| MB_ICONSTOP
);
2011 offset
= *(ULONG
*)((char *)p
+ strlen((char *)p
) + 3);
2012 offset
= *(long*)(file
->kwdata
+ offset
+ 9);
2013 if (offset
== 0xFFFFFFFF)
2015 MessageBox(hWnd
, "macro keywords not supported yet", "Error", MB_OK
| MB_ICONSTOP
);
2022 EndDialog(hWnd
, offset
);
2033 /**************************************************************************
2034 * WINHELP_CreateIndexWindow
2036 * Displays a dialog with keywords of current help file.
2039 BOOL
WINHELP_CreateIndexWindow(void)
2044 if (Globals
.active_win
&& Globals
.active_win
->page
&& Globals
.active_win
->page
->file
)
2045 hlpfile
= Globals
.active_win
->page
->file
;
2049 if (hlpfile
->kwbtree
== NULL
)
2051 WINE_TRACE("No index provided\n");
2055 ret
= DialogBoxParam(Globals
.hInstance
, MAKEINTRESOURCE(IDD_INDEX
),
2056 Globals
.active_win
->hMainWnd
, WINHELP_SearchDlgProc
,
2061 WINE_TRACE("got %d as an offset\n", ret
);
2062 WINHELP_CreateHelpWindowByOffset(hlpfile
, ret
, Globals
.active_win
->info
, SW_NORMAL
);