]>
Commit | Line | Data |
---|---|---|
8ec2b484 HH |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: helpfrm.cpp | |
3 | // Purpose: wxHtmlHelpFrame | |
d5bb85a0 | 4 | // Notes: Based on htmlhelp.cpp, implementing a monolithic |
8ec2b484 HH |
5 | // HTML Help controller class, by Vaclav Slavik |
6 | // Author: Harm van der Heijden and Vaclav Slavik | |
69941f05 | 7 | // RCS-ID: $Id$ |
8ec2b484 HH |
8 | // Copyright: (c) Harm van der Heijden and Vaclav Slavik |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifdef __GNUG__ | |
69941f05 | 13 | #pragma implementation |
8ec2b484 HH |
14 | #endif |
15 | ||
c32bfc10 VS |
16 | // For compilers that support precompilation, includes "wx.h" |
17 | ||
8ec2b484 HH |
18 | #include "wx/wxprec.h" |
19 | ||
20 | #ifdef __BORLANDC__ | |
21 | #pragma hdrstop | |
22 | #endif | |
23 | ||
3379ed37 | 24 | #if wxUSE_WXHTML_HELP |
07b8d7ec | 25 | |
8ec2b484 | 26 | #ifndef WXPRECOMP |
07b8d7ec VZ |
27 | #include "wx/intl.h" |
28 | #include "wx/log.h" | |
29 | ||
30 | #include "wx/object.h" | |
31 | #include "wx/layout.h" | |
32 | #include "wx/sizer.h" | |
33 | ||
34 | #include "wx/bmpbuttn.h" | |
35 | #include "wx/statbox.h" | |
36 | #include "wx/radiobox.h" | |
37 | #endif // WXPRECOMP | |
8ec2b484 HH |
38 | |
39 | #include "wx/html/helpfrm.h" | |
b4414c1f | 40 | #include "wx/html/helpctrl.h" |
618a5e38 | 41 | #include "wx/textctrl.h" |
8ec2b484 HH |
42 | #include "wx/notebook.h" |
43 | #include "wx/imaglist.h" | |
44 | #include "wx/treectrl.h" | |
45 | #include "wx/tokenzr.h" | |
46 | #include "wx/wfstream.h" | |
47 | #include "wx/html/htmlwin.h" | |
48 | #include "wx/busyinfo.h" | |
49 | #include "wx/progdlg.h" | |
2bd5bbc9 | 50 | #include "wx/toolbar.h" |
83efdf33 | 51 | #include "wx/fontenum.h" |
0646614d VS |
52 | #include "wx/stream.h" |
53 | #include "wx/filedlg.h" | |
8ec2b484 HH |
54 | |
55 | // Bitmaps: | |
56 | ||
57 | #ifndef __WXMSW__ | |
295272bd VZ |
58 | // XPM hack: make the arrays const |
59 | #define static static const | |
60 | ||
61 | #include "bitmaps/wpanel.xpm" | |
62 | #include "bitmaps/wback.xpm" | |
63 | #include "bitmaps/wforward.xpm" | |
64 | #include "bitmaps/wbook.xpm" | |
65 | #include "bitmaps/woptions.xpm" | |
66 | #include "bitmaps/wfolder.xpm" | |
67 | #include "bitmaps/wpage.xpm" | |
68 | #include "bitmaps/whelp.xpm" | |
69 | #include "bitmaps/whlproot.xpm" | |
70 | #include "bitmaps/wbkadd.xpm" | |
71 | #include "bitmaps/wbkdel.xpm" | |
72 | #include "bitmaps/wup.xpm" | |
73 | #include "bitmaps/wupnode.xpm" | |
74 | #include "bitmaps/wdown.xpm" | |
75 | #include "bitmaps/wopen.xpm" | |
76 | #include "bitmaps/wprint.xpm" | |
77 | ||
78 | #undef static | |
79 | #endif // __WXMSW__ | |
8ec2b484 | 80 | |
f0b6a33f VS |
81 | // what is considered "small index"? |
82 | #define INDEX_IS_SMALL 100 | |
83 | ||
9806a47c JS |
84 | /* Motif defines this as a macro */ |
85 | #ifdef Below | |
86 | #undef Below | |
87 | #endif | |
f0b6a33f | 88 | |
8ec2b484 | 89 | //-------------------------------------------------------------------------- |
382e6efe | 90 | // wxHtmlHelpTreeItemData (private) |
8ec2b484 HH |
91 | //-------------------------------------------------------------------------- |
92 | ||
93 | class wxHtmlHelpTreeItemData : public wxTreeItemData | |
94 | { | |
0646614d | 95 | public: |
da4cc40c DW |
96 | #if defined(__VISAGECPP__) |
97 | // VA needs a default ctor for some reason.... | |
98 | wxHtmlHelpTreeItemData() : wxTreeItemData() | |
99 | { m_Id = 0; } | |
100 | #endif | |
0646614d VS |
101 | wxHtmlHelpTreeItemData(int id) : wxTreeItemData() |
102 | { m_Id = id;} | |
103 | ||
104 | int m_Id; | |
105 | }; | |
8ec2b484 | 106 | |
0646614d VS |
107 | |
108 | //-------------------------------------------------------------------------- | |
109 | // wxHtmlHelpHashData (private) | |
110 | //-------------------------------------------------------------------------- | |
111 | ||
112 | class wxHtmlHelpHashData : public wxObject | |
113 | { | |
8ec2b484 | 114 | public: |
0646614d VS |
115 | wxHtmlHelpHashData(int index, wxTreeItemId id) : wxObject() |
116 | { m_Index = index; m_Id = id;} | |
f5ba273e | 117 | ~wxHtmlHelpHashData() {} |
f6bcfd97 | 118 | |
0646614d VS |
119 | int m_Index; |
120 | wxTreeItemId m_Id; | |
8ec2b484 HH |
121 | }; |
122 | ||
382e6efe | 123 | |
0646614d VS |
124 | //-------------------------------------------------------------------------- |
125 | // wxHtmlHelpHtmlWindow (private) | |
126 | //-------------------------------------------------------------------------- | |
127 | ||
128 | class wxHtmlHelpHtmlWindow : public wxHtmlWindow | |
129 | { | |
130 | public: | |
131 | wxHtmlHelpHtmlWindow(wxHtmlHelpFrame *fr, wxWindow *parent) : wxHtmlWindow(parent), m_Frame(fr) {} | |
132 | ||
133 | virtual void OnLinkClicked(const wxHtmlLinkInfo& link) | |
134 | { | |
135 | wxHtmlWindow::OnLinkClicked(link); | |
4f9297b0 | 136 | m_Frame->NotifyPageChanged(); |
0646614d VS |
137 | } |
138 | ||
f6bcfd97 | 139 | private: |
0646614d VS |
140 | wxHtmlHelpFrame *m_Frame; |
141 | }; | |
142 | ||
382e6efe VS |
143 | |
144 | ||
8ec2b484 HH |
145 | //--------------------------------------------------------------------------- |
146 | // wxHtmlHelpFrame | |
147 | //--------------------------------------------------------------------------- | |
148 | ||
576507e2 VS |
149 | // Command IDs : |
150 | enum | |
151 | { | |
152 | //wxID_HTML_HELPFRAME = wxID_HIGHEST + 1, | |
153 | wxID_HTML_PANEL = wxID_HIGHEST + 2, | |
154 | wxID_HTML_BACK, | |
155 | wxID_HTML_FORWARD, | |
156 | wxID_HTML_UPNODE, | |
157 | wxID_HTML_UP, | |
158 | wxID_HTML_DOWN, | |
159 | wxID_HTML_PRINT, | |
160 | wxID_HTML_OPENFILE, | |
161 | wxID_HTML_OPTIONS, | |
162 | wxID_HTML_BOOKMARKSLIST, | |
163 | wxID_HTML_BOOKMARKSADD, | |
164 | wxID_HTML_BOOKMARKSREMOVE, | |
165 | wxID_HTML_TREECTRL, | |
166 | wxID_HTML_INDEXPAGE, | |
167 | wxID_HTML_INDEXLIST, | |
168 | wxID_HTML_INDEXTEXT, | |
169 | wxID_HTML_INDEXBUTTON, | |
170 | wxID_HTML_INDEXBUTTONALL, | |
171 | wxID_HTML_NOTEBOOK, | |
172 | wxID_HTML_SEARCHPAGE, | |
173 | wxID_HTML_SEARCHTEXT, | |
174 | wxID_HTML_SEARCHLIST, | |
175 | wxID_HTML_SEARCHBUTTON, | |
176 | wxID_HTML_SEARCHCHOICE, | |
177 | wxID_HTML_COUNTINFO | |
178 | }; | |
179 | ||
180 | ||
8ec2b484 HH |
181 | IMPLEMENT_DYNAMIC_CLASS(wxHtmlHelpFrame, wxFrame) |
182 | ||
183 | wxHtmlHelpFrame::wxHtmlHelpFrame(wxWindow* parent, wxWindowID id, const wxString& title, | |
d5bb85a0 | 184 | int style, wxHtmlHelpData* data) |
8ec2b484 HH |
185 | { |
186 | Init(data); | |
187 | Create(parent, id, title, style); | |
188 | } | |
d5bb85a0 | 189 | |
8ec2b484 HH |
190 | void wxHtmlHelpFrame::Init(wxHtmlHelpData* data) |
191 | { | |
da4cc40c | 192 | if (data) |
4f9297b0 | 193 | { |
d5bb85a0 VS |
194 | m_Data = data; |
195 | m_DataCreated = FALSE; | |
da4cc40c | 196 | } else |
4f9297b0 | 197 | { |
d5bb85a0 VS |
198 | m_Data = new wxHtmlHelpData(); |
199 | m_DataCreated = TRUE; | |
8ec2b484 HH |
200 | } |
201 | ||
8ec2b484 | 202 | m_ContentsBox = NULL; |
f0b6a33f VS |
203 | m_IndexList = NULL; |
204 | m_IndexButton = NULL; | |
205 | m_IndexButtonAll = NULL; | |
206 | m_IndexText = NULL; | |
8ec2b484 HH |
207 | m_SearchList = NULL; |
208 | m_SearchButton = NULL; | |
209 | m_SearchText = NULL; | |
210 | m_SearchChoice = NULL; | |
240c2873 | 211 | m_IndexCountInfo = NULL; |
8ec2b484 HH |
212 | m_Splitter = NULL; |
213 | m_NavigPan = NULL; | |
214 | m_HtmlWin = NULL; | |
382e6efe | 215 | m_Bookmarks = NULL; |
c4971147 VS |
216 | m_SearchCaseSensitive = NULL; |
217 | m_SearchWholeWords = NULL; | |
218 | ||
8ec2b484 HH |
219 | m_Config = NULL; |
220 | m_ConfigRoot = wxEmptyString; | |
221 | ||
222 | m_Cfg.x = m_Cfg.y = 0; | |
d5bb85a0 VS |
223 | m_Cfg.w = 700; |
224 | m_Cfg.h = 480; | |
8ec2b484 HH |
225 | m_Cfg.sashpos = 240; |
226 | m_Cfg.navig_on = TRUE; | |
83efdf33 VS |
227 | |
228 | m_NormalFonts = m_FixedFonts = NULL; | |
83efdf33 | 229 | m_NormalFace = m_FixedFace = wxEmptyString; |
0646614d | 230 | m_FontSize = 1; |
f6bcfd97 | 231 | |
0646614d VS |
232 | #if wxUSE_PRINTING_ARCHITECTURE |
233 | m_Printer = NULL; | |
234 | #endif | |
235 | ||
236 | m_PagesHash = NULL; | |
237 | m_UpdateContents = TRUE; | |
b4414c1f | 238 | m_helpController = (wxHelpControllerBase*) NULL; |
8ec2b484 HH |
239 | } |
240 | ||
d5bb85a0 VS |
241 | // Create: builds the GUI components. |
242 | // with the style flag it's possible to toggle the toolbar, contents, index and search | |
243 | // controls. | |
244 | // m_HtmlWin will *always* be created, but it's important to realize that | |
f0b6a33f | 245 | // m_ContentsBox, m_IndexList, m_SearchList, m_SearchButton, m_SearchText and |
d5bb85a0 VS |
246 | // m_SearchButton may be NULL. |
247 | // moreover, if no contents, index or searchpage is needed, m_Splitter and | |
248 | // m_NavigPan will be NULL too (with m_HtmlWin directly connected to the frame) | |
249 | ||
3379ed37 | 250 | bool wxHtmlHelpFrame::Create(wxWindow* parent, wxWindowID id, |
576507e2 | 251 | const wxString& WXUNUSED(title), int style) |
8ec2b484 | 252 | { |
576507e2 VS |
253 | m_hfStyle = style; |
254 | ||
8fd2b35c VS |
255 | wxImageList *ContentsImageList = new wxImageList(16, 16); |
256 | ContentsImageList->Add(wxICON(wbook)); | |
257 | ContentsImageList->Add(wxICON(wfolder)); | |
258 | ContentsImageList->Add(wxICON(wpage)); | |
259 | ContentsImageList->Add(wxICON(whlproot)); | |
260 | ||
8ec2b484 HH |
261 | // Do the config in two steps. We read the HtmlWindow customization after we |
262 | // create the window. | |
d5bb85a0 VS |
263 | if (m_Config) |
264 | ReadCustomization(m_Config, m_ConfigRoot); | |
8ec2b484 | 265 | |
8eb2940f | 266 | wxFrame::Create(parent, id, _("Help"), wxPoint(m_Cfg.x, m_Cfg.y), wxSize(m_Cfg.w, m_Cfg.h), wxDEFAULT_FRAME_STYLE, "wxHtmlHelp"); |
8ec2b484 | 267 | |
5c172c17 VS |
268 | GetPosition(&m_Cfg.x, &m_Cfg.y); |
269 | ||
83efdf33 | 270 | SetIcon(wxICON(whelp)); |
9ffdee80 | 271 | |
8ec2b484 HH |
272 | int notebook_page = 0; |
273 | ||
274 | CreateStatusBar(); | |
275 | ||
276 | // toolbar? | |
576507e2 | 277 | if (style & (wxHF_TOOLBAR | wxHF_FLAT_TOOLBAR)) |
4f9297b0 | 278 | { |
f6bcfd97 BP |
279 | wxToolBar *toolBar = CreateToolBar(wxNO_BORDER | wxTB_HORIZONTAL | |
280 | wxTB_DOCKABLE | | |
576507e2 | 281 | (style & wxHF_FLAT_TOOLBAR ? wxTB_FLAT : 0)); |
00655497 | 282 | toolBar->SetMargins( 2, 2 ); |
b854b7b8 | 283 | AddToolbarButtons(toolBar, style); |
4f9297b0 | 284 | toolBar->Realize(); |
8ec2b484 | 285 | } |
d5bb85a0 | 286 | |
da4cc40c | 287 | if (style & (wxHF_CONTENTS | wxHF_INDEX | wxHF_SEARCH)) |
4f9297b0 | 288 | { |
d5bb85a0 VS |
289 | // traditional help controller; splitter window with html page on the |
290 | // right and a notebook containing various pages on the left | |
291 | m_Splitter = new wxSplitterWindow(this); | |
292 | ||
0646614d | 293 | m_HtmlWin = new wxHtmlHelpHtmlWindow(this, m_Splitter); |
d5bb85a0 VS |
294 | m_NavigPan = new wxNotebook(m_Splitter, wxID_HTML_NOTEBOOK, |
295 | wxDefaultPosition, wxDefaultSize); | |
da4cc40c DW |
296 | } |
297 | else | |
4f9297b0 | 298 | { // only html window, no notebook with index,contents etc |
d5bb85a0 | 299 | m_HtmlWin = new wxHtmlWindow(this); |
8ec2b484 HH |
300 | } |
301 | ||
4f9297b0 VS |
302 | m_HtmlWin->SetRelatedFrame(this, m_TitleFormat); |
303 | m_HtmlWin->SetRelatedStatusBar(0); | |
d5bb85a0 | 304 | if (m_Config) |
4f9297b0 | 305 | m_HtmlWin->ReadCustomization(m_Config, m_ConfigRoot); |
8ec2b484 HH |
306 | |
307 | // contents tree panel? | |
da4cc40c | 308 | if (style & wxHF_CONTENTS) |
4f9297b0 | 309 | { |
ae80f837 | 310 | wxWindow *dummy = new wxPanel(m_NavigPan, wxID_HTML_INDEXPAGE); |
c7c72b41 VS |
311 | |
312 | long treeStyle = wxSUNKEN_BORDER | wxTR_HAS_BUTTONS; | |
313 | #ifndef __WXMSW__ // FIXME - temporary, till MSW supports wxTR_HIDE_ROOT | |
314 | treeStyle |= wxTR_HIDE_ROOT; | |
315 | #endif | |
ae80f837 | 316 | |
da4cc40c | 317 | if (style & wxHF_BOOKMARKS) |
3379ed37 | 318 | { |
ae80f837 VS |
319 | wxLayoutConstraints *b1 = new wxLayoutConstraints; |
320 | wxBitmapButton *bmpbt = new wxBitmapButton(dummy, wxID_HTML_BOOKMARKSREMOVE, wxBITMAP(wbkdel), wxDefaultPosition, wxSize(20,20)); | |
321 | ||
4f9297b0 VS |
322 | b1->top.SameAs (dummy, wxTop, 10); |
323 | b1->right.SameAs (dummy, wxRight, 10); | |
324 | b1->height.AsIs(); | |
325 | b1->width.AsIs(); | |
326 | bmpbt->SetConstraints(b1); | |
ae80f837 VS |
327 | |
328 | wxLayoutConstraints *b2 = new wxLayoutConstraints; | |
329 | wxBitmapButton *bmpbt2 = new wxBitmapButton(dummy, wxID_HTML_BOOKMARKSADD, wxBITMAP(wbkadd), wxDefaultPosition, wxSize(20,20)); | |
330 | ||
4f9297b0 VS |
331 | b2->top.SameAs (dummy, wxTop, 10); |
332 | b2->right.LeftOf (bmpbt, 2); | |
333 | b2->height.AsIs(); | |
334 | b2->width.AsIs(); | |
335 | bmpbt2->SetConstraints(b2); | |
ae80f837 VS |
336 | |
337 | #if wxUSE_TOOLTIPS | |
4f9297b0 VS |
338 | bmpbt->SetToolTip(_("Remove current page from bookmarks")); |
339 | bmpbt2->SetToolTip(_("Add current page to bookmarks")); | |
ae80f837 VS |
340 | #endif //wxUSE_TOOLTIPS |
341 | ||
342 | wxLayoutConstraints *b3 = new wxLayoutConstraints; | |
343 | m_Bookmarks = new wxComboBox(dummy, wxID_HTML_BOOKMARKSLIST, wxEmptyString, | |
344 | wxDefaultPosition, wxDefaultSize, 0, NULL, wxCB_READONLY | wxCB_SORT); | |
4f9297b0 | 345 | m_Bookmarks->Append(_("(bookmarks)")); |
ae80f837 | 346 | for (unsigned i = 0; i < m_BookmarksNames.GetCount(); i++) |
4f9297b0 VS |
347 | m_Bookmarks->Append(m_BookmarksNames[i]); |
348 | m_Bookmarks->SetSelection(0); | |
ae80f837 | 349 | |
4f9297b0 VS |
350 | b3->centreY.SameAs (bmpbt2, wxCentreY); |
351 | b3->left.SameAs (dummy, wxLeft, 10); | |
352 | b3->right.LeftOf (bmpbt2, 5); | |
353 | b3->height.AsIs(); | |
354 | m_Bookmarks->SetConstraints(b3); | |
ae80f837 VS |
355 | |
356 | ||
357 | wxLayoutConstraints *b4 = new wxLayoutConstraints; | |
96873b79 | 358 | m_ContentsBox = new wxTreeCtrl(dummy, wxID_HTML_TREECTRL, |
c7c72b41 VS |
359 | wxDefaultPosition, wxDefaultSize, |
360 | treeStyle); | |
4f9297b0 | 361 | m_ContentsBox->AssignImageList(ContentsImageList); |
ae80f837 | 362 | |
4f9297b0 VS |
363 | b4->top.Below (m_Bookmarks, 10); |
364 | b4->left.SameAs (dummy, wxLeft, 0); | |
365 | b4->right.SameAs (dummy, wxRight, 0); | |
366 | b4->bottom.SameAs (dummy, wxBottom, 0); | |
367 | m_ContentsBox->SetConstraints(b4); | |
ae80f837 | 368 | |
4f9297b0 VS |
369 | dummy->SetAutoLayout(TRUE); |
370 | dummy->Layout(); | |
ae80f837 | 371 | |
4f9297b0 | 372 | m_NavigPan->AddPage(dummy, _("Contents")); |
ae80f837 VS |
373 | } |
374 | ||
375 | else | |
376 | { | |
377 | m_ContentsBox = new wxTreeCtrl(m_NavigPan, wxID_HTML_TREECTRL, | |
378 | wxDefaultPosition, wxDefaultSize, | |
c7c72b41 | 379 | treeStyle); |
4f9297b0 VS |
380 | m_ContentsBox->AssignImageList(ContentsImageList); |
381 | m_NavigPan->AddPage(m_ContentsBox, _("Contents")); | |
ae80f837 VS |
382 | } |
383 | ||
d5bb85a0 | 384 | m_ContentsPage = notebook_page++; |
8ec2b484 HH |
385 | } |
386 | ||
387 | // index listbox panel? | |
da4cc40c | 388 | if (style & wxHF_INDEX) |
4f9297b0 | 389 | { |
d5bb85a0 | 390 | wxWindow *dummy = new wxPanel(m_NavigPan, wxID_HTML_INDEXPAGE); |
f0b6a33f | 391 | |
d5bb85a0 | 392 | wxLayoutConstraints *b1 = new wxLayoutConstraints; |
f0b6a33f | 393 | m_IndexText = new wxTextCtrl(dummy, wxID_HTML_INDEXTEXT, wxEmptyString, wxDefaultPosition, wxDefaultSize, wxTE_PROCESS_ENTER); |
4f9297b0 VS |
394 | b1->top.SameAs (dummy, wxTop, 10); |
395 | b1->left.SameAs (dummy, wxLeft, 10); | |
396 | b1->right.SameAs (dummy, wxRight, 10); | |
397 | b1->height.AsIs(); | |
398 | m_IndexText->SetConstraints(b1); | |
f0b6a33f VS |
399 | |
400 | wxLayoutConstraints *b4 = new wxLayoutConstraints; | |
401 | m_IndexButtonAll = new wxButton(dummy, wxID_HTML_INDEXBUTTONALL, _("Show all")); | |
7618e374 | 402 | |
4f9297b0 VS |
403 | b4->top.Below (m_IndexText, 10); |
404 | b4->right.SameAs (dummy, wxRight, 10); | |
405 | b4->width.AsIs(); | |
406 | b4->height.AsIs(); | |
407 | m_IndexButtonAll->SetConstraints(b4); | |
f0b6a33f VS |
408 | |
409 | wxLayoutConstraints *b2 = new wxLayoutConstraints; | |
410 | m_IndexButton = new wxButton(dummy, wxID_HTML_INDEXBUTTON, _("Find")); | |
4f9297b0 VS |
411 | b2->top.Below (m_IndexText, 10); |
412 | b2->right.LeftOf (m_IndexButtonAll, 10); | |
413 | b2->width.AsIs(); | |
414 | b2->height.AsIs(); | |
415 | m_IndexButton->SetConstraints(b2); | |
f0b6a33f | 416 | |
240c2873 VS |
417 | wxLayoutConstraints *b5 = new wxLayoutConstraints; |
418 | m_IndexCountInfo = new wxStaticText(dummy, wxID_HTML_COUNTINFO, wxEmptyString, wxDefaultPosition, wxDefaultSize, wxALIGN_RIGHT | wxST_NO_AUTORESIZE); | |
419 | ||
4f9297b0 VS |
420 | b5->top.Below (m_IndexButton, 5); |
421 | b5->right.SameAs (dummy, wxRight, 10); | |
422 | b5->left.SameAs (dummy, wxLeft, 10); | |
423 | b5->height.AsIs(); | |
424 | m_IndexCountInfo->SetConstraints(b5); | |
240c2873 | 425 | |
f0b6a33f | 426 | wxLayoutConstraints *b3 = new wxLayoutConstraints; |
721ab905 | 427 | m_IndexList = new wxListBox(dummy, wxID_HTML_INDEXLIST, wxDefaultPosition, wxDefaultSize, 0, NULL, wxLB_SINGLE); |
4f9297b0 VS |
428 | b3->top.Below (m_IndexCountInfo, 5); |
429 | b3->left.SameAs (dummy, wxLeft, 0); | |
430 | b3->right.SameAs (dummy, wxRight, 0); | |
431 | b3->bottom.SameAs (dummy, wxBottom, 0); | |
432 | m_IndexList->SetConstraints(b3); | |
f0b6a33f | 433 | |
7618e374 | 434 | #if wxUSE_TOOLTIPS |
4f9297b0 VS |
435 | m_IndexButtonAll->SetToolTip(_("Show all items in index")); |
436 | m_IndexButton->SetToolTip(_("Display all index items that contain given substring. Search is case insensitive.")); | |
7618e374 VS |
437 | #endif //wxUSE_TOOLTIPS |
438 | ||
4f9297b0 VS |
439 | dummy->SetAutoLayout(TRUE); |
440 | dummy->Layout(); | |
f0b6a33f | 441 | |
4f9297b0 | 442 | m_NavigPan->AddPage(dummy, _("Index")); |
d5bb85a0 | 443 | m_IndexPage = notebook_page++; |
8ec2b484 HH |
444 | } |
445 | ||
446 | // search list panel? | |
da4cc40c | 447 | if (style & wxHF_SEARCH) |
4f9297b0 | 448 | { |
d5bb85a0 VS |
449 | wxWindow *dummy = new wxPanel(m_NavigPan, wxID_HTML_SEARCHPAGE); |
450 | ||
451 | wxLayoutConstraints *b1 = new wxLayoutConstraints; | |
f0b6a33f | 452 | m_SearchText = new wxTextCtrl(dummy, wxID_HTML_SEARCHTEXT, wxEmptyString, wxDefaultPosition, wxDefaultSize, wxTE_PROCESS_ENTER); |
4f9297b0 VS |
453 | b1->top.SameAs (dummy, wxTop, 10); |
454 | b1->left.SameAs (dummy, wxLeft, 10); | |
455 | b1->right.SameAs (dummy, wxRight, 10); | |
456 | b1->height.AsIs(); | |
457 | m_SearchText->SetConstraints(b1); | |
d5bb85a0 | 458 | |
d5bb85a0 VS |
459 | wxLayoutConstraints *b4 = new wxLayoutConstraints; |
460 | m_SearchChoice = new wxChoice(dummy, wxID_HTML_SEARCHCHOICE, wxDefaultPosition, | |
461 | wxDefaultSize); | |
4f9297b0 VS |
462 | b4->top.Below (m_SearchText, 10); |
463 | b4->left.SameAs (dummy, wxLeft, 10); | |
464 | b4->right.SameAs (dummy, wxRight, 10); | |
465 | b4->height.AsIs(); | |
466 | m_SearchChoice->SetConstraints(b4); | |
d5bb85a0 | 467 | |
c4971147 VS |
468 | wxLayoutConstraints *b5 = new wxLayoutConstraints; |
469 | m_SearchCaseSensitive = new wxCheckBox(dummy, -1, _("Case sensitive")); | |
4f9297b0 VS |
470 | b5->top.Below (m_SearchChoice, 10); |
471 | b5->left.SameAs (dummy, wxLeft, 10); | |
472 | b5->width.AsIs(); | |
473 | b5->height.AsIs (); | |
474 | m_SearchCaseSensitive->SetConstraints(b5); | |
c4971147 VS |
475 | |
476 | wxLayoutConstraints *b6 = new wxLayoutConstraints; | |
477 | m_SearchWholeWords = new wxCheckBox(dummy, -1, _("Whole words only")); | |
4f9297b0 VS |
478 | b6->top.Below (m_SearchCaseSensitive, 0); |
479 | b6->left.SameAs (dummy, wxLeft, 10); | |
480 | b6->width.AsIs(); | |
481 | b6->height.AsIs (); | |
482 | m_SearchWholeWords->SetConstraints(b6); | |
c4971147 | 483 | |
ae80f837 VS |
484 | wxLayoutConstraints *b2 = new wxLayoutConstraints; |
485 | m_SearchButton = new wxButton(dummy, wxID_HTML_SEARCHBUTTON, _("Search")); | |
486 | #if wxUSE_TOOLTIPS | |
4f9297b0 | 487 | m_SearchButton->SetToolTip(_("Search contents of help book(s) for all occurences of the text you typed above")); |
ae80f837 | 488 | #endif //wxUSE_TOOLTIPS |
4f9297b0 VS |
489 | b2->top.Below (m_SearchWholeWords, 0); |
490 | b2->right.SameAs (dummy, wxRight, 10); | |
491 | b2->width.AsIs(); | |
492 | b2->height.AsIs(); | |
493 | m_SearchButton->SetConstraints(b2); | |
ae80f837 | 494 | |
954269e6 | 495 | wxLayoutConstraints *b3 = new wxLayoutConstraints; |
721ab905 | 496 | m_SearchList = new wxListBox(dummy, wxID_HTML_SEARCHLIST, wxDefaultPosition, wxDefaultSize, 0, NULL, wxLB_SINGLE); |
4f9297b0 VS |
497 | b3->top.Below (m_SearchButton, 10); |
498 | b3->left.SameAs (dummy, wxLeft, 0); | |
499 | b3->right.SameAs (dummy, wxRight, 0); | |
500 | b3->bottom.SameAs (dummy, wxBottom, 0); | |
501 | m_SearchList->SetConstraints(b3); | |
502 | ||
503 | dummy->SetAutoLayout(TRUE); | |
504 | dummy->Layout(); | |
505 | m_NavigPan->AddPage(dummy, _("Search")); | |
d5bb85a0 | 506 | m_SearchPage = notebook_page++; |
8ec2b484 | 507 | } |
4f9297b0 | 508 | m_HtmlWin->Show(TRUE); |
f6bcfd97 | 509 | |
b5a7b000 | 510 | RefreshLists(); |
8ec2b484 HH |
511 | |
512 | // showtime | |
da4cc40c | 513 | if (m_NavigPan && m_Splitter) |
4f9297b0 VS |
514 | { |
515 | m_Splitter->SetMinimumPaneSize(20); | |
f38374d0 | 516 | if (m_Cfg.navig_on) |
4f9297b0 | 517 | m_Splitter->SplitVertically(m_NavigPan, m_HtmlWin, m_Cfg.sashpos); |
da4cc40c | 518 | else |
3379ed37 | 519 | { |
4f9297b0 VS |
520 | m_Splitter->SplitVertically(m_NavigPan, m_HtmlWin, m_Cfg.sashpos); |
521 | m_Splitter->Unsplit(); | |
f38374d0 | 522 | } |
4f9297b0 | 523 | |
3379ed37 VZ |
524 | if (m_Cfg.navig_on) |
525 | { | |
4f9297b0 VS |
526 | m_NavigPan->Show(TRUE); |
527 | m_Splitter->SplitVertically(m_NavigPan, m_HtmlWin, m_Cfg.sashpos); | |
c32bfc10 | 528 | } |
da4cc40c | 529 | else |
3379ed37 | 530 | { |
4f9297b0 VS |
531 | m_NavigPan->Show(FALSE); |
532 | m_Splitter->Initialize(m_HtmlWin); | |
68364659 | 533 | } |
8ec2b484 | 534 | } |
8ec2b484 HH |
535 | return TRUE; |
536 | } | |
537 | ||
538 | wxHtmlHelpFrame::~wxHtmlHelpFrame() | |
539 | { | |
b4414c1f | 540 | // PopEventHandler(); // wxhtmlhelpcontroller (not any more!) |
8ec2b484 | 541 | if (m_DataCreated) |
d5bb85a0 | 542 | delete m_Data; |
83efdf33 VS |
543 | if (m_NormalFonts) delete m_NormalFonts; |
544 | if (m_FixedFonts) delete m_FixedFonts; | |
70aedad6 | 545 | if (m_PagesHash) delete m_PagesHash; |
8ec2b484 HH |
546 | } |
547 | ||
b854b7b8 VS |
548 | |
549 | void wxHtmlHelpFrame::AddToolbarButtons(wxToolBar *toolBar, int style) | |
550 | { | |
f6bcfd97 BP |
551 | wxBitmap wpanelBitmap = wxBITMAP(wpanel); |
552 | wxBitmap wbackBitmap = wxBITMAP(wback); | |
553 | wxBitmap wforwardBitmap = wxBITMAP(wforward); | |
554 | wxBitmap wupnodeBitmap = wxBITMAP(wupnode); | |
555 | wxBitmap wupBitmap = wxBITMAP(wup); | |
556 | wxBitmap wdownBitmap = wxBITMAP(wdown); | |
557 | wxBitmap wopenBitmap = wxBITMAP(wopen); | |
558 | wxBitmap wprintBitmap = wxBITMAP(wprint); | |
559 | wxBitmap woptionsBitmap = wxBITMAP(woptions); | |
560 | ||
561 | wxASSERT_MSG( (wpanelBitmap.Ok() && wbackBitmap.Ok() && | |
562 | wforwardBitmap.Ok() && wupnodeBitmap.Ok() && | |
563 | wupBitmap.Ok() && wdownBitmap.Ok() && | |
564 | wopenBitmap.Ok() && wprintBitmap.Ok() && | |
565 | woptionsBitmap.Ok()), | |
566 | wxT("One or more HTML help frame toolbar bitmap could not be loaded.")) ; | |
567 | ||
568 | ||
4f9297b0 | 569 | toolBar->AddTool(wxID_HTML_PANEL, wpanelBitmap, wxNullBitmap, |
b854b7b8 VS |
570 | FALSE, -1, -1, (wxObject *) NULL, |
571 | _("Show/hide navigation panel")); | |
0646614d | 572 | |
4f9297b0 VS |
573 | toolBar->AddSeparator(); |
574 | toolBar->AddTool(wxID_HTML_BACK, wbackBitmap, wxNullBitmap, | |
b854b7b8 | 575 | FALSE, -1, -1, (wxObject *) NULL, |
0646614d | 576 | _("Go back")); |
4f9297b0 | 577 | toolBar->AddTool(wxID_HTML_FORWARD, wforwardBitmap, wxNullBitmap, |
b854b7b8 | 578 | FALSE, -1, -1, (wxObject *) NULL, |
0646614d | 579 | _("Go forward")); |
4f9297b0 | 580 | toolBar->AddSeparator(); |
b854b7b8 | 581 | |
4f9297b0 | 582 | toolBar->AddTool(wxID_HTML_UPNODE, wupnodeBitmap, wxNullBitmap, |
0646614d VS |
583 | FALSE, -1, -1, (wxObject *) NULL, |
584 | _("Go one level up in document hierarchy")); | |
4f9297b0 | 585 | toolBar->AddTool(wxID_HTML_UP, wupBitmap, wxNullBitmap, |
0646614d VS |
586 | FALSE, -1, -1, (wxObject *) NULL, |
587 | _("Previous page")); | |
4f9297b0 | 588 | toolBar->AddTool(wxID_HTML_DOWN, wdownBitmap, wxNullBitmap, |
0646614d VS |
589 | FALSE, -1, -1, (wxObject *) NULL, |
590 | _("Next page")); | |
591 | ||
576507e2 | 592 | if ((style & wxHF_PRINT) || (style & wxHF_OPEN_FILES)) |
4f9297b0 | 593 | toolBar->AddSeparator(); |
f6bcfd97 | 594 | |
576507e2 | 595 | if (style & wxHF_OPEN_FILES) |
4f9297b0 | 596 | toolBar->AddTool(wxID_HTML_OPENFILE, wopenBitmap, wxNullBitmap, |
0646614d VS |
597 | FALSE, -1, -1, (wxObject *) NULL, |
598 | _("Open HTML document")); | |
599 | ||
600 | #if wxUSE_PRINTING_ARCHITECTURE | |
601 | if (style & wxHF_PRINT) | |
4f9297b0 | 602 | toolBar->AddTool(wxID_HTML_PRINT, wprintBitmap, wxNullBitmap, |
0646614d VS |
603 | FALSE, -1, -1, (wxObject *) NULL, |
604 | _("Print this page")); | |
605 | #endif | |
606 | ||
4f9297b0 VS |
607 | toolBar->AddSeparator(); |
608 | toolBar->AddTool(wxID_HTML_OPTIONS, woptionsBitmap, wxNullBitmap, | |
b854b7b8 VS |
609 | FALSE, -1, -1, (wxObject *) NULL, |
610 | _("Display options dialog")); | |
611 | } | |
612 | ||
613 | ||
721ab905 VS |
614 | void wxHtmlHelpFrame::SetTitleFormat(const wxString& format) |
615 | { | |
616 | if (m_HtmlWin) | |
617 | m_HtmlWin->SetRelatedFrame(this, format); | |
618 | m_TitleFormat = format; | |
619 | } | |
620 | ||
b854b7b8 | 621 | |
8ec2b484 HH |
622 | bool wxHtmlHelpFrame::Display(const wxString& x) |
623 | { | |
624 | wxString url = m_Data->FindPageByName(x); | |
da4cc40c | 625 | if (!url.IsEmpty()) |
4f9297b0 | 626 | { |
d5bb85a0 | 627 | m_HtmlWin->LoadPage(url); |
0646614d | 628 | NotifyPageChanged(); |
d5bb85a0 | 629 | return TRUE; |
8ec2b484 HH |
630 | } |
631 | return FALSE; | |
632 | } | |
633 | ||
634 | bool wxHtmlHelpFrame::Display(const int id) | |
635 | { | |
636 | wxString url = m_Data->FindPageById(id); | |
da4cc40c | 637 | if (!url.IsEmpty()) |
4f9297b0 | 638 | { |
d5bb85a0 | 639 | m_HtmlWin->LoadPage(url); |
0646614d | 640 | NotifyPageChanged(); |
d5bb85a0 | 641 | return TRUE; |
8ec2b484 HH |
642 | } |
643 | return FALSE; | |
644 | } | |
645 | ||
646 | ||
647 | ||
648 | bool wxHtmlHelpFrame::DisplayContents() | |
649 | { | |
650 | if (! m_ContentsBox) | |
d5bb85a0 | 651 | return FALSE; |
da4cc40c | 652 | if (!m_Splitter->IsSplit()) |
4f9297b0 VS |
653 | { |
654 | m_NavigPan->Show(TRUE); | |
655 | m_HtmlWin->Show(TRUE); | |
656 | m_Splitter->SplitVertically(m_NavigPan, m_HtmlWin, m_Cfg.sashpos); | |
c32bfc10 | 657 | m_Cfg.navig_on = TRUE; |
8ec2b484 | 658 | } |
4f9297b0 | 659 | m_NavigPan->SetSelection(0); |
71d04f7f JS |
660 | if (m_Data->GetBookRecArray().GetCount() > 0) |
661 | { | |
662 | wxHtmlBookRecord& book = m_Data->GetBookRecArray()[0]; | |
663 | if (!book.GetStart().IsEmpty()) | |
468ae730 | 664 | m_HtmlWin->LoadPage(book.GetFullPath(book.GetStart())); |
71d04f7f | 665 | } |
8ec2b484 HH |
666 | return TRUE; |
667 | } | |
668 | ||
669 | ||
670 | ||
671 | bool wxHtmlHelpFrame::DisplayIndex() | |
672 | { | |
f0b6a33f | 673 | if (! m_IndexList) |
d5bb85a0 | 674 | return FALSE; |
da4cc40c | 675 | if (!m_Splitter->IsSplit()) |
4f9297b0 VS |
676 | { |
677 | m_NavigPan->Show(TRUE); | |
678 | m_HtmlWin->Show(TRUE); | |
679 | m_Splitter->SplitVertically(m_NavigPan, m_HtmlWin, m_Cfg.sashpos); | |
8ec2b484 | 680 | } |
4f9297b0 | 681 | m_NavigPan->SetSelection(1); |
71d04f7f JS |
682 | if (m_Data->GetBookRecArray().GetCount() > 0) |
683 | { | |
684 | wxHtmlBookRecord& book = m_Data->GetBookRecArray()[0]; | |
685 | if (!book.GetStart().IsEmpty()) | |
468ae730 | 686 | m_HtmlWin->LoadPage(book.GetFullPath(book.GetStart())); |
71d04f7f | 687 | } |
8ec2b484 HH |
688 | return TRUE; |
689 | } | |
690 | ||
b854b7b8 VS |
691 | |
692 | ||
8ec2b484 HH |
693 | bool wxHtmlHelpFrame::KeywordSearch(const wxString& keyword) |
694 | { | |
695 | if (! (m_SearchList && m_SearchButton && m_SearchText && m_SearchChoice)) | |
d5bb85a0 | 696 | return FALSE; |
8ec2b484 | 697 | |
c4971147 | 698 | int foundcnt = 0, curi; |
8ec2b484 HH |
699 | wxString foundstr; |
700 | wxString book = wxEmptyString; | |
701 | ||
da4cc40c | 702 | if (!m_Splitter->IsSplit()) |
4f9297b0 VS |
703 | { |
704 | m_NavigPan->Show(TRUE); | |
705 | m_HtmlWin->Show(TRUE); | |
706 | m_Splitter->SplitVertically(m_NavigPan, m_HtmlWin, m_Cfg.sashpos); | |
8ec2b484 | 707 | } |
4f9297b0 VS |
708 | m_NavigPan->SetSelection(m_SearchPage); |
709 | m_SearchList->Clear(); | |
710 | m_SearchText->SetValue(keyword); | |
711 | m_SearchButton->Enable(FALSE); | |
8ec2b484 HH |
712 | |
713 | if (m_SearchChoice->GetSelection() != 0) | |
d5bb85a0 | 714 | book = m_SearchChoice->GetStringSelection(); |
8ec2b484 | 715 | |
f6bcfd97 | 716 | wxHtmlSearchStatus status(m_Data, keyword, |
4f9297b0 | 717 | m_SearchCaseSensitive->GetValue(), m_SearchWholeWords->GetValue(), |
c4971147 | 718 | book); |
8ec2b484 | 719 | |
d5bb85a0 VS |
720 | wxProgressDialog progress(_("Searching..."), _("No matching page found yet"), |
721 | status.GetMaxIndex(), this, | |
b4414c1f | 722 | wxPD_APP_MODAL | wxPD_CAN_ABORT | wxPD_AUTO_HIDE); |
8ec2b484 | 723 | |
da4cc40c | 724 | while (status.IsActive()) |
4f9297b0 | 725 | { |
c4971147 | 726 | curi = status.GetCurIndex(); |
b5a7b000 | 727 | if (curi % 32 == 0 && progress.Update(curi) == FALSE) |
d5bb85a0 | 728 | break; |
da4cc40c | 729 | if (status.Search()) |
3379ed37 | 730 | { |
d5bb85a0 VS |
731 | foundstr.Printf(_("Found %i matches"), ++foundcnt); |
732 | progress.Update(status.GetCurIndex(), foundstr); | |
4f9297b0 | 733 | m_SearchList->Append(status.GetName(), status.GetContentsItem()); |
d5bb85a0 | 734 | } |
8ec2b484 HH |
735 | } |
736 | ||
4f9297b0 VS |
737 | m_SearchButton->Enable(TRUE); |
738 | m_SearchText->SetSelection(0, keyword.Length()); | |
739 | m_SearchText->SetFocus(); | |
da4cc40c | 740 | if (foundcnt) |
4f9297b0 VS |
741 | { |
742 | wxHtmlContentsItem *it = (wxHtmlContentsItem*) m_SearchList->GetClientData(0); | |
f6bcfd97 | 743 | if (it) |
0646614d | 744 | { |
468ae730 | 745 | m_HtmlWin->LoadPage(it->GetFullPath()); |
0646614d VS |
746 | NotifyPageChanged(); |
747 | } | |
8ec2b484 HH |
748 | } |
749 | return (foundcnt > 0); | |
750 | } | |
751 | ||
b5a7b000 | 752 | void wxHtmlHelpFrame::CreateContents() |
8ec2b484 HH |
753 | { |
754 | if (! m_ContentsBox) | |
d5bb85a0 | 755 | return ; |
8ec2b484 | 756 | |
8ec2b484 | 757 | m_ContentsBox->Clear(); |
f6bcfd97 | 758 | |
0646614d | 759 | if (m_PagesHash) delete m_PagesHash; |
4f9297b0 VS |
760 | m_PagesHash = new wxHashTable(wxKEY_STRING, 2 * m_Data->GetContentsCnt()); |
761 | m_PagesHash->DeleteContents(TRUE); | |
8ec2b484 HH |
762 | |
763 | int cnt = m_Data->GetContentsCnt(); | |
8ec2b484 | 764 | int i; |
576507e2 | 765 | size_t booksCnt = m_Data->GetBookRecArray().GetCount(); |
8ec2b484 | 766 | |
83efdf33 | 767 | wxHtmlContentsItem *it; |
d5bb85a0 | 768 | |
576507e2 | 769 | const int MAX_ROOTS = 64; |
8ec2b484 | 770 | wxTreeItemId roots[MAX_ROOTS]; |
576507e2 VS |
771 | // VS: this array holds information about whether we've set item icon at |
772 | // given level. This is neccessary because m_Data has flat structure | |
773 | // and there's no way of recognizing if some item has subitems or not. | |
774 | // We set the icon later: when we find an item with level=n, we know | |
775 | // that the last item with level=n-1 was folder with subitems, so we | |
776 | // set its icon accordingly | |
3379ed37 | 777 | bool imaged[MAX_ROOTS]; |
4f9297b0 | 778 | m_ContentsBox->DeleteAllItems(); |
96873b79 VS |
779 | |
780 | // FIXME - will go away when wxMSW's wxTreeCtrl supports wxTR_HIDE_ROOT! | |
781 | bool hasSuperRoot = (booksCnt > 1) || | |
782 | (m_ContentsBox->GetWindowStyle() & wxTR_HIDE_ROOT); | |
0c55409f | 783 | |
576507e2 | 784 | // Don't show (Help) root if there's only one boook |
96873b79 | 785 | if (hasSuperRoot) |
576507e2 VS |
786 | { |
787 | roots[0] = m_ContentsBox->AddRoot(_("(Help)")); | |
788 | m_ContentsBox->SetItemImage(roots[0], IMG_RootFolder); | |
789 | m_ContentsBox->SetItemSelectedImage(roots[0], IMG_RootFolder); | |
790 | imaged[0] = TRUE; | |
791 | } | |
8ec2b484 | 792 | |
da4cc40c | 793 | for (it = m_Data->GetContents(), i = 0; i < cnt; i++, it++) |
4f9297b0 | 794 | { |
576507e2 | 795 | // Handle books: |
da4cc40c | 796 | if (it->m_Level == 0) |
576507e2 VS |
797 | { |
798 | // special case, only one book, make it tree's root: | |
96873b79 | 799 | if (!hasSuperRoot) |
576507e2 VS |
800 | { |
801 | roots[0] = roots[1] = m_ContentsBox->AddRoot( | |
0c55409f | 802 | it->m_Name, IMG_Book, -1, |
576507e2 | 803 | new wxHtmlHelpTreeItemData(i)); |
0c55409f VS |
804 | imaged[0] = imaged[1] = TRUE; |
805 | m_ContentsBox->SetItemBold(roots[1], TRUE); | |
576507e2 VS |
806 | } |
807 | // multiple books: | |
808 | else | |
809 | { | |
810 | if (m_hfStyle & wxHF_MERGE_BOOKS) | |
811 | // VS: we don't want book nodes, books' content should | |
812 | // appear under tree's root. This line will create "fake" | |
813 | // record about book node so that the rest of this look | |
814 | // will believe there really _is_ book node and will | |
815 | // behave correctly. | |
816 | roots[1] = roots[0]; | |
817 | else | |
818 | { | |
819 | roots[1] = m_ContentsBox->AppendItem(roots[0], | |
3379ed37 | 820 | it->m_Name, IMG_Book, -1, |
576507e2 VS |
821 | new wxHtmlHelpTreeItemData(i)); |
822 | m_ContentsBox->SetItemBold(roots[1], TRUE); | |
823 | } | |
824 | imaged[1] = TRUE; | |
825 | } | |
4f9297b0 | 826 | } |
576507e2 | 827 | // ...and their contents: |
3379ed37 | 828 | else |
576507e2 VS |
829 | { |
830 | roots[it->m_Level + 1] = m_ContentsBox->AppendItem( | |
3379ed37 | 831 | roots[it->m_Level], it->m_Name, IMG_Page, |
576507e2 | 832 | -1, new wxHtmlHelpTreeItemData(i)); |
3379ed37 | 833 | imaged[it->m_Level + 1] = FALSE; |
576507e2 | 834 | } |
4f9297b0 | 835 | |
576507e2 VS |
836 | m_PagesHash->Put(it->GetFullPath(), |
837 | new wxHtmlHelpHashData(i, roots[it->m_Level + 1])); | |
838 | ||
839 | // Set the icon for the node one level up in the hiearachy, | |
840 | // unless already done (see comment above imaged[] declaration) | |
da4cc40c | 841 | if (!imaged[it->m_Level]) |
3379ed37 | 842 | { |
576507e2 VS |
843 | int image = IMG_Folder; |
844 | if (m_hfStyle & wxHF_ICONS_BOOK) | |
845 | image = IMG_Book; | |
846 | else if (m_hfStyle & wxHF_ICONS_BOOK_CHAPTER) | |
847 | image = (it->m_Level == 1) ? IMG_Book : IMG_Folder; | |
848 | m_ContentsBox->SetItemImage(roots[it->m_Level], image); | |
849 | m_ContentsBox->SetItemSelectedImage(roots[it->m_Level], image); | |
4f9297b0 | 850 | imaged[it->m_Level] = TRUE; |
8ec2b484 HH |
851 | } |
852 | } | |
576507e2 | 853 | |
4f9297b0 | 854 | m_ContentsBox->Expand(roots[0]); |
8ec2b484 HH |
855 | } |
856 | ||
857 | ||
b5a7b000 | 858 | void wxHtmlHelpFrame::CreateIndex() |
8ec2b484 | 859 | { |
f0b6a33f | 860 | if (! m_IndexList) |
d5bb85a0 | 861 | return ; |
8ec2b484 | 862 | |
f0b6a33f | 863 | m_IndexList->Clear(); |
8ec2b484 HH |
864 | |
865 | int cnt = m_Data->GetIndexCnt(); | |
f6bcfd97 | 866 | |
240c2873 VS |
867 | wxString cnttext; |
868 | if (cnt > INDEX_IS_SMALL) cnttext.Printf(_("%i of %i"), 0, cnt); | |
869 | else cnttext.Printf(_("%i of %i"), cnt, cnt); | |
4f9297b0 | 870 | m_IndexCountInfo->SetLabel(cnttext); |
f0b6a33f | 871 | if (cnt > INDEX_IS_SMALL) return; |
f6bcfd97 | 872 | |
8ec2b484 HH |
873 | wxHtmlContentsItem* index = m_Data->GetIndex(); |
874 | ||
f6bcfd97 | 875 | for (int i = 0; i < cnt; i++) |
4f9297b0 | 876 | m_IndexList->Append(index[i].m_Name, (char*)(index + i)); |
8ec2b484 HH |
877 | } |
878 | ||
879 | void wxHtmlHelpFrame::CreateSearch() | |
880 | { | |
881 | if (! (m_SearchList && m_SearchChoice)) | |
d5bb85a0 | 882 | return ; |
4f9297b0 VS |
883 | m_SearchList->Clear(); |
884 | m_SearchChoice->Clear(); | |
885 | m_SearchChoice->Append(_("Search in all books")); | |
8ec2b484 HH |
886 | const wxHtmlBookRecArray& bookrec = m_Data->GetBookRecArray(); |
887 | int i, cnt = bookrec.GetCount(); | |
d5bb85a0 VS |
888 | for (i = 0; i < cnt; i++) |
889 | m_SearchChoice->Append(bookrec[i].GetTitle()); | |
8ec2b484 HH |
890 | m_SearchChoice->SetSelection(0); |
891 | } | |
892 | ||
893 | ||
b5a7b000 | 894 | void wxHtmlHelpFrame::RefreshLists() |
8ec2b484 | 895 | { |
b5a7b000 VS |
896 | CreateContents(); |
897 | CreateIndex(); | |
8ec2b484 HH |
898 | CreateSearch(); |
899 | } | |
900 | ||
901 | void wxHtmlHelpFrame::ReadCustomization(wxConfigBase *cfg, const wxString& path) | |
902 | { | |
903 | wxString oldpath; | |
904 | wxString tmp; | |
905 | ||
da4cc40c | 906 | if (path != wxEmptyString) |
4f9297b0 VS |
907 | { |
908 | oldpath = cfg->GetPath(); | |
909 | cfg->SetPath(_T("/") + path); | |
8ec2b484 HH |
910 | } |
911 | ||
4f9297b0 VS |
912 | m_Cfg.navig_on = cfg->Read(wxT("hcNavigPanel"), m_Cfg.navig_on) != 0; |
913 | m_Cfg.sashpos = cfg->Read(wxT("hcSashPos"), m_Cfg.sashpos); | |
914 | m_Cfg.x = cfg->Read(wxT("hcX"), m_Cfg.x); | |
915 | m_Cfg.y = cfg->Read(wxT("hcY"), m_Cfg.y); | |
916 | m_Cfg.w = cfg->Read(wxT("hcW"), m_Cfg.w); | |
917 | m_Cfg.h = cfg->Read(wxT("hcH"), m_Cfg.h); | |
8ec2b484 | 918 | |
4f9297b0 VS |
919 | m_FixedFace = cfg->Read(wxT("hcFixedFace"), m_FixedFace); |
920 | m_NormalFace = cfg->Read(wxT("hcNormalFace"), m_NormalFace); | |
921 | m_FontSize = cfg->Read(wxT("hcFontSize"), m_FontSize); | |
83efdf33 | 922 | |
382e6efe VS |
923 | { |
924 | int i; | |
925 | int cnt; | |
926 | wxString val, s; | |
f6bcfd97 | 927 | |
4f9297b0 | 928 | cnt = cfg->Read(wxT("hcBookmarksCnt"), 0L); |
da4cc40c | 929 | if (cnt != 0) |
3379ed37 | 930 | { |
382e6efe VS |
931 | m_BookmarksNames.Clear(); |
932 | m_BookmarksPages.Clear(); | |
da4cc40c | 933 | if (m_Bookmarks) |
3379ed37 | 934 | { |
4f9297b0 VS |
935 | m_Bookmarks->Clear(); |
936 | m_Bookmarks->Append(_("(bookmarks)")); | |
382e6efe | 937 | } |
f6bcfd97 | 938 | |
da4cc40c | 939 | for (i = 0; i < cnt; i++) |
3379ed37 | 940 | { |
0413cec5 | 941 | val.Printf(wxT("hcBookmark_%i"), i); |
4f9297b0 | 942 | s = cfg->Read(val); |
382e6efe | 943 | m_BookmarksNames.Add(s); |
4f9297b0 | 944 | if (m_Bookmarks) m_Bookmarks->Append(s); |
0413cec5 | 945 | val.Printf(wxT("hcBookmark_%i_url"), i); |
4f9297b0 | 946 | s = cfg->Read(val); |
382e6efe VS |
947 | m_BookmarksPages.Add(s); |
948 | } | |
949 | } | |
950 | } | |
951 | ||
8ec2b484 | 952 | if (m_HtmlWin) |
3e5296e7 | 953 | m_HtmlWin->ReadCustomization(cfg); |
8ec2b484 HH |
954 | |
955 | if (path != wxEmptyString) | |
4f9297b0 | 956 | cfg->SetPath(oldpath); |
8ec2b484 HH |
957 | } |
958 | ||
959 | void wxHtmlHelpFrame::WriteCustomization(wxConfigBase *cfg, const wxString& path) | |
960 | { | |
961 | wxString oldpath; | |
962 | wxString tmp; | |
8ec2b484 | 963 | |
da4cc40c | 964 | if (path != wxEmptyString) |
4f9297b0 VS |
965 | { |
966 | oldpath = cfg->GetPath(); | |
967 | cfg->SetPath(_T("/") + path); | |
8ec2b484 HH |
968 | } |
969 | ||
4f9297b0 VS |
970 | cfg->Write(wxT("hcNavigPanel"), m_Cfg.navig_on); |
971 | cfg->Write(wxT("hcSashPos"), (long)m_Cfg.sashpos); | |
972 | cfg->Write(wxT("hcX"), (long)m_Cfg.x); | |
973 | cfg->Write(wxT("hcY"), (long)m_Cfg.y); | |
974 | cfg->Write(wxT("hcW"), (long)m_Cfg.w); | |
975 | cfg->Write(wxT("hcH"), (long)m_Cfg.h); | |
976 | cfg->Write(wxT("hcFixedFace"), m_FixedFace); | |
977 | cfg->Write(wxT("hcNormalFace"), m_NormalFace); | |
978 | cfg->Write(wxT("hcFontSize"), (long)m_FontSize); | |
979 | ||
da4cc40c | 980 | if (m_Bookmarks) |
4f9297b0 | 981 | { |
382e6efe VS |
982 | int i; |
983 | int cnt = m_BookmarksNames.GetCount(); | |
984 | wxString val; | |
f6bcfd97 | 985 | |
4f9297b0 | 986 | cfg->Write(wxT("hcBookmarksCnt"), (long)cnt); |
da4cc40c | 987 | for (i = 0; i < cnt; i++) |
3379ed37 | 988 | { |
0413cec5 | 989 | val.Printf(wxT("hcBookmark_%i"), i); |
4f9297b0 | 990 | cfg->Write(val, m_BookmarksNames[i]); |
0413cec5 | 991 | val.Printf(wxT("hcBookmark_%i_url"), i); |
4f9297b0 | 992 | cfg->Write(val, m_BookmarksPages[i]); |
382e6efe VS |
993 | } |
994 | } | |
8ec2b484 HH |
995 | |
996 | if (m_HtmlWin) | |
3e5296e7 | 997 | m_HtmlWin->WriteCustomization(cfg); |
8ec2b484 HH |
998 | |
999 | if (path != wxEmptyString) | |
4f9297b0 | 1000 | cfg->SetPath(oldpath); |
8ec2b484 HH |
1001 | } |
1002 | ||
1003 | ||
83efdf33 VS |
1004 | |
1005 | ||
1006 | ||
8eb2940f | 1007 | static void SetFontsToHtmlWin(wxHtmlWindow *win, wxString scalf, wxString fixf, int size) |
83efdf33 | 1008 | { |
f6bcfd97 | 1009 | static int f_sizes[5][7] = |
83efdf33 | 1010 | { |
0646614d | 1011 | { 6, 7, 9, 12, 14, 16, 19}, |
f151e8b5 | 1012 | { 8, 9, 12, 14, 16, 19, 22}, |
83efdf33 | 1013 | {10, 12, 14, 16, 19, 24, 32}, |
0646614d VS |
1014 | {14, 16, 18, 24, 32, 38, 45}, |
1015 | {16, 20, 24, 32, 38, 45, 50} | |
83efdf33 | 1016 | }; |
f151e8b5 | 1017 | |
4f9297b0 | 1018 | win->SetFonts(scalf, fixf, f_sizes[size]); |
83efdf33 VS |
1019 | } |
1020 | ||
1021 | ||
1022 | class wxHtmlHelpFrameOptionsDialog : public wxDialog | |
1023 | { | |
1024 | public: | |
f151e8b5 | 1025 | wxComboBox *NormalFont, *FixedFont; |
83efdf33 VS |
1026 | wxRadioBox *RadioBox; |
1027 | wxHtmlWindow *TestWin; | |
1028 | ||
1029 | wxHtmlHelpFrameOptionsDialog(wxWindow *parent) : wxDialog(parent, -1, wxString(_("Help Browser Options"))) | |
1030 | { | |
0646614d | 1031 | wxString choices[5] = {_("very small"), _("small"), _("medium"), _("large"), _("very large")}; |
8eb2940f | 1032 | wxBoxSizer *topsizer, *sizer, *sizer2; |
83efdf33 VS |
1033 | |
1034 | topsizer = new wxBoxSizer(wxVERTICAL); | |
1035 | ||
1036 | sizer = new wxBoxSizer(wxHORIZONTAL); | |
1037 | ||
6f67eafe | 1038 | sizer2 = new wxStaticBoxSizer( new wxStaticBox(this, -1, _("Normal font:")), wxVERTICAL); |
4f9297b0 | 1039 | sizer2->Add(NormalFont = new wxComboBox(this, -1, wxEmptyString, wxDefaultPosition, |
f6bcfd97 | 1040 | wxSize(200, 200), |
382e6efe | 1041 | 0, NULL, wxCB_DROPDOWN | wxCB_READONLY), |
83efdf33 VS |
1042 | 1, wxEXPAND | wxLEFT | wxRIGHT, 10); |
1043 | ||
4f9297b0 | 1044 | sizer->Add(sizer2, 0, wxEXPAND | wxLEFT|wxRIGHT|wxTOP, 10); |
83efdf33 | 1045 | |
6f67eafe | 1046 | sizer2 = new wxStaticBoxSizer( new wxStaticBox(this, -1, _("Fixed font:")), wxVERTICAL); |
4f9297b0 | 1047 | sizer2->Add(FixedFont = new wxComboBox(this, -1, wxEmptyString, wxDefaultPosition, |
f6bcfd97 BP |
1048 | wxSize(200, 200), |
1049 | 0, NULL, wxCB_DROPDOWN | wxCB_READONLY), | |
83efdf33 VS |
1050 | 1, wxEXPAND | wxLEFT | wxRIGHT, 10); |
1051 | ||
4f9297b0 | 1052 | sizer->Add(sizer2, 0, wxEXPAND | wxLEFT|wxRIGHT|wxTOP, 10); |
83efdf33 | 1053 | |
4f9297b0 | 1054 | topsizer->Add(sizer); |
83efdf33 | 1055 | |
4f9297b0 | 1056 | topsizer->Add(RadioBox = new wxRadioBox(this, -1, _("Font size:"), |
f6bcfd97 | 1057 | wxDefaultPosition, wxDefaultSize, 5, choices, 5), |
6f67eafe | 1058 | 0, wxEXPAND | wxLEFT|wxRIGHT|wxTOP, 10); |
f6bcfd97 | 1059 | |
4f9297b0 | 1060 | topsizer->Add(new wxStaticText(this, -1, _("Preview:")), |
83efdf33 | 1061 | 0, wxLEFT | wxTOP, 10); |
4f9297b0 | 1062 | topsizer->Add(TestWin = new wxHtmlWindow(this, -1, wxDefaultPosition, wxSize(-1, 150)), |
6f67eafe | 1063 | 1, wxEXPAND | wxLEFT|wxTOP|wxRIGHT, 10); |
83efdf33 VS |
1064 | |
1065 | sizer = new wxBoxSizer(wxHORIZONTAL); | |
4f9297b0 VS |
1066 | sizer->Add(new wxButton(this, wxID_OK, _("OK")), 0, wxALL, 10); |
1067 | sizer->Add(new wxButton(this, wxID_CANCEL, _("Cancel")), 0, wxALL, 10); | |
1068 | topsizer->Add(sizer, 0, wxALIGN_RIGHT); | |
83efdf33 VS |
1069 | |
1070 | SetAutoLayout(TRUE); | |
1071 | SetSizer(topsizer); | |
4f9297b0 | 1072 | topsizer->Fit(this); |
83efdf33 VS |
1073 | Centre(wxBOTH); |
1074 | } | |
f6bcfd97 | 1075 | |
83efdf33 VS |
1076 | |
1077 | void UpdateTestWin() | |
1078 | { | |
1079 | wxBusyCursor bcur; | |
f6bcfd97 | 1080 | SetFontsToHtmlWin(TestWin, |
4f9297b0 VS |
1081 | NormalFont->GetStringSelection(), |
1082 | FixedFont->GetStringSelection(), | |
1083 | RadioBox->GetSelection()); | |
1084 | TestWin->SetPage(_( | |
f6bcfd97 BP |
1085 | "<html><body>\ |
1086 | Normal face<br>(and <u>underlined</u>. <i>Italic face.</i> \ | |
1087 | <b>Bold face.</b> <b><i>Bold italic face.</i></b><br>\ | |
1088 | <font size=-2>font size -2</font><br>\ | |
1089 | <font size=-1>font size -1</font><br>\ | |
1090 | <font size=+0>font size +0</font><br>\ | |
1091 | <font size=+1>font size +1</font><br>\ | |
1092 | <font size=+2>font size +2</font><br>\ | |
1093 | <font size=+3>font size +3</font><br>\ | |
1094 | <font size=+4>font size +4</font><br>\ | |
1095 | \ | |
1096 | <p><tt>Fixed size face.<br> <b>bold</b> <i>italic</i> \ | |
1097 | <b><i>bold italic <u>underlined</u></i></b><br>\ | |
1098 | <font size=-2>font size -2</font><br>\ | |
1099 | <font size=-1>font size -1</font><br>\ | |
1100 | <font size=+0>font size +0</font><br>\ | |
1101 | <font size=+1>font size +1</font><br>\ | |
1102 | <font size=+2>font size +2</font><br>\ | |
1103 | <font size=+3>font size +3</font><br>\ | |
1104 | <font size=+4>font size +4</font></tt>\ | |
1105 | </body></html>" | |
1106 | )); | |
83efdf33 VS |
1107 | } |
1108 | ||
33ac7e6f | 1109 | void OnUpdate(wxCommandEvent& WXUNUSED(event)) |
83efdf33 VS |
1110 | { |
1111 | UpdateTestWin(); | |
1112 | } | |
1113 | ||
1114 | DECLARE_EVENT_TABLE() | |
1115 | }; | |
1116 | ||
1117 | BEGIN_EVENT_TABLE(wxHtmlHelpFrameOptionsDialog, wxDialog) | |
f151e8b5 | 1118 | EVT_COMBOBOX(-1, wxHtmlHelpFrameOptionsDialog::OnUpdate) |
83efdf33 | 1119 | EVT_RADIOBOX(-1, wxHtmlHelpFrameOptionsDialog::OnUpdate) |
83efdf33 VS |
1120 | END_EVENT_TABLE() |
1121 | ||
1122 | ||
1123 | void wxHtmlHelpFrame::OptionsDialog() | |
1124 | { | |
1125 | wxHtmlHelpFrameOptionsDialog dlg(this); | |
1126 | unsigned i; | |
f6bcfd97 | 1127 | |
da4cc40c | 1128 | if (m_NormalFonts == NULL) |
4f9297b0 | 1129 | { |
83efdf33 VS |
1130 | wxFontEnumerator enu; |
1131 | enu.EnumerateFacenames(); | |
1132 | m_NormalFonts = new wxArrayString; | |
1133 | *m_NormalFonts = *enu.GetFacenames(); | |
4f9297b0 | 1134 | m_NormalFonts->Sort(); |
83efdf33 | 1135 | } |
da4cc40c | 1136 | if (m_FixedFonts == NULL) |
4f9297b0 | 1137 | { |
83efdf33 VS |
1138 | wxFontEnumerator enu; |
1139 | enu.EnumerateFacenames(wxFONTENCODING_SYSTEM, TRUE); | |
1140 | m_FixedFonts = new wxArrayString; | |
1141 | *m_FixedFonts = *enu.GetFacenames(); | |
4f9297b0 | 1142 | m_FixedFonts->Sort(); |
83efdf33 | 1143 | } |
f6bcfd97 | 1144 | |
4f9297b0 VS |
1145 | for (i = 0; i < m_NormalFonts->GetCount(); i++) |
1146 | dlg.NormalFont->Append((*m_NormalFonts)[i]); | |
1147 | for (i = 0; i < m_FixedFonts->GetCount(); i++) | |
1148 | dlg.FixedFont->Append((*m_FixedFonts)[i]); | |
1149 | if (!m_NormalFace.IsEmpty()) dlg.NormalFont->SetStringSelection(m_NormalFace); | |
1150 | else dlg.NormalFont->SetSelection(0); | |
1151 | if (!m_FixedFace.IsEmpty()) dlg.FixedFont->SetStringSelection(m_FixedFace); | |
1152 | else dlg.FixedFont->SetSelection(0); | |
1153 | dlg.RadioBox->SetSelection(m_FontSize); | |
83efdf33 | 1154 | dlg.UpdateTestWin(); |
f6bcfd97 | 1155 | |
da4cc40c | 1156 | if (dlg.ShowModal() == wxID_OK) |
4f9297b0 VS |
1157 | { |
1158 | m_NormalFace = dlg.NormalFont->GetStringSelection(); | |
1159 | m_FixedFace = dlg.FixedFont->GetStringSelection(); | |
1160 | m_FontSize = dlg.RadioBox->GetSelection(); | |
8eb2940f | 1161 | SetFontsToHtmlWin(m_HtmlWin, m_NormalFace, m_FixedFace, m_FontSize); |
83efdf33 VS |
1162 | } |
1163 | } | |
1164 | ||
1165 | ||
1166 | ||
0646614d VS |
1167 | void wxHtmlHelpFrame::NotifyPageChanged() |
1168 | { | |
1169 | if (m_UpdateContents && m_PagesHash) | |
1170 | { | |
4f9297b0 | 1171 | wxString an = m_HtmlWin->GetOpenedAnchor(); |
0646614d VS |
1172 | wxHtmlHelpHashData *ha; |
1173 | if (an.IsEmpty()) | |
4f9297b0 | 1174 | ha = (wxHtmlHelpHashData*) m_PagesHash->Get(m_HtmlWin->GetOpenedPage()); |
0646614d | 1175 | else |
4f9297b0 | 1176 | ha = (wxHtmlHelpHashData*) m_PagesHash->Get(m_HtmlWin->GetOpenedPage() + wxT("#") + an); |
0646614d VS |
1177 | if (ha) |
1178 | { | |
1179 | bool olduc = m_UpdateContents; | |
1180 | m_UpdateContents = FALSE; | |
4f9297b0 VS |
1181 | m_ContentsBox->SelectItem(ha->m_Id); |
1182 | m_ContentsBox->EnsureVisible(ha->m_Id); | |
0646614d VS |
1183 | m_UpdateContents = olduc; |
1184 | } | |
1185 | } | |
1186 | } | |
1187 | ||
83efdf33 VS |
1188 | |
1189 | ||
8ec2b484 HH |
1190 | /* |
1191 | EVENT HANDLING : | |
1192 | */ | |
1193 | ||
1194 | ||
1195 | void wxHtmlHelpFrame::OnToolbar(wxCommandEvent& event) | |
1196 | { | |
da4cc40c | 1197 | switch (event.GetId()) |
4f9297b0 | 1198 | { |
8ec2b484 | 1199 | case wxID_HTML_BACK : |
4f9297b0 | 1200 | m_HtmlWin->HistoryBack(); |
0646614d | 1201 | NotifyPageChanged(); |
8ec2b484 | 1202 | break; |
382e6efe | 1203 | |
8ec2b484 | 1204 | case wxID_HTML_FORWARD : |
4f9297b0 | 1205 | m_HtmlWin->HistoryForward(); |
0646614d VS |
1206 | NotifyPageChanged(); |
1207 | break; | |
f6bcfd97 BP |
1208 | |
1209 | case wxID_HTML_UP : | |
1210 | if (m_PagesHash) | |
0646614d | 1211 | { |
4f9297b0 | 1212 | wxString an = m_HtmlWin->GetOpenedAnchor(); |
0646614d VS |
1213 | wxHtmlHelpHashData *ha; |
1214 | if (an.IsEmpty()) | |
4f9297b0 | 1215 | ha = (wxHtmlHelpHashData*) m_PagesHash->Get(m_HtmlWin->GetOpenedPage()); |
0646614d | 1216 | else |
4f9297b0 VS |
1217 | ha = (wxHtmlHelpHashData*) m_PagesHash->Get(m_HtmlWin->GetOpenedPage() + wxT("#") + an); |
1218 | if (ha && ha->m_Index > 0) | |
0646614d | 1219 | { |
4f9297b0 | 1220 | wxHtmlContentsItem *it = m_Data->GetContents() + (ha->m_Index - 1); |
7df9fbc3 JS |
1221 | if (it->m_Page[0] != 0) |
1222 | { | |
468ae730 | 1223 | m_HtmlWin->LoadPage(it->GetFullPath()); |
7df9fbc3 JS |
1224 | NotifyPageChanged(); |
1225 | } | |
0646614d VS |
1226 | } |
1227 | } | |
1228 | break; | |
1229 | ||
f6bcfd97 BP |
1230 | case wxID_HTML_UPNODE : |
1231 | if (m_PagesHash) | |
0646614d | 1232 | { |
4f9297b0 | 1233 | wxString an = m_HtmlWin->GetOpenedAnchor(); |
0646614d VS |
1234 | wxHtmlHelpHashData *ha; |
1235 | if (an.IsEmpty()) | |
4f9297b0 | 1236 | ha = (wxHtmlHelpHashData*) m_PagesHash->Get(m_HtmlWin->GetOpenedPage()); |
0646614d | 1237 | else |
4f9297b0 VS |
1238 | ha = (wxHtmlHelpHashData*) m_PagesHash->Get(m_HtmlWin->GetOpenedPage() + wxT("#") + an); |
1239 | if (ha && ha->m_Index > 0) | |
0646614d | 1240 | { |
4f9297b0 | 1241 | int level = m_Data->GetContents()[ha->m_Index].m_Level - 1; |
0646614d | 1242 | wxHtmlContentsItem *it; |
4f9297b0 | 1243 | int ind = ha->m_Index - 1; |
f6bcfd97 | 1244 | |
4f9297b0 VS |
1245 | it = m_Data->GetContents() + ind; |
1246 | while (ind >= 0 && it->m_Level != level) ind--, it--; | |
0646614d VS |
1247 | if (ind >= 0) |
1248 | { | |
7df9fbc3 JS |
1249 | if (it->m_Page[0] != 0) |
1250 | { | |
468ae730 | 1251 | m_HtmlWin->LoadPage(it->GetFullPath()); |
7df9fbc3 JS |
1252 | NotifyPageChanged(); |
1253 | } | |
0646614d VS |
1254 | } |
1255 | } | |
1256 | } | |
1257 | break; | |
1258 | ||
f6bcfd97 BP |
1259 | case wxID_HTML_DOWN : |
1260 | if (m_PagesHash) | |
0646614d | 1261 | { |
4f9297b0 | 1262 | wxString an = m_HtmlWin->GetOpenedAnchor(); |
721ab905 | 1263 | wxString adr; |
0646614d | 1264 | wxHtmlHelpHashData *ha; |
f6bcfd97 | 1265 | |
4f9297b0 VS |
1266 | if (an.IsEmpty()) adr = m_HtmlWin->GetOpenedPage(); |
1267 | else adr = m_HtmlWin->GetOpenedPage() + wxT("#") + an; | |
721ab905 | 1268 | |
4f9297b0 | 1269 | ha = (wxHtmlHelpHashData*) m_PagesHash->Get(adr); |
0646614d | 1270 | |
4f9297b0 | 1271 | if (ha && ha->m_Index < m_Data->GetContentsCnt() - 1) |
0646614d | 1272 | { |
4f9297b0 | 1273 | wxHtmlContentsItem *it = m_Data->GetContents() + (ha->m_Index + 1); |
f6bcfd97 | 1274 | |
468ae730 | 1275 | while (it->GetFullPath() == adr) it++; |
7df9fbc3 JS |
1276 | |
1277 | if (it->m_Page[0] != 0) | |
1278 | { | |
468ae730 | 1279 | m_HtmlWin->LoadPage(it->GetFullPath()); |
7df9fbc3 JS |
1280 | NotifyPageChanged(); |
1281 | } | |
0646614d VS |
1282 | } |
1283 | } | |
8ec2b484 | 1284 | break; |
382e6efe | 1285 | |
8ec2b484 | 1286 | case wxID_HTML_PANEL : |
0646614d VS |
1287 | { |
1288 | if (! (m_Splitter && m_NavigPan)) | |
1289 | return ; | |
da4cc40c | 1290 | if (m_Splitter->IsSplit()) |
3379ed37 | 1291 | { |
4f9297b0 VS |
1292 | m_Cfg.sashpos = m_Splitter->GetSashPosition(); |
1293 | m_Splitter->Unsplit(m_NavigPan); | |
0646614d | 1294 | m_Cfg.navig_on = FALSE; |
da4cc40c | 1295 | } |
3379ed37 VZ |
1296 | else |
1297 | { | |
4f9297b0 VS |
1298 | m_NavigPan->Show(TRUE); |
1299 | m_HtmlWin->Show(TRUE); | |
1300 | m_Splitter->SplitVertically(m_NavigPan, m_HtmlWin, m_Cfg.sashpos); | |
0646614d VS |
1301 | m_Cfg.navig_on = TRUE; |
1302 | } | |
8ec2b484 HH |
1303 | } |
1304 | break; | |
382e6efe | 1305 | |
83efdf33 VS |
1306 | case wxID_HTML_OPTIONS : |
1307 | OptionsDialog(); | |
1308 | break; | |
f6bcfd97 BP |
1309 | |
1310 | case wxID_HTML_BOOKMARKSADD : | |
382e6efe VS |
1311 | { |
1312 | wxString item; | |
1313 | wxString url; | |
f6bcfd97 | 1314 | |
4f9297b0 VS |
1315 | item = m_HtmlWin->GetOpenedPageTitle(); |
1316 | url = m_HtmlWin->GetOpenedPage(); | |
da4cc40c | 1317 | if (item == wxEmptyString) |
3379ed37 | 1318 | item = url.AfterLast(wxT('/')); |
da4cc40c | 1319 | if (m_BookmarksPages.Index(url) == wxNOT_FOUND) |
3379ed37 | 1320 | { |
4f9297b0 | 1321 | m_Bookmarks->Append(item); |
382e6efe VS |
1322 | m_BookmarksNames.Add(item); |
1323 | m_BookmarksPages.Add(url); | |
1324 | } | |
1325 | } | |
1326 | break; | |
f6bcfd97 BP |
1327 | |
1328 | case wxID_HTML_BOOKMARKSREMOVE : | |
382e6efe VS |
1329 | { |
1330 | wxString item; | |
1331 | int pos; | |
f6bcfd97 | 1332 | |
4f9297b0 | 1333 | item = m_Bookmarks->GetStringSelection(); |
382e6efe | 1334 | pos = m_BookmarksNames.Index(item); |
da4cc40c | 1335 | if (pos != wxNOT_FOUND) |
3379ed37 | 1336 | { |
382e6efe VS |
1337 | m_BookmarksNames.Remove(pos); |
1338 | m_BookmarksPages.Remove(pos); | |
4f9297b0 | 1339 | m_Bookmarks->Delete(m_Bookmarks->GetSelection()); |
382e6efe VS |
1340 | } |
1341 | } | |
1342 | break; | |
0646614d VS |
1343 | |
1344 | #if wxUSE_PRINTING_ARCHITECTURE | |
1345 | case wxID_HTML_PRINT : | |
1346 | { | |
f6bcfd97 | 1347 | if (m_Printer == NULL) |
0646614d | 1348 | m_Printer = new wxHtmlEasyPrinting(_("Help Printing"), this); |
4f9297b0 | 1349 | if (!m_HtmlWin->GetOpenedPage()) |
f5ba273e VS |
1350 | wxLogWarning(_("Cannot print empty page.")); |
1351 | else | |
4f9297b0 | 1352 | m_Printer->PrintFile(m_HtmlWin->GetOpenedPage()); |
0646614d VS |
1353 | } |
1354 | break; | |
1355 | #endif | |
1356 | ||
1357 | case wxID_HTML_OPENFILE : | |
1358 | { | |
f6bcfd97 BP |
1359 | wxString s = wxFileSelector(_("Open HTML document"), |
1360 | wxEmptyString, | |
1361 | wxEmptyString, | |
1362 | wxEmptyString, | |
1363 | _( | |
1364 | "HTML files (*.htm)|*.htm|HTML files (*.html)|*.html|\ | |
1365 | Help books (*.htb)|*.htb|Help books (*.zip)|*.zip|\ | |
1366 | HTML Help Project (*.hhp)|*.hhp|\ | |
1367 | All files (*.*)|*" | |
1368 | ), | |
1369 | wxOPEN | wxFILE_MUST_EXIST, | |
1370 | this); | |
0646614d VS |
1371 | if (!s.IsEmpty()) |
1372 | { | |
1373 | wxString ext = s.Right(4).Lower(); | |
1374 | if (ext == _T(".zip") || ext == _T(".htb") || ext == _T(".hhp")) | |
1375 | { | |
1376 | wxBusyCursor bcur; | |
4f9297b0 | 1377 | m_Data->AddBook(s); |
0646614d VS |
1378 | RefreshLists(); |
1379 | } | |
1380 | else | |
4f9297b0 | 1381 | m_HtmlWin->LoadPage(s); |
0646614d VS |
1382 | } |
1383 | } | |
1384 | break; | |
8ec2b484 HH |
1385 | } |
1386 | } | |
1387 | ||
1388 | ||
1389 | ||
1390 | void wxHtmlHelpFrame::OnContentsSel(wxTreeEvent& event) | |
1391 | { | |
1392 | wxHtmlHelpTreeItemData *pg; | |
0646614d | 1393 | wxHtmlContentsItem *it; |
8ec2b484 | 1394 | |
4f9297b0 | 1395 | pg = (wxHtmlHelpTreeItemData*) m_ContentsBox->GetItemData(event.GetItem()); |
f6bcfd97 BP |
1396 | |
1397 | if (pg && m_UpdateContents) | |
0646614d | 1398 | { |
4f9297b0 | 1399 | it = m_Data->GetContents() + (pg->m_Id); |
0646614d | 1400 | m_UpdateContents = FALSE; |
7df9fbc3 | 1401 | if (it->m_Page[0] != 0) |
468ae730 | 1402 | m_HtmlWin->LoadPage(it->GetFullPath()); |
0646614d VS |
1403 | m_UpdateContents = TRUE; |
1404 | } | |
8ec2b484 HH |
1405 | } |
1406 | ||
1407 | ||
1408 | ||
a4c97004 | 1409 | void wxHtmlHelpFrame::OnIndexSel(wxCommandEvent& WXUNUSED(event)) |
8ec2b484 | 1410 | { |
4f9297b0 | 1411 | wxHtmlContentsItem *it = (wxHtmlContentsItem*) m_IndexList->GetClientData(m_IndexList->GetSelection()); |
7df9fbc3 | 1412 | if (it->m_Page[0] != 0) |
468ae730 | 1413 | m_HtmlWin->LoadPage(it->GetFullPath()); |
0646614d | 1414 | NotifyPageChanged(); |
8ec2b484 HH |
1415 | } |
1416 | ||
1417 | ||
f0b6a33f VS |
1418 | void wxHtmlHelpFrame::OnIndexFind(wxCommandEvent& event) |
1419 | { | |
4f9297b0 | 1420 | wxString sr = m_IndexText->GetLineText(0); |
240c2873 | 1421 | sr.MakeLower(); |
f6bcfd97 | 1422 | if (sr == wxEmptyString) |
4f9297b0 | 1423 | { |
f0b6a33f | 1424 | OnIndexAll(event); |
4f9297b0 | 1425 | } |
da4cc40c | 1426 | else |
4f9297b0 | 1427 | { |
f0b6a33f VS |
1428 | wxBusyCursor bcur; |
1429 | const wxChar *cstr = sr.c_str(); | |
33ac7e6f | 1430 | wxChar mybuff[512]; |
3379ed37 | 1431 | wxChar *ptr; |
f0b6a33f | 1432 | bool first = TRUE; |
f6bcfd97 | 1433 | |
f0b6a33f VS |
1434 | m_IndexList->Clear(); |
1435 | int cnt = m_Data->GetIndexCnt(); | |
1436 | wxHtmlContentsItem* index = m_Data->GetIndex(); | |
1437 | ||
240c2873 | 1438 | int displ = 0; |
f0b6a33f | 1439 | for (int i = 0; i < cnt; i++) |
240c2873 VS |
1440 | { |
1441 | wxStrncpy(mybuff, index[i].m_Name, 512); | |
f6bcfd97 BP |
1442 | mybuff[511] = _T('\0'); |
1443 | for (ptr = mybuff; *ptr != 0; ptr++) | |
1444 | if (*ptr >= _T('A') && *ptr <= _T('Z')) | |
1445 | *ptr -= (wxChar)(_T('A') - _T('a')); | |
da4cc40c | 1446 | if (wxStrstr(mybuff, cstr) != NULL) |
3379ed37 | 1447 | { |
4f9297b0 | 1448 | m_IndexList->Append(index[i].m_Name, (char*)(index + i)); |
240c2873 | 1449 | displ++; |
da4cc40c | 1450 | if (first) |
3379ed37 | 1451 | { |
7df9fbc3 | 1452 | if (index[i].m_Page[0] != 0) |
468ae730 | 1453 | m_HtmlWin->LoadPage(index[i].GetFullPath()); |
0646614d | 1454 | NotifyPageChanged(); |
f0b6a33f VS |
1455 | first = FALSE; |
1456 | } | |
1457 | } | |
240c2873 VS |
1458 | } |
1459 | ||
1460 | wxString cnttext; | |
1461 | cnttext.Printf(_("%i of %i"), displ, cnt); | |
4f9297b0 | 1462 | m_IndexCountInfo->SetLabel(cnttext); |
f0b6a33f | 1463 | |
4f9297b0 VS |
1464 | m_IndexText->SetSelection(0, sr.Length()); |
1465 | m_IndexText->SetFocus(); | |
f0b6a33f VS |
1466 | } |
1467 | } | |
1468 | ||
1469 | void wxHtmlHelpFrame::OnIndexAll(wxCommandEvent& WXUNUSED(event)) | |
1470 | { | |
1471 | wxBusyCursor bcur; | |
f6bcfd97 | 1472 | |
f0b6a33f VS |
1473 | m_IndexList->Clear(); |
1474 | int cnt = m_Data->GetIndexCnt(); | |
1475 | bool first = TRUE; | |
1476 | wxHtmlContentsItem* index = m_Data->GetIndex(); | |
1477 | ||
da4cc40c | 1478 | for (int i = 0; i < cnt; i++) |
4f9297b0 VS |
1479 | { |
1480 | m_IndexList->Append(index[i].m_Name, (char*)(index + i)); | |
da4cc40c | 1481 | if (first) |
3379ed37 | 1482 | { |
7df9fbc3 | 1483 | if (index[i].m_Page[0] != 0) |
468ae730 | 1484 | m_HtmlWin->LoadPage(index[i].GetFullPath()); |
0646614d | 1485 | NotifyPageChanged(); |
f0b6a33f VS |
1486 | first = FALSE; |
1487 | } | |
1488 | } | |
240c2873 VS |
1489 | |
1490 | wxString cnttext; | |
1491 | cnttext.Printf(_("%i of %i"), cnt, cnt); | |
4f9297b0 | 1492 | m_IndexCountInfo->SetLabel(cnttext); |
f0b6a33f VS |
1493 | } |
1494 | ||
8ec2b484 | 1495 | |
a4c97004 | 1496 | void wxHtmlHelpFrame::OnSearchSel(wxCommandEvent& WXUNUSED(event)) |
8ec2b484 | 1497 | { |
4f9297b0 | 1498 | wxHtmlContentsItem *it = (wxHtmlContentsItem*) m_SearchList->GetClientData(m_SearchList->GetSelection()); |
f6bcfd97 | 1499 | if (it) |
0646614d | 1500 | { |
7df9fbc3 | 1501 | if (it->m_Page[0] != 0) |
468ae730 | 1502 | m_HtmlWin->LoadPage(it->GetFullPath()); |
0646614d VS |
1503 | NotifyPageChanged(); |
1504 | } | |
8ec2b484 HH |
1505 | } |
1506 | ||
a4c97004 | 1507 | void wxHtmlHelpFrame::OnSearch(wxCommandEvent& WXUNUSED(event)) |
8ec2b484 | 1508 | { |
4f9297b0 | 1509 | wxString sr = m_SearchText->GetLineText(0); |
8ec2b484 HH |
1510 | |
1511 | if (sr != wxEmptyString) KeywordSearch(sr); | |
1512 | } | |
1513 | ||
382e6efe VS |
1514 | void wxHtmlHelpFrame::OnBookmarksSel(wxCommandEvent& WXUNUSED(event)) |
1515 | { | |
4f9297b0 | 1516 | wxString sr = m_Bookmarks->GetStringSelection(); |
382e6efe | 1517 | |
ae80f837 | 1518 | if (sr != wxEmptyString && sr != _("(bookmarks)")) |
0646614d | 1519 | { |
4f9297b0 | 1520 | m_HtmlWin->LoadPage(m_BookmarksPages[m_BookmarksNames.Index(sr)]); |
0646614d VS |
1521 | NotifyPageChanged(); |
1522 | } | |
382e6efe VS |
1523 | } |
1524 | ||
8ec2b484 HH |
1525 | void wxHtmlHelpFrame::OnCloseWindow(wxCloseEvent& evt) |
1526 | { | |
68364659 VS |
1527 | GetSize(&m_Cfg.w, &m_Cfg.h); |
1528 | GetPosition(&m_Cfg.x, &m_Cfg.y); | |
5c172c17 | 1529 | |
4f9297b0 | 1530 | if (m_Splitter && m_Cfg.navig_on) m_Cfg.sashpos = m_Splitter->GetSashPosition(); |
68364659 | 1531 | |
d5bb85a0 VS |
1532 | if (m_Config) |
1533 | WriteCustomization(m_Config, m_ConfigRoot); | |
68364659 | 1534 | |
b4414c1f JS |
1535 | if (m_helpController && m_helpController->IsKindOf(CLASSINFO(wxHtmlHelpController))) |
1536 | { | |
1537 | ((wxHtmlHelpController*) m_helpController)->OnCloseFrame(evt); | |
1538 | } | |
1539 | ||
8ec2b484 HH |
1540 | evt.Skip(); |
1541 | } | |
1542 | ||
1543 | BEGIN_EVENT_TABLE(wxHtmlHelpFrame, wxFrame) | |
ae80f837 VS |
1544 | EVT_TOOL_RANGE(wxID_HTML_PANEL, wxID_HTML_OPTIONS, wxHtmlHelpFrame::OnToolbar) |
1545 | EVT_BUTTON(wxID_HTML_BOOKMARKSREMOVE, wxHtmlHelpFrame::OnToolbar) | |
1546 | EVT_BUTTON(wxID_HTML_BOOKMARKSADD, wxHtmlHelpFrame::OnToolbar) | |
8ec2b484 HH |
1547 | EVT_TREE_SEL_CHANGED(wxID_HTML_TREECTRL, wxHtmlHelpFrame::OnContentsSel) |
1548 | EVT_LISTBOX(wxID_HTML_INDEXLIST, wxHtmlHelpFrame::OnIndexSel) | |
1549 | EVT_LISTBOX(wxID_HTML_SEARCHLIST, wxHtmlHelpFrame::OnSearchSel) | |
1550 | EVT_BUTTON(wxID_HTML_SEARCHBUTTON, wxHtmlHelpFrame::OnSearch) | |
1551 | EVT_TEXT_ENTER(wxID_HTML_SEARCHTEXT, wxHtmlHelpFrame::OnSearch) | |
f0b6a33f VS |
1552 | EVT_BUTTON(wxID_HTML_INDEXBUTTON, wxHtmlHelpFrame::OnIndexFind) |
1553 | EVT_TEXT_ENTER(wxID_HTML_INDEXTEXT, wxHtmlHelpFrame::OnIndexFind) | |
1554 | EVT_BUTTON(wxID_HTML_INDEXBUTTONALL, wxHtmlHelpFrame::OnIndexAll) | |
382e6efe | 1555 | EVT_COMBOBOX(wxID_HTML_BOOKMARKSLIST, wxHtmlHelpFrame::OnBookmarksSel) |
f6bcfd97 | 1556 | EVT_CLOSE(wxHtmlHelpFrame::OnCloseWindow) |
8ec2b484 HH |
1557 | END_EVENT_TABLE() |
1558 | ||
3379ed37 VZ |
1559 | #endif // wxUSE_WXHTML_HELP |
1560 |