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