]> git.saurik.com Git - wxWidgets.git/blame - src/html/htmlwin.cpp
Add length parameter to AddTextRaw and AppendTextRaw. Closes #1358
[wxWidgets.git] / src / html / htmlwin.cpp
CommitLineData
5526e819 1/////////////////////////////////////////////////////////////////////////////
93763ad5 2// Name: src/html/htmlwin.cpp
5526e819
VS
3// Purpose: wxHtmlWindow class for parsing & displaying HTML (implementation)
4// Author: Vaclav Slavik
69941f05 5// RCS-ID: $Id$
5526e819 6// Copyright: (c) 1999 Vaclav Slavik
65571936 7// Licence: wxWindows licence
5526e819
VS
8/////////////////////////////////////////////////////////////////////////////
9
3096bd2f 10#include "wx/wxprec.h"
5526e819 11
2b5f62a0 12#ifdef __BORLANDC__
93763ad5 13 #pragma hdrstop
5526e819
VS
14#endif
15
93763ad5
WS
16#if wxUSE_HTML && wxUSE_STREAMS
17
b4f4d3dd 18#ifndef WX_PRECOMP
8ecff181 19 #include "wx/list.h"
04dbb646
VZ
20 #include "wx/log.h"
21 #include "wx/intl.h"
22 #include "wx/dcclient.h"
23 #include "wx/frame.h"
f38924e8 24 #include "wx/dcmemory.h"
c0badb70 25 #include "wx/timer.h"
9eddec69 26 #include "wx/settings.h"
28f92d74 27 #include "wx/dataobj.h"
82a46104 28 #include "wx/statusbr.h"
5526e819
VS
29#endif
30
69941f05 31#include "wx/html/htmlwin.h"
892aeafc 32#include "wx/html/htmlproc.h"
e3774124 33#include "wx/clipbrd.h"
a7b2c092 34#include "wx/recguard.h"
04dbb646
VZ
35
36#include "wx/arrimpl.cpp"
892aeafc
VS
37#include "wx/listimpl.cpp"
38
03a187cc
VZ
39// uncomment this line to visually show the extent of the selection
40//#define DEBUG_HTML_SELECTION
41
a1c3cdc4
VS
42// HTML events:
43IMPLEMENT_DYNAMIC_CLASS(wxHtmlLinkEvent, wxCommandEvent)
44IMPLEMENT_DYNAMIC_CLASS(wxHtmlCellEvent, wxCommandEvent)
45
9b11752c
VZ
46wxDEFINE_EVENT( wxEVT_COMMAND_HTML_CELL_CLICKED, wxHtmlCellEvent );
47wxDEFINE_EVENT( wxEVT_COMMAND_HTML_CELL_HOVER, wxHtmlCellEvent );
48wxDEFINE_EVENT( wxEVT_COMMAND_HTML_LINK_CLICKED, wxHtmlLinkEvent );
a1c3cdc4 49
1338c59a 50
1338c59a
VS
51#if wxUSE_CLIPBOARD
52// ----------------------------------------------------------------------------
53// wxHtmlWinAutoScrollTimer: the timer used to generate a stream of scroll
54// events when a captured mouse is held outside the window
55// ----------------------------------------------------------------------------
56
57class wxHtmlWinAutoScrollTimer : public wxTimer
58{
59public:
60 wxHtmlWinAutoScrollTimer(wxScrolledWindow *win,
61 wxEventType eventTypeToSend,
62 int pos, int orient)
63 {
64 m_win = win;
65 m_eventType = eventTypeToSend;
66 m_pos = pos;
67 m_orient = orient;
68 }
69
70 virtual void Notify();
71
72private:
73 wxScrolledWindow *m_win;
74 wxEventType m_eventType;
75 int m_pos,
76 m_orient;
77
c0c133e1 78 wxDECLARE_NO_COPY_CLASS(wxHtmlWinAutoScrollTimer);
1338c59a
VS
79};
80
81void wxHtmlWinAutoScrollTimer::Notify()
82{
83 // only do all this as long as the window is capturing the mouse
84 if ( wxWindow::GetCapture() != m_win )
85 {
86 Stop();
87 }
88 else // we still capture the mouse, continue generating events
89 {
90 // first scroll the window if we are allowed to do it
91 wxScrollWinEvent event1(m_eventType, m_pos, m_orient);
92 event1.SetEventObject(m_win);
93 if ( m_win->GetEventHandler()->ProcessEvent(event1) )
94 {
95 // and then send a pseudo mouse-move event to refresh the selection
96 wxMouseEvent event2(wxEVT_MOTION);
97 wxGetMousePosition(&event2.m_x, &event2.m_y);
98
99 // the mouse event coordinates should be client, not screen as
100 // returned by wxGetMousePosition
101 wxWindow *parentTop = m_win;
102 while ( parentTop->GetParent() )
103 parentTop = parentTop->GetParent();
104 wxPoint ptOrig = parentTop->GetPosition();
105 event2.m_x -= ptOrig.x;
106 event2.m_y -= ptOrig.y;
107
108 event2.SetEventObject(m_win);
109
110 // FIXME: we don't fill in the other members - ok?
111 m_win->GetEventHandler()->ProcessEvent(event2);
112 }
113 else // can't scroll further, stop
114 {
115 Stop();
116 }
117 }
118}
d659d703
VZ
119
120#endif // wxUSE_CLIPBOARD
1338c59a
VS
121
122
123
892aeafc
VS
124//-----------------------------------------------------------------------------
125// wxHtmlHistoryItem
126//-----------------------------------------------------------------------------
127
128// item of history list
4460b6c4 129class WXDLLIMPEXP_HTML wxHtmlHistoryItem
892aeafc
VS
130{
131public:
132 wxHtmlHistoryItem(const wxString& p, const wxString& a) {m_Page = p, m_Anchor = a, m_Pos = 0;}
133 int GetPos() const {return m_Pos;}
134 void SetPos(int p) {m_Pos = p;}
135 const wxString& GetPage() const {return m_Page;}
136 const wxString& GetAnchor() const {return m_Anchor;}
137
138private:
139 wxString m_Page;
140 wxString m_Anchor;
141 int m_Pos;
142};
5526e819 143
5526e819
VS
144
145//-----------------------------------------------------------------------------
892aeafc 146// our private arrays:
5526e819
VS
147//-----------------------------------------------------------------------------
148
892aeafc 149WX_DECLARE_OBJARRAY(wxHtmlHistoryItem, wxHtmlHistoryArray);
17a1ebd1 150WX_DEFINE_OBJARRAY(wxHtmlHistoryArray)
5526e819 151
892aeafc 152WX_DECLARE_LIST(wxHtmlProcessor, wxHtmlProcessorList);
17a1ebd1 153WX_DEFINE_LIST(wxHtmlProcessorList)
5526e819 154
bc55e31b
VS
155//-----------------------------------------------------------------------------
156// wxHtmlWindowMouseHelper
157//-----------------------------------------------------------------------------
158
159wxHtmlWindowMouseHelper::wxHtmlWindowMouseHelper(wxHtmlWindowInterface *iface)
160 : m_tmpMouseMoved(false),
161 m_tmpLastLink(NULL),
162 m_tmpLastCell(NULL),
163 m_interface(iface)
164{
165}
166
167void wxHtmlWindowMouseHelper::HandleMouseMoved()
168{
169 m_tmpMouseMoved = true;
170}
171
172bool wxHtmlWindowMouseHelper::HandleMouseClick(wxHtmlCell *rootCell,
173 const wxPoint& pos,
174 const wxMouseEvent& event)
175{
176 if (!rootCell)
177 return false;
178
179 wxHtmlCell *cell = rootCell->FindCellByPos(pos.x, pos.y);
180 // this check is needed because FindCellByPos returns terminal cell and
181 // containers may have empty borders -- in this case NULL will be
182 // returned
183 if (!cell)
184 return false;
185
186 // adjust the coordinates to be relative to this cell:
187 wxPoint relpos = pos - cell->GetAbsPos(rootCell);
188
189 return OnCellClicked(cell, relpos.x, relpos.y, event);
190}
191
192void wxHtmlWindowMouseHelper::HandleIdle(wxHtmlCell *rootCell,
193 const wxPoint& pos)
194{
195 wxHtmlCell *cell = rootCell ? rootCell->FindCellByPos(pos.x, pos.y) : NULL;
196
197 if (cell != m_tmpLastCell)
198 {
199 wxHtmlLinkInfo *lnk = NULL;
200 if (cell)
201 {
202 // adjust the coordinates to be relative to this cell:
203 wxPoint relpos = pos - cell->GetAbsPos(rootCell);
204 lnk = cell->GetLink(relpos.x, relpos.y);
205 }
206
207 wxCursor cur;
208 if (cell)
88a1b648 209 cur = cell->GetMouseCursor(m_interface);
bc55e31b 210 else
88a1b648
VS
211 cur = m_interface->GetHTMLCursor(
212 wxHtmlWindowInterface::HTMLCursor_Default);
213
bc55e31b
VS
214 m_interface->GetHTMLWindow()->SetCursor(cur);
215
216 if (lnk != m_tmpLastLink)
217 {
218 if (lnk)
219 m_interface->SetHTMLStatusText(lnk->GetHref());
220 else
221 m_interface->SetHTMLStatusText(wxEmptyString);
222
223 m_tmpLastLink = lnk;
224 }
225
226 m_tmpLastCell = cell;
227 }
228 else // mouse moved but stayed in the same cell
229 {
230 if ( cell )
231 {
232 OnCellMouseHover(cell, pos.x, pos.y);
233 }
234 }
235
236 m_tmpMouseMoved = false;
237}
238
239bool wxHtmlWindowMouseHelper::OnCellClicked(wxHtmlCell *cell,
240 wxCoord x, wxCoord y,
241 const wxMouseEvent& event)
242{
a1c3cdc4
VS
243 wxHtmlCellEvent ev(wxEVT_COMMAND_HTML_CELL_CLICKED,
244 m_interface->GetHTMLWindow()->GetId(),
245 cell, wxPoint(x,y), event);
246
247 if (!m_interface->GetHTMLWindow()->GetEventHandler()->ProcessEvent(ev))
248 {
249 // if the event wasn't handled, do the default processing here:
250
9a83f860 251 wxASSERT_MSG( cell, wxT("can't be called with NULL cell") );
a1c3cdc4
VS
252
253 cell->ProcessMouseClick(m_interface, ev.GetPoint(), ev.GetMouseEvent());
254 }
bc55e31b 255
a1c3cdc4
VS
256 // true if a link was clicked, false otherwise
257 return ev.GetLinkClicked();
bc55e31b
VS
258}
259
a1c3cdc4
VS
260void wxHtmlWindowMouseHelper::OnCellMouseHover(wxHtmlCell * cell,
261 wxCoord x,
262 wxCoord y)
bc55e31b 263{
a1c3cdc4
VS
264 wxHtmlCellEvent ev(wxEVT_COMMAND_HTML_CELL_HOVER,
265 m_interface->GetHTMLWindow()->GetId(),
266 cell, wxPoint(x,y), wxMouseEvent());
267 m_interface->GetHTMLWindow()->GetEventHandler()->ProcessEvent(ev);
bc55e31b
VS
268}
269
a1c3cdc4
VS
270
271
272
892aeafc
VS
273//-----------------------------------------------------------------------------
274// wxHtmlWindow
275//-----------------------------------------------------------------------------
5526e819 276
88a1b648
VS
277wxList wxHtmlWindow::m_Filters;
278wxHtmlFilter *wxHtmlWindow::m_DefaultFilter = NULL;
279wxHtmlProcessorList *wxHtmlWindow::m_GlobalProcessors = NULL;
280wxCursor *wxHtmlWindow::ms_cursorLink = NULL;
281wxCursor *wxHtmlWindow::ms_cursorText = NULL;
282
283void wxHtmlWindow::CleanUpStatics()
284{
285 wxDELETE(m_DefaultFilter);
286 WX_CLEAR_LIST(wxList, m_Filters);
287 if (m_GlobalProcessors)
288 WX_CLEAR_LIST(wxHtmlProcessorList, *m_GlobalProcessors);
289 wxDELETE(m_GlobalProcessors);
290 wxDELETE(ms_cursorLink);
291 wxDELETE(ms_cursorText);
292}
5526e819 293
4f417130 294void wxHtmlWindow::Init()
5526e819 295{
89de9af3 296 m_tmpCanDrawLocks = 0;
5526e819 297 m_FS = new wxFileSystem();
67a99992 298#if wxUSE_STATUSBAR
37146d33
VS
299 m_RelatedStatusBar = NULL;
300 m_RelatedStatusBarIndex = -1;
67a99992 301#endif // wxUSE_STATUSBAR
5526e819 302 m_RelatedFrame = NULL;
892aeafc 303 m_TitleFormat = wxT("%s");
d5db80c2 304 m_OpenedPage = m_OpenedAnchor = m_OpenedPageTitle = wxEmptyString;
5526e819
VS
305 m_Cell = NULL;
306 m_Parser = new wxHtmlWinParser(this);
4f9297b0 307 m_Parser->SetFS(m_FS);
5526e819 308 m_HistoryPos = -1;
d1da8872 309 m_HistoryOn = true;
892aeafc
VS
310 m_History = new wxHtmlHistoryArray;
311 m_Processors = NULL;
4f417130 312 SetBorders(10);
adf2eb2d
VS
313 m_selection = NULL;
314 m_makingSelection = false;
1338c59a
VS
315#if wxUSE_CLIPBOARD
316 m_timerAutoScroll = NULL;
6ce51985 317 m_lastDoubleClick = 0;
d659d703 318#endif // wxUSE_CLIPBOARD
b3c03420 319 m_tmpSelFromCell = NULL;
4f417130
VS
320}
321
790dbce3 322bool wxHtmlWindow::Create(wxWindow *parent, wxWindowID id,
4f417130 323 const wxPoint& pos, const wxSize& size,
790dbce3 324 long style, const wxString& name)
4f417130 325{
790dbce3 326 if (!wxScrolledWindow::Create(parent, id, pos, size,
2a536376
VS
327 style | wxVSCROLL | wxHSCROLL,
328 name))
d1da8872 329 return false;
4f417130 330
03a187cc
VZ
331 // We can't erase our background in EVT_ERASE_BACKGROUND handler and use
332 // double buffering in EVT_PAINT handler as this requires blitting back
333 // something already drawn on the window to the backing store bitmap when
334 // handling EVT_PAINT but blitting in this direction is simply not
335 // supported by OS X.
336 //
337 // So instead we use a hack with artificial EVT_ERASE_BACKGROUND generation
338 // from OnPaint() and this means that we never need the "real" erase event
339 // at all so disable it to avoid executing any user-defined handlers twice
340 // (and to avoid processing unnecessary event if no handlers are defined).
341 SetBackgroundStyle(wxBG_STYLE_PAINT);
4f9297b0 342 SetPage(wxT("<html><body></body></html>"));
8e494db9
JS
343
344 SetInitialSize(size);
d1da8872 345 return true;
5526e819
VS
346}
347
348
5526e819
VS
349wxHtmlWindow::~wxHtmlWindow()
350{
1338c59a
VS
351#if wxUSE_CLIPBOARD
352 StopAutoScrolling();
d659d703 353#endif // wxUSE_CLIPBOARD
5526e819
VS
354 HistoryClear();
355
689c4829
VZ
356 delete m_selection;
357
358 delete m_Cell;
5526e819 359
d80096a2
VZ
360 if ( m_Processors )
361 {
362 WX_CLEAR_LIST(wxHtmlProcessorList, *m_Processors);
363 }
222ed1d6 364
5526e819
VS
365 delete m_Parser;
366 delete m_FS;
892aeafc
VS
367 delete m_History;
368 delete m_Processors;
5526e819
VS
369}
370
371
372
373void wxHtmlWindow::SetRelatedFrame(wxFrame* frame, const wxString& format)
374{
375 m_RelatedFrame = frame;
376 m_TitleFormat = format;
377}
378
379
380
67a99992 381#if wxUSE_STATUSBAR
37146d33 382void wxHtmlWindow::SetRelatedStatusBar(int index)
5526e819 383{
37146d33 384 m_RelatedStatusBarIndex = index;
5526e819 385}
37146d33
VS
386
387void wxHtmlWindow::SetRelatedStatusBar(wxStatusBar* statusbar, int index)
388{
389 m_RelatedStatusBar = statusbar;
390 m_RelatedStatusBarIndex = index;
391}
392
67a99992 393#endif // wxUSE_STATUSBAR
269e8200
RD
394
395
396
fbfb8bcc 397void wxHtmlWindow::SetFonts(const wxString& normal_face, const wxString& fixed_face, const int *sizes)
5526e819 398{
4f9297b0 399 m_Parser->SetFonts(normal_face, fixed_face, sizes);
73de5077
VS
400
401 // re-layout the page after changing fonts:
402 DoSetPage(*(m_Parser->GetSource()));
5526e819
VS
403}
404
10e5c7ea
VS
405void wxHtmlWindow::SetStandardFonts(int size,
406 const wxString& normal_face,
407 const wxString& fixed_face)
7acd3625 408{
10e5c7ea 409 m_Parser->SetStandardFonts(size, normal_face, fixed_face);
5526e819 410
73de5077
VS
411 // re-layout the page after changing fonts:
412 DoSetPage(*(m_Parser->GetSource()));
413}
5526e819
VS
414
415bool wxHtmlWindow::SetPage(const wxString& source)
73de5077
VS
416{
417 m_OpenedPage = m_OpenedAnchor = m_OpenedPageTitle = wxEmptyString;
418 return DoSetPage(source);
419}
420
421bool wxHtmlWindow::DoSetPage(const wxString& source)
5526e819 422{
892aeafc
VS
423 wxString newsrc(source);
424
adf2eb2d
VS
425 wxDELETE(m_selection);
426
b3c03420
VS
427 // we will soon delete all the cells, so clear pointers to them:
428 m_tmpSelFromCell = NULL;
429
892aeafc 430 // pass HTML through registered processors:
960ba969 431 if (m_Processors || m_GlobalProcessors)
892aeafc 432 {
222ed1d6 433 wxHtmlProcessorList::compatibility_iterator nodeL, nodeG;
960ba969 434 int prL, prG;
892aeafc 435
0cc70962
VZ
436 if ( m_Processors )
437 nodeL = m_Processors->GetFirst();
438 if ( m_GlobalProcessors )
439 nodeG = m_GlobalProcessors->GetFirst();
960ba969
VS
440
441 // VS: there are two lists, global and local, both of them sorted by
e421922f 442 // priority. Since we have to go through _both_ lists with
960ba969
VS
443 // decreasing priority, we "merge-sort" the lists on-line by
444 // processing that one of the two heads that has higher priority
445 // in every iteration
446 while (nodeL || nodeG)
892aeafc
VS
447 {
448 prL = (nodeL) ? nodeL->GetData()->GetPriority() : -1;
960ba969
VS
449 prG = (nodeG) ? nodeG->GetData()->GetPriority() : -1;
450 if (prL > prG)
892aeafc 451 {
73348d09
VS
452 if (nodeL->GetData()->IsEnabled())
453 newsrc = nodeL->GetData()->Process(newsrc);
892aeafc
VS
454 nodeL = nodeL->GetNext();
455 }
960ba969 456 else // prL <= prG
892aeafc 457 {
73348d09
VS
458 if (nodeG->GetData()->IsEnabled())
459 newsrc = nodeG->GetData()->Process(newsrc);
960ba969 460 nodeG = nodeG->GetNext();
892aeafc
VS
461 }
462 }
463 }
5526e819 464
892aeafc
VS
465 // ...and run the parser on it:
466 wxClientDC *dc = new wxClientDC(this);
4f9297b0 467 dc->SetMapMode(wxMM_TEXT);
5526e819 468 SetBackgroundColour(wxColour(0xFF, 0xFF, 0xFF));
97e490f8 469 SetBackgroundImage(wxNullBitmap);
73de5077 470
4f9297b0 471 m_Parser->SetDC(dc);
5276b0a5
VZ
472
473 // notice that it's important to set m_Cell to NULL here before calling
474 // Parse() below, even if it will be overwritten by its return value as
475 // without this we may crash if it's used from inside Parse(), so use
476 // wxDELETE() and not just delete here
477 wxDELETE(m_Cell);
478
892aeafc 479 m_Cell = (wxHtmlContainerCell*) m_Parser->Parse(newsrc);
5526e819 480 delete dc;
4f9297b0
VS
481 m_Cell->SetIndent(m_Borders, wxHTML_INDENT_ALL, wxHTML_UNITS_PIXELS);
482 m_Cell->SetAlignHor(wxHTML_ALIGN_CENTER);
5526e819 483 CreateLayout();
bfb9ee96 484 if (m_tmpCanDrawLocks == 0)
892aeafc 485 Refresh();
d1da8872 486 return true;
5526e819
VS
487}
488
39029898
VS
489bool wxHtmlWindow::AppendToPage(const wxString& source)
490{
73de5077 491 return DoSetPage(*(GetParser()->GetSource()) + source);
39029898 492}
5526e819
VS
493
494bool wxHtmlWindow::LoadPage(const wxString& location)
495{
179a30e2
VZ
496 wxCHECK_MSG( !location.empty(), false, "location must be non-empty" );
497
1ccabb81 498 wxBusyCursor busyCursor;
790dbce3 499
5526e819 500 bool rt_val;
d1da8872 501 bool needs_refresh = false;
33ac7e6f 502
89de9af3 503 m_tmpCanDrawLocks++;
e421922f 504 if (m_HistoryOn && (m_HistoryPos != -1))
4f9297b0 505 {
960ba969 506 // store scroll position into history item:
5526e819 507 int x, y;
e421922f 508 GetViewStart(&x, &y);
892aeafc 509 (*m_History)[m_HistoryPos].SetPos(y);
5526e819
VS
510 }
511
e4e487e2
VZ
512 // first check if we're moving to an anchor in the same page
513 size_t posLocalAnchor = location.Find('#');
514 if ( posLocalAnchor != wxString::npos && posLocalAnchor != 0 )
4f9297b0 515 {
e4e487e2
VZ
516 // check if the part before the anchor is the same as the (either
517 // relative or absolute) URI of the current page
518 const wxString beforeAnchor = location.substr(0, posLocalAnchor);
519 if ( beforeAnchor != m_OpenedPage &&
520 m_FS->GetPath() + beforeAnchor != m_OpenedPage )
521 {
522 // indicate that we're not moving to a local anchor
523 posLocalAnchor = wxString::npos;
524 }
fc7dfaf8 525 }
e4e487e2
VZ
526
527 if ( posLocalAnchor != wxString::npos )
e421922f 528 {
fc7dfaf8 529 m_tmpCanDrawLocks--;
e4e487e2 530 rt_val = ScrollToAnchor(location.substr(posLocalAnchor + 1));
fc7dfaf8 531 m_tmpCanDrawLocks++;
5526e819 532 }
e4e487e2 533 else // moving to another page
4f9297b0 534 {
67a99992
WS
535 needs_refresh = true;
536#if wxUSE_STATUSBAR
5526e819 537 // load&display it:
37146d33 538 if (m_RelatedStatusBarIndex != -1)
e421922f 539 {
37146d33 540 SetHTMLStatusText(_("Connecting..."));
67a99992 541 Refresh(false);
5526e819 542 }
67a99992 543#endif // wxUSE_STATUSBAR
790dbce3 544
e4e487e2 545 wxFSFile *f = m_Parser->OpenURL(wxHTML_URL_PAGE, location);
33ac7e6f 546
7cb9cf89
VS
547 // try to interpret 'location' as filename instead of URL:
548 if (f == NULL)
549 {
550 wxFileName fn(location);
551 wxString location2 = wxFileSystem::FileNameToURL(fn);
552 f = m_Parser->OpenURL(wxHTML_URL_PAGE, location2);
553 }
554
33ac7e6f 555 if (f == NULL)
e421922f 556 {
f6bcfd97 557 wxLogError(_("Unable to open requested HTML document: %s"), location.c_str());
89de9af3 558 m_tmpCanDrawLocks--;
f1edd54c 559 SetHTMLStatusText(wxEmptyString);
67a99992 560 return false;
5526e819
VS
561 }
562
33ac7e6f 563 else
e421922f 564 {
222ed1d6 565 wxList::compatibility_iterator node;
5526e819
VS
566 wxString src = wxEmptyString;
567
67a99992 568#if wxUSE_STATUSBAR
37146d33 569 if (m_RelatedStatusBarIndex != -1)
e421922f 570 {
5526e819 571 wxString msg = _("Loading : ") + location;
37146d33 572 SetHTMLStatusText(msg);
67a99992 573 Refresh(false);
5526e819 574 }
67a99992 575#endif // wxUSE_STATUSBAR
5526e819
VS
576
577 node = m_Filters.GetFirst();
4f9297b0 578 while (node)
e421922f 579 {
4f9297b0
VS
580 wxHtmlFilter *h = (wxHtmlFilter*) node->GetData();
581 if (h->CanRead(*f))
e421922f 582 {
4f9297b0 583 src = h->ReadFile(*f);
5526e819
VS
584 break;
585 }
4f9297b0 586 node = node->GetNext();
5526e819 587 }
33ac7e6f 588 if (src == wxEmptyString)
e421922f 589 {
89de9af3 590 if (m_DefaultFilter == NULL) m_DefaultFilter = GetDefaultFilter();
4f9297b0 591 src = m_DefaultFilter->ReadFile(*f);
89de9af3 592 }
5526e819 593
4f9297b0 594 m_FS->ChangePathTo(f->GetLocation());
5526e819 595 rt_val = SetPage(src);
4f9297b0 596 m_OpenedPage = f->GetLocation();
33ac7e6f 597 if (f->GetAnchor() != wxEmptyString)
e421922f 598 {
4f9297b0 599 ScrollToAnchor(f->GetAnchor());
5526e819
VS
600 }
601
602 delete f;
603
67a99992 604#if wxUSE_STATUSBAR
37146d33
VS
605 if (m_RelatedStatusBarIndex != -1)
606 {
607 SetHTMLStatusText(_("Done"));
608 }
67a99992 609#endif // wxUSE_STATUSBAR
5526e819
VS
610 }
611 }
612
4f9297b0
VS
613 if (m_HistoryOn) // add this page to history there:
614 {
892aeafc 615 int c = m_History->GetCount() - (m_HistoryPos + 1);
5526e819 616
0cb9cfb2 617 if (m_HistoryPos < 0 ||
ee19c324
VS
618 (*m_History)[m_HistoryPos].GetPage() != m_OpenedPage ||
619 (*m_History)[m_HistoryPos].GetAnchor() != m_OpenedAnchor)
620 {
621 m_HistoryPos++;
622 for (int i = 0; i < c; i++)
b54e41c5 623 m_History->RemoveAt(m_HistoryPos);
ee19c324
VS
624 m_History->Add(new wxHtmlHistoryItem(m_OpenedPage, m_OpenedAnchor));
625 }
5526e819
VS
626 }
627
096824d7
VS
628 if (m_OpenedPageTitle == wxEmptyString)
629 OnSetTitle(wxFileNameFromPath(m_OpenedPage));
fc7dfaf8 630
33ac7e6f 631 if (needs_refresh)
4f9297b0 632 {
fc7dfaf8
VS
633 m_tmpCanDrawLocks--;
634 Refresh();
635 }
636 else
637 m_tmpCanDrawLocks--;
638
5526e819
VS
639 return rt_val;
640}
641
642
7cb9cf89
VS
643bool wxHtmlWindow::LoadFile(const wxFileName& filename)
644{
645 wxString url = wxFileSystem::FileNameToURL(filename);
646 return LoadPage(url);
647}
648
5526e819
VS
649
650bool wxHtmlWindow::ScrollToAnchor(const wxString& anchor)
651{
4f9297b0 652 const wxHtmlCell *c = m_Cell->Find(wxHTML_COND_ISANCHOR, &anchor);
f3c82859
VS
653 if (!c)
654 {
f6bcfd97 655 wxLogWarning(_("HTML anchor %s does not exist."), anchor.c_str());
d1da8872 656 return false;
f3c82859 657 }
33ac7e6f 658 else
4f9297b0 659 {
8e6c2840
VS
660 // Go to next visible cell in current container, if it exists. This
661 // yields a bit better (even though still imperfect) results in that
662 // there's better chance of using a suitable cell for upper Y
663 // coordinate value. See bug #11406 for additional discussion.
664 const wxHtmlCell *c_save = c;
665 while ( c && c->IsFormattingCell() )
666 c = c->GetNext();
667 if ( !c )
668 c = c_save;
669
5526e819 670 int y;
269e8200 671
4f9297b0 672 for (y = 0; c != NULL; c = c->GetParent()) y += c->GetPosY();
efba2b89 673 Scroll(-1, y / wxHTML_SCROLL_STEP);
5526e819 674 m_OpenedAnchor = anchor;
d1da8872 675 return true;
5526e819
VS
676 }
677}
678
679
d5db80c2 680void wxHtmlWindow::OnSetTitle(const wxString& title)
5526e819 681{
33ac7e6f 682 if (m_RelatedFrame)
4f9297b0 683 {
5526e819
VS
684 wxString tit;
685 tit.Printf(m_TitleFormat, title.c_str());
4f9297b0 686 m_RelatedFrame->SetTitle(tit);
5526e819 687 }
d5db80c2 688 m_OpenedPageTitle = title;
5526e819
VS
689}
690
691
a7b2c092
VS
692// return scroll steps such that a) scrollbars aren't shown needlessly
693// and b) entire content is viewable (i.e. round up)
694static int ScrollSteps(int size, int available)
695{
696 if ( size <= available )
697 return 0;
698 else
699 return (size + wxHTML_SCROLL_STEP - 1) / wxHTML_SCROLL_STEP;
700}
5526e819
VS
701
702
703void wxHtmlWindow::CreateLayout()
704{
a7b2c092
VS
705 // SetScrollbars() results in size change events -- and thus a nested
706 // CreateLayout() call -- on some platforms. Ignore nested calls, toplevel
707 // CreateLayout() will do the right thing eventually.
708 static wxRecursionGuardFlag s_flagReentrancy;
709 wxRecursionGuard guard(s_flagReentrancy);
710 if ( guard.IsInside() )
711 return;
712
713 if (!m_Cell)
714 return;
5526e819 715
a7b2c092
VS
716 int clientWidth, clientHeight;
717 GetClientSize(&clientWidth, &clientHeight);
718
719 const int vscrollbar = wxSystemSettings::GetMetric(wxSYS_VSCROLL_X);
720 const int hscrollbar = wxSystemSettings::GetMetric(wxSYS_HSCROLL_Y);
721
722 if ( HasScrollbar(wxHORIZONTAL) )
723 clientHeight += hscrollbar;
724
725 if ( HasScrollbar(wxVERTICAL) )
726 clientWidth += vscrollbar;
a547ebff 727
cc87fbed 728 if ( HasFlag(wxHW_SCROLLBAR_NEVER) )
4f9297b0 729 {
689f42f4 730 SetScrollbars(1, 1, 0, 0); // always off
a7b2c092 731 m_Cell->Layout(clientWidth);
a547ebff 732 }
cc87fbed
VZ
733 else // !wxHW_SCROLLBAR_NEVER
734 {
a7b2c092
VS
735 // Lay the content out with the assumption that it's too large to fit
736 // in the window (this is likely to be the case):
737 m_Cell->Layout(clientWidth - vscrollbar);
738
739 // If the layout is wider than the window, horizontal scrollbar will
740 // certainly be shown. Account for it here for subsequent computations.
741 if ( m_Cell->GetWidth() > clientWidth )
742 clientHeight -= hscrollbar;
743
744 if ( m_Cell->GetHeight() <= clientHeight )
e421922f 745 {
a7b2c092
VS
746 // we fit into the window, hide vertical scrollbar:
747 SetScrollbars
748 (
749 wxHTML_SCROLL_STEP, wxHTML_SCROLL_STEP,
750 ScrollSteps(m_Cell->GetWidth(), clientWidth - vscrollbar),
751 0
752 );
753 // ...and redo the layout to use the extra space
754 m_Cell->Layout(clientWidth);
a547ebff 755 }
a7b2c092 756 else
e421922f 757 {
a7b2c092
VS
758 // If the content doesn't fit into the window by only a small
759 // margin, chances are that it may fit fully with scrollbar turned
760 // off. It's something worth trying but on the other hand, we don't
761 // want to waste too much time redoing the layout (twice!) for
762 // long -- and thus expensive to layout -- pages. The cut-off value
763 // is an arbitrary heuristics.
764 static const int SMALL_OVERLAP = 60;
765 if ( m_Cell->GetHeight() <= clientHeight + SMALL_OVERLAP )
766 {
767 m_Cell->Layout(clientWidth);
768
769 if ( m_Cell->GetHeight() <= clientHeight )
770 {
771 // Great, we fit in. Hide the scrollbar.
772 SetScrollbars
773 (
774 wxHTML_SCROLL_STEP, wxHTML_SCROLL_STEP,
775 ScrollSteps(m_Cell->GetWidth(), clientWidth),
776 0
777 );
778 return;
779 }
780 else
781 {
782 // That didn't work out, go back to previous layout. Note
783 // that redoing the layout once again here isn't as bad as
784 // it looks -- thanks to the small cut-off value, it's a
785 // reasonably small page.
786 m_Cell->Layout(clientWidth - vscrollbar);
787 }
788 }
789 // else: the page is very long, it will certainly need scrollbar
790
791 SetScrollbars
792 (
793 wxHTML_SCROLL_STEP, wxHTML_SCROLL_STEP,
794 ScrollSteps(m_Cell->GetWidth(), clientWidth - vscrollbar),
795 ScrollSteps(m_Cell->GetHeight(), clientHeight)
796 );
89de9af3 797 }
a547ebff 798 }
5526e819
VS
799}
800
b4246849 801#if wxUSE_CONFIG
5526e819
VS
802void wxHtmlWindow::ReadCustomization(wxConfigBase *cfg, wxString path)
803{
804 wxString oldpath;
805 wxString tmp;
d5db80c2
VS
806 int p_fontsizes[7];
807 wxString p_fff, p_ffn;
5526e819 808
33ac7e6f 809 if (path != wxEmptyString)
4f9297b0
VS
810 {
811 oldpath = cfg->GetPath();
812 cfg->SetPath(path);
5526e819
VS
813 }
814
892aeafc
VS
815 m_Borders = cfg->Read(wxT("wxHtmlWindow/Borders"), m_Borders);
816 p_fff = cfg->Read(wxT("wxHtmlWindow/FontFaceFixed"), m_Parser->m_FontFaceFixed);
817 p_ffn = cfg->Read(wxT("wxHtmlWindow/FontFaceNormal"), m_Parser->m_FontFaceNormal);
bfb9ee96 818 for (int i = 0; i < 7; i++)
4f9297b0 819 {
66a77a74 820 tmp.Printf(wxT("wxHtmlWindow/FontsSize%i"), i);
4f9297b0 821 p_fontsizes[i] = cfg->Read(tmp, m_Parser->m_FontsSizes[i]);
5526e819 822 }
8eb2940f 823 SetFonts(p_ffn, p_fff, p_fontsizes);
5526e819
VS
824
825 if (path != wxEmptyString)
4f9297b0 826 cfg->SetPath(oldpath);
5526e819
VS
827}
828
829
830
831void wxHtmlWindow::WriteCustomization(wxConfigBase *cfg, wxString path)
832{
833 wxString oldpath;
834 wxString tmp;
835
33ac7e6f 836 if (path != wxEmptyString)
4f9297b0
VS
837 {
838 oldpath = cfg->GetPath();
839 cfg->SetPath(path);
5526e819
VS
840 }
841
892aeafc
VS
842 cfg->Write(wxT("wxHtmlWindow/Borders"), (long) m_Borders);
843 cfg->Write(wxT("wxHtmlWindow/FontFaceFixed"), m_Parser->m_FontFaceFixed);
844 cfg->Write(wxT("wxHtmlWindow/FontFaceNormal"), m_Parser->m_FontFaceNormal);
bfb9ee96 845 for (int i = 0; i < 7; i++)
4f9297b0 846 {
66a77a74 847 tmp.Printf(wxT("wxHtmlWindow/FontsSize%i"), i);
4f9297b0 848 cfg->Write(tmp, (long) m_Parser->m_FontsSizes[i]);
5526e819
VS
849 }
850
851 if (path != wxEmptyString)
4f9297b0 852 cfg->SetPath(oldpath);
5526e819 853}
b4246849 854#endif // wxUSE_CONFIG
5526e819
VS
855
856bool wxHtmlWindow::HistoryBack()
857{
858 wxString a, l;
859
d1da8872 860 if (m_HistoryPos < 1) return false;
5526e819 861
bbda1088
VS
862 // store scroll position into history item:
863 int x, y;
e421922f 864 GetViewStart(&x, &y);
892aeafc 865 (*m_History)[m_HistoryPos].SetPos(y);
bbda1088
VS
866
867 // go to previous position:
5526e819
VS
868 m_HistoryPos--;
869
892aeafc
VS
870 l = (*m_History)[m_HistoryPos].GetPage();
871 a = (*m_History)[m_HistoryPos].GetAnchor();
d1da8872 872 m_HistoryOn = false;
89de9af3 873 m_tmpCanDrawLocks++;
5526e819 874 if (a == wxEmptyString) LoadPage(l);
fc7dfaf8 875 else LoadPage(l + wxT("#") + a);
d1da8872 876 m_HistoryOn = true;
89de9af3 877 m_tmpCanDrawLocks--;
892aeafc 878 Scroll(0, (*m_History)[m_HistoryPos].GetPos());
5526e819 879 Refresh();
d1da8872 880 return true;
5526e819
VS
881}
882
1b113a81
VS
883bool wxHtmlWindow::HistoryCanBack()
884{
d1da8872
WS
885 if (m_HistoryPos < 1) return false;
886 return true ;
1b113a81 887}
5526e819
VS
888
889
890bool wxHtmlWindow::HistoryForward()
891{
892 wxString a, l;
893
d1da8872
WS
894 if (m_HistoryPos == -1) return false;
895 if (m_HistoryPos >= (int)m_History->GetCount() - 1)return false;
5526e819
VS
896
897 m_OpenedPage = wxEmptyString; // this will disable adding new entry into history in LoadPage()
898
899 m_HistoryPos++;
892aeafc
VS
900 l = (*m_History)[m_HistoryPos].GetPage();
901 a = (*m_History)[m_HistoryPos].GetAnchor();
d1da8872 902 m_HistoryOn = false;
89de9af3 903 m_tmpCanDrawLocks++;
5526e819 904 if (a == wxEmptyString) LoadPage(l);
fc7dfaf8 905 else LoadPage(l + wxT("#") + a);
d1da8872 906 m_HistoryOn = true;
89de9af3 907 m_tmpCanDrawLocks--;
892aeafc 908 Scroll(0, (*m_History)[m_HistoryPos].GetPos());
5526e819 909 Refresh();
d1da8872 910 return true;
5526e819
VS
911}
912
1b113a81
VS
913bool wxHtmlWindow::HistoryCanForward()
914{
d1da8872
WS
915 if (m_HistoryPos == -1) return false;
916 if (m_HistoryPos >= (int)m_History->GetCount() - 1)return false;
917 return true ;
1b113a81 918}
5526e819
VS
919
920
921void wxHtmlWindow::HistoryClear()
922{
892aeafc 923 m_History->Empty();
5526e819
VS
924 m_HistoryPos = -1;
925}
926
892aeafc
VS
927void wxHtmlWindow::AddProcessor(wxHtmlProcessor *processor)
928{
929 if (!m_Processors)
930 {
931 m_Processors = new wxHtmlProcessorList;
892aeafc 932 }
222ed1d6 933 wxHtmlProcessorList::compatibility_iterator node;
bfb9ee96 934
892aeafc
VS
935 for (node = m_Processors->GetFirst(); node; node = node->GetNext())
936 {
bfb9ee96 937 if (processor->GetPriority() > node->GetData()->GetPriority())
892aeafc
VS
938 {
939 m_Processors->Insert(node, processor);
960ba969 940 return;
892aeafc
VS
941 }
942 }
960ba969 943 m_Processors->Append(processor);
892aeafc
VS
944}
945
960ba969 946/*static */ void wxHtmlWindow::AddGlobalProcessor(wxHtmlProcessor *processor)
892aeafc 947{
960ba969 948 if (!m_GlobalProcessors)
892aeafc 949 {
960ba969 950 m_GlobalProcessors = new wxHtmlProcessorList;
892aeafc 951 }
222ed1d6 952 wxHtmlProcessorList::compatibility_iterator node;
e421922f 953
960ba969 954 for (node = m_GlobalProcessors->GetFirst(); node; node = node->GetNext())
892aeafc 955 {
bfb9ee96 956 if (processor->GetPriority() > node->GetData()->GetPriority())
892aeafc 957 {
960ba969
VS
958 m_GlobalProcessors->Insert(node, processor);
959 return;
892aeafc
VS
960 }
961 }
960ba969 962 m_GlobalProcessors->Append(processor);
892aeafc
VS
963}
964
5526e819
VS
965
966
5526e819
VS
967void wxHtmlWindow::AddFilter(wxHtmlFilter *filter)
968{
5526e819
VS
969 m_Filters.Append(filter);
970}
971
972
36c4ff4d
VS
973bool wxHtmlWindow::IsSelectionEnabled() const
974{
975#if wxUSE_CLIPBOARD
cc87fbed 976 return !HasFlag(wxHW_NO_SELECTION);
36c4ff4d
VS
977#else
978 return false;
979#endif
980}
d659d703 981
e3774124 982
1338c59a 983#if wxUSE_CLIPBOARD
977b867e 984wxString wxHtmlWindow::DoSelectionToText(wxHtmlSelection *sel)
e3774124 985{
977b867e 986 if ( !sel )
e3774124
VS
987 return wxEmptyString;
988
f30e67db 989 wxClientDC dc(this);
e3774124 990 wxString text;
7f8f381c
VS
991
992 wxHtmlTerminalCellsInterator i(sel->GetFromCell(), sel->GetToCell());
993 const wxHtmlCell *prev = NULL;
994
e3774124
VS
995 while ( i )
996 {
7f8f381c
VS
997 // When converting HTML content to plain text, the entire paragraph
998 // (container in wxHTML) goes on single line. A new paragraph (that
999 // should go on its own line) has its own container. Therefore, the
1000 // simplest way of detecting where to insert newlines in plain text
1001 // is to check if the parent container changed -- if it did, we moved
1002 // to a new paragraph.
1003 if ( prev && prev->GetParent() != i->GetParent() )
1004 text << '\n';
1005
1006 // NB: we don't need to pass the selection to ConvertToText() in the
1007 // middle of the selected text; it's only useful when only part of
1008 // a cell is selected
1009 text << i->ConvertToText(sel);
1010
e3774124
VS
1011 prev = *i;
1012 ++i;
1013 }
1014 return text;
1015}
1016
977b867e
VS
1017wxString wxHtmlWindow::ToText()
1018{
1019 if (m_Cell)
1020 {
1021 wxHtmlSelection sel;
1022 sel.Set(m_Cell->GetFirstTerminal(), m_Cell->GetLastTerminal());
1023 return DoSelectionToText(&sel);
1024 }
1025 else
1026 return wxEmptyString;
1027}
1028
d659d703
VZ
1029#endif // wxUSE_CLIPBOARD
1030
8feaa81f 1031bool wxHtmlWindow::CopySelection(ClipboardType t)
e3774124 1032{
d659d703 1033#if wxUSE_CLIPBOARD
e3774124
VS
1034 if ( m_selection )
1035 {
28b2ac5b 1036#if defined(__UNIX__) && !defined(__WXMAC__)
e3774124 1037 wxTheClipboard->UsePrimarySelection(t == Primary);
d659d703
VZ
1038#else // !__UNIX__
1039 // Primary selection exists only under X11, so don't do anything under
1040 // the other platforms when we try to access it
1041 //
1042 // TODO: this should be abstracted at wxClipboard level!
1043 if ( t == Primary )
8feaa81f 1044 return false;
d659d703
VZ
1045#endif // __UNIX__/!__UNIX__
1046
e3774124
VS
1047 if ( wxTheClipboard->Open() )
1048 {
d659d703 1049 const wxString txt(SelectionToText());
e3774124
VS
1050 wxTheClipboard->SetData(new wxTextDataObject(txt));
1051 wxTheClipboard->Close();
9a83f860 1052 wxLogTrace(wxT("wxhtmlselection"),
e3774124 1053 _("Copied to clipboard:\"%s\""), txt.c_str());
8feaa81f
VZ
1054
1055 return true;
e3774124
VS
1056 }
1057 }
caf448e3
WS
1058#else
1059 wxUnusedVar(t);
d659d703 1060#endif // wxUSE_CLIPBOARD
8feaa81f
VZ
1061
1062 return false;
e3774124 1063}
5526e819
VS
1064
1065
0b2dadd3 1066void wxHtmlWindow::OnLinkClicked(const wxHtmlLinkInfo& link)
5526e819 1067{
a1c3cdc4 1068 wxHtmlLinkEvent event(GetId(), link);
33c2a4b7 1069 event.SetEventObject(this);
a1c3cdc4
VS
1070 if (!GetEventHandler()->ProcessEvent(event))
1071 {
1072 // the default behaviour is to load the URL in this window
1073 const wxMouseEvent *e = event.GetLinkInfo().GetEvent();
1074 if (e == NULL || e->LeftUp())
1075 LoadPage(event.GetLinkInfo().GetHref());
1076 }
5526e819
VS
1077}
1078
03a187cc 1079void wxHtmlWindow::DoEraseBackground(wxDC& dc)
1338c59a 1080{
03a187cc
VZ
1081 // if we don't have any background bitmap we just fill it with background
1082 // colour and we also must do it if the background bitmap is not fully
1083 // opaque as otherwise junk could be left there
1084 if ( !m_bmpBg.IsOk() || m_bmpBg.GetMask() )
97e490f8 1085 {
03a187cc 1086 dc.SetBackground(GetBackgroundColour());
97e490f8
VZ
1087 dc.Clear();
1088 }
1089
03a187cc 1090 if ( m_bmpBg.IsOk() )
97e490f8 1091 {
03a187cc
VZ
1092 // draw the background bitmap tiling it over the entire window area
1093 const wxSize sz = GetClientSize();
1094 const wxSize sizeBmp(m_bmpBg.GetWidth(), m_bmpBg.GetHeight());
1095 for ( wxCoord x = 0; x < sz.x; x += sizeBmp.x )
97e490f8 1096 {
03a187cc
VZ
1097 for ( wxCoord y = 0; y < sz.y; y += sizeBmp.y )
1098 {
1099 dc.DrawBitmap(m_bmpBg, x, y, true /* use mask */);
1100 }
97e490f8
VZ
1101 }
1102 }
1338c59a
VS
1103}
1104
1105void wxHtmlWindow::OnPaint(wxPaintEvent& WXUNUSED(event))
5526e819 1106{
03a187cc 1107 wxPaintDC dcPaint(this);
1338c59a 1108
518ba663
VZ
1109 if (m_tmpCanDrawLocks > 0 || m_Cell == NULL)
1110 return;
5526e819 1111
b835e9bf 1112 int x, y;
e421922f 1113 GetViewStart(&x, &y);
03a187cc
VZ
1114 const wxRect rect = GetUpdateRegion().GetBox();
1115 const wxSize sz = GetClientSize();
1116
1117 // set up the DC we're drawing on: if the window is already double buffered
1118 // we do it directly on wxPaintDC, otherwise we allocate a backing store
1119 // buffer and compose the drawing there and then blit it to screen all at
1120 // once
1121 wxDC *dc;
1338c59a 1122 wxMemoryDC dcm;
03a187cc 1123 if ( IsDoubleBuffered() )
518ba663 1124 {
03a187cc
VZ
1125 dc = &dcPaint;
1126 }
1127 else // window is not double buffered by the system, do it ourselves
1128 {
1129 if ( !m_backBuffer.IsOk() )
1130 m_backBuffer.Create(sz.x, sz.y);
1131 dcm.SelectObject(m_backBuffer);
1132 dc = &dcm;
518ba663 1133 }
03a187cc
VZ
1134
1135 PrepareDC(*dc);
1136
1137 // erase the background: for compatibility, we must generate the event to
1138 // allow the user-defined handlers to do it
1139 wxEraseEvent eraseEvent(GetId(), dc);
1140 eraseEvent.SetEventObject(this);
1141 if ( !ProcessWindowEvent(eraseEvent) )
518ba663 1142 {
03a187cc
VZ
1143 // erase background ourselves
1144 DoEraseBackground(*dc);
518ba663 1145 }
03a187cc 1146 //else: background erased by the user-defined handler
a03ae172 1147
03a187cc
VZ
1148
1149 // draw the HTML window contents
1150 dc->SetMapMode(wxMM_TEXT);
1151 dc->SetBackgroundMode(wxBRUSHSTYLE_TRANSPARENT);
88ed20a2 1152 dc->SetLayoutDirection(GetLayoutDirection());
d659d703 1153
f30e67db
VS
1154 wxHtmlRenderingInfo rinfo;
1155 wxDefaultHtmlRenderingStyle rstyle;
1156 rinfo.SetSelection(m_selection);
1157 rinfo.SetStyle(&rstyle);
03a187cc 1158 m_Cell->Draw(*dc, 0, 0,
790dbce3 1159 y * wxHTML_SCROLL_STEP + rect.GetTop(),
36c4ff4d 1160 y * wxHTML_SCROLL_STEP + rect.GetBottom(),
f30e67db 1161 rinfo);
d1da8872 1162
03693319
VS
1163#ifdef DEBUG_HTML_SELECTION
1164 {
1165 int xc, yc, x, y;
1166 wxGetMousePosition(&xc, &yc);
1167 ScreenToClient(&xc, &yc);
1168 CalcUnscrolledPosition(xc, yc, &x, &y);
1169 wxHtmlCell *at = m_Cell->FindCellByPos(x, y);
d1da8872 1170 wxHtmlCell *before =
03693319 1171 m_Cell->FindCellByPos(x, y, wxHTML_FIND_NEAREST_BEFORE);
d1da8872 1172 wxHtmlCell *after =
03693319 1173 m_Cell->FindCellByPos(x, y, wxHTML_FIND_NEAREST_AFTER);
d1da8872 1174
03a187cc
VZ
1175 dc->SetBrush(*wxTRANSPARENT_BRUSH);
1176 dc->SetPen(*wxBLACK_PEN);
03693319 1177 if (at)
03a187cc 1178 dc->DrawRectangle(at->GetAbsPos(),
03693319 1179 wxSize(at->GetWidth(),at->GetHeight()));
03a187cc 1180 dc->SetPen(*wxGREEN_PEN);
03693319 1181 if (before)
03a187cc 1182 dc->DrawRectangle(before->GetAbsPos().x+1, before->GetAbsPos().y+1,
03693319 1183 before->GetWidth()-2,before->GetHeight()-2);
03a187cc 1184 dc->SetPen(*wxRED_PEN);
03693319 1185 if (after)
03a187cc 1186 dc->DrawRectangle(after->GetAbsPos().x+2, after->GetAbsPos().y+2,
03693319
VS
1187 after->GetWidth()-4,after->GetHeight()-4);
1188 }
03a187cc 1189#endif // DEBUG_HTML_SELECTION
d1da8872 1190
03a187cc
VZ
1191 if ( dc != &dcPaint )
1192 {
1193 dc->SetDeviceOrigin(0,0);
1194 dcPaint.Blit(0, rect.GetTop(),
1195 sz.x, rect.GetBottom() - rect.GetTop() + 1,
1196 dc,
1197 0, rect.GetTop());
1198 }
5526e819
VS
1199}
1200
1201
1202
1203
1204void wxHtmlWindow::OnSize(wxSizeEvent& event)
1205{
6528a7f1
VZ
1206 event.Skip();
1207
03a187cc 1208 m_backBuffer = wxNullBitmap;
1338c59a 1209
5526e819 1210 CreateLayout();
1338c59a
VS
1211
1212 // Recompute selection if necessary:
1213 if ( m_selection )
1214 {
1215 m_selection->Set(m_selection->GetFromCell(),
1216 m_selection->GetToCell());
2f0bebe6 1217 m_selection->ClearFromToCharacterPos();
1338c59a 1218 }
d659d703 1219
f6bcfd97 1220 Refresh();
5526e819
VS
1221}
1222
1223
fc7a2a60 1224void wxHtmlWindow::OnMouseMove(wxMouseEvent& WXUNUSED(event))
5526e819 1225{
bc55e31b 1226 wxHtmlWindowMouseHelper::HandleMouseMoved();
31d8b4ad 1227}
5526e819 1228
adf2eb2d 1229void wxHtmlWindow::OnMouseDown(wxMouseEvent& event)
31d8b4ad 1230{
0994d968 1231#if wxUSE_CLIPBOARD
adf2eb2d 1232 if ( event.LeftDown() && IsSelectionEnabled() )
4f9297b0 1233 {
0994d968
VS
1234 const long TRIPLECLICK_LEN = 200; // 0.2 sec after doubleclick
1235 if ( wxGetLocalTimeMillis() - m_lastDoubleClick <= TRIPLECLICK_LEN )
adf2eb2d 1236 {
0994d968 1237 SelectLine(CalcUnscrolledPosition(event.GetPosition()));
d659d703 1238
5de65c69 1239 (void) CopySelection();
adf2eb2d 1240 }
0994d968 1241 else
d659d703 1242 {
0994d968 1243 m_makingSelection = true;
d659d703 1244
0994d968
VS
1245 if ( m_selection )
1246 {
1247 wxDELETE(m_selection);
1248 Refresh();
1249 }
1250 m_tmpSelFromPos = CalcUnscrolledPosition(event.GetPosition());
1251 m_tmpSelFromCell = NULL;
5526e819 1252
0994d968
VS
1253 CaptureMouse();
1254 }
adf2eb2d 1255 }
d659d703 1256#endif // wxUSE_CLIPBOARD
bc0e68eb
VZ
1257
1258 // in any case, let the default handler set focus to this window
1259 event.Skip();
adf2eb2d 1260}
5526e819 1261
adf2eb2d
VS
1262void wxHtmlWindow::OnMouseUp(wxMouseEvent& event)
1263{
1338c59a 1264#if wxUSE_CLIPBOARD
adf2eb2d
VS
1265 if ( m_makingSelection )
1266 {
1267 ReleaseMouse();
1268 m_makingSelection = false;
1269
907f2fab
VS
1270 // if m_selection=NULL, the user didn't move the mouse far enough from
1271 // starting point and the mouse up event is part of a click, the user
1272 // is not selecting text:
1273 if ( m_selection )
adf2eb2d 1274 {
907f2fab
VS
1275 CopySelection(Primary);
1276
adf2eb2d
VS
1277 // we don't want mouse up event that ended selecting to be
1278 // handled as mouse click and e.g. follow hyperlink:
1279 return;
1280 }
1281 }
d659d703
VZ
1282#endif // wxUSE_CLIPBOARD
1283
bc55e31b 1284 wxPoint pos = CalcUnscrolledPosition(event.GetPosition());
615f68c6
VZ
1285 if ( !wxHtmlWindowMouseHelper::HandleMouseClick(m_Cell, pos, event) )
1286 event.Skip();
5526e819
VS
1287}
1288
63e819f2
VS
1289#if wxUSE_CLIPBOARD
1290void wxHtmlWindow::OnMouseCaptureLost(wxMouseCaptureLostEvent& WXUNUSED(event))
1291{
1292 if ( !m_makingSelection )
1293 return;
1294
1295 // discard the selecting operation
1296 m_makingSelection = false;
1297 wxDELETE(m_selection);
1298 m_tmpSelFromCell = NULL;
1299 Refresh();
1300}
1301#endif // wxUSE_CLIPBOARD
5526e819
VS
1302
1303
5180055b
JS
1304void wxHtmlWindow::OnInternalIdle()
1305{
1306 wxWindow::OnInternalIdle();
d1da8872 1307
bc55e31b 1308 if (m_Cell != NULL && DidMouseMove())
4f9297b0 1309 {
03693319
VS
1310#ifdef DEBUG_HTML_SELECTION
1311 Refresh();
1312#endif
adf2eb2d
VS
1313 int xc, yc, x, y;
1314 wxGetMousePosition(&xc, &yc);
1315 ScreenToClient(&xc, &yc);
1316 CalcUnscrolledPosition(xc, yc, &x, &y);
0cb9cfb2 1317
f6010d8f 1318 wxHtmlCell *cell = m_Cell->FindCellByPos(x, y);
adf2eb2d
VS
1319
1320 // handle selection update:
1321 if ( m_makingSelection )
1322 {
adf2eb2d 1323 if ( !m_tmpSelFromCell )
748418c0
VS
1324 m_tmpSelFromCell = m_Cell->FindCellByPos(
1325 m_tmpSelFromPos.x,m_tmpSelFromPos.y);
d1da8872 1326
03693319
VS
1327 // NB: a trick - we adjust selFromPos to be upper left or bottom
1328 // right corner of the first cell of the selection depending
1329 // on whether the mouse is moving to the right or to the left.
1330 // This gives us more "natural" behaviour when selecting
1331 // a line (specifically, first cell of the next line is not
1332 // included if you drag selection from left to right over
1333 // entire line):
1334 wxPoint dirFromPos;
1335 if ( !m_tmpSelFromCell )
1336 {
1337 dirFromPos = m_tmpSelFromPos;
1338 }
1339 else
1340 {
1341 dirFromPos = m_tmpSelFromCell->GetAbsPos();
1342 if ( x < m_tmpSelFromPos.x )
1343 {
1344 dirFromPos.x += m_tmpSelFromCell->GetWidth();
1345 dirFromPos.y += m_tmpSelFromCell->GetHeight();
1346 }
1347 }
d1da8872 1348 bool goingDown = dirFromPos.y < y ||
03693319
VS
1349 (dirFromPos.y == y && dirFromPos.x < x);
1350
1351 // determine selection span:
748418c0 1352 if ( /*still*/ !m_tmpSelFromCell )
adf2eb2d
VS
1353 {
1354 if (goingDown)
1355 {
5a1597e9
VS
1356 m_tmpSelFromCell = m_Cell->FindCellByPos(
1357 m_tmpSelFromPos.x,m_tmpSelFromPos.y,
1358 wxHTML_FIND_NEAREST_AFTER);
adf2eb2d
VS
1359 if (!m_tmpSelFromCell)
1360 m_tmpSelFromCell = m_Cell->GetFirstTerminal();
1361 }
1362 else
1363 {
5a1597e9
VS
1364 m_tmpSelFromCell = m_Cell->FindCellByPos(
1365 m_tmpSelFromPos.x,m_tmpSelFromPos.y,
1366 wxHTML_FIND_NEAREST_BEFORE);
adf2eb2d
VS
1367 if (!m_tmpSelFromCell)
1368 m_tmpSelFromCell = m_Cell->GetLastTerminal();
1369 }
1370 }
1371
1372 wxHtmlCell *selcell = cell;
1373 if (!selcell)
1374 {
1375 if (goingDown)
1376 {
1377 selcell = m_Cell->FindCellByPos(x, y,
03693319 1378 wxHTML_FIND_NEAREST_BEFORE);
adf2eb2d
VS
1379 if (!selcell)
1380 selcell = m_Cell->GetLastTerminal();
1381 }
1382 else
1383 {
1384 selcell = m_Cell->FindCellByPos(x, y,
03693319 1385 wxHTML_FIND_NEAREST_AFTER);
adf2eb2d
VS
1386 if (!selcell)
1387 selcell = m_Cell->GetFirstTerminal();
1388 }
1389 }
1390
1391 // NB: it may *rarely* happen that the code above didn't find one
1392 // of the cells, e.g. if wxHtmlWindow doesn't contain any
d659d703 1393 // visible cells.
adf2eb2d 1394 if ( selcell && m_tmpSelFromCell )
d659d703 1395 {
adf2eb2d
VS
1396 if ( !m_selection )
1397 {
1398 // start selecting only if mouse movement was big enough
1399 // (otherwise it was meant as mouse click, not selection):
1400 const int PRECISION = 2;
1401 wxPoint diff = m_tmpSelFromPos - wxPoint(x,y);
1402 if (abs(diff.x) > PRECISION || abs(diff.y) > PRECISION)
1403 {
1404 m_selection = new wxHtmlSelection();
1405 }
1406 }
1407 if ( m_selection )
1408 {
e3774124 1409 if ( m_tmpSelFromCell->IsBefore(selcell) )
adf2eb2d
VS
1410 {
1411 m_selection->Set(m_tmpSelFromPos, m_tmpSelFromCell,
a1c3cdc4
VS
1412 wxPoint(x,y), selcell);
1413 }
adf2eb2d
VS
1414 else
1415 {
1416 m_selection->Set(wxPoint(x,y), selcell,
1417 m_tmpSelFromPos, m_tmpSelFromCell);
1418 }
2f0bebe6 1419 m_selection->ClearFromToCharacterPos();
1338c59a 1420 Refresh();
adf2eb2d
VS
1421 }
1422 }
1423 }
d659d703 1424
adf2eb2d 1425 // handle cursor and status bar text changes:
f6010d8f 1426
bc55e31b
VS
1427 // NB: because we're passing in 'cell' and not 'm_Cell' (so that the
1428 // leaf cell lookup isn't done twice), we need to adjust the
1429 // position for the new root:
1430 wxPoint posInCell(x, y);
1431 if (cell)
1432 posInCell -= cell->GetAbsPos();
1433 wxHtmlWindowMouseHelper::HandleIdle(cell, posInCell);
5526e819
VS
1434 }
1435}
1436
e3774124 1437#if wxUSE_CLIPBOARD
1338c59a
VS
1438void wxHtmlWindow::StopAutoScrolling()
1439{
1440 if ( m_timerAutoScroll )
1441 {
1442 wxDELETE(m_timerAutoScroll);
1443 }
1444}
1445
1446void wxHtmlWindow::OnMouseEnter(wxMouseEvent& event)
1447{
1448 StopAutoScrolling();
1449 event.Skip();
1450}
1451
1452void wxHtmlWindow::OnMouseLeave(wxMouseEvent& event)
1453{
1454 // don't prevent the usual processing of the event from taking place
1455 event.Skip();
1456
1457 // when a captured mouse leave a scrolled window we start generate
1458 // scrolling events to allow, for example, extending selection beyond the
1459 // visible area in some controls
1460 if ( wxWindow::GetCapture() == this )
1461 {
1462 // where is the mouse leaving?
1463 int pos, orient;
1464 wxPoint pt = event.GetPosition();
1465 if ( pt.x < 0 )
1466 {
1467 orient = wxHORIZONTAL;
1468 pos = 0;
1469 }
1470 else if ( pt.y < 0 )
1471 {
1472 orient = wxVERTICAL;
1473 pos = 0;
1474 }
1475 else // we're lower or to the right of the window
1476 {
1477 wxSize size = GetClientSize();
1478 if ( pt.x > size.x )
1479 {
1480 orient = wxHORIZONTAL;
1481 pos = GetVirtualSize().x / wxHTML_SCROLL_STEP;
1482 }
1483 else if ( pt.y > size.y )
1484 {
1485 orient = wxVERTICAL;
1486 pos = GetVirtualSize().y / wxHTML_SCROLL_STEP;
1487 }
1488 else // this should be impossible
1489 {
1490 // but seems to happen sometimes under wxMSW - maybe it's a bug
1491 // there but for now just ignore it
1492
9a83f860 1493 //wxFAIL_MSG( wxT("can't understand where has mouse gone") );
1338c59a
VS
1494
1495 return;
1496 }
1497 }
1498
1499 // only start the auto scroll timer if the window can be scrolled in
1500 // this direction
1501 if ( !HasScrollbar(orient) )
1502 return;
1503
1504 delete m_timerAutoScroll;
1505 m_timerAutoScroll = new wxHtmlWinAutoScrollTimer
1506 (
1507 this,
1508 pos == 0 ? wxEVT_SCROLLWIN_LINEUP
1509 : wxEVT_SCROLLWIN_LINEDOWN,
1510 pos,
1511 orient
1512 );
1513 m_timerAutoScroll->Start(50); // FIXME: make configurable
1514 }
1515}
1516
e3774124
VS
1517void wxHtmlWindow::OnKeyUp(wxKeyEvent& event)
1518{
0f11c233
VZ
1519 if ( IsSelectionEnabled() &&
1520 (event.GetKeyCode() == 'C' && event.CmdDown()) )
e3774124 1521 {
0f11c233
VZ
1522 wxClipboardTextEvent evt(wxEVT_COMMAND_TEXT_COPY, GetId());
1523
1524 evt.SetEventObject(this);
1525
1526 GetEventHandler()->ProcessEvent(evt);
e3774124 1527 }
e3774124
VS
1528}
1529
fc7a2a60 1530void wxHtmlWindow::OnCopy(wxCommandEvent& WXUNUSED(event))
e3774124 1531{
5de65c69 1532 (void) CopySelection();
e3774124 1533}
d659d703 1534
0f11c233
VZ
1535void wxHtmlWindow::OnClipboardEvent(wxClipboardTextEvent& WXUNUSED(event))
1536{
1537 (void) CopySelection();
1538}
1539
31eefb99
VS
1540void wxHtmlWindow::OnDoubleClick(wxMouseEvent& event)
1541{
1542 // select word under cursor:
1543 if ( IsSelectionEnabled() )
1544 {
0994d968 1545 SelectWord(CalcUnscrolledPosition(event.GetPosition()));
d659d703 1546
5de65c69 1547 (void) CopySelection(Primary);
d659d703 1548
0994d968 1549 m_lastDoubleClick = wxGetLocalTimeMillis();
31eefb99
VS
1550 }
1551 else
1552 event.Skip();
1553}
0994d968
VS
1554
1555void wxHtmlWindow::SelectWord(const wxPoint& pos)
1556{
2a536376 1557 if ( m_Cell )
0994d968 1558 {
2a536376
VS
1559 wxHtmlCell *cell = m_Cell->FindCellByPos(pos.x, pos.y);
1560 if ( cell )
1561 {
1562 delete m_selection;
1563 m_selection = new wxHtmlSelection();
1564 m_selection->Set(cell, cell);
1565 RefreshRect(wxRect(CalcScrolledPosition(cell->GetAbsPos()),
1566 wxSize(cell->GetWidth(), cell->GetHeight())));
1567 }
0994d968
VS
1568 }
1569}
1570
1571void wxHtmlWindow::SelectLine(const wxPoint& pos)
1572{
2a536376 1573 if ( m_Cell )
0994d968 1574 {
2a536376
VS
1575 wxHtmlCell *cell = m_Cell->FindCellByPos(pos.x, pos.y);
1576 if ( cell )
0994d968 1577 {
2a536376
VS
1578 // We use following heuristic to find a "line": let the line be all
1579 // cells in same container as the cell under mouse cursor that are
4c51a665 1580 // neither completely above nor completely below the clicked cell
2a536376
VS
1581 // (i.e. are likely to be words positioned on same line of text).
1582
1583 int y1 = cell->GetAbsPos().y;
1584 int y2 = y1 + cell->GetHeight();
1585 int y;
1586 const wxHtmlCell *c;
1587 const wxHtmlCell *before = NULL;
1588 const wxHtmlCell *after = NULL;
1589
1590 // find last cell of line:
1591 for ( c = cell->GetNext(); c; c = c->GetNext())
1592 {
1593 y = c->GetAbsPos().y;
1594 if ( y + c->GetHeight() > y1 && y < y2 )
1595 after = c;
1596 else
1597 break;
1598 }
1599 if ( !after )
1600 after = cell;
0994d968 1601
2a536376
VS
1602 // find first cell of line:
1603 for ( c = cell->GetParent()->GetFirstChild();
1604 c && c != cell; c = c->GetNext())
0994d968 1605 {
2a536376
VS
1606 y = c->GetAbsPos().y;
1607 if ( y + c->GetHeight() > y1 && y < y2 )
1608 {
1609 if ( ! before )
1610 before = c;
1611 }
1612 else
1613 before = NULL;
0994d968 1614 }
2a536376
VS
1615 if ( !before )
1616 before = cell;
1617
1618 delete m_selection;
1619 m_selection = new wxHtmlSelection();
1620 m_selection->Set(before, after);
1621
1622 Refresh();
0994d968 1623 }
2a536376
VS
1624 }
1625}
d659d703 1626
2a536376
VS
1627void wxHtmlWindow::SelectAll()
1628{
1629 if ( m_Cell )
1630 {
0994d968
VS
1631 delete m_selection;
1632 m_selection = new wxHtmlSelection();
2a536376 1633 m_selection->Set(m_Cell->GetFirstTerminal(), m_Cell->GetLastTerminal());
0994d968
VS
1634 Refresh();
1635 }
1636}
2a536376 1637
d659d703 1638#endif // wxUSE_CLIPBOARD
e3774124
VS
1639
1640
5526e819 1641
bfb9ee96 1642IMPLEMENT_ABSTRACT_CLASS(wxHtmlProcessor,wxObject)
5526e819 1643
459f2add 1644wxBEGIN_PROPERTIES_TABLE(wxHtmlWindow)
786a2425 1645/*
d1da8872
WS
1646 TODO PROPERTIES
1647 style , wxHW_SCROLLBAR_AUTO
1648 borders , (dimension)
1649 url , string
1650 htmlcode , string
786a2425 1651*/
459f2add 1652wxEND_PROPERTIES_TABLE()
786a2425 1653
459f2add
SC
1654wxBEGIN_HANDLERS_TABLE(wxHtmlWindow)
1655wxEND_HANDLERS_TABLE()
786a2425 1656
d1da8872 1657wxCONSTRUCTOR_5( wxHtmlWindow , wxWindow* , Parent , wxWindowID , Id , wxPoint , Position , wxSize , Size , long , WindowStyle )
28953245
SC
1658
1659wxIMPLEMENT_DYNAMIC_CLASS_XTI(wxHtmlWindow, wxScrolledWindow,"wx/html/htmlwin.h")
5526e819
VS
1660
1661BEGIN_EVENT_TABLE(wxHtmlWindow, wxScrolledWindow)
1662 EVT_SIZE(wxHtmlWindow::OnSize)
adf2eb2d
VS
1663 EVT_LEFT_DOWN(wxHtmlWindow::OnMouseDown)
1664 EVT_LEFT_UP(wxHtmlWindow::OnMouseUp)
1665 EVT_RIGHT_UP(wxHtmlWindow::OnMouseUp)
31d8b4ad 1666 EVT_MOTION(wxHtmlWindow::OnMouseMove)
1338c59a 1667 EVT_PAINT(wxHtmlWindow::OnPaint)
e3774124 1668#if wxUSE_CLIPBOARD
31eefb99 1669 EVT_LEFT_DCLICK(wxHtmlWindow::OnDoubleClick)
1338c59a
VS
1670 EVT_ENTER_WINDOW(wxHtmlWindow::OnMouseEnter)
1671 EVT_LEAVE_WINDOW(wxHtmlWindow::OnMouseLeave)
63e819f2 1672 EVT_MOUSE_CAPTURE_LOST(wxHtmlWindow::OnMouseCaptureLost)
e3774124
VS
1673 EVT_KEY_UP(wxHtmlWindow::OnKeyUp)
1674 EVT_MENU(wxID_COPY, wxHtmlWindow::OnCopy)
0f11c233 1675 EVT_TEXT_COPY(wxID_ANY, wxHtmlWindow::OnClipboardEvent)
d659d703 1676#endif // wxUSE_CLIPBOARD
5526e819
VS
1677END_EVENT_TABLE()
1678
bc55e31b
VS
1679//-----------------------------------------------------------------------------
1680// wxHtmlWindowInterface implementation in wxHtmlWindow
1681//-----------------------------------------------------------------------------
1682
1683void wxHtmlWindow::SetHTMLWindowTitle(const wxString& title)
1684{
1685 OnSetTitle(title);
1686}
1687
1688void wxHtmlWindow::OnHTMLLinkClicked(const wxHtmlLinkInfo& link)
1689{
1690 OnLinkClicked(link);
1691}
1692
1693wxHtmlOpeningStatus wxHtmlWindow::OnHTMLOpeningURL(wxHtmlURLType type,
1694 const wxString& url,
1695 wxString *redirect) const
1696{
1697 return OnOpeningURL(type, url, redirect);
1698}
1699
1700wxPoint wxHtmlWindow::HTMLCoordsToWindow(wxHtmlCell *WXUNUSED(cell),
1701 const wxPoint& pos) const
1702{
1703 return CalcScrolledPosition(pos);
1704}
1705
1706wxWindow* wxHtmlWindow::GetHTMLWindow()
1707{
1708 return this;
1709}
1710
1711wxColour wxHtmlWindow::GetHTMLBackgroundColour() const
1712{
1713 return GetBackgroundColour();
1714}
1715
1716void wxHtmlWindow::SetHTMLBackgroundColour(const wxColour& clr)
1717{
1718 SetBackgroundColour(clr);
1719}
1720
1721void wxHtmlWindow::SetHTMLBackgroundImage(const wxBitmap& bmpBg)
1722{
1723 SetBackgroundImage(bmpBg);
1724}
5526e819 1725
bc55e31b
VS
1726void wxHtmlWindow::SetHTMLStatusText(const wxString& text)
1727{
1728#if wxUSE_STATUSBAR
37146d33
VS
1729 if (m_RelatedStatusBarIndex != -1)
1730 {
1731 if (m_RelatedStatusBar)
1732 {
1733 m_RelatedStatusBar->SetStatusText(text, m_RelatedStatusBarIndex);
1734 }
1735 else if (m_RelatedFrame)
1736 {
1737 m_RelatedFrame->SetStatusText(text, m_RelatedStatusBarIndex);
1738 }
1739 }
80d99525
WS
1740#else
1741 wxUnusedVar(text);
bc55e31b
VS
1742#endif // wxUSE_STATUSBAR
1743}
5526e819 1744
88a1b648
VS
1745/*static*/
1746wxCursor wxHtmlWindow::GetDefaultHTMLCursor(HTMLCursor type)
1747{
1748 switch (type)
1749 {
1750 case HTMLCursor_Link:
1751 if ( !ms_cursorLink )
1752 ms_cursorLink = new wxCursor(wxCURSOR_HAND);
1753 return *ms_cursorLink;
1754
1755 case HTMLCursor_Text:
1756 if ( !ms_cursorText )
1757 ms_cursorText = new wxCursor(wxCURSOR_IBEAM);
1758 return *ms_cursorText;
1759
1760 case HTMLCursor_Default:
1761 default:
1762 return *wxSTANDARD_CURSOR;
1763 }
1764}
1765
1766wxCursor wxHtmlWindow::GetHTMLCursor(HTMLCursor type) const
1767{
1768 return GetDefaultHTMLCursor(type);
1769}
1770
5526e819 1771
bc55e31b
VS
1772//-----------------------------------------------------------------------------
1773// wxHtmlWinModule
1774//-----------------------------------------------------------------------------
5526e819 1775
a76015e6
VS
1776// A module to allow initialization/cleanup
1777// without calling these functions from app.cpp or from
1778// the user's application.
1779
1780class wxHtmlWinModule: public wxModule
1781{
1782DECLARE_DYNAMIC_CLASS(wxHtmlWinModule)
1783public:
1784 wxHtmlWinModule() : wxModule() {}
d1da8872 1785 bool OnInit() { return true; }
a76015e6
VS
1786 void OnExit() { wxHtmlWindow::CleanUpStatics(); }
1787};
1788
1789IMPLEMENT_DYNAMIC_CLASS(wxHtmlWinModule, wxModule)
1790
5526e819 1791
0cecad31
VS
1792// This hack forces the linker to always link in m_* files
1793// (wxHTML doesn't work without handlers from these files)
1794#include "wx/html/forcelnk.h"
1795FORCE_WXHTML_MODULES()
5526e819 1796
d659d703 1797#endif // wxUSE_HTML