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