]> git.saurik.com Git - wxWidgets.git/blobdiff - src/html/htmlcell.cpp
wxHW_* flags, fixed client area problem
[wxWidgets.git] / src / html / htmlcell.cpp
index c70e0a281c92182a6dc1c890ad5f817f23ab2279..1019e1367f40f05afd369add34c89e53714cc00b 100644 (file)
@@ -6,14 +6,12 @@
 // Licence:     wxWindows Licence
 /////////////////////////////////////////////////////////////////////////////
 
-
 #ifdef __GNUG__
-#pragma implementation
+#pragma implementation "htmlcell.h"
 #endif
 
-#include <wx/wxprec.h>
+#include "wx/wxprec.h"
 
-#include "wx/defs.h"
 #if wxUSE_HTML
 
 #ifdef __BORDLANDC__
 #endif
 
 #ifndef WXPRECOMP
-#include <wx/wx.h>
+#include "wx/wx.h"
 #endif
 
-#include <wx/html/htmlcell.h>
-#include <wx/html/htmlwin.h>
+#include "wx/html/htmlcell.h"
+#include "wx/html/htmlwin.h"
 #include <stdlib.h>
 
 
-
-
 //-----------------------------------------------------------------------------
 // wxHtmlCell
 //-----------------------------------------------------------------------------
@@ -38,8 +34,9 @@
 
 void wxHtmlCell::OnMouseClick(wxWindow *parent, int x, int y, bool left, bool middle, bool right)
 {
-    if (GetLink() != wxEmptyString)
-        ((wxHtmlWindow*)parent) -> OnLinkClicked(GetLink());
+    wxString lnk = GetLink(x, y);
+    if (lnk != wxEmptyString)
+        ((wxHtmlWindow*)parent) -> OnLinkClicked(lnk);
         // note : this overcasting is legal because parent is *always* wxHtmlWindow
 }
 
@@ -70,10 +67,6 @@ void wxHtmlWordCell::Draw(wxDC& dc, int x, int y, int view_y1, int view_y2)
 
 
 
-
-
-
-
 //-----------------------------------------------------------------------------
 // wxHtmlContainerCell
 //-----------------------------------------------------------------------------