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