1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/html/helpwnd.cpp
3 // Purpose: wxHtmlHelpWindow
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 // For compilers that support precompilation, includes "wx.h"
14 #include "wx/wxprec.h"
23 #include "wx/object.h"
24 #include "wx/dynarray.h"
28 #include "wx/stream.h"
33 #include "wx/bmpbuttn.h"
34 #include "wx/statbox.h"
35 #include "wx/radiobox.h"
37 #include "wx/settings.h"
38 #include "wx/msgdlg.h"
39 #include "wx/textctrl.h"
40 #include "wx/toolbar.h"
41 #include "wx/choicdlg.h"
42 #include "wx/filedlg.h"
45 #include "wx/html/helpfrm.h"
46 #include "wx/html/helpdlg.h"
47 #include "wx/html/helpctrl.h"
48 #include "wx/notebook.h"
49 #include "wx/imaglist.h"
50 #include "wx/treectrl.h"
51 #include "wx/tokenzr.h"
52 #include "wx/wfstream.h"
53 #include "wx/html/htmlwin.h"
54 #include "wx/busyinfo.h"
55 #include "wx/progdlg.h"
56 #include "wx/fontenum.h"
57 #include "wx/artprov.h"
58 #include "wx/spinctrl.h"
60 // what is considered "small index"?
61 #define INDEX_IS_SMALL 100
63 /* Motif defines this as a macro */
68 //--------------------------------------------------------------------------
69 // wxHtmlHelpTreeItemData (private)
70 //--------------------------------------------------------------------------
72 class wxHtmlHelpTreeItemData
: public wxTreeItemData
75 #if defined(__VISAGECPP__)
76 // VA needs a default ctor for some reason....
77 wxHtmlHelpTreeItemData() : wxTreeItemData()
80 wxHtmlHelpTreeItemData(int id
) : wxTreeItemData()
87 //--------------------------------------------------------------------------
88 // wxHtmlHelpHashData (private)
89 //--------------------------------------------------------------------------
91 class wxHtmlHelpHashData
: public wxObject
94 wxHtmlHelpHashData(int index
, wxTreeItemId id
) : wxObject()
95 { m_Index
= index
; m_Id
= id
;}
96 virtual ~wxHtmlHelpHashData() {}
103 //--------------------------------------------------------------------------
104 // wxHtmlHelpHtmlWindow (private)
105 //--------------------------------------------------------------------------
108 class wxHtmlHelpHtmlWindow
: public wxHtmlWindow
111 wxHtmlHelpHtmlWindow(wxHtmlHelpWindow
*win
, wxWindow
*parent
)
112 : wxHtmlWindow(parent
), m_Window(win
)
117 void OnLink(wxHtmlLinkEvent
& ev
)
119 const wxMouseEvent
*e
= ev
.GetLinkInfo().GetEvent();
120 if (e
== NULL
|| e
->LeftUp())
121 m_Window
->NotifyPageChanged();
124 // Returns full location with anchor (helper)
125 static wxString
GetOpenedPageWithAnchor(wxHtmlWindow
*win
)
128 return wxEmptyString
;
130 wxString an
= win
->GetOpenedAnchor();
131 wxString pg
= win
->GetOpenedPage();
134 pg
<< wxT("#") << an
;
140 wxHtmlHelpWindow
*m_Window
;
142 DECLARE_NO_COPY_CLASS(wxHtmlHelpHtmlWindow
)
143 DECLARE_EVENT_TABLE()
146 BEGIN_EVENT_TABLE(wxHtmlHelpHtmlWindow
, wxHtmlWindow
)
147 EVT_HTML_LINK_CLICKED(wxID_ANY
, wxHtmlHelpHtmlWindow::OnLink
)
151 //---------------------------------------------------------------------------
152 // wxHtmlHelpWindow::m_mergedIndex
153 //---------------------------------------------------------------------------
155 WX_DEFINE_ARRAY_PTR(const wxHtmlHelpDataItem
*, wxHtmlHelpDataItemPtrArray
);
157 struct wxHtmlHelpMergedIndexItem
159 wxHtmlHelpMergedIndexItem
*parent
;
161 wxHtmlHelpDataItemPtrArray items
;
164 WX_DECLARE_OBJARRAY(wxHtmlHelpMergedIndexItem
, wxHtmlHelpMergedIndex
);
165 #include "wx/arrimpl.cpp"
166 WX_DEFINE_OBJARRAY(wxHtmlHelpMergedIndex
)
168 void wxHtmlHelpWindow::UpdateMergedIndex()
170 delete m_mergedIndex
;
171 m_mergedIndex
= new wxHtmlHelpMergedIndex
;
172 wxHtmlHelpMergedIndex
& merged
= *m_mergedIndex
;
174 const wxHtmlHelpDataItems
& items
= m_Data
->GetIndexArray();
175 size_t len
= items
.size();
177 wxHtmlHelpMergedIndexItem
*history
[128] = {NULL
};
179 for (size_t i
= 0; i
< len
; i
++)
181 const wxHtmlHelpDataItem
& item
= items
[i
];
182 wxASSERT_MSG( item
.level
< 128, _T("nested index entries too deep") );
184 if (history
[item
.level
] &&
185 history
[item
.level
]->items
[0]->name
== item
.name
)
187 // same index entry as previous one, update list of items
188 history
[item
.level
]->items
.Add(&item
);
193 wxHtmlHelpMergedIndexItem
*mi
= new wxHtmlHelpMergedIndexItem();
194 mi
->name
= item
.GetIndentedName();
195 mi
->items
.Add(&item
);
196 mi
->parent
= (item
.level
== 0) ? NULL
: history
[item
.level
- 1];
197 history
[item
.level
] = mi
;
203 //---------------------------------------------------------------------------
205 //---------------------------------------------------------------------------
207 IMPLEMENT_DYNAMIC_CLASS(wxHtmlHelpWindow
, wxWindow
)
209 BEGIN_EVENT_TABLE(wxHtmlHelpWindow
, wxWindow
)
210 EVT_TOOL_RANGE(wxID_HTML_PANEL
, wxID_HTML_OPTIONS
, wxHtmlHelpWindow::OnToolbar
)
211 EVT_BUTTON(wxID_HTML_BOOKMARKSREMOVE
, wxHtmlHelpWindow::OnToolbar
)
212 EVT_BUTTON(wxID_HTML_BOOKMARKSADD
, wxHtmlHelpWindow::OnToolbar
)
213 EVT_TREE_SEL_CHANGED(wxID_HTML_TREECTRL
, wxHtmlHelpWindow::OnContentsSel
)
214 EVT_LISTBOX(wxID_HTML_INDEXLIST
, wxHtmlHelpWindow::OnIndexSel
)
215 EVT_LISTBOX(wxID_HTML_SEARCHLIST
, wxHtmlHelpWindow::OnSearchSel
)
216 EVT_BUTTON(wxID_HTML_SEARCHBUTTON
, wxHtmlHelpWindow::OnSearch
)
217 EVT_TEXT_ENTER(wxID_HTML_SEARCHTEXT
, wxHtmlHelpWindow::OnSearch
)
218 EVT_BUTTON(wxID_HTML_INDEXBUTTON
, wxHtmlHelpWindow::OnIndexFind
)
219 EVT_TEXT_ENTER(wxID_HTML_INDEXTEXT
, wxHtmlHelpWindow::OnIndexFind
)
220 EVT_BUTTON(wxID_HTML_INDEXBUTTONALL
, wxHtmlHelpWindow::OnIndexAll
)
221 EVT_COMBOBOX(wxID_HTML_BOOKMARKSLIST
, wxHtmlHelpWindow::OnBookmarksSel
)
222 EVT_SIZE(wxHtmlHelpWindow::OnSize
)
225 wxHtmlHelpWindow::wxHtmlHelpWindow(wxWindow
* parent
, wxWindowID id
,
228 int style
, int helpStyle
, wxHtmlHelpData
* data
)
231 Create(parent
, id
, pos
, size
, style
, helpStyle
);
234 void wxHtmlHelpWindow::Init(wxHtmlHelpData
* data
)
239 m_DataCreated
= false;
243 m_Data
= new wxHtmlHelpData();
244 m_DataCreated
= true;
251 m_ContentsBox
= NULL
;
253 m_IndexButton
= NULL
;
254 m_IndexButtonAll
= NULL
;
257 m_SearchButton
= NULL
;
259 m_SearchChoice
= NULL
;
260 m_IndexCountInfo
= NULL
;
263 m_NavigNotebook
= NULL
;
266 m_SearchCaseSensitive
= NULL
;
267 m_SearchWholeWords
= NULL
;
269 m_mergedIndex
= NULL
;
272 m_ConfigRoot
= wxEmptyString
;
274 m_Cfg
.x
= m_Cfg
.y
= wxDefaultCoord
;
278 m_Cfg
.navig_on
= true;
280 m_NormalFonts
= m_FixedFonts
= NULL
;
281 m_NormalFace
= m_FixedFace
= wxEmptyString
;
288 #if wxUSE_PRINTING_ARCHITECTURE
293 m_UpdateContents
= true;
295 m_helpController
= (wxHtmlHelpController
*) NULL
;
298 // Create: builds the GUI components.
299 // with the style flag it's possible to toggle the toolbar, contents, index and search
301 // m_HtmlWin will *always* be created, but it's important to realize that
302 // m_ContentsBox, m_IndexList, m_SearchList, m_SearchButton, m_SearchText and
303 // m_SearchButton may be NULL.
304 // moreover, if no contents, index or searchpage is needed, m_Splitter and
305 // m_NavigPan will be NULL too (with m_HtmlWin directly connected to the frame)
307 bool wxHtmlHelpWindow::Create(wxWindow
* parent
, wxWindowID id
,
308 const wxPoint
& pos
, const wxSize
& size
,
309 int style
, int helpStyle
)
311 m_hfStyle
= helpStyle
;
313 wxImageList
*ContentsImageList
= new wxImageList(16, 16);
314 ContentsImageList
->Add(wxArtProvider::GetIcon(wxART_HELP_BOOK
,
317 ContentsImageList
->Add(wxArtProvider::GetIcon(wxART_HELP_FOLDER
,
320 ContentsImageList
->Add(wxArtProvider::GetIcon(wxART_HELP_PAGE
,
324 // Do the config in two steps. We read the HtmlWindow customization after we
325 // create the window.
327 ReadCustomization(m_Config
, m_ConfigRoot
);
329 wxWindow::Create(parent
, id
, pos
, size
, style
, wxT("wxHtmlHelp"));
331 SetHelpText(_("Displays help as you browse the books on the left."));
333 GetPosition(&m_Cfg
.x
, &m_Cfg
.y
);
335 int notebook_page
= 0;
337 // The sizer for the whole top-level window.
338 wxSizer
*topWindowSizer
= new wxBoxSizer(wxVERTICAL
);
339 SetSizer(topWindowSizer
);
344 if (helpStyle
& (wxHF_TOOLBAR
| wxHF_FLAT_TOOLBAR
))
346 wxToolBar
*toolBar
= new wxToolBar(this, wxID_ANY
, wxDefaultPosition
, wxDefaultSize
,
347 wxNO_BORDER
| wxTB_HORIZONTAL
|
348 wxTB_DOCKABLE
| wxTB_NODIVIDER
|
349 (helpStyle
& wxHF_FLAT_TOOLBAR
? wxTB_FLAT
: 0));
350 toolBar
->SetMargins( 2, 2 );
351 AddToolbarButtons(toolBar
, helpStyle
);
353 topWindowSizer
->Add(toolBar
, 0, wxEXPAND
);
356 #endif //wxUSE_TOOLBAR
358 wxSizer
*navigSizer
= NULL
;
360 if (helpStyle
& (wxHF_CONTENTS
| wxHF_INDEX
| wxHF_SEARCH
))
362 // traditional help controller; splitter window with html page on the
363 // right and a notebook containing various pages on the left
364 m_Splitter
= new wxSplitterWindow(this);
366 topWindowSizer
->Add(m_Splitter
, 1, wxEXPAND
);
368 m_HtmlWin
= new wxHtmlHelpHtmlWindow(this, m_Splitter
);
369 m_NavigPan
= new wxPanel(m_Splitter
, wxID_ANY
);
370 m_NavigNotebook
= new wxNotebook(m_NavigPan
, wxID_HTML_NOTEBOOK
,
371 wxDefaultPosition
, wxDefaultSize
);
373 navigSizer
= new wxBoxSizer(wxVERTICAL
);
374 navigSizer
->Add(m_NavigNotebook
, 1, wxEXPAND
);
376 m_NavigPan
->SetSizer(navigSizer
);
380 // only html window, no notebook with index,contents etc
381 m_HtmlWin
= new wxHtmlWindow(this);
382 topWindowSizer
->Add(m_HtmlWin
, 1, wxEXPAND
);
386 m_HtmlWin
->ReadCustomization(m_Config
, m_ConfigRoot
);
388 // contents tree panel?
389 if ( helpStyle
& wxHF_CONTENTS
)
391 wxWindow
*dummy
= new wxPanel(m_NavigNotebook
, wxID_HTML_INDEXPAGE
);
392 wxSizer
*topsizer
= new wxBoxSizer(wxVERTICAL
);
394 topsizer
->Add(0, 10);
396 dummy
->SetSizer(topsizer
);
398 if ( helpStyle
& wxHF_BOOKMARKS
)
400 m_Bookmarks
= new wxComboBox(dummy
, wxID_HTML_BOOKMARKSLIST
,
402 wxDefaultPosition
, wxDefaultSize
,
403 0, NULL
, wxCB_READONLY
| wxCB_SORT
);
404 m_Bookmarks
->Append(_("(bookmarks)"));
405 for (unsigned i
= 0; i
< m_BookmarksNames
.GetCount(); i
++)
406 m_Bookmarks
->Append(m_BookmarksNames
[i
]);
407 m_Bookmarks
->SetSelection(0);
409 wxBitmapButton
*bmpbt1
, *bmpbt2
;
410 bmpbt1
= new wxBitmapButton(dummy
, wxID_HTML_BOOKMARKSADD
,
411 wxArtProvider::GetBitmap(wxART_ADD_BOOKMARK
,
413 bmpbt2
= new wxBitmapButton(dummy
, wxID_HTML_BOOKMARKSREMOVE
,
414 wxArtProvider::GetBitmap(wxART_DEL_BOOKMARK
,
417 bmpbt1
->SetToolTip(_("Add current page to bookmarks"));
418 bmpbt2
->SetToolTip(_("Remove current page from bookmarks"));
419 #endif // wxUSE_TOOLTIPS
421 wxSizer
*sizer
= new wxBoxSizer(wxHORIZONTAL
);
423 sizer
->Add(m_Bookmarks
, 1, wxALIGN_CENTRE_VERTICAL
| wxRIGHT
, 5);
424 sizer
->Add(bmpbt1
, 0, wxALIGN_CENTRE_VERTICAL
| wxRIGHT
, 2);
425 sizer
->Add(bmpbt2
, 0, wxALIGN_CENTRE_VERTICAL
, 0);
427 topsizer
->Add(sizer
, 0, wxEXPAND
| wxLEFT
| wxBOTTOM
| wxRIGHT
, 10);
430 m_ContentsBox
= new wxTreeCtrl(dummy
, wxID_HTML_TREECTRL
,
431 wxDefaultPosition
, wxDefaultSize
,
434 wxTR_HAS_BUTTONS
| wxTR_HIDE_ROOT
|
438 wxTR_HAS_BUTTONS
| wxTR_HIDE_ROOT
|
443 m_ContentsBox
->AssignImageList(ContentsImageList
);
445 topsizer
->Add(m_ContentsBox
, 1,
446 wxEXPAND
| wxLEFT
| wxBOTTOM
| wxRIGHT
,
449 m_NavigNotebook
->AddPage(dummy
, _("Contents"));
450 m_ContentsPage
= notebook_page
++;
453 // index listbox panel?
454 if ( helpStyle
& wxHF_INDEX
)
456 wxWindow
*dummy
= new wxPanel(m_NavigNotebook
, wxID_HTML_INDEXPAGE
);
457 wxSizer
*topsizer
= new wxBoxSizer(wxVERTICAL
);
459 dummy
->SetSizer(topsizer
);
461 m_IndexText
= new wxTextCtrl(dummy
, wxID_HTML_INDEXTEXT
, wxEmptyString
,
462 wxDefaultPosition
, wxDefaultSize
,
464 m_IndexButton
= new wxButton(dummy
, wxID_HTML_INDEXBUTTON
, _("Find"));
465 m_IndexButtonAll
= new wxButton(dummy
, wxID_HTML_INDEXBUTTONALL
,
467 m_IndexCountInfo
= new wxStaticText(dummy
, wxID_HTML_COUNTINFO
,
468 wxEmptyString
, wxDefaultPosition
,
470 wxALIGN_RIGHT
| wxST_NO_AUTORESIZE
);
471 m_IndexList
= new wxListBox(dummy
, wxID_HTML_INDEXLIST
,
472 wxDefaultPosition
, wxDefaultSize
,
473 0, NULL
, wxLB_SINGLE
);
476 m_IndexButton
->SetToolTip(_("Display all index items that contain given substring. Search is case insensitive."));
477 m_IndexButtonAll
->SetToolTip(_("Show all items in index"));
478 #endif //wxUSE_TOOLTIPS
480 topsizer
->Add(m_IndexText
, 0, wxEXPAND
| wxALL
, 10);
481 wxSizer
*btsizer
= new wxBoxSizer(wxHORIZONTAL
);
482 btsizer
->Add(m_IndexButton
, 0, wxRIGHT
, 2);
483 btsizer
->Add(m_IndexButtonAll
);
484 topsizer
->Add(btsizer
, 0,
485 wxALIGN_RIGHT
| wxLEFT
| wxRIGHT
| wxBOTTOM
, 10);
486 topsizer
->Add(m_IndexCountInfo
, 0, wxEXPAND
| wxLEFT
| wxRIGHT
, 2);
487 topsizer
->Add(m_IndexList
, 1, wxEXPAND
| wxALL
, 2);
489 m_NavigNotebook
->AddPage(dummy
, _("Index"));
490 m_IndexPage
= notebook_page
++;
493 // search list panel?
494 if ( helpStyle
& wxHF_SEARCH
)
496 wxWindow
*dummy
= new wxPanel(m_NavigNotebook
, wxID_HTML_INDEXPAGE
);
497 wxSizer
*sizer
= new wxBoxSizer(wxVERTICAL
);
499 dummy
->SetSizer(sizer
);
501 m_SearchText
= new wxTextCtrl(dummy
, wxID_HTML_SEARCHTEXT
,
503 wxDefaultPosition
, wxDefaultSize
,
505 m_SearchChoice
= new wxChoice(dummy
, wxID_HTML_SEARCHCHOICE
,
506 wxDefaultPosition
, wxSize(125,wxDefaultCoord
));
507 m_SearchCaseSensitive
= new wxCheckBox(dummy
, wxID_ANY
, _("Case sensitive"));
508 m_SearchWholeWords
= new wxCheckBox(dummy
, wxID_ANY
, _("Whole words only"));
509 m_SearchButton
= new wxButton(dummy
, wxID_HTML_SEARCHBUTTON
, _("Search"));
511 m_SearchButton
->SetToolTip(_("Search contents of help book(s) for all occurences of the text you typed above"));
512 #endif //wxUSE_TOOLTIPS
513 m_SearchList
= new wxListBox(dummy
, wxID_HTML_SEARCHLIST
,
514 wxDefaultPosition
, wxDefaultSize
,
515 0, NULL
, wxLB_SINGLE
);
517 sizer
->Add(m_SearchText
, 0, wxEXPAND
| wxALL
, 10);
518 sizer
->Add(m_SearchChoice
, 0, wxEXPAND
| wxLEFT
| wxRIGHT
| wxBOTTOM
, 10);
519 sizer
->Add(m_SearchCaseSensitive
, 0, wxLEFT
| wxRIGHT
, 10);
520 sizer
->Add(m_SearchWholeWords
, 0, wxLEFT
| wxRIGHT
, 10);
521 sizer
->Add(m_SearchButton
, 0, wxALL
| wxALIGN_RIGHT
, 8);
522 sizer
->Add(m_SearchList
, 1, wxALL
| wxEXPAND
, 2);
524 m_NavigNotebook
->AddPage(dummy
, _("Search"));
525 m_SearchPage
= notebook_page
;
534 navigSizer
->SetSizeHints(m_NavigPan
);
535 m_NavigPan
->Layout();
539 if ( m_NavigPan
&& m_Splitter
)
541 m_Splitter
->SetMinimumPaneSize(20);
542 if ( m_Cfg
.navig_on
)
543 m_Splitter
->SplitVertically(m_NavigPan
, m_HtmlWin
, m_Cfg
.sashpos
);
545 if ( m_Cfg
.navig_on
)
548 m_Splitter
->SplitVertically(m_NavigPan
, m_HtmlWin
, m_Cfg
.sashpos
);
552 m_NavigPan
->Show(false);
553 m_Splitter
->Initialize(m_HtmlWin
);
557 // Reduce flicker by updating the splitter pane sizes before the
559 wxSizeEvent
sizeEvent(GetSize(), GetId());
560 ProcessEvent(sizeEvent
);
563 m_Splitter
->UpdateSize();
568 wxHtmlHelpWindow::~wxHtmlHelpWindow()
570 delete m_mergedIndex
;
572 // PopEventHandler(); // wxhtmlhelpcontroller (not any more!)
575 if (m_NormalFonts
) delete m_NormalFonts
;
576 if (m_FixedFonts
) delete m_FixedFonts
;
579 WX_CLEAR_HASH_TABLE(*m_PagesHash
);
582 #if wxUSE_PRINTING_ARCHITECTURE
583 if (m_Printer
) delete m_Printer
;
587 void wxHtmlHelpWindow::SetController(wxHtmlHelpController
* controller
)
591 m_helpController
= controller
;
592 m_Data
= controller
->GetHelpData();
593 m_DataCreated
= false;
597 void wxHtmlHelpWindow::AddToolbarButtons(wxToolBar
*toolBar
, int style
)
599 wxBitmap wpanelBitmap
=
600 wxArtProvider::GetBitmap(wxART_HELP_SIDE_PANEL
, wxART_TOOLBAR
);
601 wxBitmap wbackBitmap
=
602 wxArtProvider::GetBitmap(wxART_GO_BACK
, wxART_TOOLBAR
);
603 wxBitmap wforwardBitmap
=
604 wxArtProvider::GetBitmap(wxART_GO_FORWARD
, wxART_TOOLBAR
);
605 wxBitmap wupnodeBitmap
=
606 wxArtProvider::GetBitmap(wxART_GO_TO_PARENT
, wxART_TOOLBAR
);
608 wxArtProvider::GetBitmap(wxART_GO_UP
, wxART_TOOLBAR
);
609 wxBitmap wdownBitmap
=
610 wxArtProvider::GetBitmap(wxART_GO_DOWN
, wxART_TOOLBAR
);
611 wxBitmap wopenBitmap
=
612 wxArtProvider::GetBitmap(wxART_FILE_OPEN
, wxART_TOOLBAR
);
613 wxBitmap wprintBitmap
=
614 wxArtProvider::GetBitmap(wxART_PRINT
, wxART_TOOLBAR
);
615 wxBitmap woptionsBitmap
=
616 wxArtProvider::GetBitmap(wxART_HELP_SETTINGS
, wxART_TOOLBAR
);
618 wxASSERT_MSG( (wpanelBitmap
.Ok() && wbackBitmap
.Ok() &&
619 wforwardBitmap
.Ok() && wupnodeBitmap
.Ok() &&
620 wupBitmap
.Ok() && wdownBitmap
.Ok() &&
621 wopenBitmap
.Ok() && wprintBitmap
.Ok() &&
622 woptionsBitmap
.Ok()),
623 wxT("One or more HTML help frame toolbar bitmap could not be loaded.")) ;
626 toolBar
->AddTool(wxID_HTML_PANEL
, wpanelBitmap
, wxNullBitmap
,
627 false, wxDefaultCoord
, wxDefaultCoord
, (wxObject
*) NULL
,
628 _("Show/hide navigation panel"));
630 toolBar
->AddSeparator();
631 toolBar
->AddTool(wxID_HTML_BACK
, wbackBitmap
, wxNullBitmap
,
632 false, wxDefaultCoord
, wxDefaultCoord
, (wxObject
*) NULL
,
634 toolBar
->AddTool(wxID_HTML_FORWARD
, wforwardBitmap
, wxNullBitmap
,
635 false, wxDefaultCoord
, wxDefaultCoord
, (wxObject
*) NULL
,
637 toolBar
->AddSeparator();
639 toolBar
->AddTool(wxID_HTML_UPNODE
, wupnodeBitmap
, wxNullBitmap
,
640 false, wxDefaultCoord
, wxDefaultCoord
, (wxObject
*) NULL
,
641 _("Go one level up in document hierarchy"));
642 toolBar
->AddTool(wxID_HTML_UP
, wupBitmap
, wxNullBitmap
,
643 false, wxDefaultCoord
, wxDefaultCoord
, (wxObject
*) NULL
,
645 toolBar
->AddTool(wxID_HTML_DOWN
, wdownBitmap
, wxNullBitmap
,
646 false, wxDefaultCoord
, wxDefaultCoord
, (wxObject
*) NULL
,
649 if ((style
& wxHF_PRINT
) || (style
& wxHF_OPEN_FILES
))
650 toolBar
->AddSeparator();
652 if (style
& wxHF_OPEN_FILES
)
653 toolBar
->AddTool(wxID_HTML_OPENFILE
, wopenBitmap
, wxNullBitmap
,
654 false, wxDefaultCoord
, wxDefaultCoord
, (wxObject
*) NULL
,
655 _("Open HTML document"));
657 #if wxUSE_PRINTING_ARCHITECTURE
658 if (style
& wxHF_PRINT
)
659 toolBar
->AddTool(wxID_HTML_PRINT
, wprintBitmap
, wxNullBitmap
,
660 false, wxDefaultCoord
, wxDefaultCoord
, (wxObject
*) NULL
,
661 _("Print this page"));
664 toolBar
->AddSeparator();
665 toolBar
->AddTool(wxID_HTML_OPTIONS
, woptionsBitmap
, wxNullBitmap
,
666 false, wxDefaultCoord
, wxDefaultCoord
, (wxObject
*) NULL
,
667 _("Display options dialog"));
669 // Allow application to add custom buttons
670 wxHtmlHelpFrame
* parentFrame
= wxDynamicCast(GetParent(), wxHtmlHelpFrame
);
671 wxHtmlHelpDialog
* parentDialog
= wxDynamicCast(GetParent(), wxHtmlHelpDialog
);
673 parentFrame
->AddToolbarButtons(toolBar
, style
);
675 parentDialog
->AddToolbarButtons(toolBar
, style
);
677 #endif //wxUSE_TOOLBAR
680 bool wxHtmlHelpWindow::Display(const wxString
& x
)
682 wxString url
= m_Data
->FindPageByName(x
);
685 m_HtmlWin
->LoadPage(url
);
693 bool wxHtmlHelpWindow::Display(const int id
)
695 wxString url
= m_Data
->FindPageById(id
);
698 m_HtmlWin
->LoadPage(url
);
706 bool wxHtmlHelpWindow::DisplayContents()
711 if (!m_Splitter
->IsSplit())
715 m_Splitter
->SplitVertically(m_NavigPan
, m_HtmlWin
, m_Cfg
.sashpos
);
716 m_Cfg
.navig_on
= true;
719 m_NavigNotebook
->SetSelection(m_ContentsPage
);
721 if (m_Data
->GetBookRecArray().GetCount() > 0)
723 wxHtmlBookRecord
& book
= m_Data
->GetBookRecArray()[0];
724 if (!book
.GetStart().empty())
725 m_HtmlWin
->LoadPage(book
.GetFullPath(book
.GetStart()));
731 bool wxHtmlHelpWindow::DisplayIndex()
736 if (!m_Splitter
->IsSplit())
740 m_Splitter
->SplitVertically(m_NavigPan
, m_HtmlWin
, m_Cfg
.sashpos
);
743 m_NavigNotebook
->SetSelection(m_IndexPage
);
745 if (m_Data
->GetBookRecArray().GetCount() > 0)
747 wxHtmlBookRecord
& book
= m_Data
->GetBookRecArray()[0];
748 if (!book
.GetStart().empty())
749 m_HtmlWin
->LoadPage(book
.GetFullPath(book
.GetStart()));
755 void wxHtmlHelpWindow::DisplayIndexItem(const wxHtmlHelpMergedIndexItem
*it
)
757 if (it
->items
.size() == 1)
759 if (!it
->items
[0]->page
.empty())
761 m_HtmlWin
->LoadPage(it
->items
[0]->GetFullPath());
767 wxBusyCursor busy_cursor
;
769 // more pages associated with this index item -- let the user choose
770 // which one she/he wants from a list:
772 size_t len
= it
->items
.size();
773 for (size_t i
= 0; i
< len
; i
++)
775 wxString page
= it
->items
[i
]->page
;
776 // try to find page's title in contents:
777 const wxHtmlHelpDataItems
& contents
= m_Data
->GetContentsArray();
778 size_t clen
= contents
.size();
779 for (size_t j
= 0; j
< clen
; j
++)
781 if (contents
[j
].page
== page
)
783 page
= contents
[j
].name
;
790 wxSingleChoiceDialog
dlg(this,
791 _("Please choose the page to display:"),
793 arr
, NULL
, wxCHOICEDLG_STYLE
& ~wxCENTRE
);
794 if (dlg
.ShowModal() == wxID_OK
)
796 m_HtmlWin
->LoadPage(it
->items
[dlg
.GetSelection()]->GetFullPath());
802 bool wxHtmlHelpWindow::KeywordSearch(const wxString
& keyword
,
803 wxHelpSearchMode mode
)
805 if (mode
== wxHELP_SEARCH_ALL
)
807 if ( !(m_SearchList
&&
808 m_SearchButton
&& m_SearchText
&& m_SearchChoice
) )
811 else if (mode
== wxHELP_SEARCH_INDEX
)
813 if ( !(m_IndexList
&&
814 m_IndexButton
&& m_IndexButtonAll
&& m_IndexText
) )
820 wxString book
= wxEmptyString
;
822 if (!m_Splitter
->IsSplit())
826 m_Splitter
->SplitVertically(m_NavigPan
, m_HtmlWin
, m_Cfg
.sashpos
);
829 if (mode
== wxHELP_SEARCH_ALL
)
831 m_NavigNotebook
->SetSelection(m_SearchPage
);
832 m_SearchList
->Clear();
833 m_SearchText
->SetValue(keyword
);
834 m_SearchButton
->Disable();
836 if (m_SearchChoice
->GetSelection() != 0)
837 book
= m_SearchChoice
->GetStringSelection();
839 wxHtmlSearchStatus
status(m_Data
, keyword
,
840 m_SearchCaseSensitive
->GetValue(),
841 m_SearchWholeWords
->GetValue(),
844 #if wxUSE_PROGRESSDLG
845 wxProgressDialog
progress(_("Searching..."),
846 _("No matching page found yet"),
847 status
.GetMaxIndex(), this,
848 wxPD_APP_MODAL
| wxPD_CAN_ABORT
| wxPD_AUTO_HIDE
);
852 while (status
.IsActive())
854 curi
= status
.GetCurIndex();
856 #if wxUSE_PROGRESSDLG
857 && !progress
.Update(curi
)
863 foundstr
.Printf(_("Found %i matches"), ++foundcnt
);
864 #if wxUSE_PROGRESSDLG
865 progress
.Update(status
.GetCurIndex(), foundstr
);
867 m_SearchList
->Append(status
.GetName(), (void*)status
.GetCurItem());
871 m_SearchButton
->Enable();
872 m_SearchText
->SetSelection(0, keyword
.length());
873 m_SearchText
->SetFocus();
875 else if (mode
== wxHELP_SEARCH_INDEX
)
877 m_NavigNotebook
->SetSelection(m_IndexPage
);
878 m_IndexList
->Clear();
879 m_IndexButton
->Disable();
880 m_IndexButtonAll
->Disable();
881 m_IndexText
->SetValue(keyword
);
884 m_IndexButton
->Enable();
885 m_IndexButtonAll
->Enable();
886 foundcnt
= m_IndexList
->GetCount();
894 wxFAIL_MSG( _T("unknown help search mode") );
897 case wxHELP_SEARCH_ALL
:
899 wxHtmlHelpDataItem
*it
=
900 (wxHtmlHelpDataItem
*) m_SearchList
->GetClientData(0);
903 m_HtmlWin
->LoadPage(it
->GetFullPath());
909 case wxHELP_SEARCH_INDEX
:
911 wxHtmlHelpMergedIndexItem
* it
=
912 (wxHtmlHelpMergedIndexItem
*) m_IndexList
->GetClientData(0);
914 DisplayIndexItem(it
);
924 void wxHtmlHelpWindow::CreateContents()
931 WX_CLEAR_HASH_TABLE(*m_PagesHash
);
935 const wxHtmlHelpDataItems
& contents
= m_Data
->GetContentsArray();
937 size_t cnt
= contents
.size();
939 m_PagesHash
= new wxHashTable(wxKEY_STRING
, 2 * cnt
);
941 const int MAX_ROOTS
= 64;
942 wxTreeItemId roots
[MAX_ROOTS
];
943 // VS: this array holds information about whether we've set item icon at
944 // given level. This is necessary because m_Data has a flat structure
945 // and there's no way of recognizing if some item has subitems or not.
946 // We set the icon later: when we find an item with level=n, we know
947 // that the last item with level=n-1 was afolder with subitems, so we
948 // set its icon accordingly
949 bool imaged
[MAX_ROOTS
];
950 m_ContentsBox
->DeleteAllItems();
952 roots
[0] = m_ContentsBox
->AddRoot(_("(Help)"));
955 for (size_t i
= 0; i
< cnt
; i
++)
957 wxHtmlHelpDataItem
*it
= &contents
[i
];
961 if (m_hfStyle
& wxHF_MERGE_BOOKS
)
962 // VS: we don't want book nodes, books' content should
963 // appear under tree's root. This line will create a "fake"
964 // record about book node so that the rest of this look
965 // will believe there really _is_ a book node and will
970 roots
[1] = m_ContentsBox
->AppendItem(roots
[0],
971 it
->name
, IMG_Book
, -1,
972 new wxHtmlHelpTreeItemData(i
));
973 m_ContentsBox
->SetItemBold(roots
[1], true);
977 // ...and their contents:
980 roots
[it
->level
+ 1] = m_ContentsBox
->AppendItem(
981 roots
[it
->level
], it
->name
, IMG_Page
,
982 -1, new wxHtmlHelpTreeItemData(i
));
983 imaged
[it
->level
+ 1] = false;
986 m_PagesHash
->Put(it
->GetFullPath(),
987 new wxHtmlHelpHashData(i
, roots
[it
->level
+ 1]));
989 // Set the icon for the node one level up in the hierarchy,
990 // unless already done (see comment above imaged[] declaration)
991 if (!imaged
[it
->level
])
993 int image
= IMG_Folder
;
994 if (m_hfStyle
& wxHF_ICONS_BOOK
)
996 else if (m_hfStyle
& wxHF_ICONS_BOOK_CHAPTER
)
997 image
= (it
->level
== 1) ? IMG_Book
: IMG_Folder
;
998 m_ContentsBox
->SetItemImage(roots
[it
->level
], image
);
999 m_ContentsBox
->SetItemImage(roots
[it
->level
], image
,
1000 wxTreeItemIcon_Selected
);
1001 imaged
[it
->level
] = true;
1006 void wxHtmlHelpWindow::CreateIndex()
1011 m_IndexList
->Clear();
1013 size_t cnt
= m_mergedIndex
->size();
1016 if (cnt
> INDEX_IS_SMALL
)
1017 cnttext
.Printf(_("%i of %i"), 0, cnt
);
1019 cnttext
.Printf(_("%i of %i"), cnt
, cnt
);
1020 m_IndexCountInfo
->SetLabel(cnttext
);
1021 if (cnt
> INDEX_IS_SMALL
)
1024 for (size_t i
= 0; i
< cnt
; i
++)
1025 m_IndexList
->Append((*m_mergedIndex
)[i
].name
,
1026 (char*)(&(*m_mergedIndex
)[i
]));
1029 void wxHtmlHelpWindow::CreateSearch()
1031 if (! (m_SearchList
&& m_SearchChoice
))
1033 m_SearchList
->Clear();
1034 m_SearchChoice
->Clear();
1035 m_SearchChoice
->Append(_("Search in all books"));
1036 const wxHtmlBookRecArray
& bookrec
= m_Data
->GetBookRecArray();
1037 int i
, cnt
= bookrec
.GetCount();
1038 for (i
= 0; i
< cnt
; i
++)
1039 m_SearchChoice
->Append(bookrec
[i
].GetTitle());
1040 m_SearchChoice
->SetSelection(0);
1043 void wxHtmlHelpWindow::RefreshLists()
1045 // Update m_mergedIndex:
1046 UpdateMergedIndex();
1047 // Update the controls
1053 void wxHtmlHelpWindow::ReadCustomization(wxConfigBase
*cfg
, const wxString
& path
)
1058 if (path
!= wxEmptyString
)
1060 oldpath
= cfg
->GetPath();
1061 cfg
->SetPath(_T("/") + path
);
1064 m_Cfg
.navig_on
= cfg
->Read(wxT("hcNavigPanel"), m_Cfg
.navig_on
) != 0;
1065 m_Cfg
.sashpos
= cfg
->Read(wxT("hcSashPos"), m_Cfg
.sashpos
);
1066 m_Cfg
.x
= cfg
->Read(wxT("hcX"), m_Cfg
.x
);
1067 m_Cfg
.y
= cfg
->Read(wxT("hcY"), m_Cfg
.y
);
1068 m_Cfg
.w
= cfg
->Read(wxT("hcW"), m_Cfg
.w
);
1069 m_Cfg
.h
= cfg
->Read(wxT("hcH"), m_Cfg
.h
);
1071 m_FixedFace
= cfg
->Read(wxT("hcFixedFace"), m_FixedFace
);
1072 m_NormalFace
= cfg
->Read(wxT("hcNormalFace"), m_NormalFace
);
1073 m_FontSize
= cfg
->Read(wxT("hcBaseFontSize"), m_FontSize
);
1080 cnt
= cfg
->Read(wxT("hcBookmarksCnt"), 0L);
1083 m_BookmarksNames
.Clear();
1084 m_BookmarksPages
.Clear();
1087 m_Bookmarks
->Clear();
1088 m_Bookmarks
->Append(_("(bookmarks)"));
1091 for (i
= 0; i
< cnt
; i
++)
1093 val
.Printf(wxT("hcBookmark_%i"), i
);
1095 m_BookmarksNames
.Add(s
);
1096 if (m_Bookmarks
) m_Bookmarks
->Append(s
);
1097 val
.Printf(wxT("hcBookmark_%i_url"), i
);
1099 m_BookmarksPages
.Add(s
);
1105 m_HtmlWin
->ReadCustomization(cfg
);
1107 if (path
!= wxEmptyString
)
1108 cfg
->SetPath(oldpath
);
1111 void wxHtmlHelpWindow::WriteCustomization(wxConfigBase
*cfg
, const wxString
& path
)
1116 if (path
!= wxEmptyString
)
1118 oldpath
= cfg
->GetPath();
1119 cfg
->SetPath(_T("/") + path
);
1122 cfg
->Write(wxT("hcNavigPanel"), m_Cfg
.navig_on
);
1123 cfg
->Write(wxT("hcSashPos"), (long)m_Cfg
.sashpos
);
1125 // Don't write if iconized as this would make the window
1126 // disappear next time it is shown!
1127 cfg
->Write(wxT("hcX"), (long)m_Cfg
.x
);
1128 cfg
->Write(wxT("hcY"), (long)m_Cfg
.y
);
1129 cfg
->Write(wxT("hcW"), (long)m_Cfg
.w
);
1130 cfg
->Write(wxT("hcH"), (long)m_Cfg
.h
);
1132 cfg
->Write(wxT("hcFixedFace"), m_FixedFace
);
1133 cfg
->Write(wxT("hcNormalFace"), m_NormalFace
);
1134 cfg
->Write(wxT("hcBaseFontSize"), (long)m_FontSize
);
1139 int cnt
= m_BookmarksNames
.GetCount();
1142 cfg
->Write(wxT("hcBookmarksCnt"), (long)cnt
);
1143 for (i
= 0; i
< cnt
; i
++)
1145 val
.Printf(wxT("hcBookmark_%i"), i
);
1146 cfg
->Write(val
, m_BookmarksNames
[i
]);
1147 val
.Printf(wxT("hcBookmark_%i_url"), i
);
1148 cfg
->Write(val
, m_BookmarksPages
[i
]);
1153 m_HtmlWin
->WriteCustomization(cfg
);
1155 if (path
!= wxEmptyString
)
1156 cfg
->SetPath(oldpath
);
1159 static void SetFontsToHtmlWin(wxHtmlWindow
*win
, const wxString
& scalf
, const wxString
& fixf
, int size
)
1162 f_sizes
[0] = int(size
* 0.6);
1163 f_sizes
[1] = int(size
* 0.8);
1165 f_sizes
[3] = int(size
* 1.2);
1166 f_sizes
[4] = int(size
* 1.4);
1167 f_sizes
[5] = int(size
* 1.6);
1168 f_sizes
[6] = int(size
* 1.8);
1170 win
->SetFonts(scalf
, fixf
, f_sizes
);
1173 class wxHtmlHelpWindowOptionsDialog
: public wxDialog
1176 wxComboBox
*NormalFont
, *FixedFont
;
1177 wxSpinCtrl
*FontSize
;
1178 wxHtmlWindow
*TestWin
;
1180 wxHtmlHelpWindowOptionsDialog(wxWindow
*parent
)
1181 : wxDialog(parent
, wxID_ANY
, wxString(_("Help Browser Options")))
1183 wxBoxSizer
*topsizer
= new wxBoxSizer(wxVERTICAL
);
1184 wxFlexGridSizer
*sizer
= new wxFlexGridSizer(2, 3, 2, 5);
1186 sizer
->Add(new wxStaticText(this, wxID_ANY
, _("Normal font:")));
1187 sizer
->Add(new wxStaticText(this, wxID_ANY
, _("Fixed font:")));
1188 sizer
->Add(new wxStaticText(this, wxID_ANY
, _("Font size:")));
1190 sizer
->Add(NormalFont
= new wxComboBox(this, wxID_ANY
, wxEmptyString
, wxDefaultPosition
,
1191 wxSize(200, wxDefaultCoord
),
1192 0, NULL
, wxCB_DROPDOWN
| wxCB_READONLY
));
1194 sizer
->Add(FixedFont
= new wxComboBox(this, wxID_ANY
, wxEmptyString
, wxDefaultPosition
,
1195 wxSize(200, wxDefaultCoord
),
1196 0, NULL
, wxCB_DROPDOWN
| wxCB_READONLY
));
1198 sizer
->Add(FontSize
= new wxSpinCtrl(this, wxID_ANY
));
1199 FontSize
->SetRange(2, 100);
1201 topsizer
->Add(sizer
, 0, wxLEFT
|wxRIGHT
|wxTOP
, 10);
1203 topsizer
->Add(new wxStaticText(this, wxID_ANY
, _("Preview:")),
1204 0, wxLEFT
| wxTOP
, 10);
1205 topsizer
->Add(TestWin
= new wxHtmlWindow(this, wxID_ANY
, wxDefaultPosition
, wxSize(20, 150),
1206 wxHW_SCROLLBAR_AUTO
| wxSUNKEN_BORDER
),
1207 1, wxEXPAND
| wxLEFT
|wxTOP
|wxRIGHT
, 10);
1209 wxBoxSizer
*sizer2
= new wxBoxSizer(wxHORIZONTAL
);
1211 sizer2
->Add(ok
= new wxButton(this, wxID_OK
), 0, wxALL
, 10);
1213 sizer2
->Add(new wxButton(this, wxID_CANCEL
), 0, wxALL
, 10);
1214 topsizer
->Add(sizer2
, 0, wxALIGN_RIGHT
);
1217 topsizer
->Fit(this);
1222 void UpdateTestWin()
1225 SetFontsToHtmlWin(TestWin
,
1226 NormalFont
->GetStringSelection(),
1227 FixedFont
->GetStringSelection(),
1228 FontSize
->GetValue());
1230 wxString
content(_("font size"));
1232 content
= _T("<font size=-2>") + content
+ _T(" -2</font><br>")
1233 _T("<font size=-1>") + content
+ _T(" -1</font><br>")
1234 _T("<font size=+0>") + content
+ _T(" +0</font><br>")
1235 _T("<font size=+1>") + content
+ _T(" +1</font><br>")
1236 _T("<font size=+2>") + content
+ _T(" +2</font><br>")
1237 _T("<font size=+3>") + content
+ _T(" +3</font><br>")
1238 _T("<font size=+4>") + content
+ _T(" +4</font><br>") ;
1240 content
= wxString( _T("<html><body><table><tr><td>") ) +
1241 _("Normal face<br>and <u>underlined</u>. ") +
1242 _("<i>Italic face.</i> ") +
1243 _("<b>Bold face.</b> ") +
1244 _("<b><i>Bold italic face.</i></b><br>") +
1246 wxString( _T("</td><td><tt>") ) +
1247 _("Fixed size face.<br> <b>bold</b> <i>italic</i> ") +
1248 _("<b><i>bold italic <u>underlined</u></i></b><br>") +
1250 _T("</tt></td></tr></table></body></html>");
1252 TestWin
->SetPage( content
);
1255 void OnUpdate(wxCommandEvent
& WXUNUSED(event
))
1259 void OnUpdateSpin(wxSpinEvent
& WXUNUSED(event
))
1264 DECLARE_EVENT_TABLE()
1265 DECLARE_NO_COPY_CLASS(wxHtmlHelpWindowOptionsDialog
)
1268 BEGIN_EVENT_TABLE(wxHtmlHelpWindowOptionsDialog
, wxDialog
)
1269 EVT_COMBOBOX(wxID_ANY
, wxHtmlHelpWindowOptionsDialog::OnUpdate
)
1270 EVT_SPINCTRL(wxID_ANY
, wxHtmlHelpWindowOptionsDialog::OnUpdateSpin
)
1273 void wxHtmlHelpWindow::OptionsDialog()
1275 wxHtmlHelpWindowOptionsDialog
dlg(this);
1278 if (m_NormalFonts
== NULL
)
1280 m_NormalFonts
= new wxArrayString(wxFontEnumerator::GetFacenames());
1281 m_NormalFonts
->Sort(); // ascending sort
1283 if (m_FixedFonts
== NULL
)
1285 m_FixedFonts
= new wxArrayString(
1286 wxFontEnumerator::GetFacenames(wxFONTENCODING_SYSTEM
,
1287 true /*enum fixed width only*/));
1288 m_FixedFonts
->Sort(); // ascending sort
1291 // VS: We want to show the font that is actually used by wxHtmlWindow.
1292 // If customization dialog wasn't used yet, facenames are empty and
1293 // wxHtmlWindow uses default fonts -- let's find out what they
1294 // are so that we can pass them to the dialog:
1295 if (m_NormalFace
.empty())
1297 wxFont
fnt(m_FontSize
, wxSWISS
, wxNORMAL
, wxNORMAL
, false);
1298 m_NormalFace
= fnt
.GetFaceName();
1300 if (m_FixedFace
.empty())
1302 wxFont
fnt(m_FontSize
, wxMODERN
, wxNORMAL
, wxNORMAL
, false);
1303 m_FixedFace
= fnt
.GetFaceName();
1306 for (i
= 0; i
< m_NormalFonts
->GetCount(); i
++)
1307 dlg
.NormalFont
->Append((*m_NormalFonts
)[i
]);
1308 for (i
= 0; i
< m_FixedFonts
->GetCount(); i
++)
1309 dlg
.FixedFont
->Append((*m_FixedFonts
)[i
]);
1310 if (!m_NormalFace
.empty())
1311 dlg
.NormalFont
->SetStringSelection(m_NormalFace
);
1313 dlg
.NormalFont
->SetSelection(0);
1314 if (!m_FixedFace
.empty())
1315 dlg
.FixedFont
->SetStringSelection(m_FixedFace
);
1317 dlg
.FixedFont
->SetSelection(0);
1318 dlg
.FontSize
->SetValue(m_FontSize
);
1319 dlg
.UpdateTestWin();
1321 if (dlg
.ShowModal() == wxID_OK
)
1323 m_NormalFace
= dlg
.NormalFont
->GetStringSelection();
1324 m_FixedFace
= dlg
.FixedFont
->GetStringSelection();
1325 m_FontSize
= dlg
.FontSize
->GetValue();
1326 SetFontsToHtmlWin(m_HtmlWin
, m_NormalFace
, m_FixedFace
, m_FontSize
);
1330 void wxHtmlHelpWindow::NotifyPageChanged()
1332 if (m_UpdateContents
&& m_PagesHash
)
1334 wxString page
= wxHtmlHelpHtmlWindow::GetOpenedPageWithAnchor(m_HtmlWin
);
1335 wxHtmlHelpHashData
*ha
= NULL
;
1337 ha
= (wxHtmlHelpHashData
*) m_PagesHash
->Get(page
);
1341 bool olduc
= m_UpdateContents
;
1342 m_UpdateContents
= false;
1343 m_ContentsBox
->SelectItem(ha
->m_Id
);
1344 m_ContentsBox
->EnsureVisible(ha
->m_Id
);
1345 m_UpdateContents
= olduc
;
1355 void wxHtmlHelpWindow::OnToolbar(wxCommandEvent
& event
)
1357 switch (event
.GetId())
1359 case wxID_HTML_BACK
:
1360 m_HtmlWin
->HistoryBack();
1361 NotifyPageChanged();
1364 case wxID_HTML_FORWARD
:
1365 m_HtmlWin
->HistoryForward();
1366 NotifyPageChanged();
1372 wxString page
= wxHtmlHelpHtmlWindow::GetOpenedPageWithAnchor(m_HtmlWin
);
1373 wxHtmlHelpHashData
*ha
= NULL
;
1375 ha
= (wxHtmlHelpHashData
*) m_PagesHash
->Get(page
);
1376 if (ha
&& ha
->m_Index
> 0)
1378 const wxHtmlHelpDataItem
& it
= m_Data
->GetContentsArray()[ha
->m_Index
- 1];
1379 if (!it
.page
.empty())
1381 m_HtmlWin
->LoadPage(it
.GetFullPath());
1382 NotifyPageChanged();
1388 case wxID_HTML_UPNODE
:
1391 wxString page
= wxHtmlHelpHtmlWindow::GetOpenedPageWithAnchor(m_HtmlWin
);
1392 wxHtmlHelpHashData
*ha
= NULL
;
1394 ha
= (wxHtmlHelpHashData
*) m_PagesHash
->Get(page
);
1395 if (ha
&& ha
->m_Index
> 0)
1398 m_Data
->GetContentsArray()[ha
->m_Index
].level
- 1;
1399 int ind
= ha
->m_Index
- 1;
1401 const wxHtmlHelpDataItem
*it
=
1402 &m_Data
->GetContentsArray()[ind
];
1403 while (ind
>= 0 && it
->level
!= level
)
1406 it
= &m_Data
->GetContentsArray()[ind
];
1410 if (!it
->page
.empty())
1412 m_HtmlWin
->LoadPage(it
->GetFullPath());
1413 NotifyPageChanged();
1420 case wxID_HTML_DOWN
:
1423 wxString page
= wxHtmlHelpHtmlWindow::GetOpenedPageWithAnchor(m_HtmlWin
);
1424 wxHtmlHelpHashData
*ha
= NULL
;
1426 ha
= (wxHtmlHelpHashData
*) m_PagesHash
->Get(page
);
1428 const wxHtmlHelpDataItems
& contents
= m_Data
->GetContentsArray();
1429 if (ha
&& ha
->m_Index
< (int)contents
.size() - 1)
1431 size_t idx
= ha
->m_Index
+ 1;
1433 while (contents
[idx
].GetFullPath() == page
) idx
++;
1435 if (!contents
[idx
].page
.empty())
1437 m_HtmlWin
->LoadPage(contents
[idx
].GetFullPath());
1438 NotifyPageChanged();
1444 case wxID_HTML_PANEL
:
1446 if (! (m_Splitter
&& m_NavigPan
))
1448 if (m_Splitter
->IsSplit())
1450 m_Cfg
.sashpos
= m_Splitter
->GetSashPosition();
1451 m_Splitter
->Unsplit(m_NavigPan
);
1452 m_Cfg
.navig_on
= false;
1458 m_Splitter
->SplitVertically(m_NavigPan
, m_HtmlWin
, m_Cfg
.sashpos
);
1459 m_Cfg
.navig_on
= true;
1464 case wxID_HTML_OPTIONS
:
1468 case wxID_HTML_BOOKMARKSADD
:
1473 item
= m_HtmlWin
->GetOpenedPageTitle();
1474 url
= m_HtmlWin
->GetOpenedPage();
1475 if (item
== wxEmptyString
)
1476 item
= url
.AfterLast(wxT('/'));
1477 if (m_BookmarksPages
.Index(url
) == wxNOT_FOUND
)
1479 m_Bookmarks
->Append(item
);
1480 m_BookmarksNames
.Add(item
);
1481 m_BookmarksPages
.Add(url
);
1486 case wxID_HTML_BOOKMARKSREMOVE
:
1491 item
= m_Bookmarks
->GetStringSelection();
1492 pos
= m_BookmarksNames
.Index(item
);
1493 if (pos
!= wxNOT_FOUND
)
1495 m_BookmarksNames
.RemoveAt(pos
);
1496 m_BookmarksPages
.RemoveAt(pos
);
1497 pos
= m_Bookmarks
->GetSelection();
1498 wxASSERT_MSG( pos
!= wxNOT_FOUND
, wxT("Unknown bookmark position") ) ;
1499 m_Bookmarks
->Delete((unsigned int)pos
);
1504 #if wxUSE_PRINTING_ARCHITECTURE
1505 case wxID_HTML_PRINT
:
1507 if (m_Printer
== NULL
)
1508 m_Printer
= new wxHtmlEasyPrinting(_("Help Printing"), this);
1509 if (!m_HtmlWin
->GetOpenedPage())
1510 wxLogWarning(_("Cannot print empty page."));
1512 m_Printer
->PrintFile(m_HtmlWin
->GetOpenedPage());
1517 case wxID_HTML_OPENFILE
:
1519 wxString filemask
= wxString(
1520 _("HTML files (*.html;*.htm)|*.html;*.htm|")) +
1521 _("Help books (*.htb)|*.htb|Help books (*.zip)|*.zip|") +
1522 _("HTML Help Project (*.hhp)|*.hhp|") +
1524 _("Compressed HTML Help file (*.chm)|*.chm|") +
1526 _("All files (*.*)|*");
1527 wxString s
= wxFileSelector(_("Open HTML document"),
1532 wxFD_OPEN
| wxFD_FILE_MUST_EXIST
,
1536 wxString ext
= s
.Right(4).Lower();
1537 if (ext
== _T(".zip") || ext
== _T(".htb") ||
1539 ext
== _T(".chm") ||
1548 m_HtmlWin
->LoadPage(s
);
1555 void wxHtmlHelpWindow::OnContentsSel(wxTreeEvent
& event
)
1557 wxHtmlHelpTreeItemData
*pg
;
1559 pg
= (wxHtmlHelpTreeItemData
*) m_ContentsBox
->GetItemData(event
.GetItem());
1561 if (pg
&& m_UpdateContents
)
1563 const wxHtmlHelpDataItems
& contents
= m_Data
->GetContentsArray();
1564 m_UpdateContents
= false;
1565 if (!contents
[pg
->m_Id
].page
.empty())
1566 m_HtmlWin
->LoadPage(contents
[pg
->m_Id
].GetFullPath());
1567 m_UpdateContents
= true;
1571 void wxHtmlHelpWindow::OnIndexSel(wxCommandEvent
& WXUNUSED(event
))
1573 wxHtmlHelpMergedIndexItem
*it
= (wxHtmlHelpMergedIndexItem
*)
1574 m_IndexList
->GetClientData(m_IndexList
->GetSelection());
1576 DisplayIndexItem(it
);
1579 void wxHtmlHelpWindow::OnIndexFind(wxCommandEvent
& WXUNUSED(event
))
1584 void wxHtmlHelpWindow::DoIndexFind()
1586 wxString sr
= m_IndexText
->GetLineText(0);
1588 if (sr
== wxEmptyString
)
1596 m_IndexList
->Clear();
1597 const wxHtmlHelpMergedIndex
& index
= *m_mergedIndex
;
1598 size_t cnt
= index
.size();
1601 for (size_t i
= 0; i
< cnt
; i
++)
1603 if (index
[i
].name
.Lower().find(sr
) != wxString::npos
)
1605 int pos
= m_IndexList
->Append(index
[i
].name
,
1606 (char*)(&index
[i
]));
1610 // don't automatically show topic selector if this
1611 // item points to multiple pages:
1612 if (index
[i
].items
.size() == 1)
1614 m_IndexList
->SetSelection(0);
1615 DisplayIndexItem(&index
[i
]);
1619 // if this is nested item of the index, show its parent(s)
1620 // as well, otherwise it would not be clear what entry is
1622 wxHtmlHelpMergedIndexItem
*parent
= index
[i
].parent
;
1626 (index
.Index(*(wxHtmlHelpMergedIndexItem
*)m_IndexList
->GetClientData(pos
-1))) < index
.Index(*parent
))
1628 m_IndexList
->Insert(parent
->name
,
1629 pos
, (char*)parent
);
1630 parent
= parent
->parent
;
1635 // finally, it the item we just added is itself a parent for
1636 // other items, show them as well, because they are refinements
1637 // of the displayed index entry (i.e. it is implicitly contained
1638 // in them: "foo" with parent "bar" reads as "bar, foo"):
1639 int level
= index
[i
].items
[0]->level
;
1641 while (i
< cnt
&& index
[i
].items
[0]->level
> level
)
1643 m_IndexList
->Append(index
[i
].name
, (char*)(&index
[i
]));
1651 cnttext
.Printf(_("%i of %i"), displ
, cnt
);
1652 m_IndexCountInfo
->SetLabel(cnttext
);
1654 m_IndexText
->SetSelection(0, sr
.length());
1655 m_IndexText
->SetFocus();
1659 void wxHtmlHelpWindow::OnIndexAll(wxCommandEvent
& WXUNUSED(event
))
1664 void wxHtmlHelpWindow::DoIndexAll()
1668 m_IndexList
->Clear();
1669 const wxHtmlHelpMergedIndex
& index
= *m_mergedIndex
;
1670 size_t cnt
= index
.size();
1673 for (size_t i
= 0; i
< cnt
; i
++)
1675 m_IndexList
->Append(index
[i
].name
, (char*)(&index
[i
]));
1678 // don't automatically show topic selector if this
1679 // item points to multiple pages:
1680 if (index
[i
].items
.size() == 1)
1682 DisplayIndexItem(&index
[i
]);
1689 cnttext
.Printf(_("%i of %i"), cnt
, cnt
);
1690 m_IndexCountInfo
->SetLabel(cnttext
);
1693 void wxHtmlHelpWindow::OnSearchSel(wxCommandEvent
& WXUNUSED(event
))
1695 wxHtmlHelpDataItem
*it
= (wxHtmlHelpDataItem
*) m_SearchList
->GetClientData(m_SearchList
->GetSelection());
1698 if (!it
->page
.empty())
1699 m_HtmlWin
->LoadPage(it
->GetFullPath());
1700 NotifyPageChanged();
1704 void wxHtmlHelpWindow::OnSearch(wxCommandEvent
& WXUNUSED(event
))
1706 wxString sr
= m_SearchText
->GetLineText(0);
1709 KeywordSearch(sr
, wxHELP_SEARCH_ALL
);
1712 void wxHtmlHelpWindow::OnBookmarksSel(wxCommandEvent
& WXUNUSED(event
))
1714 wxString str
= m_Bookmarks
->GetStringSelection();
1715 int idx
= m_BookmarksNames
.Index(str
);
1716 if (!str
.empty() && str
!= _("(bookmarks)") && idx
!= wxNOT_FOUND
)
1718 m_HtmlWin
->LoadPage(m_BookmarksPages
[(size_t)idx
]);
1719 NotifyPageChanged();
1723 void wxHtmlHelpWindow::OnSize(wxSizeEvent
& WXUNUSED(event
))
1728 #endif // wxUSE_WXHTML_HELP