]>
Commit | Line | Data |
---|---|---|
5526e819 VS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: htmlwin.cpp | |
3 | // Purpose: wxHtmlWindow class for parsing & displaying HTML (implementation) | |
4 | // Author: Vaclav Slavik | |
69941f05 | 5 | // RCS-ID: $Id$ |
5526e819 VS |
6 | // Copyright: (c) 1999 Vaclav Slavik |
7 | // Licence: wxWindows Licence | |
8 | ///////////////////////////////////////////////////////////////////////////// | |
9 | ||
10 | ||
11 | #ifdef __GNUG__ | |
892aeafc VS |
12 | #pragma implementation "htmlwin.h" |
13 | #pragma implementation "htmlproc.h" | |
5526e819 VS |
14 | #endif |
15 | ||
3096bd2f | 16 | #include "wx/wxprec.h" |
5526e819 VS |
17 | |
18 | #include "wx/defs.h" | |
f6bcfd97 | 19 | #if wxUSE_HTML && wxUSE_STREAMS |
5526e819 VS |
20 | |
21 | #ifdef __BORDLANDC__ | |
22 | #pragma hdrstop | |
23 | #endif | |
24 | ||
25 | #ifndef WXPRECOMP | |
04dbb646 VZ |
26 | #include "wx/log.h" |
27 | #include "wx/intl.h" | |
28 | #include "wx/dcclient.h" | |
29 | #include "wx/frame.h" | |
5526e819 VS |
30 | #endif |
31 | ||
69941f05 | 32 | #include "wx/html/htmlwin.h" |
892aeafc | 33 | #include "wx/html/htmlproc.h" |
892aeafc | 34 | #include "wx/list.h" |
04dbb646 VZ |
35 | |
36 | #include "wx/arrimpl.cpp" | |
892aeafc VS |
37 | #include "wx/listimpl.cpp" |
38 | ||
39 | //----------------------------------------------------------------------------- | |
40 | // wxHtmlHistoryItem | |
41 | //----------------------------------------------------------------------------- | |
42 | ||
43 | // item of history list | |
05f9197a | 44 | class WXDLLEXPORT wxHtmlHistoryItem |
892aeafc VS |
45 | { |
46 | public: | |
47 | wxHtmlHistoryItem(const wxString& p, const wxString& a) {m_Page = p, m_Anchor = a, m_Pos = 0;} | |
48 | int GetPos() const {return m_Pos;} | |
49 | void SetPos(int p) {m_Pos = p;} | |
50 | const wxString& GetPage() const {return m_Page;} | |
51 | const wxString& GetAnchor() const {return m_Anchor;} | |
52 | ||
53 | private: | |
54 | wxString m_Page; | |
55 | wxString m_Anchor; | |
56 | int m_Pos; | |
57 | }; | |
5526e819 | 58 | |
5526e819 VS |
59 | |
60 | //----------------------------------------------------------------------------- | |
892aeafc | 61 | // our private arrays: |
5526e819 VS |
62 | //----------------------------------------------------------------------------- |
63 | ||
892aeafc VS |
64 | WX_DECLARE_OBJARRAY(wxHtmlHistoryItem, wxHtmlHistoryArray); |
65 | WX_DEFINE_OBJARRAY(wxHtmlHistoryArray); | |
5526e819 | 66 | |
892aeafc VS |
67 | WX_DECLARE_LIST(wxHtmlProcessor, wxHtmlProcessorList); |
68 | WX_DEFINE_LIST(wxHtmlProcessorList); | |
5526e819 | 69 | |
892aeafc VS |
70 | //----------------------------------------------------------------------------- |
71 | // wxHtmlWindow | |
72 | //----------------------------------------------------------------------------- | |
5526e819 VS |
73 | |
74 | ||
4f417130 | 75 | void wxHtmlWindow::Init() |
5526e819 VS |
76 | { |
77 | m_tmpMouseMoved = FALSE; | |
846914d1 | 78 | m_tmpLastLink = NULL; |
f6010d8f | 79 | m_tmpLastCell = NULL; |
89de9af3 | 80 | m_tmpCanDrawLocks = 0; |
5526e819 VS |
81 | m_FS = new wxFileSystem(); |
82 | m_RelatedStatusBar = -1; | |
83 | m_RelatedFrame = NULL; | |
892aeafc | 84 | m_TitleFormat = wxT("%s"); |
d5db80c2 | 85 | m_OpenedPage = m_OpenedAnchor = m_OpenedPageTitle = wxEmptyString; |
5526e819 VS |
86 | m_Cell = NULL; |
87 | m_Parser = new wxHtmlWinParser(this); | |
4f9297b0 | 88 | m_Parser->SetFS(m_FS); |
5526e819 VS |
89 | m_HistoryPos = -1; |
90 | m_HistoryOn = TRUE; | |
892aeafc VS |
91 | m_History = new wxHtmlHistoryArray; |
92 | m_Processors = NULL; | |
4f417130 VS |
93 | m_Style = 0; |
94 | SetBorders(10); | |
95 | } | |
96 | ||
790dbce3 | 97 | bool wxHtmlWindow::Create(wxWindow *parent, wxWindowID id, |
4f417130 | 98 | const wxPoint& pos, const wxSize& size, |
790dbce3 | 99 | long style, const wxString& name) |
4f417130 | 100 | { |
790dbce3 | 101 | if (!wxScrolledWindow::Create(parent, id, pos, size, |
4f417130 VS |
102 | style | wxVSCROLL | wxHSCROLL, name)) |
103 | return FALSE; | |
104 | ||
a547ebff | 105 | m_Style = style; |
4f9297b0 | 106 | SetPage(wxT("<html><body></body></html>")); |
4f417130 | 107 | return TRUE; |
5526e819 VS |
108 | } |
109 | ||
110 | ||
5526e819 VS |
111 | wxHtmlWindow::~wxHtmlWindow() |
112 | { | |
113 | HistoryClear(); | |
114 | ||
115 | if (m_Cell) delete m_Cell; | |
116 | ||
5526e819 VS |
117 | delete m_Parser; |
118 | delete m_FS; | |
892aeafc VS |
119 | delete m_History; |
120 | delete m_Processors; | |
5526e819 VS |
121 | } |
122 | ||
123 | ||
124 | ||
125 | void wxHtmlWindow::SetRelatedFrame(wxFrame* frame, const wxString& format) | |
126 | { | |
127 | m_RelatedFrame = frame; | |
128 | m_TitleFormat = format; | |
129 | } | |
130 | ||
131 | ||
132 | ||
133 | void wxHtmlWindow::SetRelatedStatusBar(int bar) | |
134 | { | |
135 | m_RelatedStatusBar = bar; | |
136 | } | |
269e8200 RD |
137 | |
138 | ||
139 | ||
8eb2940f | 140 | void wxHtmlWindow::SetFonts(wxString normal_face, wxString fixed_face, const int *sizes) |
5526e819 | 141 | { |
d5db80c2 VS |
142 | wxString op = m_OpenedPage; |
143 | ||
4f9297b0 | 144 | m_Parser->SetFonts(normal_face, fixed_face, sizes); |
892aeafc | 145 | // fonts changed => contents invalid, so reload the page: |
bfb9ee96 | 146 | SetPage(wxT("<html><body></body></html>")); |
d5db80c2 | 147 | if (!op.IsEmpty()) LoadPage(op); |
5526e819 VS |
148 | } |
149 | ||
150 | ||
151 | ||
152 | bool wxHtmlWindow::SetPage(const wxString& source) | |
153 | { | |
892aeafc VS |
154 | wxString newsrc(source); |
155 | ||
156 | // pass HTML through registered processors: | |
960ba969 | 157 | if (m_Processors || m_GlobalProcessors) |
892aeafc | 158 | { |
960ba969 VS |
159 | wxHtmlProcessorList::Node *nodeL, *nodeG; |
160 | int prL, prG; | |
892aeafc VS |
161 | |
162 | nodeL = (m_Processors) ? m_Processors->GetFirst() : NULL; | |
960ba969 VS |
163 | nodeG = (m_GlobalProcessors) ? m_GlobalProcessors->GetFirst() : NULL; |
164 | ||
165 | // VS: there are two lists, global and local, both of them sorted by | |
e421922f | 166 | // priority. Since we have to go through _both_ lists with |
960ba969 VS |
167 | // decreasing priority, we "merge-sort" the lists on-line by |
168 | // processing that one of the two heads that has higher priority | |
169 | // in every iteration | |
170 | while (nodeL || nodeG) | |
892aeafc VS |
171 | { |
172 | prL = (nodeL) ? nodeL->GetData()->GetPriority() : -1; | |
960ba969 VS |
173 | prG = (nodeG) ? nodeG->GetData()->GetPriority() : -1; |
174 | if (prL > prG) | |
892aeafc | 175 | { |
73348d09 VS |
176 | if (nodeL->GetData()->IsEnabled()) |
177 | newsrc = nodeL->GetData()->Process(newsrc); | |
892aeafc VS |
178 | nodeL = nodeL->GetNext(); |
179 | } | |
960ba969 | 180 | else // prL <= prG |
892aeafc | 181 | { |
73348d09 VS |
182 | if (nodeG->GetData()->IsEnabled()) |
183 | newsrc = nodeG->GetData()->Process(newsrc); | |
960ba969 | 184 | nodeG = nodeG->GetNext(); |
892aeafc VS |
185 | } |
186 | } | |
187 | } | |
5526e819 | 188 | |
892aeafc VS |
189 | // ...and run the parser on it: |
190 | wxClientDC *dc = new wxClientDC(this); | |
4f9297b0 | 191 | dc->SetMapMode(wxMM_TEXT); |
5526e819 | 192 | SetBackgroundColour(wxColour(0xFF, 0xFF, 0xFF)); |
d5db80c2 | 193 | m_OpenedPage = m_OpenedAnchor = m_OpenedPageTitle = wxEmptyString; |
4f9297b0 | 194 | m_Parser->SetDC(dc); |
33ac7e6f | 195 | if (m_Cell) |
4f9297b0 | 196 | { |
89de9af3 VS |
197 | delete m_Cell; |
198 | m_Cell = NULL; | |
f61815af | 199 | } |
892aeafc | 200 | m_Cell = (wxHtmlContainerCell*) m_Parser->Parse(newsrc); |
5526e819 | 201 | delete dc; |
4f9297b0 VS |
202 | m_Cell->SetIndent(m_Borders, wxHTML_INDENT_ALL, wxHTML_UNITS_PIXELS); |
203 | m_Cell->SetAlignHor(wxHTML_ALIGN_CENTER); | |
5526e819 | 204 | CreateLayout(); |
bfb9ee96 | 205 | if (m_tmpCanDrawLocks == 0) |
892aeafc | 206 | Refresh(); |
5526e819 VS |
207 | return TRUE; |
208 | } | |
209 | ||
39029898 VS |
210 | bool wxHtmlWindow::AppendToPage(const wxString& source) |
211 | { | |
212 | return SetPage(*(GetParser()->GetSource()) + source); | |
213 | } | |
5526e819 VS |
214 | |
215 | bool wxHtmlWindow::LoadPage(const wxString& location) | |
216 | { | |
1ccabb81 | 217 | wxBusyCursor busyCursor; |
790dbce3 | 218 | |
5526e819 VS |
219 | wxFSFile *f; |
220 | bool rt_val; | |
fc7dfaf8 | 221 | bool needs_refresh = FALSE; |
33ac7e6f | 222 | |
89de9af3 | 223 | m_tmpCanDrawLocks++; |
e421922f | 224 | if (m_HistoryOn && (m_HistoryPos != -1)) |
4f9297b0 | 225 | { |
960ba969 | 226 | // store scroll position into history item: |
5526e819 | 227 | int x, y; |
e421922f | 228 | GetViewStart(&x, &y); |
892aeafc | 229 | (*m_History)[m_HistoryPos].SetPos(y); |
5526e819 VS |
230 | } |
231 | ||
e421922f | 232 | if (location[0] == wxT('#')) |
4f9297b0 | 233 | { |
960ba969 | 234 | // local anchor: |
5526e819 | 235 | wxString anch = location.Mid(1) /*1 to end*/; |
89de9af3 | 236 | m_tmpCanDrawLocks--; |
5526e819 | 237 | rt_val = ScrollToAnchor(anch); |
fc7dfaf8 VS |
238 | m_tmpCanDrawLocks++; |
239 | } | |
33ac7e6f | 240 | else if (location.Find(wxT('#')) != wxNOT_FOUND && location.BeforeFirst(wxT('#')) == m_OpenedPage) |
4f9297b0 | 241 | { |
fc7dfaf8 VS |
242 | wxString anch = location.AfterFirst(wxT('#')); |
243 | m_tmpCanDrawLocks--; | |
244 | rt_val = ScrollToAnchor(anch); | |
245 | m_tmpCanDrawLocks++; | |
246 | } | |
33ac7e6f KB |
247 | else if (location.Find(wxT('#')) != wxNOT_FOUND && |
248 | (m_FS->GetPath() + location.BeforeFirst(wxT('#'))) == m_OpenedPage) | |
e421922f | 249 | { |
fc7dfaf8 VS |
250 | wxString anch = location.AfterFirst(wxT('#')); |
251 | m_tmpCanDrawLocks--; | |
252 | rt_val = ScrollToAnchor(anch); | |
253 | m_tmpCanDrawLocks++; | |
5526e819 VS |
254 | } |
255 | ||
33ac7e6f | 256 | else |
4f9297b0 | 257 | { |
fc7dfaf8 | 258 | needs_refresh = TRUE; |
5526e819 | 259 | // load&display it: |
33ac7e6f | 260 | if (m_RelatedStatusBar != -1) |
e421922f | 261 | { |
4f9297b0 | 262 | m_RelatedFrame->SetStatusText(_("Connecting..."), m_RelatedStatusBar); |
fc7dfaf8 | 263 | Refresh(FALSE); |
5526e819 | 264 | } |
790dbce3 | 265 | |
6cc4e6b8 | 266 | f = m_Parser->OpenURL(wxHTML_URL_PAGE, location); |
33ac7e6f KB |
267 | |
268 | if (f == NULL) | |
e421922f | 269 | { |
f6bcfd97 | 270 | wxLogError(_("Unable to open requested HTML document: %s"), location.c_str()); |
89de9af3 | 271 | m_tmpCanDrawLocks--; |
5526e819 VS |
272 | return FALSE; |
273 | } | |
274 | ||
33ac7e6f | 275 | else |
e421922f | 276 | { |
5526e819 VS |
277 | wxNode *node; |
278 | wxString src = wxEmptyString; | |
279 | ||
33ac7e6f | 280 | if (m_RelatedStatusBar != -1) |
e421922f | 281 | { |
5526e819 | 282 | wxString msg = _("Loading : ") + location; |
4f9297b0 | 283 | m_RelatedFrame->SetStatusText(msg, m_RelatedStatusBar); |
fc7dfaf8 | 284 | Refresh(FALSE); |
5526e819 VS |
285 | } |
286 | ||
287 | node = m_Filters.GetFirst(); | |
4f9297b0 | 288 | while (node) |
e421922f | 289 | { |
4f9297b0 VS |
290 | wxHtmlFilter *h = (wxHtmlFilter*) node->GetData(); |
291 | if (h->CanRead(*f)) | |
e421922f | 292 | { |
4f9297b0 | 293 | src = h->ReadFile(*f); |
5526e819 VS |
294 | break; |
295 | } | |
4f9297b0 | 296 | node = node->GetNext(); |
5526e819 | 297 | } |
33ac7e6f | 298 | if (src == wxEmptyString) |
e421922f | 299 | { |
89de9af3 | 300 | if (m_DefaultFilter == NULL) m_DefaultFilter = GetDefaultFilter(); |
4f9297b0 | 301 | src = m_DefaultFilter->ReadFile(*f); |
89de9af3 | 302 | } |
5526e819 | 303 | |
4f9297b0 | 304 | m_FS->ChangePathTo(f->GetLocation()); |
5526e819 | 305 | rt_val = SetPage(src); |
4f9297b0 | 306 | m_OpenedPage = f->GetLocation(); |
33ac7e6f | 307 | if (f->GetAnchor() != wxEmptyString) |
e421922f | 308 | { |
4f9297b0 | 309 | ScrollToAnchor(f->GetAnchor()); |
5526e819 VS |
310 | } |
311 | ||
312 | delete f; | |
313 | ||
4f9297b0 | 314 | if (m_RelatedStatusBar != -1) m_RelatedFrame->SetStatusText(_("Done"), m_RelatedStatusBar); |
5526e819 VS |
315 | } |
316 | } | |
317 | ||
4f9297b0 VS |
318 | if (m_HistoryOn) // add this page to history there: |
319 | { | |
892aeafc | 320 | int c = m_History->GetCount() - (m_HistoryPos + 1); |
5526e819 | 321 | |
0cb9cfb2 | 322 | if (m_HistoryPos < 0 || |
ee19c324 VS |
323 | (*m_History)[m_HistoryPos].GetPage() != m_OpenedPage || |
324 | (*m_History)[m_HistoryPos].GetAnchor() != m_OpenedAnchor) | |
325 | { | |
326 | m_HistoryPos++; | |
327 | for (int i = 0; i < c; i++) | |
b54e41c5 | 328 | m_History->RemoveAt(m_HistoryPos); |
ee19c324 VS |
329 | m_History->Add(new wxHtmlHistoryItem(m_OpenedPage, m_OpenedAnchor)); |
330 | } | |
5526e819 VS |
331 | } |
332 | ||
096824d7 VS |
333 | if (m_OpenedPageTitle == wxEmptyString) |
334 | OnSetTitle(wxFileNameFromPath(m_OpenedPage)); | |
fc7dfaf8 | 335 | |
33ac7e6f | 336 | if (needs_refresh) |
4f9297b0 | 337 | { |
fc7dfaf8 VS |
338 | m_tmpCanDrawLocks--; |
339 | Refresh(); | |
340 | } | |
341 | else | |
342 | m_tmpCanDrawLocks--; | |
343 | ||
5526e819 VS |
344 | return rt_val; |
345 | } | |
346 | ||
347 | ||
348 | ||
349 | bool wxHtmlWindow::ScrollToAnchor(const wxString& anchor) | |
350 | { | |
4f9297b0 | 351 | const wxHtmlCell *c = m_Cell->Find(wxHTML_COND_ISANCHOR, &anchor); |
f3c82859 VS |
352 | if (!c) |
353 | { | |
f6bcfd97 | 354 | wxLogWarning(_("HTML anchor %s does not exist."), anchor.c_str()); |
f3c82859 VS |
355 | return FALSE; |
356 | } | |
33ac7e6f | 357 | else |
4f9297b0 | 358 | { |
5526e819 | 359 | int y; |
269e8200 | 360 | |
4f9297b0 | 361 | for (y = 0; c != NULL; c = c->GetParent()) y += c->GetPosY(); |
efba2b89 | 362 | Scroll(-1, y / wxHTML_SCROLL_STEP); |
5526e819 VS |
363 | m_OpenedAnchor = anchor; |
364 | return TRUE; | |
365 | } | |
366 | } | |
367 | ||
368 | ||
d5db80c2 | 369 | void wxHtmlWindow::OnSetTitle(const wxString& title) |
5526e819 | 370 | { |
33ac7e6f | 371 | if (m_RelatedFrame) |
4f9297b0 | 372 | { |
5526e819 VS |
373 | wxString tit; |
374 | tit.Printf(m_TitleFormat, title.c_str()); | |
4f9297b0 | 375 | m_RelatedFrame->SetTitle(tit); |
5526e819 | 376 | } |
d5db80c2 | 377 | m_OpenedPageTitle = title; |
5526e819 VS |
378 | } |
379 | ||
380 | ||
381 | ||
382 | ||
383 | ||
384 | void wxHtmlWindow::CreateLayout() | |
385 | { | |
386 | int ClientWidth, ClientHeight; | |
387 | ||
388 | if (!m_Cell) return; | |
a547ebff | 389 | |
33ac7e6f | 390 | if (m_Style & wxHW_SCROLLBAR_NEVER) |
4f9297b0 VS |
391 | { |
392 | SetScrollbars(wxHTML_SCROLL_STEP, 1, m_Cell->GetWidth() / wxHTML_SCROLL_STEP, 0); // always off | |
a547ebff | 393 | GetClientSize(&ClientWidth, &ClientHeight); |
4f9297b0 | 394 | m_Cell->Layout(ClientWidth); |
a547ebff VS |
395 | } |
396 | ||
397 | else { | |
398 | GetClientSize(&ClientWidth, &ClientHeight); | |
4f9297b0 | 399 | m_Cell->Layout(ClientWidth); |
33ac7e6f | 400 | if (ClientHeight < m_Cell->GetHeight() + GetCharHeight()) |
e421922f | 401 | { |
f3bcfd9b VS |
402 | SetScrollbars( |
403 | wxHTML_SCROLL_STEP, wxHTML_SCROLL_STEP, | |
4f9297b0 VS |
404 | m_Cell->GetWidth() / wxHTML_SCROLL_STEP, |
405 | (m_Cell->GetHeight() + GetCharHeight()) / wxHTML_SCROLL_STEP | |
f3bcfd9b | 406 | /*cheat: top-level frag is always container*/); |
a547ebff | 407 | } |
4f9297b0 | 408 | else /* we fit into window, no need for scrollbars */ |
e421922f | 409 | { |
4f9297b0 | 410 | SetScrollbars(wxHTML_SCROLL_STEP, 1, m_Cell->GetWidth() / wxHTML_SCROLL_STEP, 0); // disable... |
89de9af3 | 411 | GetClientSize(&ClientWidth, &ClientHeight); |
4f9297b0 | 412 | m_Cell->Layout(ClientWidth); // ...and relayout |
89de9af3 | 413 | } |
a547ebff | 414 | } |
5526e819 VS |
415 | } |
416 | ||
269e8200 | 417 | |
5526e819 VS |
418 | |
419 | void wxHtmlWindow::ReadCustomization(wxConfigBase *cfg, wxString path) | |
420 | { | |
421 | wxString oldpath; | |
422 | wxString tmp; | |
d5db80c2 VS |
423 | int p_fontsizes[7]; |
424 | wxString p_fff, p_ffn; | |
5526e819 | 425 | |
33ac7e6f | 426 | if (path != wxEmptyString) |
4f9297b0 VS |
427 | { |
428 | oldpath = cfg->GetPath(); | |
429 | cfg->SetPath(path); | |
5526e819 VS |
430 | } |
431 | ||
892aeafc VS |
432 | m_Borders = cfg->Read(wxT("wxHtmlWindow/Borders"), m_Borders); |
433 | p_fff = cfg->Read(wxT("wxHtmlWindow/FontFaceFixed"), m_Parser->m_FontFaceFixed); | |
434 | p_ffn = cfg->Read(wxT("wxHtmlWindow/FontFaceNormal"), m_Parser->m_FontFaceNormal); | |
bfb9ee96 | 435 | for (int i = 0; i < 7; i++) |
4f9297b0 | 436 | { |
66a77a74 | 437 | tmp.Printf(wxT("wxHtmlWindow/FontsSize%i"), i); |
4f9297b0 | 438 | p_fontsizes[i] = cfg->Read(tmp, m_Parser->m_FontsSizes[i]); |
5526e819 | 439 | } |
8eb2940f | 440 | SetFonts(p_ffn, p_fff, p_fontsizes); |
5526e819 VS |
441 | |
442 | if (path != wxEmptyString) | |
4f9297b0 | 443 | cfg->SetPath(oldpath); |
5526e819 VS |
444 | } |
445 | ||
446 | ||
447 | ||
448 | void wxHtmlWindow::WriteCustomization(wxConfigBase *cfg, wxString path) | |
449 | { | |
450 | wxString oldpath; | |
451 | wxString tmp; | |
452 | ||
33ac7e6f | 453 | if (path != wxEmptyString) |
4f9297b0 VS |
454 | { |
455 | oldpath = cfg->GetPath(); | |
456 | cfg->SetPath(path); | |
5526e819 VS |
457 | } |
458 | ||
892aeafc VS |
459 | cfg->Write(wxT("wxHtmlWindow/Borders"), (long) m_Borders); |
460 | cfg->Write(wxT("wxHtmlWindow/FontFaceFixed"), m_Parser->m_FontFaceFixed); | |
461 | cfg->Write(wxT("wxHtmlWindow/FontFaceNormal"), m_Parser->m_FontFaceNormal); | |
bfb9ee96 | 462 | for (int i = 0; i < 7; i++) |
4f9297b0 | 463 | { |
66a77a74 | 464 | tmp.Printf(wxT("wxHtmlWindow/FontsSize%i"), i); |
4f9297b0 | 465 | cfg->Write(tmp, (long) m_Parser->m_FontsSizes[i]); |
5526e819 VS |
466 | } |
467 | ||
468 | if (path != wxEmptyString) | |
4f9297b0 | 469 | cfg->SetPath(oldpath); |
5526e819 VS |
470 | } |
471 | ||
472 | ||
473 | ||
474 | bool wxHtmlWindow::HistoryBack() | |
475 | { | |
476 | wxString a, l; | |
477 | ||
478 | if (m_HistoryPos < 1) return FALSE; | |
479 | ||
bbda1088 VS |
480 | // store scroll position into history item: |
481 | int x, y; | |
e421922f | 482 | GetViewStart(&x, &y); |
892aeafc | 483 | (*m_History)[m_HistoryPos].SetPos(y); |
bbda1088 VS |
484 | |
485 | // go to previous position: | |
5526e819 VS |
486 | m_HistoryPos--; |
487 | ||
892aeafc VS |
488 | l = (*m_History)[m_HistoryPos].GetPage(); |
489 | a = (*m_History)[m_HistoryPos].GetAnchor(); | |
5526e819 | 490 | m_HistoryOn = FALSE; |
89de9af3 | 491 | m_tmpCanDrawLocks++; |
5526e819 | 492 | if (a == wxEmptyString) LoadPage(l); |
fc7dfaf8 | 493 | else LoadPage(l + wxT("#") + a); |
5526e819 | 494 | m_HistoryOn = TRUE; |
89de9af3 | 495 | m_tmpCanDrawLocks--; |
892aeafc | 496 | Scroll(0, (*m_History)[m_HistoryPos].GetPos()); |
5526e819 VS |
497 | Refresh(); |
498 | return TRUE; | |
499 | } | |
500 | ||
1b113a81 VS |
501 | bool wxHtmlWindow::HistoryCanBack() |
502 | { | |
503 | if (m_HistoryPos < 1) return FALSE; | |
504 | return TRUE ; | |
505 | } | |
5526e819 VS |
506 | |
507 | ||
508 | bool wxHtmlWindow::HistoryForward() | |
509 | { | |
510 | wxString a, l; | |
511 | ||
512 | if (m_HistoryPos == -1) return FALSE; | |
892aeafc | 513 | if (m_HistoryPos >= (int)m_History->GetCount() - 1)return FALSE; |
5526e819 VS |
514 | |
515 | m_OpenedPage = wxEmptyString; // this will disable adding new entry into history in LoadPage() | |
516 | ||
517 | m_HistoryPos++; | |
892aeafc VS |
518 | l = (*m_History)[m_HistoryPos].GetPage(); |
519 | a = (*m_History)[m_HistoryPos].GetAnchor(); | |
5526e819 | 520 | m_HistoryOn = FALSE; |
89de9af3 | 521 | m_tmpCanDrawLocks++; |
5526e819 | 522 | if (a == wxEmptyString) LoadPage(l); |
fc7dfaf8 | 523 | else LoadPage(l + wxT("#") + a); |
5526e819 | 524 | m_HistoryOn = TRUE; |
89de9af3 | 525 | m_tmpCanDrawLocks--; |
892aeafc | 526 | Scroll(0, (*m_History)[m_HistoryPos].GetPos()); |
5526e819 VS |
527 | Refresh(); |
528 | return TRUE; | |
529 | } | |
530 | ||
1b113a81 VS |
531 | bool wxHtmlWindow::HistoryCanForward() |
532 | { | |
533 | if (m_HistoryPos == -1) return FALSE; | |
892aeafc | 534 | if (m_HistoryPos >= (int)m_History->GetCount() - 1)return FALSE; |
1b113a81 VS |
535 | return TRUE ; |
536 | } | |
5526e819 VS |
537 | |
538 | ||
539 | void wxHtmlWindow::HistoryClear() | |
540 | { | |
892aeafc | 541 | m_History->Empty(); |
5526e819 VS |
542 | m_HistoryPos = -1; |
543 | } | |
544 | ||
892aeafc VS |
545 | void wxHtmlWindow::AddProcessor(wxHtmlProcessor *processor) |
546 | { | |
547 | if (!m_Processors) | |
548 | { | |
549 | m_Processors = new wxHtmlProcessorList; | |
550 | m_Processors->DeleteContents(TRUE); | |
551 | } | |
552 | wxHtmlProcessorList::Node *node; | |
bfb9ee96 | 553 | |
892aeafc VS |
554 | for (node = m_Processors->GetFirst(); node; node = node->GetNext()) |
555 | { | |
bfb9ee96 | 556 | if (processor->GetPriority() > node->GetData()->GetPriority()) |
892aeafc VS |
557 | { |
558 | m_Processors->Insert(node, processor); | |
960ba969 | 559 | return; |
892aeafc VS |
560 | } |
561 | } | |
960ba969 | 562 | m_Processors->Append(processor); |
892aeafc VS |
563 | } |
564 | ||
960ba969 | 565 | /*static */ void wxHtmlWindow::AddGlobalProcessor(wxHtmlProcessor *processor) |
892aeafc | 566 | { |
960ba969 | 567 | if (!m_GlobalProcessors) |
892aeafc | 568 | { |
960ba969 VS |
569 | m_GlobalProcessors = new wxHtmlProcessorList; |
570 | m_GlobalProcessors->DeleteContents(TRUE); | |
892aeafc VS |
571 | } |
572 | wxHtmlProcessorList::Node *node; | |
e421922f | 573 | |
960ba969 | 574 | for (node = m_GlobalProcessors->GetFirst(); node; node = node->GetNext()) |
892aeafc | 575 | { |
bfb9ee96 | 576 | if (processor->GetPriority() > node->GetData()->GetPriority()) |
892aeafc | 577 | { |
960ba969 VS |
578 | m_GlobalProcessors->Insert(node, processor); |
579 | return; | |
892aeafc VS |
580 | } |
581 | } | |
960ba969 | 582 | m_GlobalProcessors->Append(processor); |
892aeafc VS |
583 | } |
584 | ||
5526e819 VS |
585 | |
586 | ||
587 | wxList wxHtmlWindow::m_Filters; | |
a76015e6 | 588 | wxHtmlFilter *wxHtmlWindow::m_DefaultFilter = NULL; |
66806a0b VS |
589 | wxCursor *wxHtmlWindow::s_cur_hand = NULL; |
590 | wxCursor *wxHtmlWindow::s_cur_arrow = NULL; | |
960ba969 | 591 | wxHtmlProcessorList *wxHtmlWindow::m_GlobalProcessors = NULL; |
a76015e6 VS |
592 | |
593 | void wxHtmlWindow::CleanUpStatics() | |
594 | { | |
892aeafc | 595 | delete m_DefaultFilter; |
a76015e6 | 596 | m_DefaultFilter = NULL; |
269e8200 RD |
597 | m_Filters.DeleteContents(TRUE); |
598 | m_Filters.Clear(); | |
960ba969 VS |
599 | delete m_GlobalProcessors; |
600 | m_GlobalProcessors = NULL; | |
892aeafc VS |
601 | delete s_cur_hand; |
602 | delete s_cur_arrow; | |
a76015e6 VS |
603 | } |
604 | ||
605 | ||
5526e819 VS |
606 | |
607 | void wxHtmlWindow::AddFilter(wxHtmlFilter *filter) | |
608 | { | |
5526e819 VS |
609 | m_Filters.Append(filter); |
610 | } | |
611 | ||
612 | ||
613 | ||
614 | ||
0b2dadd3 | 615 | void wxHtmlWindow::OnLinkClicked(const wxHtmlLinkInfo& link) |
5526e819 | 616 | { |
0b2dadd3 | 617 | LoadPage(link.GetHref()); |
5526e819 VS |
618 | } |
619 | ||
f6010d8f VZ |
620 | void wxHtmlWindow::OnCellClicked(wxHtmlCell *cell, |
621 | wxCoord x, wxCoord y, | |
622 | const wxMouseEvent& event) | |
19193a2c | 623 | { |
f6010d8f | 624 | wxCHECK_RET( cell, _T("can't be called with NULL cell") ); |
5526e819 | 625 | |
f6010d8f VZ |
626 | cell->OnMouseClick(this, x, y, event); |
627 | } | |
628 | ||
629 | void wxHtmlWindow::OnCellMouseHover(wxHtmlCell * WXUNUSED(cell), | |
630 | wxCoord WXUNUSED(x), wxCoord WXUNUSED(y)) | |
631 | { | |
632 | // do nothing here | |
633 | } | |
5526e819 VS |
634 | |
635 | void wxHtmlWindow::OnDraw(wxDC& dc) | |
636 | { | |
b835e9bf | 637 | if (m_tmpCanDrawLocks > 0 || m_Cell == NULL) return; |
5526e819 | 638 | |
b835e9bf VS |
639 | int x, y; |
640 | wxRect rect = GetUpdateRegion().GetBox(); | |
33ac7e6f | 641 | |
5526e819 | 642 | dc.SetMapMode(wxMM_TEXT); |
5526e819 | 643 | dc.SetBackgroundMode(wxTRANSPARENT); |
e421922f | 644 | GetViewStart(&x, &y); |
5526e819 | 645 | |
790dbce3 RD |
646 | m_Cell->Draw(dc, 0, 0, |
647 | y * wxHTML_SCROLL_STEP + rect.GetTop(), | |
b835e9bf | 648 | y * wxHTML_SCROLL_STEP + rect.GetBottom()); |
5526e819 VS |
649 | } |
650 | ||
651 | ||
652 | ||
653 | ||
654 | void wxHtmlWindow::OnSize(wxSizeEvent& event) | |
655 | { | |
656 | wxScrolledWindow::OnSize(event); | |
657 | CreateLayout(); | |
f6bcfd97 | 658 | Refresh(); |
5526e819 VS |
659 | } |
660 | ||
661 | ||
5526e819 VS |
662 | void wxHtmlWindow::OnMouseEvent(wxMouseEvent& event) |
663 | { | |
664 | m_tmpMouseMoved = TRUE; | |
665 | ||
33ac7e6f | 666 | if (event.ButtonDown()) |
4f9297b0 | 667 | { |
790dbce3 | 668 | SetFocus(); |
f6010d8f VZ |
669 | if ( m_Cell ) |
670 | { | |
671 | int sx, sy; | |
672 | GetViewStart(&sx, &sy); | |
673 | sx *= wxHTML_SCROLL_STEP; | |
674 | sy *= wxHTML_SCROLL_STEP; | |
5526e819 | 675 | |
f6010d8f VZ |
676 | wxPoint pos = event.GetPosition(); |
677 | pos.x += sx; | |
678 | pos.y += sy; | |
5526e819 | 679 | |
f6010d8f VZ |
680 | wxHtmlCell *cell = m_Cell->FindCellByPos(pos.x, pos.y); |
681 | ||
682 | // VZ: is it possible that we don't find anything at all? | |
d168485f VS |
683 | // VS: yes. FindCellByPos returns terminal cell and |
684 | // containers may have empty borders | |
f6010d8f VZ |
685 | if ( cell ) |
686 | OnCellClicked(cell, pos.x, pos.y, event); | |
687 | } | |
5526e819 VS |
688 | } |
689 | } | |
690 | ||
691 | ||
692 | ||
33ac7e6f | 693 | void wxHtmlWindow::OnIdle(wxIdleEvent& WXUNUSED(event)) |
5526e819 | 694 | { |
33ac7e6f | 695 | if (s_cur_hand == NULL) |
66806a0b VS |
696 | { |
697 | s_cur_hand = new wxCursor(wxCURSOR_HAND); | |
698 | s_cur_arrow = new wxCursor(wxCURSOR_ARROW); | |
699 | } | |
5526e819 | 700 | |
33ac7e6f | 701 | if (m_tmpMouseMoved && (m_Cell != NULL)) |
4f9297b0 | 702 | { |
5526e819 | 703 | int sx, sy; |
0cb9cfb2 VZ |
704 | GetViewStart(&sx, &sy); |
705 | sx *= wxHTML_SCROLL_STEP; | |
706 | sy *= wxHTML_SCROLL_STEP; | |
5526e819 | 707 | |
0cb9cfb2 | 708 | int x, y; |
5526e819 VS |
709 | wxGetMousePosition(&x, &y); |
710 | ScreenToClient(&x, &y); | |
f6010d8f VZ |
711 | x += sx; |
712 | y += sy; | |
0cb9cfb2 | 713 | |
f6010d8f VZ |
714 | wxHtmlCell *cell = m_Cell->FindCellByPos(x, y); |
715 | if ( cell != m_tmpLastCell ) | |
e421922f | 716 | { |
f6010d8f VZ |
717 | wxHtmlLinkInfo *lnk = cell ? cell->GetLink(x, y) : NULL; |
718 | ||
719 | if (lnk != m_tmpLastLink) | |
e421922f | 720 | { |
f6010d8f VZ |
721 | if (lnk == NULL) |
722 | { | |
723 | SetCursor(*s_cur_arrow); | |
724 | if (m_RelatedStatusBar != -1) | |
725 | m_RelatedFrame->SetStatusText(wxEmptyString, m_RelatedStatusBar); | |
726 | } | |
727 | else | |
728 | { | |
729 | SetCursor(*s_cur_hand); | |
730 | if (m_RelatedStatusBar != -1) | |
731 | m_RelatedFrame->SetStatusText(lnk->GetHref(), m_RelatedStatusBar); | |
732 | } | |
733 | m_tmpLastLink = lnk; | |
622ea783 | 734 | } |
f6010d8f VZ |
735 | |
736 | m_tmpLastCell = cell; | |
5526e819 | 737 | } |
f6010d8f VZ |
738 | else // mouse moved but stayed in the same cell |
739 | { | |
740 | if ( cell ) | |
741 | OnCellMouseHover(cell, x, y); | |
742 | } | |
743 | ||
5526e819 VS |
744 | m_tmpMouseMoved = FALSE; |
745 | } | |
746 | } | |
747 | ||
748 | ||
bfb9ee96 | 749 | IMPLEMENT_ABSTRACT_CLASS(wxHtmlProcessor,wxObject) |
5526e819 VS |
750 | |
751 | IMPLEMENT_DYNAMIC_CLASS(wxHtmlWindow,wxScrolledWindow) | |
752 | ||
753 | BEGIN_EVENT_TABLE(wxHtmlWindow, wxScrolledWindow) | |
754 | EVT_SIZE(wxHtmlWindow::OnSize) | |
755 | EVT_LEFT_DOWN(wxHtmlWindow::OnMouseEvent) | |
0cb9cfb2 | 756 | EVT_RIGHT_DOWN(wxHtmlWindow::OnMouseEvent) |
5526e819 VS |
757 | EVT_MOTION(wxHtmlWindow::OnMouseEvent) |
758 | EVT_IDLE(wxHtmlWindow::OnIdle) | |
5526e819 VS |
759 | END_EVENT_TABLE() |
760 | ||
761 | ||
762 | ||
763 | ||
764 | ||
a76015e6 VS |
765 | // A module to allow initialization/cleanup |
766 | // without calling these functions from app.cpp or from | |
767 | // the user's application. | |
768 | ||
769 | class wxHtmlWinModule: public wxModule | |
770 | { | |
771 | DECLARE_DYNAMIC_CLASS(wxHtmlWinModule) | |
772 | public: | |
773 | wxHtmlWinModule() : wxModule() {} | |
774 | bool OnInit() { return TRUE; } | |
775 | void OnExit() { wxHtmlWindow::CleanUpStatics(); } | |
776 | }; | |
777 | ||
778 | IMPLEMENT_DYNAMIC_CLASS(wxHtmlWinModule, wxModule) | |
779 | ||
5526e819 | 780 | |
0cecad31 VS |
781 | // This hack forces the linker to always link in m_* files |
782 | // (wxHTML doesn't work without handlers from these files) | |
783 | #include "wx/html/forcelnk.h" | |
784 | FORCE_WXHTML_MODULES() | |
5526e819 | 785 | |
b835e9bf | 786 | #endif |