1 /////////////////////////////////////////////////////////////////////////////
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
8 // Copyright: (c) Harm van der Heijden and Vaclav Slavik
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
13 #pragma implementation "helpfrm.h"
16 // For compilers that support precompilation, includes "wx.h"
18 #include "wx/wxprec.h"
30 #include "wx/object.h"
33 #include "wx/bmpbuttn.h"
34 #include "wx/statbox.h"
35 #include "wx/radiobox.h"
40 #include "wx/msgdlg.h"
43 #include "wx/html/helpfrm.h"
44 #include "wx/html/helpctrl.h"
45 #include "wx/textctrl.h"
46 #include "wx/notebook.h"
47 #include "wx/imaglist.h"
48 #include "wx/treectrl.h"
49 #include "wx/tokenzr.h"
50 #include "wx/wfstream.h"
51 #include "wx/html/htmlwin.h"
52 #include "wx/busyinfo.h"
53 #include "wx/progdlg.h"
54 #include "wx/toolbar.h"
55 #include "wx/fontenum.h"
56 #include "wx/stream.h"
57 #include "wx/filedlg.h"
58 #include "wx/artprov.h"
59 #include "wx/spinctrl.h"
61 // what is considered "small index"?
62 #define INDEX_IS_SMALL 100
64 /* Motif defines this as a macro */
69 //--------------------------------------------------------------------------
70 // wxHtmlHelpTreeItemData (private)
71 //--------------------------------------------------------------------------
73 class wxHtmlHelpTreeItemData
: public wxTreeItemData
76 #if defined(__VISAGECPP__)
77 // VA needs a default ctor for some reason....
78 wxHtmlHelpTreeItemData() : wxTreeItemData()
81 wxHtmlHelpTreeItemData(int id
) : wxTreeItemData()
88 //--------------------------------------------------------------------------
89 // wxHtmlHelpHashData (private)
90 //--------------------------------------------------------------------------
92 class wxHtmlHelpHashData
: public wxObject
95 wxHtmlHelpHashData(int index
, wxTreeItemId id
) : wxObject()
96 { m_Index
= index
; m_Id
= id
;}
97 ~wxHtmlHelpHashData() {}
104 //--------------------------------------------------------------------------
105 // wxHtmlHelpHtmlWindow (private)
106 //--------------------------------------------------------------------------
108 class wxHtmlHelpHtmlWindow
: public wxHtmlWindow
111 wxHtmlHelpHtmlWindow(wxHtmlHelpFrame
*fr
, wxWindow
*parent
) : wxHtmlWindow(parent
), m_Frame(fr
) {}
113 virtual void OnLinkClicked(const wxHtmlLinkInfo
& link
)
115 wxHtmlWindow::OnLinkClicked(link
);
116 const wxMouseEvent
*e
= link
.GetEvent();
117 if (e
== NULL
|| e
->LeftUp())
118 m_Frame
->NotifyPageChanged();
122 wxHtmlHelpFrame
*m_Frame
;
124 DECLARE_NO_COPY_CLASS(wxHtmlHelpHtmlWindow
)
129 //---------------------------------------------------------------------------
131 //---------------------------------------------------------------------------
136 //wxID_HTML_HELPFRAME = wxID_HIGHEST + 1,
137 wxID_HTML_PANEL
= wxID_HIGHEST
+ 2,
146 wxID_HTML_BOOKMARKSLIST
,
147 wxID_HTML_BOOKMARKSADD
,
148 wxID_HTML_BOOKMARKSREMOVE
,
153 wxID_HTML_INDEXBUTTON
,
154 wxID_HTML_INDEXBUTTONALL
,
156 wxID_HTML_SEARCHPAGE
,
157 wxID_HTML_SEARCHTEXT
,
158 wxID_HTML_SEARCHLIST
,
159 wxID_HTML_SEARCHBUTTON
,
160 wxID_HTML_SEARCHCHOICE
,
165 IMPLEMENT_DYNAMIC_CLASS(wxHtmlHelpFrame
, wxFrame
)
167 wxHtmlHelpFrame::wxHtmlHelpFrame(wxWindow
* parent
, wxWindowID id
, const wxString
& title
,
168 int style
, wxHtmlHelpData
* data
)
171 Create(parent
, id
, title
, style
);
174 void wxHtmlHelpFrame::Init(wxHtmlHelpData
* data
)
179 m_DataCreated
= false;
182 m_Data
= new wxHtmlHelpData();
183 m_DataCreated
= true;
186 m_ContentsBox
= NULL
;
188 m_IndexButton
= NULL
;
189 m_IndexButtonAll
= NULL
;
192 m_SearchButton
= NULL
;
194 m_SearchChoice
= NULL
;
195 m_IndexCountInfo
= NULL
;
198 m_NavigNotebook
= NULL
;
201 m_SearchCaseSensitive
= NULL
;
202 m_SearchWholeWords
= NULL
;
205 m_ConfigRoot
= wxEmptyString
;
207 m_Cfg
.x
= m_Cfg
.y
= 0;
211 m_Cfg
.navig_on
= true;
213 m_NormalFonts
= m_FixedFonts
= NULL
;
214 m_NormalFace
= m_FixedFace
= wxEmptyString
;
221 #if wxUSE_PRINTING_ARCHITECTURE
226 m_UpdateContents
= true;
227 m_helpController
= (wxHelpControllerBase
*) NULL
;
230 // Create: builds the GUI components.
231 // with the style flag it's possible to toggle the toolbar, contents, index and search
233 // m_HtmlWin will *always* be created, but it's important to realize that
234 // m_ContentsBox, m_IndexList, m_SearchList, m_SearchButton, m_SearchText and
235 // m_SearchButton may be NULL.
236 // moreover, if no contents, index or searchpage is needed, m_Splitter and
237 // m_NavigPan will be NULL too (with m_HtmlWin directly connected to the frame)
239 bool wxHtmlHelpFrame::Create(wxWindow
* parent
, wxWindowID id
,
240 const wxString
& WXUNUSED(title
), int style
)
244 wxImageList
*ContentsImageList
= new wxImageList(16, 16);
245 ContentsImageList
->Add(wxArtProvider::GetIcon(wxART_HELP_BOOK
, wxART_HELP_BROWSER
));
246 ContentsImageList
->Add(wxArtProvider::GetIcon(wxART_HELP_FOLDER
, wxART_HELP_BROWSER
));
247 ContentsImageList
->Add(wxArtProvider::GetIcon(wxART_HELP_PAGE
, wxART_HELP_BROWSER
));
249 // Do the config in two steps. We read the HtmlWindow customization after we
250 // create the window.
252 ReadCustomization(m_Config
, m_ConfigRoot
);
254 wxFrame::Create(parent
, id
, _("Help"),
255 wxPoint(m_Cfg
.x
, m_Cfg
.y
), wxSize(m_Cfg
.w
, m_Cfg
.h
),
256 wxDEFAULT_FRAME_STYLE
, wxT("wxHtmlHelp"));
258 GetPosition(&m_Cfg
.x
, &m_Cfg
.y
);
260 SetIcon(wxArtProvider::GetIcon(wxART_HELP
, wxART_HELP_BROWSER
));
262 // On the Mac, each modeless frame must have a menubar.
263 // TODO: add more menu items, and perhaps add a style to show
264 // the menubar: compulsory on the Mac, optional elsewhere.
266 wxMenuBar
* menuBar
= new wxMenuBar
;
268 wxMenu
* fileMenu
= new wxMenu
;
269 fileMenu
->Append(wxID_HTML_OPENFILE
, _("&Open..."));
270 fileMenu
->AppendSeparator();
271 fileMenu
->Append(wxID_CLOSE
, _("&Close"));
273 wxMenu
* helpMenu
= new wxMenu
;
274 helpMenu
->Append(wxID_ABOUT
, _("&About..."));
276 menuBar
->Append(fileMenu
,_("&File"));
277 menuBar
->Append(helpMenu
,_("&Help"));
281 int notebook_page
= 0;
287 if (style
& (wxHF_TOOLBAR
| wxHF_FLAT_TOOLBAR
))
289 wxToolBar
*toolBar
= CreateToolBar(wxNO_BORDER
| wxTB_HORIZONTAL
|
291 (style
& wxHF_FLAT_TOOLBAR
? wxTB_FLAT
: 0));
292 toolBar
->SetMargins( 2, 2 );
293 AddToolbarButtons(toolBar
, style
);
296 #endif //wxUSE_TOOLBAR
298 wxSizer
*navigSizer
= NULL
;
300 if (style
& (wxHF_CONTENTS
| wxHF_INDEX
| wxHF_SEARCH
))
302 // traditional help controller; splitter window with html page on the
303 // right and a notebook containing various pages on the left
304 m_Splitter
= new wxSplitterWindow(this);
306 m_HtmlWin
= new wxHtmlHelpHtmlWindow(this, m_Splitter
);
307 m_NavigPan
= new wxPanel(m_Splitter
, wxID_ANY
);
308 m_NavigNotebook
= new wxNotebook(m_NavigPan
, wxID_HTML_NOTEBOOK
,
309 wxDefaultPosition
, wxDefaultSize
);
311 navigSizer
= new wxBoxSizer(wxVERTICAL
);
312 navigSizer
->Add(m_NavigNotebook
, 1, wxEXPAND
);
314 m_NavigPan
->SetSizer(navigSizer
);
317 { // only html window, no notebook with index,contents etc
318 m_HtmlWin
= new wxHtmlWindow(this);
321 m_HtmlWin
->SetRelatedFrame(this, m_TitleFormat
);
322 m_HtmlWin
->SetRelatedStatusBar(0);
324 m_HtmlWin
->ReadCustomization(m_Config
, m_ConfigRoot
);
326 // contents tree panel?
327 if ( style
& wxHF_CONTENTS
)
329 wxWindow
*dummy
= new wxPanel(m_NavigNotebook
, wxID_HTML_INDEXPAGE
);
330 wxSizer
*topsizer
= new wxBoxSizer(wxVERTICAL
);
332 topsizer
->Add(0, 10);
334 dummy
->SetSizer(topsizer
);
336 if ( style
& wxHF_BOOKMARKS
)
338 m_Bookmarks
= new wxComboBox(dummy
, wxID_HTML_BOOKMARKSLIST
,
340 wxDefaultPosition
, wxDefaultSize
,
341 0, NULL
, wxCB_READONLY
| wxCB_SORT
);
342 m_Bookmarks
->Append(_("(bookmarks)"));
343 for (unsigned i
= 0; i
< m_BookmarksNames
.GetCount(); i
++)
344 m_Bookmarks
->Append(m_BookmarksNames
[i
]);
345 m_Bookmarks
->SetSelection(0);
347 wxBitmapButton
*bmpbt1
, *bmpbt2
;
348 bmpbt1
= new wxBitmapButton(dummy
, wxID_HTML_BOOKMARKSADD
,
349 wxArtProvider::GetBitmap(wxART_ADD_BOOKMARK
,
350 wxART_HELP_BROWSER
));
351 bmpbt2
= new wxBitmapButton(dummy
, wxID_HTML_BOOKMARKSREMOVE
,
352 wxArtProvider::GetBitmap(wxART_DEL_BOOKMARK
,
353 wxART_HELP_BROWSER
));
355 bmpbt1
->SetToolTip(_("Add current page to bookmarks"));
356 bmpbt2
->SetToolTip(_("Remove current page from bookmarks"));
357 #endif // wxUSE_TOOLTIPS
359 wxSizer
*sizer
= new wxBoxSizer(wxHORIZONTAL
);
361 sizer
->Add(m_Bookmarks
, 1, wxALIGN_CENTRE_VERTICAL
| wxRIGHT
, 5);
362 sizer
->Add(bmpbt1
, 0, wxALIGN_CENTRE_VERTICAL
| wxRIGHT
, 2);
363 sizer
->Add(bmpbt2
, 0, wxALIGN_CENTRE_VERTICAL
, 0);
365 topsizer
->Add(sizer
, 0, wxEXPAND
| wxLEFT
| wxBOTTOM
| wxRIGHT
, 10);
368 m_ContentsBox
= new wxTreeCtrl(dummy
, wxID_HTML_TREECTRL
,
369 wxDefaultPosition
, wxDefaultSize
,
371 wxTR_HAS_BUTTONS
| wxTR_HIDE_ROOT
|
374 m_ContentsBox
->AssignImageList(ContentsImageList
);
376 topsizer
->Add(m_ContentsBox
, 1,
377 wxEXPAND
| wxLEFT
| wxBOTTOM
| wxRIGHT
,
380 m_NavigNotebook
->AddPage(dummy
, _("Contents"));
381 m_ContentsPage
= notebook_page
++;
384 // index listbox panel?
385 if ( style
& wxHF_INDEX
)
387 wxWindow
*dummy
= new wxPanel(m_NavigNotebook
, wxID_HTML_INDEXPAGE
);
388 wxSizer
*topsizer
= new wxBoxSizer(wxVERTICAL
);
390 dummy
->SetSizer(topsizer
);
392 m_IndexText
= new wxTextCtrl(dummy
, wxID_HTML_INDEXTEXT
, wxEmptyString
,
393 wxDefaultPosition
, wxDefaultSize
,
395 m_IndexButton
= new wxButton(dummy
, wxID_HTML_INDEXBUTTON
, _("Find"));
396 m_IndexButtonAll
= new wxButton(dummy
, wxID_HTML_INDEXBUTTONALL
,
398 m_IndexCountInfo
= new wxStaticText(dummy
, wxID_HTML_COUNTINFO
,
399 wxEmptyString
, wxDefaultPosition
,
401 wxALIGN_RIGHT
| wxST_NO_AUTORESIZE
);
402 m_IndexList
= new wxListBox(dummy
, wxID_HTML_INDEXLIST
,
403 wxDefaultPosition
, wxDefaultSize
,
404 0, NULL
, wxLB_SINGLE
);
407 m_IndexButton
->SetToolTip(_("Display all index items that contain given substring. Search is case insensitive."));
408 m_IndexButtonAll
->SetToolTip(_("Show all items in index"));
409 #endif //wxUSE_TOOLTIPS
411 topsizer
->Add(m_IndexText
, 0, wxEXPAND
| wxALL
, 10);
412 wxSizer
*btsizer
= new wxBoxSizer(wxHORIZONTAL
);
413 btsizer
->Add(m_IndexButton
, 0, wxRIGHT
, 2);
414 btsizer
->Add(m_IndexButtonAll
);
415 topsizer
->Add(btsizer
, 0,
416 wxALIGN_RIGHT
| wxLEFT
| wxRIGHT
| wxBOTTOM
, 10);
417 topsizer
->Add(m_IndexCountInfo
, 0, wxEXPAND
| wxLEFT
| wxRIGHT
, 2);
418 topsizer
->Add(m_IndexList
, 1, wxEXPAND
| wxALL
, 2);
420 m_NavigNotebook
->AddPage(dummy
, _("Index"));
421 m_IndexPage
= notebook_page
++;
424 // search list panel?
425 if ( style
& wxHF_SEARCH
)
427 wxWindow
*dummy
= new wxPanel(m_NavigNotebook
, wxID_HTML_INDEXPAGE
);
428 wxSizer
*sizer
= new wxBoxSizer(wxVERTICAL
);
430 dummy
->SetSizer(sizer
);
432 m_SearchText
= new wxTextCtrl(dummy
, wxID_HTML_SEARCHTEXT
,
434 wxDefaultPosition
, wxDefaultSize
,
436 m_SearchChoice
= new wxChoice(dummy
, wxID_HTML_SEARCHCHOICE
,
437 wxDefaultPosition
, wxDefaultSize
);
438 m_SearchCaseSensitive
= new wxCheckBox(dummy
, wxID_ANY
, _("Case sensitive"));
439 m_SearchWholeWords
= new wxCheckBox(dummy
, wxID_ANY
, _("Whole words only"));
440 m_SearchButton
= new wxButton(dummy
, wxID_HTML_SEARCHBUTTON
, _("Search"));
442 m_SearchButton
->SetToolTip(_("Search contents of help book(s) for all occurences of the text you typed above"));
443 #endif //wxUSE_TOOLTIPS
444 m_SearchList
= new wxListBox(dummy
, wxID_HTML_SEARCHLIST
,
445 wxDefaultPosition
, wxDefaultSize
,
446 0, NULL
, wxLB_SINGLE
);
448 sizer
->Add(m_SearchText
, 0, wxEXPAND
| wxALL
, 10);
449 sizer
->Add(m_SearchChoice
, 0, wxEXPAND
| wxLEFT
| wxRIGHT
| wxBOTTOM
, 10);
450 sizer
->Add(m_SearchCaseSensitive
, 0, wxLEFT
| wxRIGHT
, 10);
451 sizer
->Add(m_SearchWholeWords
, 0, wxLEFT
| wxRIGHT
, 10);
452 sizer
->Add(m_SearchButton
, 0, wxALL
| wxALIGN_RIGHT
, 8);
453 sizer
->Add(m_SearchList
, 1, wxALL
| wxEXPAND
, 2);
455 m_NavigNotebook
->AddPage(dummy
, _("Search"));
456 m_SearchPage
= notebook_page
;
465 navigSizer
->SetSizeHints(m_NavigPan
);
466 m_NavigPan
->Layout();
470 if ( m_NavigPan
&& m_Splitter
)
472 m_Splitter
->SetMinimumPaneSize(20);
473 if ( m_Cfg
.navig_on
)
474 m_Splitter
->SplitVertically(m_NavigPan
, m_HtmlWin
, m_Cfg
.sashpos
);
476 if ( m_Cfg
.navig_on
)
479 m_Splitter
->SplitVertically(m_NavigPan
, m_HtmlWin
, m_Cfg
.sashpos
);
483 m_NavigPan
->Show(false);
484 m_Splitter
->Initialize(m_HtmlWin
);
488 // Reduce flicker by updating the splitter pane sizes before the
490 wxSizeEvent
sizeEvent(GetSize(), GetId());
491 ProcessEvent(sizeEvent
);
493 m_Splitter
->UpdateSize();
498 wxHtmlHelpFrame::~wxHtmlHelpFrame()
500 // PopEventHandler(); // wxhtmlhelpcontroller (not any more!)
503 if (m_NormalFonts
) delete m_NormalFonts
;
504 if (m_FixedFonts
) delete m_FixedFonts
;
507 WX_CLEAR_HASH_TABLE(*m_PagesHash
);
510 #if wxUSE_PRINTING_ARCHITECTURE
511 if (m_Printer
) delete m_Printer
;
517 void wxHtmlHelpFrame::AddToolbarButtons(wxToolBar
*toolBar
, int style
)
519 wxBitmap wpanelBitmap
=
520 wxArtProvider::GetBitmap(wxART_HELP_SIDE_PANEL
, wxART_HELP_BROWSER
);
521 wxBitmap wbackBitmap
=
522 wxArtProvider::GetBitmap(wxART_GO_BACK
, wxART_HELP_BROWSER
);
523 wxBitmap wforwardBitmap
=
524 wxArtProvider::GetBitmap(wxART_GO_FORWARD
, wxART_HELP_BROWSER
);
525 wxBitmap wupnodeBitmap
=
526 wxArtProvider::GetBitmap(wxART_GO_TO_PARENT
, wxART_HELP_BROWSER
);
528 wxArtProvider::GetBitmap(wxART_GO_UP
, wxART_HELP_BROWSER
);
529 wxBitmap wdownBitmap
=
530 wxArtProvider::GetBitmap(wxART_GO_DOWN
, wxART_HELP_BROWSER
);
531 wxBitmap wopenBitmap
=
532 wxArtProvider::GetBitmap(wxART_FILE_OPEN
, wxART_HELP_BROWSER
);
533 wxBitmap wprintBitmap
=
534 wxArtProvider::GetBitmap(wxART_PRINT
, wxART_HELP_BROWSER
);
535 wxBitmap woptionsBitmap
=
536 wxArtProvider::GetBitmap(wxART_HELP_SETTINGS
, wxART_HELP_BROWSER
);
538 wxASSERT_MSG( (wpanelBitmap
.Ok() && wbackBitmap
.Ok() &&
539 wforwardBitmap
.Ok() && wupnodeBitmap
.Ok() &&
540 wupBitmap
.Ok() && wdownBitmap
.Ok() &&
541 wopenBitmap
.Ok() && wprintBitmap
.Ok() &&
542 woptionsBitmap
.Ok()),
543 wxT("One or more HTML help frame toolbar bitmap could not be loaded.")) ;
546 toolBar
->AddTool(wxID_HTML_PANEL
, wpanelBitmap
, wxNullBitmap
,
547 false, -1, -1, (wxObject
*) NULL
,
548 _("Show/hide navigation panel"));
550 toolBar
->AddSeparator();
551 toolBar
->AddTool(wxID_HTML_BACK
, wbackBitmap
, wxNullBitmap
,
552 false, -1, -1, (wxObject
*) NULL
,
554 toolBar
->AddTool(wxID_HTML_FORWARD
, wforwardBitmap
, wxNullBitmap
,
555 false, -1, -1, (wxObject
*) NULL
,
557 toolBar
->AddSeparator();
559 toolBar
->AddTool(wxID_HTML_UPNODE
, wupnodeBitmap
, wxNullBitmap
,
560 false, -1, -1, (wxObject
*) NULL
,
561 _("Go one level up in document hierarchy"));
562 toolBar
->AddTool(wxID_HTML_UP
, wupBitmap
, wxNullBitmap
,
563 false, -1, -1, (wxObject
*) NULL
,
565 toolBar
->AddTool(wxID_HTML_DOWN
, wdownBitmap
, wxNullBitmap
,
566 false, -1, -1, (wxObject
*) NULL
,
569 if ((style
& wxHF_PRINT
) || (style
& wxHF_OPEN_FILES
))
570 toolBar
->AddSeparator();
572 if (style
& wxHF_OPEN_FILES
)
573 toolBar
->AddTool(wxID_HTML_OPENFILE
, wopenBitmap
, wxNullBitmap
,
574 false, -1, -1, (wxObject
*) NULL
,
575 _("Open HTML document"));
577 #if wxUSE_PRINTING_ARCHITECTURE
578 if (style
& wxHF_PRINT
)
579 toolBar
->AddTool(wxID_HTML_PRINT
, wprintBitmap
, wxNullBitmap
,
580 false, -1, -1, (wxObject
*) NULL
,
581 _("Print this page"));
584 toolBar
->AddSeparator();
585 toolBar
->AddTool(wxID_HTML_OPTIONS
, woptionsBitmap
, wxNullBitmap
,
586 false, -1, -1, (wxObject
*) NULL
,
587 _("Display options dialog"));
589 #endif //wxUSE_TOOLBAR
592 void wxHtmlHelpFrame::SetTitleFormat(const wxString
& format
)
595 m_HtmlWin
->SetRelatedFrame(this, format
);
596 m_TitleFormat
= format
;
600 bool wxHtmlHelpFrame::Display(const wxString
& x
)
602 wxString url
= m_Data
->FindPageByName(x
);
605 m_HtmlWin
->LoadPage(url
);
613 bool wxHtmlHelpFrame::Display(const int id
)
615 wxString url
= m_Data
->FindPageById(id
);
618 m_HtmlWin
->LoadPage(url
);
628 bool wxHtmlHelpFrame::DisplayContents()
633 if (!m_Splitter
->IsSplit())
637 m_Splitter
->SplitVertically(m_NavigPan
, m_HtmlWin
, m_Cfg
.sashpos
);
638 m_Cfg
.navig_on
= true;
641 m_NavigNotebook
->SetSelection(0);
643 if (m_Data
->GetBookRecArray().GetCount() > 0)
645 wxHtmlBookRecord
& book
= m_Data
->GetBookRecArray()[0];
646 if (!book
.GetStart().IsEmpty())
647 m_HtmlWin
->LoadPage(book
.GetFullPath(book
.GetStart()));
655 bool wxHtmlHelpFrame::DisplayIndex()
660 if (!m_Splitter
->IsSplit())
664 m_Splitter
->SplitVertically(m_NavigPan
, m_HtmlWin
, m_Cfg
.sashpos
);
667 m_NavigNotebook
->SetSelection(1);
669 if (m_Data
->GetBookRecArray().GetCount() > 0)
671 wxHtmlBookRecord
& book
= m_Data
->GetBookRecArray()[0];
672 if (!book
.GetStart().IsEmpty())
673 m_HtmlWin
->LoadPage(book
.GetFullPath(book
.GetStart()));
681 bool wxHtmlHelpFrame::KeywordSearch(const wxString
& keyword
,
682 wxHelpSearchMode mode
)
684 if (mode
== wxHELP_SEARCH_ALL
)
686 if ( !(m_SearchList
&&
687 m_SearchButton
&& m_SearchText
&& m_SearchChoice
) )
690 else if (mode
== wxHELP_SEARCH_INDEX
)
692 if ( !(m_IndexList
&&
693 m_IndexButton
&& m_IndexButtonAll
&& m_IndexText
) )
699 wxString book
= wxEmptyString
;
701 if (!m_Splitter
->IsSplit())
705 m_Splitter
->SplitVertically(m_NavigPan
, m_HtmlWin
, m_Cfg
.sashpos
);
708 if (mode
== wxHELP_SEARCH_ALL
)
710 m_NavigNotebook
->SetSelection(m_SearchPage
);
711 m_SearchList
->Clear();
712 m_SearchText
->SetValue(keyword
);
713 m_SearchButton
->Disable();
715 if (m_SearchChoice
->GetSelection() != 0)
716 book
= m_SearchChoice
->GetStringSelection();
718 wxHtmlSearchStatus
status(m_Data
, keyword
,
719 m_SearchCaseSensitive
->GetValue(),
720 m_SearchWholeWords
->GetValue(),
723 #if wxUSE_PROGRESSDLG
724 wxProgressDialog
progress(_("Searching..."),
725 _("No matching page found yet"),
726 status
.GetMaxIndex(), this,
727 wxPD_APP_MODAL
| wxPD_CAN_ABORT
| wxPD_AUTO_HIDE
);
731 while (status
.IsActive())
733 curi
= status
.GetCurIndex();
735 #if wxUSE_PROGRESSDLG
736 && !progress
.Update(curi
)
742 foundstr
.Printf(_("Found %i matches"), ++foundcnt
);
743 #if wxUSE_PROGRESSDLG
744 progress
.Update(status
.GetCurIndex(), foundstr
);
746 m_SearchList
->Append(status
.GetName(), status
.GetContentsItem());
750 m_SearchButton
->Enable();
751 m_SearchText
->SetSelection(0, keyword
.Length());
752 m_SearchText
->SetFocus();
754 else if (mode
== wxHELP_SEARCH_INDEX
)
756 m_NavigNotebook
->SetSelection(m_IndexPage
);
757 m_IndexList
->Clear();
758 m_IndexButton
->Disable();
759 m_IndexButtonAll
->Disable();
760 m_IndexText
->SetValue(keyword
);
762 wxCommandEvent dummy
;
763 OnIndexFind(dummy
); // what a hack...
764 m_IndexButton
->Enable();
765 m_IndexButtonAll
->Enable();
766 foundcnt
= m_IndexList
->GetCount();
771 wxHtmlContentsItem
*it
;
775 wxFAIL_MSG( _T("unknown help search mode") );
778 case wxHELP_SEARCH_ALL
:
779 it
= (wxHtmlContentsItem
*) m_SearchList
->GetClientData(0);
782 case wxHELP_SEARCH_INDEX
:
783 it
= (wxHtmlContentsItem
*) m_IndexList
->GetClientData(0);
789 m_HtmlWin
->LoadPage(it
->GetFullPath());
797 void wxHtmlHelpFrame::CreateContents()
804 WX_CLEAR_HASH_TABLE(*m_PagesHash
);
807 m_PagesHash
= new wxHashTable(wxKEY_STRING
, 2 * m_Data
->GetContentsCnt());
809 int cnt
= m_Data
->GetContentsCnt();
812 wxHtmlContentsItem
*it
;
814 const int MAX_ROOTS
= 64;
815 wxTreeItemId roots
[MAX_ROOTS
];
816 // VS: this array holds information about whether we've set item icon at
817 // given level. This is neccessary because m_Data has flat structure
818 // and there's no way of recognizing if some item has subitems or not.
819 // We set the icon later: when we find an item with level=n, we know
820 // that the last item with level=n-1 was folder with subitems, so we
821 // set its icon accordingly
822 bool imaged
[MAX_ROOTS
];
823 m_ContentsBox
->DeleteAllItems();
825 roots
[0] = m_ContentsBox
->AddRoot(_("(Help)"));
828 for (it
= m_Data
->GetContents(), i
= 0; i
< cnt
; i
++, it
++)
831 if (it
->m_Level
== 0)
833 if (m_hfStyle
& wxHF_MERGE_BOOKS
)
834 // VS: we don't want book nodes, books' content should
835 // appear under tree's root. This line will create "fake"
836 // record about book node so that the rest of this look
837 // will believe there really _is_ book node and will
842 roots
[1] = m_ContentsBox
->AppendItem(roots
[0],
843 it
->m_Name
, IMG_Book
, -1,
844 new wxHtmlHelpTreeItemData(i
));
845 m_ContentsBox
->SetItemBold(roots
[1], true);
849 // ...and their contents:
852 roots
[it
->m_Level
+ 1] = m_ContentsBox
->AppendItem(
853 roots
[it
->m_Level
], it
->m_Name
, IMG_Page
,
854 -1, new wxHtmlHelpTreeItemData(i
));
855 imaged
[it
->m_Level
+ 1] = false;
858 m_PagesHash
->Put(it
->GetFullPath(),
859 new wxHtmlHelpHashData(i
, roots
[it
->m_Level
+ 1]));
861 // Set the icon for the node one level up in the hiearachy,
862 // unless already done (see comment above imaged[] declaration)
863 if (!imaged
[it
->m_Level
])
865 int image
= IMG_Folder
;
866 if (m_hfStyle
& wxHF_ICONS_BOOK
)
868 else if (m_hfStyle
& wxHF_ICONS_BOOK_CHAPTER
)
869 image
= (it
->m_Level
== 1) ? IMG_Book
: IMG_Folder
;
870 m_ContentsBox
->SetItemImage(roots
[it
->m_Level
], image
);
871 m_ContentsBox
->SetItemImage(roots
[it
->m_Level
], image
,
872 wxTreeItemIcon_Selected
);
873 imaged
[it
->m_Level
] = true;
879 void wxHtmlHelpFrame::CreateIndex()
884 m_IndexList
->Clear();
886 int cnt
= m_Data
->GetIndexCnt();
889 if (cnt
> INDEX_IS_SMALL
) cnttext
.Printf(_("%i of %i"), 0, cnt
);
890 else cnttext
.Printf(_("%i of %i"), cnt
, cnt
);
891 m_IndexCountInfo
->SetLabel(cnttext
);
892 if (cnt
> INDEX_IS_SMALL
) return;
894 wxHtmlContentsItem
* index
= m_Data
->GetIndex();
896 for (int i
= 0; i
< cnt
; i
++)
897 m_IndexList
->Append(index
[i
].m_Name
, (char*)(index
+ i
));
900 void wxHtmlHelpFrame::CreateSearch()
902 if (! (m_SearchList
&& m_SearchChoice
))
904 m_SearchList
->Clear();
905 m_SearchChoice
->Clear();
906 m_SearchChoice
->Append(_("Search in all books"));
907 const wxHtmlBookRecArray
& bookrec
= m_Data
->GetBookRecArray();
908 int i
, cnt
= bookrec
.GetCount();
909 for (i
= 0; i
< cnt
; i
++)
910 m_SearchChoice
->Append(bookrec
[i
].GetTitle());
911 m_SearchChoice
->SetSelection(0);
915 void wxHtmlHelpFrame::RefreshLists()
922 void wxHtmlHelpFrame::ReadCustomization(wxConfigBase
*cfg
, const wxString
& path
)
927 if (path
!= wxEmptyString
)
929 oldpath
= cfg
->GetPath();
930 cfg
->SetPath(_T("/") + path
);
933 m_Cfg
.navig_on
= cfg
->Read(wxT("hcNavigPanel"), m_Cfg
.navig_on
) != 0;
934 m_Cfg
.sashpos
= cfg
->Read(wxT("hcSashPos"), m_Cfg
.sashpos
);
935 m_Cfg
.x
= cfg
->Read(wxT("hcX"), m_Cfg
.x
);
936 m_Cfg
.y
= cfg
->Read(wxT("hcY"), m_Cfg
.y
);
937 m_Cfg
.w
= cfg
->Read(wxT("hcW"), m_Cfg
.w
);
938 m_Cfg
.h
= cfg
->Read(wxT("hcH"), m_Cfg
.h
);
940 m_FixedFace
= cfg
->Read(wxT("hcFixedFace"), m_FixedFace
);
941 m_NormalFace
= cfg
->Read(wxT("hcNormalFace"), m_NormalFace
);
942 m_FontSize
= cfg
->Read(wxT("hcBaseFontSize"), m_FontSize
);
949 cnt
= cfg
->Read(wxT("hcBookmarksCnt"), 0L);
952 m_BookmarksNames
.Clear();
953 m_BookmarksPages
.Clear();
956 m_Bookmarks
->Clear();
957 m_Bookmarks
->Append(_("(bookmarks)"));
960 for (i
= 0; i
< cnt
; i
++)
962 val
.Printf(wxT("hcBookmark_%i"), i
);
964 m_BookmarksNames
.Add(s
);
965 if (m_Bookmarks
) m_Bookmarks
->Append(s
);
966 val
.Printf(wxT("hcBookmark_%i_url"), i
);
968 m_BookmarksPages
.Add(s
);
974 m_HtmlWin
->ReadCustomization(cfg
);
976 if (path
!= wxEmptyString
)
977 cfg
->SetPath(oldpath
);
980 void wxHtmlHelpFrame::WriteCustomization(wxConfigBase
*cfg
, const wxString
& path
)
985 if (path
!= wxEmptyString
)
987 oldpath
= cfg
->GetPath();
988 cfg
->SetPath(_T("/") + path
);
991 cfg
->Write(wxT("hcNavigPanel"), m_Cfg
.navig_on
);
992 cfg
->Write(wxT("hcSashPos"), (long)m_Cfg
.sashpos
);
995 // Don't write if iconized as this would make the window
996 // disappear next time it is shown!
997 cfg
->Write(wxT("hcX"), (long)m_Cfg
.x
);
998 cfg
->Write(wxT("hcY"), (long)m_Cfg
.y
);
999 cfg
->Write(wxT("hcW"), (long)m_Cfg
.w
);
1000 cfg
->Write(wxT("hcH"), (long)m_Cfg
.h
);
1002 cfg
->Write(wxT("hcFixedFace"), m_FixedFace
);
1003 cfg
->Write(wxT("hcNormalFace"), m_NormalFace
);
1004 cfg
->Write(wxT("hcBaseFontSize"), (long)m_FontSize
);
1009 int cnt
= m_BookmarksNames
.GetCount();
1012 cfg
->Write(wxT("hcBookmarksCnt"), (long)cnt
);
1013 for (i
= 0; i
< cnt
; i
++)
1015 val
.Printf(wxT("hcBookmark_%i"), i
);
1016 cfg
->Write(val
, m_BookmarksNames
[i
]);
1017 val
.Printf(wxT("hcBookmark_%i_url"), i
);
1018 cfg
->Write(val
, m_BookmarksPages
[i
]);
1023 m_HtmlWin
->WriteCustomization(cfg
);
1025 if (path
!= wxEmptyString
)
1026 cfg
->SetPath(oldpath
);
1033 static void SetFontsToHtmlWin(wxHtmlWindow
*win
, wxString scalf
, wxString fixf
, int size
)
1036 f_sizes
[0] = int(size
* 0.6);
1037 f_sizes
[1] = int(size
* 0.8);
1039 f_sizes
[3] = int(size
* 1.2);
1040 f_sizes
[4] = int(size
* 1.4);
1041 f_sizes
[5] = int(size
* 1.6);
1042 f_sizes
[6] = int(size
* 1.8);
1044 win
->SetFonts(scalf
, fixf
, f_sizes
);
1048 class wxHtmlHelpFrameOptionsDialog
: public wxDialog
1051 wxComboBox
*NormalFont
, *FixedFont
;
1052 wxSpinCtrl
*FontSize
;
1053 wxHtmlWindow
*TestWin
;
1055 wxHtmlHelpFrameOptionsDialog(wxWindow
*parent
)
1056 : wxDialog(parent
, wxID_ANY
, wxString(_("Help Browser Options")))
1058 wxBoxSizer
*topsizer
= new wxBoxSizer(wxVERTICAL
);
1059 wxFlexGridSizer
*sizer
= new wxFlexGridSizer(2, 3, 2, 5);
1061 sizer
->Add(new wxStaticText(this, wxID_ANY
, _("Normal font:")));
1062 sizer
->Add(new wxStaticText(this, wxID_ANY
, _("Fixed font:")));
1063 sizer
->Add(new wxStaticText(this, wxID_ANY
, _("Font size:")));
1065 sizer
->Add(NormalFont
= new wxComboBox(this, wxID_ANY
, wxEmptyString
, wxDefaultPosition
,
1067 0, NULL
, wxCB_DROPDOWN
| wxCB_READONLY
));
1069 sizer
->Add(FixedFont
= new wxComboBox(this, wxID_ANY
, wxEmptyString
, wxDefaultPosition
,
1071 0, NULL
, wxCB_DROPDOWN
| wxCB_READONLY
));
1073 sizer
->Add(FontSize
= new wxSpinCtrl(this, wxID_ANY
));
1074 FontSize
->SetRange(2, 100);
1076 topsizer
->Add(sizer
, 0, wxLEFT
|wxRIGHT
|wxTOP
, 10);
1078 topsizer
->Add(new wxStaticText(this, wxID_ANY
, _("Preview:")),
1079 0, wxLEFT
| wxTOP
, 10);
1080 topsizer
->Add(TestWin
= new wxHtmlWindow(this, wxID_ANY
, wxDefaultPosition
, wxSize(20, 150),
1081 wxHW_SCROLLBAR_AUTO
| wxSUNKEN_BORDER
),
1082 1, wxEXPAND
| wxLEFT
|wxTOP
|wxRIGHT
, 10);
1084 wxBoxSizer
*sizer2
= new wxBoxSizer(wxHORIZONTAL
);
1086 sizer2
->Add(ok
= new wxButton(this, wxID_OK
, _("OK")), 0, wxALL
, 10);
1088 sizer2
->Add(new wxButton(this, wxID_CANCEL
, _("Cancel")), 0, wxALL
, 10);
1089 topsizer
->Add(sizer2
, 0, wxALIGN_RIGHT
);
1092 topsizer
->Fit(this);
1097 void UpdateTestWin()
1100 SetFontsToHtmlWin(TestWin
,
1101 NormalFont
->GetStringSelection(),
1102 FixedFont
->GetStringSelection(),
1103 FontSize
->GetValue());
1105 wxString
content(_("font size"));
1107 content
= _T("<font size=-2>") + content
+ _T(" -2</font><br>")
1108 _T("<font size=-1>") + content
+ _T(" -1</font><br>")
1109 _T("<font size=+0>") + content
+ _T(" +0</font><br>")
1110 _T("<font size=+1>") + content
+ _T(" +1</font><br>")
1111 _T("<font size=+2>") + content
+ _T(" +2</font><br>")
1112 _T("<font size=+3>") + content
+ _T(" +3</font><br>")
1113 _T("<font size=+4>") + content
+ _T(" +4</font><br>") ;
1115 content
= wxString( _T("<html><body><table><tr><td>") ) +
1116 _("Normal face<br>and <u>underlined</u>. ") +
1117 _("<i>Italic face.</i> ") +
1118 _("<b>Bold face.</b> ") +
1119 _("<b><i>Bold italic face.</i></b><br>") +
1121 wxString( _T("</td><td><tt>") ) +
1122 _("Fixed size face.<br> <b>bold</b> <i>italic</i> ") +
1123 _("<b><i>bold italic <u>underlined</u></i></b><br>") +
1125 _T("</tt></td></tr></table></body></html>");
1127 TestWin
->SetPage( content
);
1130 void OnUpdate(wxCommandEvent
& WXUNUSED(event
))
1134 void OnUpdateSpin(wxSpinEvent
& WXUNUSED(event
))
1139 DECLARE_EVENT_TABLE()
1140 DECLARE_NO_COPY_CLASS(wxHtmlHelpFrameOptionsDialog
)
1143 BEGIN_EVENT_TABLE(wxHtmlHelpFrameOptionsDialog
, wxDialog
)
1144 EVT_COMBOBOX(wxID_ANY
, wxHtmlHelpFrameOptionsDialog::OnUpdate
)
1145 EVT_SPINCTRL(wxID_ANY
, wxHtmlHelpFrameOptionsDialog::OnUpdateSpin
)
1148 void wxHtmlHelpFrame::OptionsDialog()
1150 wxHtmlHelpFrameOptionsDialog
dlg(this);
1153 if (m_NormalFonts
== NULL
)
1155 wxFontEnumerator enu
;
1156 enu
.EnumerateFacenames();
1157 m_NormalFonts
= new wxArrayString
;
1158 *m_NormalFonts
= *enu
.GetFacenames();
1159 m_NormalFonts
->Sort(wxStringSortAscending
);
1161 if (m_FixedFonts
== NULL
)
1163 wxFontEnumerator enu
;
1164 enu
.EnumerateFacenames(wxFONTENCODING_SYSTEM
, true /*enum fixed width only*/);
1165 m_FixedFonts
= new wxArrayString
;
1166 *m_FixedFonts
= *enu
.GetFacenames();
1167 m_FixedFonts
->Sort(wxStringSortAscending
);
1170 // VS: We want to show the font that is actually used by wxHtmlWindow.
1171 // If customization dialog wasn't used yet, facenames are empty and
1172 // wxHtmlWindow uses default fonts -- let's find out what they
1173 // are so that we can pass them to the dialog:
1174 if (m_NormalFace
.empty())
1176 wxFont
fnt(m_FontSize
, wxSWISS
, wxNORMAL
, wxNORMAL
, false);
1177 m_NormalFace
= fnt
.GetFaceName();
1179 if (m_FixedFace
.empty())
1181 wxFont
fnt(m_FontSize
, wxMODERN
, wxNORMAL
, wxNORMAL
, false);
1182 m_FixedFace
= fnt
.GetFaceName();
1185 for (i
= 0; i
< m_NormalFonts
->GetCount(); i
++)
1186 dlg
.NormalFont
->Append((*m_NormalFonts
)[i
]);
1187 for (i
= 0; i
< m_FixedFonts
->GetCount(); i
++)
1188 dlg
.FixedFont
->Append((*m_FixedFonts
)[i
]);
1189 if (!m_NormalFace
.empty())
1190 dlg
.NormalFont
->SetStringSelection(m_NormalFace
);
1192 dlg
.NormalFont
->SetSelection(0);
1193 if (!m_FixedFace
.empty())
1194 dlg
.FixedFont
->SetStringSelection(m_FixedFace
);
1196 dlg
.FixedFont
->SetSelection(0);
1197 dlg
.FontSize
->SetValue(m_FontSize
);
1198 dlg
.UpdateTestWin();
1200 if (dlg
.ShowModal() == wxID_OK
)
1202 m_NormalFace
= dlg
.NormalFont
->GetStringSelection();
1203 m_FixedFace
= dlg
.FixedFont
->GetStringSelection();
1204 m_FontSize
= dlg
.FontSize
->GetValue();
1205 SetFontsToHtmlWin(m_HtmlWin
, m_NormalFace
, m_FixedFace
, m_FontSize
);
1211 void wxHtmlHelpFrame::NotifyPageChanged()
1213 if (m_UpdateContents
&& m_PagesHash
)
1215 wxString an
= m_HtmlWin
->GetOpenedAnchor();
1216 wxHtmlHelpHashData
*ha
;
1218 ha
= (wxHtmlHelpHashData
*) m_PagesHash
->Get(m_HtmlWin
->GetOpenedPage());
1220 ha
= (wxHtmlHelpHashData
*) m_PagesHash
->Get(m_HtmlWin
->GetOpenedPage() + wxT("#") + an
);
1223 bool olduc
= m_UpdateContents
;
1224 m_UpdateContents
= false;
1225 m_ContentsBox
->SelectItem(ha
->m_Id
);
1226 m_ContentsBox
->EnsureVisible(ha
->m_Id
);
1227 m_UpdateContents
= olduc
;
1239 void wxHtmlHelpFrame::OnActivate(wxActivateEvent
& event
)
1241 // This saves one mouse click when using the
1242 // wxHTML for context sensitive help systems
1244 // NB: wxActivateEvent is a bit broken in wxGTK
1245 // and is sometimes sent when it should not be
1246 if (event
.GetActive() && m_HtmlWin
)
1247 m_HtmlWin
->SetFocus();
1253 void wxHtmlHelpFrame::OnToolbar(wxCommandEvent
& event
)
1255 switch (event
.GetId())
1257 case wxID_HTML_BACK
:
1258 m_HtmlWin
->HistoryBack();
1259 NotifyPageChanged();
1262 case wxID_HTML_FORWARD
:
1263 m_HtmlWin
->HistoryForward();
1264 NotifyPageChanged();
1270 wxString an
= m_HtmlWin
->GetOpenedAnchor();
1271 wxHtmlHelpHashData
*ha
;
1273 ha
= (wxHtmlHelpHashData
*) m_PagesHash
->Get(m_HtmlWin
->GetOpenedPage());
1275 ha
= (wxHtmlHelpHashData
*) m_PagesHash
->Get(m_HtmlWin
->GetOpenedPage() + wxT("#") + an
);
1276 if (ha
&& ha
->m_Index
> 0)
1278 wxHtmlContentsItem
*it
= m_Data
->GetContents() + (ha
->m_Index
- 1);
1279 if (it
->m_Page
[0] != 0)
1281 m_HtmlWin
->LoadPage(it
->GetFullPath());
1282 NotifyPageChanged();
1288 case wxID_HTML_UPNODE
:
1291 wxString an
= m_HtmlWin
->GetOpenedAnchor();
1292 wxHtmlHelpHashData
*ha
;
1294 ha
= (wxHtmlHelpHashData
*) m_PagesHash
->Get(m_HtmlWin
->GetOpenedPage());
1296 ha
= (wxHtmlHelpHashData
*) m_PagesHash
->Get(m_HtmlWin
->GetOpenedPage() + wxT("#") + an
);
1297 if (ha
&& ha
->m_Index
> 0)
1299 int level
= m_Data
->GetContents()[ha
->m_Index
].m_Level
- 1;
1300 wxHtmlContentsItem
*it
;
1301 int ind
= ha
->m_Index
- 1;
1303 it
= m_Data
->GetContents() + ind
;
1304 while (ind
>= 0 && it
->m_Level
!= level
) ind
--, it
--;
1307 if (it
->m_Page
[0] != 0)
1309 m_HtmlWin
->LoadPage(it
->GetFullPath());
1310 NotifyPageChanged();
1317 case wxID_HTML_DOWN
:
1320 wxString an
= m_HtmlWin
->GetOpenedAnchor();
1322 wxHtmlHelpHashData
*ha
;
1324 if (an
.IsEmpty()) adr
= m_HtmlWin
->GetOpenedPage();
1325 else adr
= m_HtmlWin
->GetOpenedPage() + wxT("#") + an
;
1327 ha
= (wxHtmlHelpHashData
*) m_PagesHash
->Get(adr
);
1329 if (ha
&& ha
->m_Index
< m_Data
->GetContentsCnt() - 1)
1331 wxHtmlContentsItem
*it
= m_Data
->GetContents() + (ha
->m_Index
+ 1);
1333 while (it
->GetFullPath() == adr
) it
++;
1335 if (it
->m_Page
[0] != 0)
1337 m_HtmlWin
->LoadPage(it
->GetFullPath());
1338 NotifyPageChanged();
1344 case wxID_HTML_PANEL
:
1346 if (! (m_Splitter
&& m_NavigPan
))
1348 if (m_Splitter
->IsSplit())
1350 m_Cfg
.sashpos
= m_Splitter
->GetSashPosition();
1351 m_Splitter
->Unsplit(m_NavigPan
);
1352 m_Cfg
.navig_on
= false;
1358 m_Splitter
->SplitVertically(m_NavigPan
, m_HtmlWin
, m_Cfg
.sashpos
);
1359 m_Cfg
.navig_on
= true;
1364 case wxID_HTML_OPTIONS
:
1368 case wxID_HTML_BOOKMARKSADD
:
1373 item
= m_HtmlWin
->GetOpenedPageTitle();
1374 url
= m_HtmlWin
->GetOpenedPage();
1375 if (item
== wxEmptyString
)
1376 item
= url
.AfterLast(wxT('/'));
1377 if (m_BookmarksPages
.Index(url
) == wxNOT_FOUND
)
1379 m_Bookmarks
->Append(item
);
1380 m_BookmarksNames
.Add(item
);
1381 m_BookmarksPages
.Add(url
);
1386 case wxID_HTML_BOOKMARKSREMOVE
:
1391 item
= m_Bookmarks
->GetStringSelection();
1392 pos
= m_BookmarksNames
.Index(item
);
1393 if (pos
!= wxNOT_FOUND
)
1395 m_BookmarksNames
.RemoveAt(pos
);
1396 m_BookmarksPages
.RemoveAt(pos
);
1397 m_Bookmarks
->Delete(m_Bookmarks
->GetSelection());
1402 #if wxUSE_PRINTING_ARCHITECTURE
1403 case wxID_HTML_PRINT
:
1405 if (m_Printer
== NULL
)
1406 m_Printer
= new wxHtmlEasyPrinting(_("Help Printing"), this);
1407 if (!m_HtmlWin
->GetOpenedPage())
1408 wxLogWarning(_("Cannot print empty page."));
1410 m_Printer
->PrintFile(m_HtmlWin
->GetOpenedPage());
1415 case wxID_HTML_OPENFILE
:
1417 wxString filemask
= wxString(
1418 _("HTML files (*.html;*.htm)|*.html;*.htm|")) +
1419 _("Help books (*.htb)|*.htb|Help books (*.zip)|*.zip|") +
1420 _("HTML Help Project (*.hhp)|*.hhp|") +
1422 _("Compressed HTML Help file (*.chm)|*.chm|") +
1424 _("All files (*.*)|*");
1425 wxString s
= wxFileSelector(_("Open HTML document"),
1430 wxOPEN
| wxFILE_MUST_EXIST
,
1434 wxString ext
= s
.Right(4).Lower();
1435 if (ext
== _T(".zip") || ext
== _T(".htb") ||
1437 ext
== _T(".chm") ||
1446 m_HtmlWin
->LoadPage(s
);
1455 void wxHtmlHelpFrame::OnContentsSel(wxTreeEvent
& event
)
1457 wxHtmlHelpTreeItemData
*pg
;
1458 wxHtmlContentsItem
*it
;
1460 pg
= (wxHtmlHelpTreeItemData
*) m_ContentsBox
->GetItemData(event
.GetItem());
1462 if (pg
&& m_UpdateContents
)
1464 it
= m_Data
->GetContents() + (pg
->m_Id
);
1465 m_UpdateContents
= false;
1466 if (it
->m_Page
[0] != 0)
1467 m_HtmlWin
->LoadPage(it
->GetFullPath());
1468 m_UpdateContents
= true;
1474 void wxHtmlHelpFrame::OnIndexSel(wxCommandEvent
& WXUNUSED(event
))
1476 wxHtmlContentsItem
*it
= (wxHtmlContentsItem
*) m_IndexList
->GetClientData(m_IndexList
->GetSelection());
1477 if (it
->m_Page
[0] != 0)
1478 m_HtmlWin
->LoadPage(it
->GetFullPath());
1479 NotifyPageChanged();
1483 void wxHtmlHelpFrame::OnIndexFind(wxCommandEvent
& event
)
1485 wxString sr
= m_IndexText
->GetLineText(0);
1487 if (sr
== wxEmptyString
)
1494 const wxChar
*cstr
= sr
.c_str();
1499 m_IndexList
->Clear();
1500 int cnt
= m_Data
->GetIndexCnt();
1501 wxHtmlContentsItem
* index
= m_Data
->GetIndex();
1504 for (int i
= 0; i
< cnt
; i
++)
1506 wxStrncpy(mybuff
, index
[i
].m_Name
, 512);
1507 mybuff
[511] = _T('\0');
1508 for (ptr
= mybuff
; *ptr
!= 0; ptr
++)
1509 if (*ptr
>= _T('A') && *ptr
<= _T('Z'))
1510 *ptr
-= (wxChar
)(_T('A') - _T('a'));
1511 if (wxStrstr(mybuff
, cstr
) != NULL
)
1513 m_IndexList
->Append(index
[i
].m_Name
, (char*)(index
+ i
));
1517 if (index
[i
].m_Page
[0] != 0)
1518 m_HtmlWin
->LoadPage(index
[i
].GetFullPath());
1519 NotifyPageChanged();
1526 cnttext
.Printf(_("%i of %i"), displ
, cnt
);
1527 m_IndexCountInfo
->SetLabel(cnttext
);
1529 m_IndexText
->SetSelection(0, sr
.Length());
1530 m_IndexText
->SetFocus();
1534 void wxHtmlHelpFrame::OnIndexAll(wxCommandEvent
& WXUNUSED(event
))
1538 m_IndexList
->Clear();
1539 int cnt
= m_Data
->GetIndexCnt();
1541 wxHtmlContentsItem
* index
= m_Data
->GetIndex();
1543 for (int i
= 0; i
< cnt
; i
++)
1545 m_IndexList
->Append(index
[i
].m_Name
, (char*)(index
+ i
));
1548 if (index
[i
].m_Page
[0] != 0)
1549 m_HtmlWin
->LoadPage(index
[i
].GetFullPath());
1550 NotifyPageChanged();
1556 cnttext
.Printf(_("%i of %i"), cnt
, cnt
);
1557 m_IndexCountInfo
->SetLabel(cnttext
);
1561 void wxHtmlHelpFrame::OnSearchSel(wxCommandEvent
& WXUNUSED(event
))
1563 wxHtmlContentsItem
*it
= (wxHtmlContentsItem
*) m_SearchList
->GetClientData(m_SearchList
->GetSelection());
1566 if (it
->m_Page
[0] != 0)
1567 m_HtmlWin
->LoadPage(it
->GetFullPath());
1568 NotifyPageChanged();
1572 void wxHtmlHelpFrame::OnSearch(wxCommandEvent
& WXUNUSED(event
))
1574 wxString sr
= m_SearchText
->GetLineText(0);
1577 KeywordSearch(sr
, wxHELP_SEARCH_ALL
);
1580 void wxHtmlHelpFrame::OnBookmarksSel(wxCommandEvent
& WXUNUSED(event
))
1582 wxString sr
= m_Bookmarks
->GetStringSelection();
1584 if (sr
!= wxEmptyString
&& sr
!= _("(bookmarks)"))
1586 m_HtmlWin
->LoadPage(m_BookmarksPages
[m_BookmarksNames
.Index(sr
)]);
1587 NotifyPageChanged();
1591 void wxHtmlHelpFrame::OnCloseWindow(wxCloseEvent
& evt
)
1593 GetSize(&m_Cfg
.w
, &m_Cfg
.h
);
1594 GetPosition(&m_Cfg
.x
, &m_Cfg
.y
);
1603 if (m_Splitter
&& m_Cfg
.navig_on
) m_Cfg
.sashpos
= m_Splitter
->GetSashPosition();
1606 WriteCustomization(m_Config
, m_ConfigRoot
);
1608 if (m_helpController
&& m_helpController
->IsKindOf(CLASSINFO(wxHtmlHelpController
)))
1610 ((wxHtmlHelpController
*) m_helpController
)->OnCloseFrame(evt
);
1617 void wxHtmlHelpFrame::OnClose(wxCommandEvent
& event
)
1622 void wxHtmlHelpFrame::OnAbout(wxCommandEvent
& event
)
1624 wxMessageBox(wxT("wxWidgets HTML Help Viewer (c) 1998-2003, Vaclav Slavik et al"), wxT("HelpView"),
1625 wxICON_INFORMATION
|wxOK
, this);
1629 BEGIN_EVENT_TABLE(wxHtmlHelpFrame
, wxFrame
)
1630 EVT_ACTIVATE(wxHtmlHelpFrame::OnActivate
)
1631 EVT_TOOL_RANGE(wxID_HTML_PANEL
, wxID_HTML_OPTIONS
, wxHtmlHelpFrame::OnToolbar
)
1632 EVT_BUTTON(wxID_HTML_BOOKMARKSREMOVE
, wxHtmlHelpFrame::OnToolbar
)
1633 EVT_BUTTON(wxID_HTML_BOOKMARKSADD
, wxHtmlHelpFrame::OnToolbar
)
1634 EVT_TREE_SEL_CHANGED(wxID_HTML_TREECTRL
, wxHtmlHelpFrame::OnContentsSel
)
1635 EVT_LISTBOX(wxID_HTML_INDEXLIST
, wxHtmlHelpFrame::OnIndexSel
)
1636 EVT_LISTBOX(wxID_HTML_SEARCHLIST
, wxHtmlHelpFrame::OnSearchSel
)
1637 EVT_BUTTON(wxID_HTML_SEARCHBUTTON
, wxHtmlHelpFrame::OnSearch
)
1638 EVT_TEXT_ENTER(wxID_HTML_SEARCHTEXT
, wxHtmlHelpFrame::OnSearch
)
1639 EVT_BUTTON(wxID_HTML_INDEXBUTTON
, wxHtmlHelpFrame::OnIndexFind
)
1640 EVT_TEXT_ENTER(wxID_HTML_INDEXTEXT
, wxHtmlHelpFrame::OnIndexFind
)
1641 EVT_BUTTON(wxID_HTML_INDEXBUTTONALL
, wxHtmlHelpFrame::OnIndexAll
)
1642 EVT_COMBOBOX(wxID_HTML_BOOKMARKSLIST
, wxHtmlHelpFrame::OnBookmarksSel
)
1643 EVT_CLOSE(wxHtmlHelpFrame::OnCloseWindow
)
1645 EVT_MENU(wxID_CLOSE
, wxHtmlHelpFrame::OnClose
)
1646 EVT_MENU(wxID_ABOUT
, wxHtmlHelpFrame::OnAbout
)
1651 #endif // wxUSE_WXHTML_HELP