]> git.saurik.com Git - wxWidgets.git/commitdiff
fix client to screen (and vice versa) conversion
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 13 Feb 2006 00:49:24 +0000 (00:49 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 13 Feb 2006 00:49:24 +0000 (00:49 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37546 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/generic/listctrl.h
src/generic/listctrl.cpp

index 5eaaeb0fda5e7cfe3418e59037da97ded2151386..ef2091f26971d8e3b4816fc03d8350d2bf444d44 100644 (file)
@@ -229,6 +229,11 @@ public:
 protected:
     virtual bool DoPopupMenu( wxMenu *menu, int x, int y );
 
+    // take into account the coordinates difference between the container
+    // window and the list control window itself here
+    virtual void DoClientToScreen( int *x, int *y ) const;
+    virtual void DoScreenToClient( int *x, int *y ) const;
+
     virtual wxSize DoGetBestSize() const;
 
     // return the text for the given column of the given item
index c7821beb30b933f37bdd8fb66b54314e5adf0dcd..7fd895104b81dc118ec1743677f33fb8bd5d2899 100644 (file)
@@ -5432,6 +5432,16 @@ bool wxGenericListCtrl::DoPopupMenu( wxMenu *menu, int x, int y )
 #endif
 }
 
+void wxGenericListCtrl::DoClientToScreen( int *x, int *y ) const
+{
+    return m_mainWin->DoClientToScreen(x, y);
+}
+
+void wxGenericListCtrl::DoScreenToClient( int *x, int *y ) const
+{
+    return m_mainWin->DoScreenToClient(x, y);
+}
+
 void wxGenericListCtrl::SetFocus()
 {
     // The test in window.cpp fails as we are a composite