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