]> git.saurik.com Git - wxWidgets.git/blame - src/html/htmlwin.cpp
compilation fix for recent commit
[wxWidgets.git] / src / html / htmlwin.cpp
CommitLineData
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
44class WXDLLEXPORT wxHtmlHistoryItem : public wxObject
45{
46public:
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
53private:
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
64WX_DECLARE_OBJARRAY(wxHtmlHistoryItem, wxHtmlHistoryArray);
65WX_DEFINE_OBJARRAY(wxHtmlHistoryArray);
5526e819 66
892aeafc
VS
67WX_DECLARE_LIST(wxHtmlProcessor, wxHtmlProcessorList);
68WX_DEFINE_LIST(wxHtmlProcessorList);
5526e819 69
892aeafc
VS
70//-----------------------------------------------------------------------------
71// wxHtmlWindow
72//-----------------------------------------------------------------------------
5526e819
VS
73
74
4f417130 75void 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
97bool wxHtmlWindow::Create(wxWindow *parent, wxWindowID id,
98 const wxPoint& pos, const wxSize& size,
99 long style, const wxString& name)
100{
101 if (!wxScrolledWindow::Create(parent, id, pos, size,
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
111wxHtmlWindow::~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
125void wxHtmlWindow::SetRelatedFrame(wxFrame* frame, const wxString& format)
126{
127 m_RelatedFrame = frame;
128 m_TitleFormat = format;
129}
130
131
132
133void wxHtmlWindow::SetRelatedStatusBar(int bar)
134{
135 m_RelatedStatusBar = bar;
136}
269e8200
RD
137
138
139
8eb2940f 140void 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
152bool 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
210bool wxHtmlWindow::AppendToPage(const wxString& source)
211{
212 return SetPage(*(GetParser()->GetSource()) + source);
213}
5526e819
VS
214
215bool wxHtmlWindow::LoadPage(const wxString& location)
216{
1ccabb81
VS
217 wxBusyCursor busyCursor;
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
VS
264 }
265
4f9297b0 266 f = m_FS->OpenFile(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 {
fc7dfaf8 309 wxYield();
4f9297b0 310 ScrollToAnchor(f->GetAnchor());
5526e819
VS
311 }
312
313 delete f;
314
4f9297b0 315 if (m_RelatedStatusBar != -1) m_RelatedFrame->SetStatusText(_("Done"), m_RelatedStatusBar);
5526e819
VS
316 }
317 }
318
4f9297b0
VS
319 if (m_HistoryOn) // add this page to history there:
320 {
892aeafc 321 int c = m_History->GetCount() - (m_HistoryPos + 1);
5526e819 322
0cb9cfb2 323 if (m_HistoryPos < 0 ||
ee19c324
VS
324 (*m_History)[m_HistoryPos].GetPage() != m_OpenedPage ||
325 (*m_History)[m_HistoryPos].GetAnchor() != m_OpenedAnchor)
326 {
327 m_HistoryPos++;
328 for (int i = 0; i < c; i++)
b54e41c5 329 m_History->RemoveAt(m_HistoryPos);
ee19c324
VS
330 m_History->Add(new wxHtmlHistoryItem(m_OpenedPage, m_OpenedAnchor));
331 }
5526e819
VS
332 }
333
096824d7
VS
334 if (m_OpenedPageTitle == wxEmptyString)
335 OnSetTitle(wxFileNameFromPath(m_OpenedPage));
fc7dfaf8 336
33ac7e6f 337 if (needs_refresh)
4f9297b0 338 {
fc7dfaf8
VS
339 wxYield();
340 m_tmpCanDrawLocks--;
341 Refresh();
342 }
343 else
344 m_tmpCanDrawLocks--;
345
5526e819
VS
346 return rt_val;
347}
348
349
350
351bool wxHtmlWindow::ScrollToAnchor(const wxString& anchor)
352{
4f9297b0 353 const wxHtmlCell *c = m_Cell->Find(wxHTML_COND_ISANCHOR, &anchor);
f3c82859
VS
354 if (!c)
355 {
f6bcfd97 356 wxLogWarning(_("HTML anchor %s does not exist."), anchor.c_str());
f3c82859
VS
357 return FALSE;
358 }
33ac7e6f 359 else
4f9297b0 360 {
5526e819 361 int y;
269e8200 362
4f9297b0 363 for (y = 0; c != NULL; c = c->GetParent()) y += c->GetPosY();
efba2b89 364 Scroll(-1, y / wxHTML_SCROLL_STEP);
5526e819
VS
365 m_OpenedAnchor = anchor;
366 return TRUE;
367 }
368}
369
370
d5db80c2 371void wxHtmlWindow::OnSetTitle(const wxString& title)
5526e819 372{
33ac7e6f 373 if (m_RelatedFrame)
4f9297b0 374 {
5526e819
VS
375 wxString tit;
376 tit.Printf(m_TitleFormat, title.c_str());
4f9297b0 377 m_RelatedFrame->SetTitle(tit);
5526e819 378 }
d5db80c2 379 m_OpenedPageTitle = title;
5526e819
VS
380}
381
382
383
384
385
386void wxHtmlWindow::CreateLayout()
387{
388 int ClientWidth, ClientHeight;
389
390 if (!m_Cell) return;
a547ebff 391
33ac7e6f 392 if (m_Style & wxHW_SCROLLBAR_NEVER)
4f9297b0
VS
393 {
394 SetScrollbars(wxHTML_SCROLL_STEP, 1, m_Cell->GetWidth() / wxHTML_SCROLL_STEP, 0); // always off
a547ebff 395 GetClientSize(&ClientWidth, &ClientHeight);
4f9297b0 396 m_Cell->Layout(ClientWidth);
a547ebff
VS
397 }
398
399 else {
400 GetClientSize(&ClientWidth, &ClientHeight);
4f9297b0 401 m_Cell->Layout(ClientWidth);
33ac7e6f 402 if (ClientHeight < m_Cell->GetHeight() + GetCharHeight())
e421922f 403 {
f3bcfd9b
VS
404 SetScrollbars(
405 wxHTML_SCROLL_STEP, wxHTML_SCROLL_STEP,
4f9297b0
VS
406 m_Cell->GetWidth() / wxHTML_SCROLL_STEP,
407 (m_Cell->GetHeight() + GetCharHeight()) / wxHTML_SCROLL_STEP
f3bcfd9b 408 /*cheat: top-level frag is always container*/);
a547ebff 409 }
4f9297b0 410 else /* we fit into window, no need for scrollbars */
e421922f 411 {
4f9297b0 412 SetScrollbars(wxHTML_SCROLL_STEP, 1, m_Cell->GetWidth() / wxHTML_SCROLL_STEP, 0); // disable...
89de9af3 413 GetClientSize(&ClientWidth, &ClientHeight);
4f9297b0 414 m_Cell->Layout(ClientWidth); // ...and relayout
89de9af3 415 }
a547ebff 416 }
5526e819
VS
417}
418
269e8200 419
5526e819
VS
420
421void wxHtmlWindow::ReadCustomization(wxConfigBase *cfg, wxString path)
422{
423 wxString oldpath;
424 wxString tmp;
d5db80c2
VS
425 int p_fontsizes[7];
426 wxString p_fff, p_ffn;
5526e819 427
33ac7e6f 428 if (path != wxEmptyString)
4f9297b0
VS
429 {
430 oldpath = cfg->GetPath();
431 cfg->SetPath(path);
5526e819
VS
432 }
433
892aeafc
VS
434 m_Borders = cfg->Read(wxT("wxHtmlWindow/Borders"), m_Borders);
435 p_fff = cfg->Read(wxT("wxHtmlWindow/FontFaceFixed"), m_Parser->m_FontFaceFixed);
436 p_ffn = cfg->Read(wxT("wxHtmlWindow/FontFaceNormal"), m_Parser->m_FontFaceNormal);
bfb9ee96 437 for (int i = 0; i < 7; i++)
4f9297b0 438 {
66a77a74 439 tmp.Printf(wxT("wxHtmlWindow/FontsSize%i"), i);
4f9297b0 440 p_fontsizes[i] = cfg->Read(tmp, m_Parser->m_FontsSizes[i]);
5526e819 441 }
8eb2940f 442 SetFonts(p_ffn, p_fff, p_fontsizes);
5526e819
VS
443
444 if (path != wxEmptyString)
4f9297b0 445 cfg->SetPath(oldpath);
5526e819
VS
446}
447
448
449
450void wxHtmlWindow::WriteCustomization(wxConfigBase *cfg, wxString path)
451{
452 wxString oldpath;
453 wxString tmp;
454
33ac7e6f 455 if (path != wxEmptyString)
4f9297b0
VS
456 {
457 oldpath = cfg->GetPath();
458 cfg->SetPath(path);
5526e819
VS
459 }
460
892aeafc
VS
461 cfg->Write(wxT("wxHtmlWindow/Borders"), (long) m_Borders);
462 cfg->Write(wxT("wxHtmlWindow/FontFaceFixed"), m_Parser->m_FontFaceFixed);
463 cfg->Write(wxT("wxHtmlWindow/FontFaceNormal"), m_Parser->m_FontFaceNormal);
bfb9ee96 464 for (int i = 0; i < 7; i++)
4f9297b0 465 {
66a77a74 466 tmp.Printf(wxT("wxHtmlWindow/FontsSize%i"), i);
4f9297b0 467 cfg->Write(tmp, (long) m_Parser->m_FontsSizes[i]);
5526e819
VS
468 }
469
470 if (path != wxEmptyString)
4f9297b0 471 cfg->SetPath(oldpath);
5526e819
VS
472}
473
474
475
476bool wxHtmlWindow::HistoryBack()
477{
478 wxString a, l;
479
480 if (m_HistoryPos < 1) return FALSE;
481
bbda1088
VS
482 // store scroll position into history item:
483 int x, y;
e421922f 484 GetViewStart(&x, &y);
892aeafc 485 (*m_History)[m_HistoryPos].SetPos(y);
bbda1088
VS
486
487 // go to previous position:
5526e819
VS
488 m_HistoryPos--;
489
892aeafc
VS
490 l = (*m_History)[m_HistoryPos].GetPage();
491 a = (*m_History)[m_HistoryPos].GetAnchor();
5526e819 492 m_HistoryOn = FALSE;
89de9af3 493 m_tmpCanDrawLocks++;
5526e819 494 if (a == wxEmptyString) LoadPage(l);
fc7dfaf8 495 else LoadPage(l + wxT("#") + a);
5526e819 496 m_HistoryOn = TRUE;
c88293a4 497 wxYield();
89de9af3 498 m_tmpCanDrawLocks--;
892aeafc 499 Scroll(0, (*m_History)[m_HistoryPos].GetPos());
5526e819
VS
500 Refresh();
501 return TRUE;
502}
503
1b113a81
VS
504bool wxHtmlWindow::HistoryCanBack()
505{
506 if (m_HistoryPos < 1) return FALSE;
507 return TRUE ;
508}
5526e819
VS
509
510
511bool wxHtmlWindow::HistoryForward()
512{
513 wxString a, l;
514
515 if (m_HistoryPos == -1) return FALSE;
892aeafc 516 if (m_HistoryPos >= (int)m_History->GetCount() - 1)return FALSE;
5526e819
VS
517
518 m_OpenedPage = wxEmptyString; // this will disable adding new entry into history in LoadPage()
519
520 m_HistoryPos++;
892aeafc
VS
521 l = (*m_History)[m_HistoryPos].GetPage();
522 a = (*m_History)[m_HistoryPos].GetAnchor();
5526e819 523 m_HistoryOn = FALSE;
89de9af3 524 m_tmpCanDrawLocks++;
5526e819 525 if (a == wxEmptyString) LoadPage(l);
fc7dfaf8 526 else LoadPage(l + wxT("#") + a);
5526e819 527 m_HistoryOn = TRUE;
c88293a4 528 wxYield();
89de9af3 529 m_tmpCanDrawLocks--;
892aeafc 530 Scroll(0, (*m_History)[m_HistoryPos].GetPos());
5526e819
VS
531 Refresh();
532 return TRUE;
533}
534
1b113a81
VS
535bool wxHtmlWindow::HistoryCanForward()
536{
537 if (m_HistoryPos == -1) return FALSE;
892aeafc 538 if (m_HistoryPos >= (int)m_History->GetCount() - 1)return FALSE;
1b113a81
VS
539 return TRUE ;
540}
5526e819
VS
541
542
543void wxHtmlWindow::HistoryClear()
544{
892aeafc 545 m_History->Empty();
5526e819
VS
546 m_HistoryPos = -1;
547}
548
892aeafc
VS
549void wxHtmlWindow::AddProcessor(wxHtmlProcessor *processor)
550{
551 if (!m_Processors)
552 {
553 m_Processors = new wxHtmlProcessorList;
554 m_Processors->DeleteContents(TRUE);
555 }
556 wxHtmlProcessorList::Node *node;
bfb9ee96 557
892aeafc
VS
558 for (node = m_Processors->GetFirst(); node; node = node->GetNext())
559 {
bfb9ee96 560 if (processor->GetPriority() > node->GetData()->GetPriority())
892aeafc
VS
561 {
562 m_Processors->Insert(node, processor);
960ba969 563 return;
892aeafc
VS
564 }
565 }
960ba969 566 m_Processors->Append(processor);
892aeafc
VS
567}
568
960ba969 569/*static */ void wxHtmlWindow::AddGlobalProcessor(wxHtmlProcessor *processor)
892aeafc 570{
960ba969 571 if (!m_GlobalProcessors)
892aeafc 572 {
960ba969
VS
573 m_GlobalProcessors = new wxHtmlProcessorList;
574 m_GlobalProcessors->DeleteContents(TRUE);
892aeafc
VS
575 }
576 wxHtmlProcessorList::Node *node;
e421922f 577
960ba969 578 for (node = m_GlobalProcessors->GetFirst(); node; node = node->GetNext())
892aeafc 579 {
bfb9ee96 580 if (processor->GetPriority() > node->GetData()->GetPriority())
892aeafc 581 {
960ba969
VS
582 m_GlobalProcessors->Insert(node, processor);
583 return;
892aeafc
VS
584 }
585 }
960ba969 586 m_GlobalProcessors->Append(processor);
892aeafc
VS
587}
588
5526e819
VS
589
590
591wxList wxHtmlWindow::m_Filters;
a76015e6 592wxHtmlFilter *wxHtmlWindow::m_DefaultFilter = NULL;
66806a0b
VS
593wxCursor *wxHtmlWindow::s_cur_hand = NULL;
594wxCursor *wxHtmlWindow::s_cur_arrow = NULL;
960ba969 595wxHtmlProcessorList *wxHtmlWindow::m_GlobalProcessors = NULL;
a76015e6
VS
596
597void wxHtmlWindow::CleanUpStatics()
598{
892aeafc 599 delete m_DefaultFilter;
a76015e6 600 m_DefaultFilter = NULL;
269e8200
RD
601 m_Filters.DeleteContents(TRUE);
602 m_Filters.Clear();
960ba969
VS
603 delete m_GlobalProcessors;
604 m_GlobalProcessors = NULL;
892aeafc
VS
605 delete s_cur_hand;
606 delete s_cur_arrow;
a76015e6
VS
607}
608
609
5526e819
VS
610
611void wxHtmlWindow::AddFilter(wxHtmlFilter *filter)
612{
5526e819
VS
613 m_Filters.Append(filter);
614}
615
616
617
618
0b2dadd3 619void wxHtmlWindow::OnLinkClicked(const wxHtmlLinkInfo& link)
5526e819 620{
0b2dadd3 621 LoadPage(link.GetHref());
5526e819
VS
622}
623
f6010d8f
VZ
624void wxHtmlWindow::OnCellClicked(wxHtmlCell *cell,
625 wxCoord x, wxCoord y,
626 const wxMouseEvent& event)
19193a2c 627{
f6010d8f 628 wxCHECK_RET( cell, _T("can't be called with NULL cell") );
5526e819 629
f6010d8f
VZ
630 cell->OnMouseClick(this, x, y, event);
631}
632
633void wxHtmlWindow::OnCellMouseHover(wxHtmlCell * WXUNUSED(cell),
634 wxCoord WXUNUSED(x), wxCoord WXUNUSED(y))
635{
636 // do nothing here
637}
5526e819
VS
638
639void wxHtmlWindow::OnDraw(wxDC& dc)
640{
b835e9bf 641 if (m_tmpCanDrawLocks > 0 || m_Cell == NULL) return;
5526e819 642
b835e9bf
VS
643 int x, y;
644 wxRect rect = GetUpdateRegion().GetBox();
33ac7e6f 645
5526e819 646 dc.SetMapMode(wxMM_TEXT);
5526e819 647 dc.SetBackgroundMode(wxTRANSPARENT);
e421922f 648 GetViewStart(&x, &y);
5526e819 649
b835e9bf
VS
650 m_Cell->Draw(dc, 0, 0,
651 y * wxHTML_SCROLL_STEP + rect.GetTop(),
652 y * wxHTML_SCROLL_STEP + rect.GetBottom());
5526e819
VS
653}
654
655
656
657
658void wxHtmlWindow::OnSize(wxSizeEvent& event)
659{
660 wxScrolledWindow::OnSize(event);
661 CreateLayout();
f6bcfd97 662 Refresh();
5526e819
VS
663}
664
665
5526e819
VS
666void wxHtmlWindow::OnMouseEvent(wxMouseEvent& event)
667{
668 m_tmpMouseMoved = TRUE;
669
33ac7e6f 670 if (event.ButtonDown())
4f9297b0 671 {
f6010d8f
VZ
672 if ( m_Cell )
673 {
674 int sx, sy;
675 GetViewStart(&sx, &sy);
676 sx *= wxHTML_SCROLL_STEP;
677 sy *= wxHTML_SCROLL_STEP;
5526e819 678
f6010d8f
VZ
679 wxPoint pos = event.GetPosition();
680 pos.x += sx;
681 pos.y += sy;
5526e819 682
f6010d8f
VZ
683 wxHtmlCell *cell = m_Cell->FindCellByPos(pos.x, pos.y);
684
685 // VZ: is it possible that we don't find anything at all?
d168485f
VS
686 // VS: yes. FindCellByPos returns terminal cell and
687 // containers may have empty borders
f6010d8f
VZ
688 if ( cell )
689 OnCellClicked(cell, pos.x, pos.y, event);
690 }
5526e819
VS
691 }
692}
693
694
695
33ac7e6f 696void wxHtmlWindow::OnIdle(wxIdleEvent& WXUNUSED(event))
5526e819 697{
33ac7e6f 698 if (s_cur_hand == NULL)
66806a0b
VS
699 {
700 s_cur_hand = new wxCursor(wxCURSOR_HAND);
701 s_cur_arrow = new wxCursor(wxCURSOR_ARROW);
702 }
5526e819 703
33ac7e6f 704 if (m_tmpMouseMoved && (m_Cell != NULL))
4f9297b0 705 {
5526e819 706 int sx, sy;
0cb9cfb2
VZ
707 GetViewStart(&sx, &sy);
708 sx *= wxHTML_SCROLL_STEP;
709 sy *= wxHTML_SCROLL_STEP;
5526e819 710
0cb9cfb2 711 int x, y;
5526e819
VS
712 wxGetMousePosition(&x, &y);
713 ScreenToClient(&x, &y);
f6010d8f
VZ
714 x += sx;
715 y += sy;
0cb9cfb2 716
f6010d8f
VZ
717 wxHtmlCell *cell = m_Cell->FindCellByPos(x, y);
718 if ( cell != m_tmpLastCell )
e421922f 719 {
f6010d8f
VZ
720 wxHtmlLinkInfo *lnk = cell ? cell->GetLink(x, y) : NULL;
721
722 if (lnk != m_tmpLastLink)
e421922f 723 {
f6010d8f
VZ
724 if (lnk == NULL)
725 {
726 SetCursor(*s_cur_arrow);
727 if (m_RelatedStatusBar != -1)
728 m_RelatedFrame->SetStatusText(wxEmptyString, m_RelatedStatusBar);
729 }
730 else
731 {
732 SetCursor(*s_cur_hand);
733 if (m_RelatedStatusBar != -1)
734 m_RelatedFrame->SetStatusText(lnk->GetHref(), m_RelatedStatusBar);
735 }
736 m_tmpLastLink = lnk;
622ea783 737 }
f6010d8f
VZ
738
739 m_tmpLastCell = cell;
5526e819 740 }
f6010d8f
VZ
741 else // mouse moved but stayed in the same cell
742 {
743 if ( cell )
744 OnCellMouseHover(cell, x, y);
745 }
746
5526e819
VS
747 m_tmpMouseMoved = FALSE;
748 }
749}
750
751
bfb9ee96 752IMPLEMENT_ABSTRACT_CLASS(wxHtmlProcessor,wxObject)
5526e819
VS
753
754IMPLEMENT_DYNAMIC_CLASS(wxHtmlWindow,wxScrolledWindow)
755
756BEGIN_EVENT_TABLE(wxHtmlWindow, wxScrolledWindow)
757 EVT_SIZE(wxHtmlWindow::OnSize)
758 EVT_LEFT_DOWN(wxHtmlWindow::OnMouseEvent)
0cb9cfb2 759 EVT_RIGHT_DOWN(wxHtmlWindow::OnMouseEvent)
5526e819
VS
760 EVT_MOTION(wxHtmlWindow::OnMouseEvent)
761 EVT_IDLE(wxHtmlWindow::OnIdle)
5526e819
VS
762END_EVENT_TABLE()
763
764
765
766
767
a76015e6
VS
768// A module to allow initialization/cleanup
769// without calling these functions from app.cpp or from
770// the user's application.
771
772class wxHtmlWinModule: public wxModule
773{
774DECLARE_DYNAMIC_CLASS(wxHtmlWinModule)
775public:
776 wxHtmlWinModule() : wxModule() {}
777 bool OnInit() { return TRUE; }
778 void OnExit() { wxHtmlWindow::CleanUpStatics(); }
779};
780
781IMPLEMENT_DYNAMIC_CLASS(wxHtmlWinModule, wxModule)
782
5526e819 783
0cecad31
VS
784// This hack forces the linker to always link in m_* files
785// (wxHTML doesn't work without handlers from these files)
786#include "wx/html/forcelnk.h"
787FORCE_WXHTML_MODULES()
5526e819 788
b835e9bf 789#endif