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