1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxHtmlWindow class for parsing & displaying HTML (implementation)
4 // Author: Vaclav Slavik
6 // Copyright: (c) 1999 Vaclav Slavik
7 // Licence: wxWindows Licence
8 /////////////////////////////////////////////////////////////////////////////
12 #pragma implementation "htmlwin.h"
13 #pragma implementation "htmlproc.h"
16 #include "wx/wxprec.h"
19 #if wxUSE_HTML && wxUSE_STREAMS
28 #include "wx/dcclient.h"
32 #include "wx/html/htmlwin.h"
33 #include "wx/html/htmlproc.h"
35 #include "wx/clipbrd.h"
37 #include "wx/dcmemory.h"
39 #include "wx/arrimpl.cpp"
40 #include "wx/listimpl.cpp"
45 // ----------------------------------------------------------------------------
46 // wxHtmlWinAutoScrollTimer: the timer used to generate a stream of scroll
47 // events when a captured mouse is held outside the window
48 // ----------------------------------------------------------------------------
50 class wxHtmlWinAutoScrollTimer
: public wxTimer
53 wxHtmlWinAutoScrollTimer(wxScrolledWindow
*win
,
54 wxEventType eventTypeToSend
,
58 m_eventType
= eventTypeToSend
;
63 virtual void Notify();
66 wxScrolledWindow
*m_win
;
67 wxEventType m_eventType
;
71 DECLARE_NO_COPY_CLASS(wxHtmlWinAutoScrollTimer
)
74 void wxHtmlWinAutoScrollTimer::Notify()
76 // only do all this as long as the window is capturing the mouse
77 if ( wxWindow::GetCapture() != m_win
)
81 else // we still capture the mouse, continue generating events
83 // first scroll the window if we are allowed to do it
84 wxScrollWinEvent
event1(m_eventType
, m_pos
, m_orient
);
85 event1
.SetEventObject(m_win
);
86 if ( m_win
->GetEventHandler()->ProcessEvent(event1
) )
88 // and then send a pseudo mouse-move event to refresh the selection
89 wxMouseEvent
event2(wxEVT_MOTION
);
90 wxGetMousePosition(&event2
.m_x
, &event2
.m_y
);
92 // the mouse event coordinates should be client, not screen as
93 // returned by wxGetMousePosition
94 wxWindow
*parentTop
= m_win
;
95 while ( parentTop
->GetParent() )
96 parentTop
= parentTop
->GetParent();
97 wxPoint ptOrig
= parentTop
->GetPosition();
98 event2
.m_x
-= ptOrig
.x
;
99 event2
.m_y
-= ptOrig
.y
;
101 event2
.SetEventObject(m_win
);
103 // FIXME: we don't fill in the other members - ok?
104 m_win
->GetEventHandler()->ProcessEvent(event2
);
106 else // can't scroll further, stop
116 //-----------------------------------------------------------------------------
118 //-----------------------------------------------------------------------------
120 // item of history list
121 class WXDLLEXPORT wxHtmlHistoryItem
124 wxHtmlHistoryItem(const wxString
& p
, const wxString
& a
) {m_Page
= p
, m_Anchor
= a
, m_Pos
= 0;}
125 int GetPos() const {return m_Pos
;}
126 void SetPos(int p
) {m_Pos
= p
;}
127 const wxString
& GetPage() const {return m_Page
;}
128 const wxString
& GetAnchor() const {return m_Anchor
;}
137 //-----------------------------------------------------------------------------
138 // our private arrays:
139 //-----------------------------------------------------------------------------
141 WX_DECLARE_OBJARRAY(wxHtmlHistoryItem
, wxHtmlHistoryArray
);
142 WX_DEFINE_OBJARRAY(wxHtmlHistoryArray
);
144 WX_DECLARE_LIST(wxHtmlProcessor
, wxHtmlProcessorList
);
145 WX_DEFINE_LIST(wxHtmlProcessorList
);
147 //-----------------------------------------------------------------------------
149 //-----------------------------------------------------------------------------
152 void wxHtmlWindow::Init()
154 m_tmpMouseMoved
= FALSE
;
155 m_tmpLastLink
= NULL
;
156 m_tmpLastCell
= NULL
;
157 m_tmpCanDrawLocks
= 0;
158 m_FS
= new wxFileSystem();
159 m_RelatedStatusBar
= -1;
160 m_RelatedFrame
= NULL
;
161 m_TitleFormat
= wxT("%s");
162 m_OpenedPage
= m_OpenedAnchor
= m_OpenedPageTitle
= wxEmptyString
;
164 m_Parser
= new wxHtmlWinParser(this);
165 m_Parser
->SetFS(m_FS
);
168 m_History
= new wxHtmlHistoryArray
;
173 m_makingSelection
= false;
175 m_timerAutoScroll
= NULL
;
180 bool wxHtmlWindow::Create(wxWindow
*parent
, wxWindowID id
,
181 const wxPoint
& pos
, const wxSize
& size
,
182 long style
, const wxString
& name
)
184 if (!wxScrolledWindow::Create(parent
, id
, pos
, size
,
185 style
| wxVSCROLL
| wxHSCROLL
, name
))
189 SetPage(wxT("<html><body></body></html>"));
194 wxHtmlWindow::~wxHtmlWindow()
201 if (m_Cell
) delete m_Cell
;
212 void wxHtmlWindow::SetRelatedFrame(wxFrame
* frame
, const wxString
& format
)
214 m_RelatedFrame
= frame
;
215 m_TitleFormat
= format
;
220 void wxHtmlWindow::SetRelatedStatusBar(int bar
)
222 m_RelatedStatusBar
= bar
;
227 void wxHtmlWindow::SetFonts(wxString normal_face
, wxString fixed_face
, const int *sizes
)
229 wxString op
= m_OpenedPage
;
231 m_Parser
->SetFonts(normal_face
, fixed_face
, sizes
);
232 // fonts changed => contents invalid, so reload the page:
233 SetPage(wxT("<html><body></body></html>"));
234 if (!op
.IsEmpty()) LoadPage(op
);
239 bool wxHtmlWindow::SetPage(const wxString
& source
)
241 wxString
newsrc(source
);
243 wxDELETE(m_selection
);
245 // pass HTML through registered processors:
246 if (m_Processors
|| m_GlobalProcessors
)
248 wxHtmlProcessorList::Node
*nodeL
, *nodeG
;
251 nodeL
= (m_Processors
) ? m_Processors
->GetFirst() : NULL
;
252 nodeG
= (m_GlobalProcessors
) ? m_GlobalProcessors
->GetFirst() : NULL
;
254 // VS: there are two lists, global and local, both of them sorted by
255 // priority. Since we have to go through _both_ lists with
256 // decreasing priority, we "merge-sort" the lists on-line by
257 // processing that one of the two heads that has higher priority
258 // in every iteration
259 while (nodeL
|| nodeG
)
261 prL
= (nodeL
) ? nodeL
->GetData()->GetPriority() : -1;
262 prG
= (nodeG
) ? nodeG
->GetData()->GetPriority() : -1;
265 if (nodeL
->GetData()->IsEnabled())
266 newsrc
= nodeL
->GetData()->Process(newsrc
);
267 nodeL
= nodeL
->GetNext();
271 if (nodeG
->GetData()->IsEnabled())
272 newsrc
= nodeG
->GetData()->Process(newsrc
);
273 nodeG
= nodeG
->GetNext();
278 // ...and run the parser on it:
279 wxClientDC
*dc
= new wxClientDC(this);
280 dc
->SetMapMode(wxMM_TEXT
);
281 SetBackgroundColour(wxColour(0xFF, 0xFF, 0xFF));
282 m_OpenedPage
= m_OpenedAnchor
= m_OpenedPageTitle
= wxEmptyString
;
289 m_Cell
= (wxHtmlContainerCell
*) m_Parser
->Parse(newsrc
);
291 m_Cell
->SetIndent(m_Borders
, wxHTML_INDENT_ALL
, wxHTML_UNITS_PIXELS
);
292 m_Cell
->SetAlignHor(wxHTML_ALIGN_CENTER
);
294 if (m_tmpCanDrawLocks
== 0)
299 bool wxHtmlWindow::AppendToPage(const wxString
& source
)
301 return SetPage(*(GetParser()->GetSource()) + source
);
304 bool wxHtmlWindow::LoadPage(const wxString
& location
)
306 wxBusyCursor busyCursor
;
310 bool needs_refresh
= FALSE
;
313 if (m_HistoryOn
&& (m_HistoryPos
!= -1))
315 // store scroll position into history item:
317 GetViewStart(&x
, &y
);
318 (*m_History
)[m_HistoryPos
].SetPos(y
);
321 if (location
[0] == wxT('#'))
324 wxString anch
= location
.Mid(1) /*1 to end*/;
326 rt_val
= ScrollToAnchor(anch
);
329 else if (location
.Find(wxT('#')) != wxNOT_FOUND
&& location
.BeforeFirst(wxT('#')) == m_OpenedPage
)
331 wxString anch
= location
.AfterFirst(wxT('#'));
333 rt_val
= ScrollToAnchor(anch
);
336 else if (location
.Find(wxT('#')) != wxNOT_FOUND
&&
337 (m_FS
->GetPath() + location
.BeforeFirst(wxT('#'))) == m_OpenedPage
)
339 wxString anch
= location
.AfterFirst(wxT('#'));
341 rt_val
= ScrollToAnchor(anch
);
347 needs_refresh
= TRUE
;
349 if (m_RelatedStatusBar
!= -1)
351 m_RelatedFrame
->SetStatusText(_("Connecting..."), m_RelatedStatusBar
);
355 f
= m_Parser
->OpenURL(wxHTML_URL_PAGE
, location
);
357 // try to interpret 'location' as filename instead of URL:
360 wxFileName
fn(location
);
361 wxString location2
= wxFileSystem::FileNameToURL(fn
);
362 f
= m_Parser
->OpenURL(wxHTML_URL_PAGE
, location2
);
367 wxLogError(_("Unable to open requested HTML document: %s"), location
.c_str());
375 wxString src
= wxEmptyString
;
377 if (m_RelatedStatusBar
!= -1)
379 wxString msg
= _("Loading : ") + location
;
380 m_RelatedFrame
->SetStatusText(msg
, m_RelatedStatusBar
);
384 node
= m_Filters
.GetFirst();
387 wxHtmlFilter
*h
= (wxHtmlFilter
*) node
->GetData();
390 src
= h
->ReadFile(*f
);
393 node
= node
->GetNext();
395 if (src
== wxEmptyString
)
397 if (m_DefaultFilter
== NULL
) m_DefaultFilter
= GetDefaultFilter();
398 src
= m_DefaultFilter
->ReadFile(*f
);
401 m_FS
->ChangePathTo(f
->GetLocation());
402 rt_val
= SetPage(src
);
403 m_OpenedPage
= f
->GetLocation();
404 if (f
->GetAnchor() != wxEmptyString
)
406 ScrollToAnchor(f
->GetAnchor());
411 if (m_RelatedStatusBar
!= -1) m_RelatedFrame
->SetStatusText(_("Done"), m_RelatedStatusBar
);
415 if (m_HistoryOn
) // add this page to history there:
417 int c
= m_History
->GetCount() - (m_HistoryPos
+ 1);
419 if (m_HistoryPos
< 0 ||
420 (*m_History
)[m_HistoryPos
].GetPage() != m_OpenedPage
||
421 (*m_History
)[m_HistoryPos
].GetAnchor() != m_OpenedAnchor
)
424 for (int i
= 0; i
< c
; i
++)
425 m_History
->RemoveAt(m_HistoryPos
);
426 m_History
->Add(new wxHtmlHistoryItem(m_OpenedPage
, m_OpenedAnchor
));
430 if (m_OpenedPageTitle
== wxEmptyString
)
431 OnSetTitle(wxFileNameFromPath(m_OpenedPage
));
445 bool wxHtmlWindow::LoadFile(const wxFileName
& filename
)
447 wxString url
= wxFileSystem::FileNameToURL(filename
);
448 return LoadPage(url
);
452 bool wxHtmlWindow::ScrollToAnchor(const wxString
& anchor
)
454 const wxHtmlCell
*c
= m_Cell
->Find(wxHTML_COND_ISANCHOR
, &anchor
);
457 wxLogWarning(_("HTML anchor %s does not exist."), anchor
.c_str());
464 for (y
= 0; c
!= NULL
; c
= c
->GetParent()) y
+= c
->GetPosY();
465 Scroll(-1, y
/ wxHTML_SCROLL_STEP
);
466 m_OpenedAnchor
= anchor
;
472 void wxHtmlWindow::OnSetTitle(const wxString
& title
)
477 tit
.Printf(m_TitleFormat
, title
.c_str());
478 m_RelatedFrame
->SetTitle(tit
);
480 m_OpenedPageTitle
= title
;
487 void wxHtmlWindow::CreateLayout()
489 int ClientWidth
, ClientHeight
;
493 if (m_Style
& wxHW_SCROLLBAR_NEVER
)
495 SetScrollbars(wxHTML_SCROLL_STEP
, 1, m_Cell
->GetWidth() / wxHTML_SCROLL_STEP
, 0); // always off
496 GetClientSize(&ClientWidth
, &ClientHeight
);
497 m_Cell
->Layout(ClientWidth
);
501 GetClientSize(&ClientWidth
, &ClientHeight
);
502 m_Cell
->Layout(ClientWidth
);
503 if (ClientHeight
< m_Cell
->GetHeight() + GetCharHeight())
506 wxHTML_SCROLL_STEP
, wxHTML_SCROLL_STEP
,
507 m_Cell
->GetWidth() / wxHTML_SCROLL_STEP
,
508 (m_Cell
->GetHeight() + GetCharHeight()) / wxHTML_SCROLL_STEP
509 /*cheat: top-level frag is always container*/);
511 else /* we fit into window, no need for scrollbars */
513 SetScrollbars(wxHTML_SCROLL_STEP
, 1, m_Cell
->GetWidth() / wxHTML_SCROLL_STEP
, 0); // disable...
514 GetClientSize(&ClientWidth
, &ClientHeight
);
515 m_Cell
->Layout(ClientWidth
); // ...and relayout
522 void wxHtmlWindow::ReadCustomization(wxConfigBase
*cfg
, wxString path
)
527 wxString p_fff
, p_ffn
;
529 if (path
!= wxEmptyString
)
531 oldpath
= cfg
->GetPath();
535 m_Borders
= cfg
->Read(wxT("wxHtmlWindow/Borders"), m_Borders
);
536 p_fff
= cfg
->Read(wxT("wxHtmlWindow/FontFaceFixed"), m_Parser
->m_FontFaceFixed
);
537 p_ffn
= cfg
->Read(wxT("wxHtmlWindow/FontFaceNormal"), m_Parser
->m_FontFaceNormal
);
538 for (int i
= 0; i
< 7; i
++)
540 tmp
.Printf(wxT("wxHtmlWindow/FontsSize%i"), i
);
541 p_fontsizes
[i
] = cfg
->Read(tmp
, m_Parser
->m_FontsSizes
[i
]);
543 SetFonts(p_ffn
, p_fff
, p_fontsizes
);
545 if (path
!= wxEmptyString
)
546 cfg
->SetPath(oldpath
);
551 void wxHtmlWindow::WriteCustomization(wxConfigBase
*cfg
, wxString path
)
556 if (path
!= wxEmptyString
)
558 oldpath
= cfg
->GetPath();
562 cfg
->Write(wxT("wxHtmlWindow/Borders"), (long) m_Borders
);
563 cfg
->Write(wxT("wxHtmlWindow/FontFaceFixed"), m_Parser
->m_FontFaceFixed
);
564 cfg
->Write(wxT("wxHtmlWindow/FontFaceNormal"), m_Parser
->m_FontFaceNormal
);
565 for (int i
= 0; i
< 7; i
++)
567 tmp
.Printf(wxT("wxHtmlWindow/FontsSize%i"), i
);
568 cfg
->Write(tmp
, (long) m_Parser
->m_FontsSizes
[i
]);
571 if (path
!= wxEmptyString
)
572 cfg
->SetPath(oldpath
);
577 bool wxHtmlWindow::HistoryBack()
581 if (m_HistoryPos
< 1) return FALSE
;
583 // store scroll position into history item:
585 GetViewStart(&x
, &y
);
586 (*m_History
)[m_HistoryPos
].SetPos(y
);
588 // go to previous position:
591 l
= (*m_History
)[m_HistoryPos
].GetPage();
592 a
= (*m_History
)[m_HistoryPos
].GetAnchor();
595 if (a
== wxEmptyString
) LoadPage(l
);
596 else LoadPage(l
+ wxT("#") + a
);
599 Scroll(0, (*m_History
)[m_HistoryPos
].GetPos());
604 bool wxHtmlWindow::HistoryCanBack()
606 if (m_HistoryPos
< 1) return FALSE
;
611 bool wxHtmlWindow::HistoryForward()
615 if (m_HistoryPos
== -1) return FALSE
;
616 if (m_HistoryPos
>= (int)m_History
->GetCount() - 1)return FALSE
;
618 m_OpenedPage
= wxEmptyString
; // this will disable adding new entry into history in LoadPage()
621 l
= (*m_History
)[m_HistoryPos
].GetPage();
622 a
= (*m_History
)[m_HistoryPos
].GetAnchor();
625 if (a
== wxEmptyString
) LoadPage(l
);
626 else LoadPage(l
+ wxT("#") + a
);
629 Scroll(0, (*m_History
)[m_HistoryPos
].GetPos());
634 bool wxHtmlWindow::HistoryCanForward()
636 if (m_HistoryPos
== -1) return FALSE
;
637 if (m_HistoryPos
>= (int)m_History
->GetCount() - 1)return FALSE
;
642 void wxHtmlWindow::HistoryClear()
648 void wxHtmlWindow::AddProcessor(wxHtmlProcessor
*processor
)
652 m_Processors
= new wxHtmlProcessorList
;
653 m_Processors
->DeleteContents(TRUE
);
655 wxHtmlProcessorList::Node
*node
;
657 for (node
= m_Processors
->GetFirst(); node
; node
= node
->GetNext())
659 if (processor
->GetPriority() > node
->GetData()->GetPriority())
661 m_Processors
->Insert(node
, processor
);
665 m_Processors
->Append(processor
);
668 /*static */ void wxHtmlWindow::AddGlobalProcessor(wxHtmlProcessor
*processor
)
670 if (!m_GlobalProcessors
)
672 m_GlobalProcessors
= new wxHtmlProcessorList
;
673 m_GlobalProcessors
->DeleteContents(TRUE
);
675 wxHtmlProcessorList::Node
*node
;
677 for (node
= m_GlobalProcessors
->GetFirst(); node
; node
= node
->GetNext())
679 if (processor
->GetPriority() > node
->GetData()->GetPriority())
681 m_GlobalProcessors
->Insert(node
, processor
);
685 m_GlobalProcessors
->Append(processor
);
690 wxList
wxHtmlWindow::m_Filters
;
691 wxHtmlFilter
*wxHtmlWindow::m_DefaultFilter
= NULL
;
692 wxCursor
*wxHtmlWindow::s_cur_hand
= NULL
;
693 wxCursor
*wxHtmlWindow::s_cur_arrow
= NULL
;
694 wxHtmlProcessorList
*wxHtmlWindow::m_GlobalProcessors
= NULL
;
696 void wxHtmlWindow::CleanUpStatics()
698 wxDELETE(m_DefaultFilter
);
699 m_Filters
.DeleteContents(TRUE
);
701 wxDELETE(m_GlobalProcessors
);
702 wxDELETE(s_cur_hand
);
703 wxDELETE(s_cur_arrow
);
708 void wxHtmlWindow::AddFilter(wxHtmlFilter
*filter
)
710 m_Filters
.Append(filter
);
714 bool wxHtmlWindow::IsSelectionEnabled() const
717 return !(m_Style
& wxHW_NO_SELECTION
);
725 wxString
wxHtmlWindow::SelectionToText()
728 return wxEmptyString
;
732 const wxHtmlCell
*end
= m_selection
->GetToCell();
734 wxHtmlTerminalCellsInterator
i(m_selection
->GetFromCell(), end
);
737 text
<< i
->ConvertToText(m_selection
);
740 const wxHtmlCell
*prev
= *i
;
743 if ( prev
->GetParent() != i
->GetParent() )
745 text
<< i
->ConvertToText(*i
== end
? m_selection
: NULL
);
752 void wxHtmlWindow::CopySelection(ClipboardType t
)
756 wxTheClipboard
->UsePrimarySelection(t
== Primary
);
757 wxString
txt(SelectionToText());
758 if ( wxTheClipboard
->Open() )
760 wxTheClipboard
->SetData(new wxTextDataObject(txt
));
761 wxTheClipboard
->Close();
762 wxLogTrace(_T("wxhtmlselection"),
763 _("Copied to clipboard:\"%s\""), txt
.c_str());
770 void wxHtmlWindow::OnLinkClicked(const wxHtmlLinkInfo
& link
)
772 const wxMouseEvent
*e
= link
.GetEvent();
773 if (e
== NULL
|| e
->LeftUp())
774 LoadPage(link
.GetHref());
777 void wxHtmlWindow::OnCellClicked(wxHtmlCell
*cell
,
778 wxCoord x
, wxCoord y
,
779 const wxMouseEvent
& event
)
781 wxCHECK_RET( cell
, _T("can't be called with NULL cell") );
783 cell
->OnMouseClick(this, x
, y
, event
);
786 void wxHtmlWindow::OnCellMouseHover(wxHtmlCell
* WXUNUSED(cell
),
787 wxCoord
WXUNUSED(x
), wxCoord
WXUNUSED(y
))
792 void wxHtmlWindow::OnEraseBackground(wxEraseEvent
& event
)
796 void wxHtmlWindow::OnPaint(wxPaintEvent
& WXUNUSED(event
))
800 if (m_tmpCanDrawLocks
> 0 || m_Cell
== NULL
) return;
803 GetViewStart(&x
, &y
);
804 wxRect rect
= GetUpdateRegion().GetBox();
805 wxSize sz
= GetSize();
809 m_backBuffer
= new wxBitmap(sz
.x
, sz
.y
);
810 dcm
.SelectObject(*m_backBuffer
);
811 dcm
.SetBackground(wxBrush(GetBackgroundColour(), wxSOLID
));
814 dcm
.SetMapMode(wxMM_TEXT
);
815 dcm
.SetBackgroundMode(wxTRANSPARENT
);
817 wxHtmlRenderingInfo rinfo
;
818 wxDefaultHtmlRenderingStyle rstyle
;
819 rinfo
.SetSelection(m_selection
);
820 rinfo
.SetStyle(&rstyle
);
821 m_Cell
->Draw(dcm
, 0, 0,
822 y
* wxHTML_SCROLL_STEP
+ rect
.GetTop(),
823 y
* wxHTML_SCROLL_STEP
+ rect
.GetBottom(),
826 dcm
.SetDeviceOrigin(0,0);
827 dc
.Blit(0, rect
.GetTop(),
828 sz
.x
, rect
.GetBottom() - rect
.GetTop() + 1,
836 void wxHtmlWindow::OnSize(wxSizeEvent
& event
)
838 wxDELETE(m_backBuffer
);
840 wxScrolledWindow::OnSize(event
);
843 // Recompute selection if necessary:
846 m_selection
->Set(m_selection
->GetFromCell(),
847 m_selection
->GetToCell());
848 m_selection
->ClearPrivPos();
855 void wxHtmlWindow::OnMouseMove(wxMouseEvent
& event
)
857 m_tmpMouseMoved
= true;
860 void wxHtmlWindow::OnMouseDown(wxMouseEvent
& event
)
862 if ( event
.LeftDown() && IsSelectionEnabled() )
864 m_makingSelection
= true;
868 wxDELETE(m_selection
);
871 m_tmpSelFromPos
= CalcUnscrolledPosition(event
.GetPosition());
872 m_tmpSelFromCell
= NULL
;
878 void wxHtmlWindow::OnMouseUp(wxMouseEvent
& event
)
881 if ( m_makingSelection
)
884 m_makingSelection
= false;
886 // did the user move the mouse far enough from starting point?
890 CopySelection(Primary
);
892 // we don't want mouse up event that ended selecting to be
893 // handled as mouse click and e.g. follow hyperlink:
902 wxPoint pos
= CalcUnscrolledPosition(event
.GetPosition());
903 wxHtmlCell
*cell
= m_Cell
->FindCellByPos(pos
.x
, pos
.y
);
905 // VZ: is it possible that we don't find anything at all?
906 // VS: yes. FindCellByPos returns terminal cell and
907 // containers may have empty borders
909 OnCellClicked(cell
, pos
.x
, pos
.y
, event
);
915 void wxHtmlWindow::OnIdle(wxIdleEvent
& WXUNUSED(event
))
917 if (s_cur_hand
== NULL
)
919 s_cur_hand
= new wxCursor(wxCURSOR_HAND
);
920 s_cur_arrow
= new wxCursor(wxCURSOR_ARROW
);
923 if (m_tmpMouseMoved
&& (m_Cell
!= NULL
))
926 wxGetMousePosition(&xc
, &yc
);
927 ScreenToClient(&xc
, &yc
);
928 CalcUnscrolledPosition(xc
, yc
, &x
, &y
);
930 wxHtmlCell
*cell
= m_Cell
->FindCellByPos(x
, y
);
932 // handle selection update:
933 if ( m_makingSelection
)
935 bool goingDown
= m_tmpSelFromPos
.y
< y
||
936 m_tmpSelFromPos
.y
== y
&& m_tmpSelFromPos
.x
< x
;
938 if ( !m_tmpSelFromCell
)
942 m_tmpSelFromCell
= m_Cell
->FindCellByPos(
943 m_tmpSelFromPos
.x
,m_tmpSelFromPos
.y
,
944 wxHTML_FIND_NEAREST_AFTER
);
945 if (!m_tmpSelFromCell
)
946 m_tmpSelFromCell
= m_Cell
->GetFirstTerminal();
950 m_tmpSelFromCell
= m_Cell
->FindCellByPos(
951 m_tmpSelFromPos
.x
,m_tmpSelFromPos
.y
,
952 wxHTML_FIND_NEAREST_BEFORE
);
953 if (!m_tmpSelFromCell
)
954 m_tmpSelFromCell
= m_Cell
->GetLastTerminal();
958 wxHtmlCell
*selcell
= cell
;
963 selcell
= m_Cell
->FindCellByPos(x
, y
,
964 wxHTML_FIND_NEAREST_AFTER
);
966 selcell
= m_Cell
->GetLastTerminal();
970 selcell
= m_Cell
->FindCellByPos(x
, y
,
971 wxHTML_FIND_NEAREST_BEFORE
);
973 selcell
= m_Cell
->GetFirstTerminal();
977 // NB: it may *rarely* happen that the code above didn't find one
978 // of the cells, e.g. if wxHtmlWindow doesn't contain any
980 if ( selcell
&& m_tmpSelFromCell
)
984 // start selecting only if mouse movement was big enough
985 // (otherwise it was meant as mouse click, not selection):
986 const int PRECISION
= 2;
987 wxPoint diff
= m_tmpSelFromPos
- wxPoint(x
,y
);
988 if (abs(diff
.x
) > PRECISION
|| abs(diff
.y
) > PRECISION
)
990 m_selection
= new wxHtmlSelection();
995 if ( m_tmpSelFromCell
->IsBefore(selcell
) )
997 m_selection
->Set(m_tmpSelFromPos
, m_tmpSelFromCell
,
998 wxPoint(x
,y
), selcell
); }
1001 m_selection
->Set(wxPoint(x
,y
), selcell
,
1002 m_tmpSelFromPos
, m_tmpSelFromCell
);
1004 m_selection
->ClearPrivPos();
1010 // handle cursor and status bar text changes:
1011 if ( cell
!= m_tmpLastCell
)
1013 wxHtmlLinkInfo
*lnk
= cell
? cell
->GetLink(x
, y
) : NULL
;
1015 if (lnk
!= m_tmpLastLink
)
1019 SetCursor(*s_cur_arrow
);
1020 if (m_RelatedStatusBar
!= -1)
1021 m_RelatedFrame
->SetStatusText(wxEmptyString
, m_RelatedStatusBar
);
1025 SetCursor(*s_cur_hand
);
1026 if (m_RelatedStatusBar
!= -1)
1027 m_RelatedFrame
->SetStatusText(lnk
->GetHref(), m_RelatedStatusBar
);
1029 m_tmpLastLink
= lnk
;
1032 m_tmpLastCell
= cell
;
1034 else // mouse moved but stayed in the same cell
1037 OnCellMouseHover(cell
, x
, y
);
1040 m_tmpMouseMoved
= FALSE
;
1045 void wxHtmlWindow::StopAutoScrolling()
1047 if ( m_timerAutoScroll
)
1049 wxDELETE(m_timerAutoScroll
);
1053 void wxHtmlWindow::OnMouseEnter(wxMouseEvent
& event
)
1055 StopAutoScrolling();
1059 void wxHtmlWindow::OnMouseLeave(wxMouseEvent
& event
)
1061 // don't prevent the usual processing of the event from taking place
1064 // when a captured mouse leave a scrolled window we start generate
1065 // scrolling events to allow, for example, extending selection beyond the
1066 // visible area in some controls
1067 if ( wxWindow::GetCapture() == this )
1069 // where is the mouse leaving?
1071 wxPoint pt
= event
.GetPosition();
1074 orient
= wxHORIZONTAL
;
1077 else if ( pt
.y
< 0 )
1079 orient
= wxVERTICAL
;
1082 else // we're lower or to the right of the window
1084 wxSize size
= GetClientSize();
1085 if ( pt
.x
> size
.x
)
1087 orient
= wxHORIZONTAL
;
1088 pos
= GetVirtualSize().x
/ wxHTML_SCROLL_STEP
;
1090 else if ( pt
.y
> size
.y
)
1092 orient
= wxVERTICAL
;
1093 pos
= GetVirtualSize().y
/ wxHTML_SCROLL_STEP
;
1095 else // this should be impossible
1097 // but seems to happen sometimes under wxMSW - maybe it's a bug
1098 // there but for now just ignore it
1100 //wxFAIL_MSG( _T("can't understand where has mouse gone") );
1106 // only start the auto scroll timer if the window can be scrolled in
1108 if ( !HasScrollbar(orient
) )
1111 delete m_timerAutoScroll
;
1112 m_timerAutoScroll
= new wxHtmlWinAutoScrollTimer
1115 pos
== 0 ? wxEVT_SCROLLWIN_LINEUP
1116 : wxEVT_SCROLLWIN_LINEDOWN
,
1120 m_timerAutoScroll
->Start(50); // FIXME: make configurable
1124 void wxHtmlWindow::OnKeyUp(wxKeyEvent
& event
)
1126 if ( event
.GetKeyCode() == 'C' && event
.ControlDown() )
1135 void wxHtmlWindow::OnCopy(wxCommandEvent
& event
)
1144 IMPLEMENT_ABSTRACT_CLASS(wxHtmlProcessor
,wxObject
)
1146 IMPLEMENT_DYNAMIC_CLASS(wxHtmlWindow
,wxScrolledWindow
)
1148 BEGIN_EVENT_TABLE(wxHtmlWindow
, wxScrolledWindow
)
1149 EVT_SIZE(wxHtmlWindow::OnSize
)
1150 EVT_LEFT_DOWN(wxHtmlWindow::OnMouseDown
)
1151 EVT_LEFT_UP(wxHtmlWindow::OnMouseUp
)
1152 EVT_RIGHT_UP(wxHtmlWindow::OnMouseUp
)
1153 EVT_MOTION(wxHtmlWindow::OnMouseMove
)
1154 EVT_IDLE(wxHtmlWindow::OnIdle
)
1155 EVT_ERASE_BACKGROUND(wxHtmlWindow::OnEraseBackground
)
1156 EVT_PAINT(wxHtmlWindow::OnPaint
)
1158 EVT_ENTER_WINDOW(wxHtmlWindow::OnMouseEnter
)
1159 EVT_LEAVE_WINDOW(wxHtmlWindow::OnMouseLeave
)
1160 EVT_KEY_UP(wxHtmlWindow::OnKeyUp
)
1161 EVT_MENU(wxID_COPY
, wxHtmlWindow::OnCopy
)
1169 // A module to allow initialization/cleanup
1170 // without calling these functions from app.cpp or from
1171 // the user's application.
1173 class wxHtmlWinModule
: public wxModule
1175 DECLARE_DYNAMIC_CLASS(wxHtmlWinModule
)
1177 wxHtmlWinModule() : wxModule() {}
1178 bool OnInit() { return TRUE
; }
1179 void OnExit() { wxHtmlWindow::CleanUpStatics(); }
1182 IMPLEMENT_DYNAMIC_CLASS(wxHtmlWinModule
, wxModule
)
1185 // This hack forces the linker to always link in m_* files
1186 // (wxHTML doesn't work without handlers from these files)
1187 #include "wx/html/forcelnk.h"
1188 FORCE_WXHTML_MODULES()