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"
36 #include "wx/dataobj.h"
38 #include "wx/dcmemory.h"
40 #include "wx/arrimpl.cpp"
41 #include "wx/listimpl.cpp"
46 // ----------------------------------------------------------------------------
47 // wxHtmlWinAutoScrollTimer: the timer used to generate a stream of scroll
48 // events when a captured mouse is held outside the window
49 // ----------------------------------------------------------------------------
51 class wxHtmlWinAutoScrollTimer
: public wxTimer
54 wxHtmlWinAutoScrollTimer(wxScrolledWindow
*win
,
55 wxEventType eventTypeToSend
,
59 m_eventType
= eventTypeToSend
;
64 virtual void Notify();
67 wxScrolledWindow
*m_win
;
68 wxEventType m_eventType
;
72 DECLARE_NO_COPY_CLASS(wxHtmlWinAutoScrollTimer
)
75 void wxHtmlWinAutoScrollTimer::Notify()
77 // only do all this as long as the window is capturing the mouse
78 if ( wxWindow::GetCapture() != m_win
)
82 else // we still capture the mouse, continue generating events
84 // first scroll the window if we are allowed to do it
85 wxScrollWinEvent
event1(m_eventType
, m_pos
, m_orient
);
86 event1
.SetEventObject(m_win
);
87 if ( m_win
->GetEventHandler()->ProcessEvent(event1
) )
89 // and then send a pseudo mouse-move event to refresh the selection
90 wxMouseEvent
event2(wxEVT_MOTION
);
91 wxGetMousePosition(&event2
.m_x
, &event2
.m_y
);
93 // the mouse event coordinates should be client, not screen as
94 // returned by wxGetMousePosition
95 wxWindow
*parentTop
= m_win
;
96 while ( parentTop
->GetParent() )
97 parentTop
= parentTop
->GetParent();
98 wxPoint ptOrig
= parentTop
->GetPosition();
99 event2
.m_x
-= ptOrig
.x
;
100 event2
.m_y
-= ptOrig
.y
;
102 event2
.SetEventObject(m_win
);
104 // FIXME: we don't fill in the other members - ok?
105 m_win
->GetEventHandler()->ProcessEvent(event2
);
107 else // can't scroll further, stop
114 #endif // wxUSE_CLIPBOARD
118 //-----------------------------------------------------------------------------
120 //-----------------------------------------------------------------------------
122 // item of history list
123 class WXDLLIMPEXP_HTML wxHtmlHistoryItem
126 wxHtmlHistoryItem(const wxString
& p
, const wxString
& a
) {m_Page
= p
, m_Anchor
= a
, m_Pos
= 0;}
127 int GetPos() const {return m_Pos
;}
128 void SetPos(int p
) {m_Pos
= p
;}
129 const wxString
& GetPage() const {return m_Page
;}
130 const wxString
& GetAnchor() const {return m_Anchor
;}
139 //-----------------------------------------------------------------------------
140 // our private arrays:
141 //-----------------------------------------------------------------------------
143 WX_DECLARE_OBJARRAY(wxHtmlHistoryItem
, wxHtmlHistoryArray
);
144 WX_DEFINE_OBJARRAY(wxHtmlHistoryArray
);
146 WX_DECLARE_LIST(wxHtmlProcessor
, wxHtmlProcessorList
);
147 WX_DEFINE_LIST(wxHtmlProcessorList
);
149 //-----------------------------------------------------------------------------
151 //-----------------------------------------------------------------------------
154 void wxHtmlWindow::Init()
156 m_tmpMouseMoved
= FALSE
;
157 m_tmpLastLink
= NULL
;
158 m_tmpLastCell
= NULL
;
159 m_tmpCanDrawLocks
= 0;
160 m_FS
= new wxFileSystem();
161 m_RelatedStatusBar
= -1;
162 m_RelatedFrame
= NULL
;
163 m_TitleFormat
= wxT("%s");
164 m_OpenedPage
= m_OpenedAnchor
= m_OpenedPageTitle
= wxEmptyString
;
166 m_Parser
= new wxHtmlWinParser(this);
167 m_Parser
->SetFS(m_FS
);
170 m_History
= new wxHtmlHistoryArray
;
175 m_makingSelection
= false;
177 m_timerAutoScroll
= NULL
;
178 m_lastDoubleClick
= 0;
179 #endif // wxUSE_CLIPBOARD
183 bool wxHtmlWindow::Create(wxWindow
*parent
, wxWindowID id
,
184 const wxPoint
& pos
, const wxSize
& size
,
185 long style
, const wxString
& name
)
187 if (!wxScrolledWindow::Create(parent
, id
, pos
, size
,
188 style
| wxVSCROLL
| wxHSCROLL
, name
))
192 SetPage(wxT("<html><body></body></html>"));
197 wxHtmlWindow::~wxHtmlWindow()
201 #endif // wxUSE_CLIPBOARD
204 if (m_Cell
) delete m_Cell
;
206 WX_CLEAR_LIST(wxHtmlProcessorList
, *m_Processors
);
217 void wxHtmlWindow::SetRelatedFrame(wxFrame
* frame
, const wxString
& format
)
219 m_RelatedFrame
= frame
;
220 m_TitleFormat
= format
;
225 void wxHtmlWindow::SetRelatedStatusBar(int bar
)
227 m_RelatedStatusBar
= bar
;
232 void wxHtmlWindow::SetFonts(wxString normal_face
, wxString fixed_face
, const int *sizes
)
234 wxString op
= m_OpenedPage
;
236 m_Parser
->SetFonts(normal_face
, fixed_face
, sizes
);
237 // fonts changed => contents invalid, so reload the page:
238 SetPage(wxT("<html><body></body></html>"));
239 if (!op
.IsEmpty()) LoadPage(op
);
244 bool wxHtmlWindow::SetPage(const wxString
& source
)
246 wxString
newsrc(source
);
248 wxDELETE(m_selection
);
250 // pass HTML through registered processors:
251 if (m_Processors
|| m_GlobalProcessors
)
253 wxHtmlProcessorList::compatibility_iterator nodeL
, nodeG
;
256 nodeL
= (m_Processors
) ? m_Processors
->GetFirst() : wxHtmlProcessorList::compatibility_iterator();
257 nodeG
= (m_GlobalProcessors
) ? m_GlobalProcessors
->GetFirst() : wxHtmlProcessorList::compatibility_iterator();
259 // VS: there are two lists, global and local, both of them sorted by
260 // priority. Since we have to go through _both_ lists with
261 // decreasing priority, we "merge-sort" the lists on-line by
262 // processing that one of the two heads that has higher priority
263 // in every iteration
264 while (nodeL
|| nodeG
)
266 prL
= (nodeL
) ? nodeL
->GetData()->GetPriority() : -1;
267 prG
= (nodeG
) ? nodeG
->GetData()->GetPriority() : -1;
270 if (nodeL
->GetData()->IsEnabled())
271 newsrc
= nodeL
->GetData()->Process(newsrc
);
272 nodeL
= nodeL
->GetNext();
276 if (nodeG
->GetData()->IsEnabled())
277 newsrc
= nodeG
->GetData()->Process(newsrc
);
278 nodeG
= nodeG
->GetNext();
283 // ...and run the parser on it:
284 wxClientDC
*dc
= new wxClientDC(this);
285 dc
->SetMapMode(wxMM_TEXT
);
286 SetBackgroundColour(wxColour(0xFF, 0xFF, 0xFF));
287 m_OpenedPage
= m_OpenedAnchor
= m_OpenedPageTitle
= wxEmptyString
;
294 m_Cell
= (wxHtmlContainerCell
*) m_Parser
->Parse(newsrc
);
296 m_Cell
->SetIndent(m_Borders
, wxHTML_INDENT_ALL
, wxHTML_UNITS_PIXELS
);
297 m_Cell
->SetAlignHor(wxHTML_ALIGN_CENTER
);
299 if (m_tmpCanDrawLocks
== 0)
304 bool wxHtmlWindow::AppendToPage(const wxString
& source
)
306 return SetPage(*(GetParser()->GetSource()) + source
);
309 bool wxHtmlWindow::LoadPage(const wxString
& location
)
311 wxBusyCursor busyCursor
;
315 bool needs_refresh
= FALSE
;
318 if (m_HistoryOn
&& (m_HistoryPos
!= -1))
320 // store scroll position into history item:
322 GetViewStart(&x
, &y
);
323 (*m_History
)[m_HistoryPos
].SetPos(y
);
326 if (location
[0] == wxT('#'))
329 wxString anch
= location
.Mid(1) /*1 to end*/;
331 rt_val
= ScrollToAnchor(anch
);
334 else if (location
.Find(wxT('#')) != wxNOT_FOUND
&& location
.BeforeFirst(wxT('#')) == m_OpenedPage
)
336 wxString anch
= location
.AfterFirst(wxT('#'));
338 rt_val
= ScrollToAnchor(anch
);
341 else if (location
.Find(wxT('#')) != wxNOT_FOUND
&&
342 (m_FS
->GetPath() + location
.BeforeFirst(wxT('#'))) == m_OpenedPage
)
344 wxString anch
= location
.AfterFirst(wxT('#'));
346 rt_val
= ScrollToAnchor(anch
);
352 needs_refresh
= TRUE
;
354 if (m_RelatedStatusBar
!= -1)
356 m_RelatedFrame
->SetStatusText(_("Connecting..."), m_RelatedStatusBar
);
360 f
= m_Parser
->OpenURL(wxHTML_URL_PAGE
, location
);
362 // try to interpret 'location' as filename instead of URL:
365 wxFileName
fn(location
);
366 wxString location2
= wxFileSystem::FileNameToURL(fn
);
367 f
= m_Parser
->OpenURL(wxHTML_URL_PAGE
, location2
);
372 wxLogError(_("Unable to open requested HTML document: %s"), location
.c_str());
379 wxList::compatibility_iterator node
;
380 wxString src
= wxEmptyString
;
382 if (m_RelatedStatusBar
!= -1)
384 wxString msg
= _("Loading : ") + location
;
385 m_RelatedFrame
->SetStatusText(msg
, m_RelatedStatusBar
);
389 node
= m_Filters
.GetFirst();
392 wxHtmlFilter
*h
= (wxHtmlFilter
*) node
->GetData();
395 src
= h
->ReadFile(*f
);
398 node
= node
->GetNext();
400 if (src
== wxEmptyString
)
402 if (m_DefaultFilter
== NULL
) m_DefaultFilter
= GetDefaultFilter();
403 src
= m_DefaultFilter
->ReadFile(*f
);
406 m_FS
->ChangePathTo(f
->GetLocation());
407 rt_val
= SetPage(src
);
408 m_OpenedPage
= f
->GetLocation();
409 if (f
->GetAnchor() != wxEmptyString
)
411 ScrollToAnchor(f
->GetAnchor());
416 if (m_RelatedStatusBar
!= -1) m_RelatedFrame
->SetStatusText(_("Done"), m_RelatedStatusBar
);
420 if (m_HistoryOn
) // add this page to history there:
422 int c
= m_History
->GetCount() - (m_HistoryPos
+ 1);
424 if (m_HistoryPos
< 0 ||
425 (*m_History
)[m_HistoryPos
].GetPage() != m_OpenedPage
||
426 (*m_History
)[m_HistoryPos
].GetAnchor() != m_OpenedAnchor
)
429 for (int i
= 0; i
< c
; i
++)
430 m_History
->RemoveAt(m_HistoryPos
);
431 m_History
->Add(new wxHtmlHistoryItem(m_OpenedPage
, m_OpenedAnchor
));
435 if (m_OpenedPageTitle
== wxEmptyString
)
436 OnSetTitle(wxFileNameFromPath(m_OpenedPage
));
450 bool wxHtmlWindow::LoadFile(const wxFileName
& filename
)
452 wxString url
= wxFileSystem::FileNameToURL(filename
);
453 return LoadPage(url
);
457 bool wxHtmlWindow::ScrollToAnchor(const wxString
& anchor
)
459 const wxHtmlCell
*c
= m_Cell
->Find(wxHTML_COND_ISANCHOR
, &anchor
);
462 wxLogWarning(_("HTML anchor %s does not exist."), anchor
.c_str());
469 for (y
= 0; c
!= NULL
; c
= c
->GetParent()) y
+= c
->GetPosY();
470 Scroll(-1, y
/ wxHTML_SCROLL_STEP
);
471 m_OpenedAnchor
= anchor
;
477 void wxHtmlWindow::OnSetTitle(const wxString
& title
)
482 tit
.Printf(m_TitleFormat
, title
.c_str());
483 m_RelatedFrame
->SetTitle(tit
);
485 m_OpenedPageTitle
= title
;
492 void wxHtmlWindow::CreateLayout()
494 int ClientWidth
, ClientHeight
;
498 if (m_Style
& wxHW_SCROLLBAR_NEVER
)
500 SetScrollbars(wxHTML_SCROLL_STEP
, 1, m_Cell
->GetWidth() / wxHTML_SCROLL_STEP
, 0); // always off
501 GetClientSize(&ClientWidth
, &ClientHeight
);
502 m_Cell
->Layout(ClientWidth
);
506 GetClientSize(&ClientWidth
, &ClientHeight
);
507 m_Cell
->Layout(ClientWidth
);
508 if (ClientHeight
< m_Cell
->GetHeight() + GetCharHeight())
511 wxHTML_SCROLL_STEP
, wxHTML_SCROLL_STEP
,
512 m_Cell
->GetWidth() / wxHTML_SCROLL_STEP
,
513 (m_Cell
->GetHeight() + GetCharHeight()) / wxHTML_SCROLL_STEP
514 /*cheat: top-level frag is always container*/);
516 else /* we fit into window, no need for scrollbars */
518 SetScrollbars(wxHTML_SCROLL_STEP
, 1, m_Cell
->GetWidth() / wxHTML_SCROLL_STEP
, 0); // disable...
519 GetClientSize(&ClientWidth
, &ClientHeight
);
520 m_Cell
->Layout(ClientWidth
); // ...and relayout
527 void wxHtmlWindow::ReadCustomization(wxConfigBase
*cfg
, wxString path
)
532 wxString p_fff
, p_ffn
;
534 if (path
!= wxEmptyString
)
536 oldpath
= cfg
->GetPath();
540 m_Borders
= cfg
->Read(wxT("wxHtmlWindow/Borders"), m_Borders
);
541 p_fff
= cfg
->Read(wxT("wxHtmlWindow/FontFaceFixed"), m_Parser
->m_FontFaceFixed
);
542 p_ffn
= cfg
->Read(wxT("wxHtmlWindow/FontFaceNormal"), m_Parser
->m_FontFaceNormal
);
543 for (int i
= 0; i
< 7; i
++)
545 tmp
.Printf(wxT("wxHtmlWindow/FontsSize%i"), i
);
546 p_fontsizes
[i
] = cfg
->Read(tmp
, m_Parser
->m_FontsSizes
[i
]);
548 SetFonts(p_ffn
, p_fff
, p_fontsizes
);
550 if (path
!= wxEmptyString
)
551 cfg
->SetPath(oldpath
);
556 void wxHtmlWindow::WriteCustomization(wxConfigBase
*cfg
, wxString path
)
561 if (path
!= wxEmptyString
)
563 oldpath
= cfg
->GetPath();
567 cfg
->Write(wxT("wxHtmlWindow/Borders"), (long) m_Borders
);
568 cfg
->Write(wxT("wxHtmlWindow/FontFaceFixed"), m_Parser
->m_FontFaceFixed
);
569 cfg
->Write(wxT("wxHtmlWindow/FontFaceNormal"), m_Parser
->m_FontFaceNormal
);
570 for (int i
= 0; i
< 7; i
++)
572 tmp
.Printf(wxT("wxHtmlWindow/FontsSize%i"), i
);
573 cfg
->Write(tmp
, (long) m_Parser
->m_FontsSizes
[i
]);
576 if (path
!= wxEmptyString
)
577 cfg
->SetPath(oldpath
);
582 bool wxHtmlWindow::HistoryBack()
586 if (m_HistoryPos
< 1) return FALSE
;
588 // store scroll position into history item:
590 GetViewStart(&x
, &y
);
591 (*m_History
)[m_HistoryPos
].SetPos(y
);
593 // go to previous position:
596 l
= (*m_History
)[m_HistoryPos
].GetPage();
597 a
= (*m_History
)[m_HistoryPos
].GetAnchor();
600 if (a
== wxEmptyString
) LoadPage(l
);
601 else LoadPage(l
+ wxT("#") + a
);
604 Scroll(0, (*m_History
)[m_HistoryPos
].GetPos());
609 bool wxHtmlWindow::HistoryCanBack()
611 if (m_HistoryPos
< 1) return FALSE
;
616 bool wxHtmlWindow::HistoryForward()
620 if (m_HistoryPos
== -1) return FALSE
;
621 if (m_HistoryPos
>= (int)m_History
->GetCount() - 1)return FALSE
;
623 m_OpenedPage
= wxEmptyString
; // this will disable adding new entry into history in LoadPage()
626 l
= (*m_History
)[m_HistoryPos
].GetPage();
627 a
= (*m_History
)[m_HistoryPos
].GetAnchor();
630 if (a
== wxEmptyString
) LoadPage(l
);
631 else LoadPage(l
+ wxT("#") + a
);
634 Scroll(0, (*m_History
)[m_HistoryPos
].GetPos());
639 bool wxHtmlWindow::HistoryCanForward()
641 if (m_HistoryPos
== -1) return FALSE
;
642 if (m_HistoryPos
>= (int)m_History
->GetCount() - 1)return FALSE
;
647 void wxHtmlWindow::HistoryClear()
653 void wxHtmlWindow::AddProcessor(wxHtmlProcessor
*processor
)
657 m_Processors
= new wxHtmlProcessorList
;
659 wxHtmlProcessorList::compatibility_iterator node
;
661 for (node
= m_Processors
->GetFirst(); node
; node
= node
->GetNext())
663 if (processor
->GetPriority() > node
->GetData()->GetPriority())
665 m_Processors
->Insert(node
, processor
);
669 m_Processors
->Append(processor
);
672 /*static */ void wxHtmlWindow::AddGlobalProcessor(wxHtmlProcessor
*processor
)
674 if (!m_GlobalProcessors
)
676 m_GlobalProcessors
= new wxHtmlProcessorList
;
678 wxHtmlProcessorList::compatibility_iterator node
;
680 for (node
= m_GlobalProcessors
->GetFirst(); node
; node
= node
->GetNext())
682 if (processor
->GetPriority() > node
->GetData()->GetPriority())
684 m_GlobalProcessors
->Insert(node
, processor
);
688 m_GlobalProcessors
->Append(processor
);
693 wxList
wxHtmlWindow::m_Filters
;
694 wxHtmlFilter
*wxHtmlWindow::m_DefaultFilter
= NULL
;
695 wxHtmlProcessorList
*wxHtmlWindow::m_GlobalProcessors
= NULL
;
697 void wxHtmlWindow::CleanUpStatics()
699 wxDELETE(m_DefaultFilter
);
700 WX_CLEAR_LIST(wxList
, m_Filters
);
701 if (m_GlobalProcessors
)
702 WX_CLEAR_LIST(wxHtmlProcessorList
, *m_GlobalProcessors
);
703 wxDELETE(m_GlobalProcessors
);
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 #endif // wxUSE_CLIPBOARD
754 void wxHtmlWindow::CopySelection(ClipboardType t
)
760 wxTheClipboard
->UsePrimarySelection(t
== Primary
);
762 // Primary selection exists only under X11, so don't do anything under
763 // the other platforms when we try to access it
765 // TODO: this should be abstracted at wxClipboard level!
768 #endif // __UNIX__/!__UNIX__
770 if ( wxTheClipboard
->Open() )
772 const wxString
txt(SelectionToText());
773 wxTheClipboard
->SetData(new wxTextDataObject(txt
));
774 wxTheClipboard
->Close();
775 wxLogTrace(_T("wxhtmlselection"),
776 _("Copied to clipboard:\"%s\""), txt
.c_str());
779 #endif // wxUSE_CLIPBOARD
783 void wxHtmlWindow::OnLinkClicked(const wxHtmlLinkInfo
& link
)
785 const wxMouseEvent
*e
= link
.GetEvent();
786 if (e
== NULL
|| e
->LeftUp())
787 LoadPage(link
.GetHref());
790 void wxHtmlWindow::OnCellClicked(wxHtmlCell
*cell
,
791 wxCoord x
, wxCoord y
,
792 const wxMouseEvent
& event
)
794 wxCHECK_RET( cell
, _T("can't be called with NULL cell") );
796 cell
->OnMouseClick(this, x
, y
, event
);
799 void wxHtmlWindow::OnCellMouseHover(wxHtmlCell
* WXUNUSED(cell
),
800 wxCoord
WXUNUSED(x
), wxCoord
WXUNUSED(y
))
805 void wxHtmlWindow::OnEraseBackground(wxEraseEvent
& event
)
809 void wxHtmlWindow::OnPaint(wxPaintEvent
& WXUNUSED(event
))
813 if (m_tmpCanDrawLocks
> 0 || m_Cell
== NULL
) return;
816 GetViewStart(&x
, &y
);
817 wxRect rect
= GetUpdateRegion().GetBox();
818 wxSize sz
= GetSize();
822 m_backBuffer
= new wxBitmap(sz
.x
, sz
.y
);
823 dcm
.SelectObject(*m_backBuffer
);
824 dcm
.SetBackground(wxBrush(GetBackgroundColour(), wxSOLID
));
827 dcm
.SetMapMode(wxMM_TEXT
);
828 dcm
.SetBackgroundMode(wxTRANSPARENT
);
830 wxHtmlRenderingInfo rinfo
;
831 wxDefaultHtmlRenderingStyle rstyle
;
832 rinfo
.SetSelection(m_selection
);
833 rinfo
.SetStyle(&rstyle
);
834 m_Cell
->Draw(dcm
, 0, 0,
835 y
* wxHTML_SCROLL_STEP
+ rect
.GetTop(),
836 y
* wxHTML_SCROLL_STEP
+ rect
.GetBottom(),
839 //#define DEBUG_HTML_SELECTION
840 #ifdef DEBUG_HTML_SELECTION
843 wxGetMousePosition(&xc
, &yc
);
844 ScreenToClient(&xc
, &yc
);
845 CalcUnscrolledPosition(xc
, yc
, &x
, &y
);
846 wxHtmlCell
*at
= m_Cell
->FindCellByPos(x
, y
);
848 m_Cell
->FindCellByPos(x
, y
, wxHTML_FIND_NEAREST_BEFORE
);
850 m_Cell
->FindCellByPos(x
, y
, wxHTML_FIND_NEAREST_AFTER
);
852 dcm
.SetBrush(*wxTRANSPARENT_BRUSH
);
853 dcm
.SetPen(*wxBLACK_PEN
);
855 dcm
.DrawRectangle(at
->GetAbsPos(),
856 wxSize(at
->GetWidth(),at
->GetHeight()));
857 dcm
.SetPen(*wxGREEN_PEN
);
859 dcm
.DrawRectangle(before
->GetAbsPos().x
+1, before
->GetAbsPos().y
+1,
860 before
->GetWidth()-2,before
->GetHeight()-2);
861 dcm
.SetPen(*wxRED_PEN
);
863 dcm
.DrawRectangle(after
->GetAbsPos().x
+2, after
->GetAbsPos().y
+2,
864 after
->GetWidth()-4,after
->GetHeight()-4);
868 dcm
.SetDeviceOrigin(0,0);
869 dc
.Blit(0, rect
.GetTop(),
870 sz
.x
, rect
.GetBottom() - rect
.GetTop() + 1,
878 void wxHtmlWindow::OnSize(wxSizeEvent
& event
)
880 wxDELETE(m_backBuffer
);
882 wxScrolledWindow::OnSize(event
);
885 // Recompute selection if necessary:
888 m_selection
->Set(m_selection
->GetFromCell(),
889 m_selection
->GetToCell());
890 m_selection
->ClearPrivPos();
897 void wxHtmlWindow::OnMouseMove(wxMouseEvent
& event
)
899 m_tmpMouseMoved
= true;
902 void wxHtmlWindow::OnMouseDown(wxMouseEvent
& event
)
905 if ( event
.LeftDown() && IsSelectionEnabled() )
907 const long TRIPLECLICK_LEN
= 200; // 0.2 sec after doubleclick
908 if ( wxGetLocalTimeMillis() - m_lastDoubleClick
<= TRIPLECLICK_LEN
)
910 SelectLine(CalcUnscrolledPosition(event
.GetPosition()));
916 m_makingSelection
= true;
920 wxDELETE(m_selection
);
923 m_tmpSelFromPos
= CalcUnscrolledPosition(event
.GetPosition());
924 m_tmpSelFromCell
= NULL
;
929 #endif // wxUSE_CLIPBOARD
932 void wxHtmlWindow::OnMouseUp(wxMouseEvent
& event
)
935 if ( m_makingSelection
)
938 m_makingSelection
= false;
940 // did the user move the mouse far enough from starting point?
943 CopySelection(Primary
);
945 // we don't want mouse up event that ended selecting to be
946 // handled as mouse click and e.g. follow hyperlink:
950 #endif // wxUSE_CLIPBOARD
955 wxPoint pos
= CalcUnscrolledPosition(event
.GetPosition());
956 wxHtmlCell
*cell
= m_Cell
->FindCellByPos(pos
.x
, pos
.y
);
958 // check is needed because FindCellByPos returns terminal cell and
959 // containers may have empty borders -- in this case NULL will be
962 OnCellClicked(cell
, pos
.x
, pos
.y
, event
);
968 void wxHtmlWindow::OnInternalIdle()
970 wxWindow::OnInternalIdle();
972 if (m_tmpMouseMoved
&& (m_Cell
!= NULL
))
974 #ifdef DEBUG_HTML_SELECTION
978 wxGetMousePosition(&xc
, &yc
);
979 ScreenToClient(&xc
, &yc
);
980 CalcUnscrolledPosition(xc
, yc
, &x
, &y
);
982 wxHtmlCell
*cell
= m_Cell
->FindCellByPos(x
, y
);
984 // handle selection update:
985 if ( m_makingSelection
)
987 if ( !m_tmpSelFromCell
)
988 m_tmpSelFromCell
= m_Cell
->FindCellByPos(
989 m_tmpSelFromPos
.x
,m_tmpSelFromPos
.y
);
991 // NB: a trick - we adjust selFromPos to be upper left or bottom
992 // right corner of the first cell of the selection depending
993 // on whether the mouse is moving to the right or to the left.
994 // This gives us more "natural" behaviour when selecting
995 // a line (specifically, first cell of the next line is not
996 // included if you drag selection from left to right over
999 if ( !m_tmpSelFromCell
)
1001 dirFromPos
= m_tmpSelFromPos
;
1005 dirFromPos
= m_tmpSelFromCell
->GetAbsPos();
1006 if ( x
< m_tmpSelFromPos
.x
)
1008 dirFromPos
.x
+= m_tmpSelFromCell
->GetWidth();
1009 dirFromPos
.y
+= m_tmpSelFromCell
->GetHeight();
1012 bool goingDown
= dirFromPos
.y
< y
||
1013 (dirFromPos
.y
== y
&& dirFromPos
.x
< x
);
1015 // determine selection span:
1016 if ( /*still*/ !m_tmpSelFromCell
)
1020 m_tmpSelFromCell
= m_Cell
->FindCellByPos(
1021 m_tmpSelFromPos
.x
,m_tmpSelFromPos
.y
,
1022 wxHTML_FIND_NEAREST_AFTER
);
1023 if (!m_tmpSelFromCell
)
1024 m_tmpSelFromCell
= m_Cell
->GetFirstTerminal();
1028 m_tmpSelFromCell
= m_Cell
->FindCellByPos(
1029 m_tmpSelFromPos
.x
,m_tmpSelFromPos
.y
,
1030 wxHTML_FIND_NEAREST_BEFORE
);
1031 if (!m_tmpSelFromCell
)
1032 m_tmpSelFromCell
= m_Cell
->GetLastTerminal();
1036 wxHtmlCell
*selcell
= cell
;
1041 selcell
= m_Cell
->FindCellByPos(x
, y
,
1042 wxHTML_FIND_NEAREST_BEFORE
);
1044 selcell
= m_Cell
->GetLastTerminal();
1048 selcell
= m_Cell
->FindCellByPos(x
, y
,
1049 wxHTML_FIND_NEAREST_AFTER
);
1051 selcell
= m_Cell
->GetFirstTerminal();
1055 // NB: it may *rarely* happen that the code above didn't find one
1056 // of the cells, e.g. if wxHtmlWindow doesn't contain any
1058 if ( selcell
&& m_tmpSelFromCell
)
1062 // start selecting only if mouse movement was big enough
1063 // (otherwise it was meant as mouse click, not selection):
1064 const int PRECISION
= 2;
1065 wxPoint diff
= m_tmpSelFromPos
- wxPoint(x
,y
);
1066 if (abs(diff
.x
) > PRECISION
|| abs(diff
.y
) > PRECISION
)
1068 m_selection
= new wxHtmlSelection();
1073 if ( m_tmpSelFromCell
->IsBefore(selcell
) )
1075 m_selection
->Set(m_tmpSelFromPos
, m_tmpSelFromCell
,
1076 wxPoint(x
,y
), selcell
); }
1079 m_selection
->Set(wxPoint(x
,y
), selcell
,
1080 m_tmpSelFromPos
, m_tmpSelFromCell
);
1082 m_selection
->ClearPrivPos();
1088 // handle cursor and status bar text changes:
1089 if ( cell
!= m_tmpLastCell
)
1091 wxHtmlLinkInfo
*lnk
= cell
? cell
->GetLink(x
, y
) : NULL
;
1094 cur
= cell
->GetCursor();
1096 cur
= *wxSTANDARD_CURSOR
;
1099 if (lnk
!= m_tmpLastLink
)
1103 if (m_RelatedStatusBar
!= -1)
1104 m_RelatedFrame
->SetStatusText(wxEmptyString
,
1105 m_RelatedStatusBar
);
1109 if (m_RelatedStatusBar
!= -1)
1110 m_RelatedFrame
->SetStatusText(lnk
->GetHref(),
1111 m_RelatedStatusBar
);
1113 m_tmpLastLink
= lnk
;
1116 m_tmpLastCell
= cell
;
1118 else // mouse moved but stayed in the same cell
1121 OnCellMouseHover(cell
, x
, y
);
1124 m_tmpMouseMoved
= FALSE
;
1129 void wxHtmlWindow::StopAutoScrolling()
1131 if ( m_timerAutoScroll
)
1133 wxDELETE(m_timerAutoScroll
);
1137 void wxHtmlWindow::OnMouseEnter(wxMouseEvent
& event
)
1139 StopAutoScrolling();
1143 void wxHtmlWindow::OnMouseLeave(wxMouseEvent
& event
)
1145 // don't prevent the usual processing of the event from taking place
1148 // when a captured mouse leave a scrolled window we start generate
1149 // scrolling events to allow, for example, extending selection beyond the
1150 // visible area in some controls
1151 if ( wxWindow::GetCapture() == this )
1153 // where is the mouse leaving?
1155 wxPoint pt
= event
.GetPosition();
1158 orient
= wxHORIZONTAL
;
1161 else if ( pt
.y
< 0 )
1163 orient
= wxVERTICAL
;
1166 else // we're lower or to the right of the window
1168 wxSize size
= GetClientSize();
1169 if ( pt
.x
> size
.x
)
1171 orient
= wxHORIZONTAL
;
1172 pos
= GetVirtualSize().x
/ wxHTML_SCROLL_STEP
;
1174 else if ( pt
.y
> size
.y
)
1176 orient
= wxVERTICAL
;
1177 pos
= GetVirtualSize().y
/ wxHTML_SCROLL_STEP
;
1179 else // this should be impossible
1181 // but seems to happen sometimes under wxMSW - maybe it's a bug
1182 // there but for now just ignore it
1184 //wxFAIL_MSG( _T("can't understand where has mouse gone") );
1190 // only start the auto scroll timer if the window can be scrolled in
1192 if ( !HasScrollbar(orient
) )
1195 delete m_timerAutoScroll
;
1196 m_timerAutoScroll
= new wxHtmlWinAutoScrollTimer
1199 pos
== 0 ? wxEVT_SCROLLWIN_LINEUP
1200 : wxEVT_SCROLLWIN_LINEDOWN
,
1204 m_timerAutoScroll
->Start(50); // FIXME: make configurable
1208 void wxHtmlWindow::OnKeyUp(wxKeyEvent
& event
)
1210 if ( IsSelectionEnabled() &&
1211 event
.GetKeyCode() == 'C' && event
.ControlDown() )
1218 void wxHtmlWindow::OnCopy(wxCommandEvent
& event
)
1224 void wxHtmlWindow::OnDoubleClick(wxMouseEvent
& event
)
1226 // select word under cursor:
1227 if ( IsSelectionEnabled() )
1229 SelectWord(CalcUnscrolledPosition(event
.GetPosition()));
1231 CopySelection(Primary
);
1233 m_lastDoubleClick
= wxGetLocalTimeMillis();
1239 void wxHtmlWindow::SelectWord(const wxPoint
& pos
)
1241 wxHtmlCell
*cell
= m_Cell
->FindCellByPos(pos
.x
, pos
.y
);
1245 m_selection
= new wxHtmlSelection();
1246 m_selection
->Set(cell
, cell
);
1247 RefreshRect(wxRect(CalcScrolledPosition(cell
->GetAbsPos()),
1248 wxSize(cell
->GetWidth(), cell
->GetHeight())));
1252 void wxHtmlWindow::SelectLine(const wxPoint
& pos
)
1254 wxHtmlCell
*cell
= m_Cell
->FindCellByPos(pos
.x
, pos
.y
);
1257 // We use following heuristic to find a "line": let the line be all
1258 // cells in same container as the cell under mouse cursor that are
1259 // neither completely above nor completely bellow the clicked cell
1260 // (i.e. are likely to be words positioned on same line of text).
1262 int y1
= cell
->GetAbsPos().y
;
1263 int y2
= y1
+ cell
->GetHeight();
1265 const wxHtmlCell
*c
;
1266 const wxHtmlCell
*before
= NULL
;
1267 const wxHtmlCell
*after
= NULL
;
1269 // find last cell of line:
1270 for ( c
= cell
->GetNext(); c
; c
= c
->GetNext())
1272 y
= c
->GetAbsPos().y
;
1273 if ( y
+ c
->GetHeight() > y1
&& y
< y2
)
1281 // find first cell of line:
1282 for ( c
= cell
->GetParent()->GetFirstChild();
1283 c
&& c
!= cell
; c
= c
->GetNext())
1285 y
= c
->GetAbsPos().y
;
1286 if ( y
+ c
->GetHeight() > y1
&& y
< y2
)
1298 m_selection
= new wxHtmlSelection();
1299 m_selection
->Set(before
, after
);
1304 #endif // wxUSE_CLIPBOARD
1308 IMPLEMENT_ABSTRACT_CLASS(wxHtmlProcessor
,wxObject
)
1310 IMPLEMENT_DYNAMIC_CLASS(wxHtmlWindow
,wxScrolledWindow
)
1312 BEGIN_EVENT_TABLE(wxHtmlWindow
, wxScrolledWindow
)
1313 EVT_SIZE(wxHtmlWindow::OnSize
)
1314 EVT_LEFT_DOWN(wxHtmlWindow::OnMouseDown
)
1315 EVT_LEFT_UP(wxHtmlWindow::OnMouseUp
)
1316 EVT_RIGHT_UP(wxHtmlWindow::OnMouseUp
)
1317 EVT_MOTION(wxHtmlWindow::OnMouseMove
)
1318 EVT_ERASE_BACKGROUND(wxHtmlWindow::OnEraseBackground
)
1319 EVT_PAINT(wxHtmlWindow::OnPaint
)
1321 EVT_LEFT_DCLICK(wxHtmlWindow::OnDoubleClick
)
1322 EVT_ENTER_WINDOW(wxHtmlWindow::OnMouseEnter
)
1323 EVT_LEAVE_WINDOW(wxHtmlWindow::OnMouseLeave
)
1324 EVT_KEY_UP(wxHtmlWindow::OnKeyUp
)
1325 EVT_MENU(wxID_COPY
, wxHtmlWindow::OnCopy
)
1326 #endif // wxUSE_CLIPBOARD
1333 // A module to allow initialization/cleanup
1334 // without calling these functions from app.cpp or from
1335 // the user's application.
1337 class wxHtmlWinModule
: public wxModule
1339 DECLARE_DYNAMIC_CLASS(wxHtmlWinModule
)
1341 wxHtmlWinModule() : wxModule() {}
1342 bool OnInit() { return TRUE
; }
1343 void OnExit() { wxHtmlWindow::CleanUpStatics(); }
1346 IMPLEMENT_DYNAMIC_CLASS(wxHtmlWinModule
, wxModule
)
1349 // This hack forces the linker to always link in m_* files
1350 // (wxHTML doesn't work without handlers from these files)
1351 #include "wx/html/forcelnk.h"
1352 FORCE_WXHTML_MODULES()
1354 #endif // wxUSE_HTML