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