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