4 * Copyright 1996 Ulrich Schmid
5 * Copyright 2002 Sylvain Petreolle <spetreolle@yahoo.fr>
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
23 #define MAX_LANGUAGE_NUMBER 255
24 #define MAX_STRING_LEN 255
26 #define INTERNAL_BORDER_WIDTH 5
27 #define POPUP_YDISTANCE 20
41 #include "winhelp_res.h"
43 typedef struct tagHelpLinePart
46 enum {hlp_line_part_text, hlp_line_part_bitmap, hlp_line_part_metafile} cookie;
55 WORD wUnderline; /* 0 None, 1 simple, 2 double, 3 dotted */
69 struct tagHelpLinePart *next;
72 typedef struct tagHelpLine
75 WINHELP_LINE_PART first_part;
76 struct tagHelpLine* next;
79 typedef struct tagHelpButton
91 struct tagHelpButton*next;
97 HLPFILE_WINDOWINFO* wininfo;
101 typedef struct tagPageSet
103 /* FIXME: for now it's a fixed size */
104 WINHELP_WNDPAGE set[40];
108 typedef struct tagWinHelp
112 WINHELP_BUTTON* first_button;
114 WINHELP_LINE* first_line;
128 HLPFILE_WINDOWINFO* info;
130 WINHELP_PAGESET back;
132 struct tagWinHelp* next;
135 #define DC_NOMSG 0x00000000
136 #define DC_MINMAX 0x00000001
137 #define DC_INITTERM 0x00000002
138 #define DC_JUMP 0x00000004
139 #define DC_ACTIVATE 0x00000008
140 #define DC_CALLBACKS 0x00000010
148 #define DW_STARTJUMP 6
151 #define DW_ACTIVATE 9
152 #define DW_CALLBACKS 10
154 typedef long (CALLBACK *WINHELP_LDLLHandler)(WORD, LONG, LONG);
156 typedef struct tagDll
160 WINHELP_LDLLHandler handler;
171 WINHELP_WINDOW* active_win;
172 WINHELP_WINDOW* win_list;
175 WINHELP_PAGESET history;
178 extern WINHELP_GLOBALS Globals;
179 extern FARPROC Callbacks[];
181 BOOL WINHELP_CreateHelpWindow(WINHELP_WNDPAGE*, int, BOOL);
182 BOOL WINHELP_OpenHelpWindow(HLPFILE_PAGE* (*)(HLPFILE*, LONG, ULONG*),
183 HLPFILE*, LONG, HLPFILE_WINDOWINFO*, int);
184 BOOL WINHELP_GetOpenFileName(LPSTR, int);
185 BOOL WINHELP_CreateIndexWindow(void);
186 void WINHELP_DeleteBackSet(WINHELP_WINDOW*);
187 INT WINHELP_MessageBoxIDS_s(UINT, LPCSTR, UINT, WORD);
188 HLPFILE* WINHELP_LookupHelpFile(LPCSTR lpszFile);
189 HLPFILE_WINDOWINFO* WINHELP_GetWindowInfo(HLPFILE* hlpfile, LPCSTR name);
190 void WINHELP_LayoutMainWindow(WINHELP_WINDOW* win);
192 extern const char MAIN_WIN_CLASS_NAME[];
193 extern const char BUTTON_BOX_WIN_CLASS_NAME[];
194 extern const char TEXT_WIN_CLASS_NAME[];
195 extern const char SHADOW_WIN_CLASS_NAME[];
196 extern const char HISTORY_WIN_CLASS_NAME[];
197 extern const char STRING_BUTTON[];
198 extern const char STRING_MENU_Xx[];
199 extern const char STRING_DIALOG_TEST[];
203 #define WH_FIRST_BUTTON 500