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