]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/osx/core/private.h
Removed non-implemented function prototype OnMouseWheel() from wxVListBoxComboPopup
[wxWidgets.git] / include / wx / osx / core / private.h
index d56484f7c57dca8bbe56f47a8d27bc19bb38866a..5eec53c0c6d3fe4cff2653383ba664062ffc8280 100644 (file)
@@ -234,6 +234,13 @@ public :
     virtual void        GetPosition( int &x, int &y ) const = 0;
     virtual void        GetSize( int &width, int &height ) const = 0;
     virtual void        SetControlSize( wxWindowVariant variant ) = 0;
+    
+    // the native coordinates may have an 'aura' for shadows etc, if this is the case the layout
+    // inset indicates on which insets the real control is drawn
+    virtual void        GetLayoutInset(int &left , int &top , int &right, int &bottom) const
+    {
+        left = top = right = bottom = 0;
+    }
 
     // native view coordinates are topleft to bottom right (flipped regarding CoreGraphics origin)
     virtual bool        IsFlipped() const { return true; }