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