From: Stefan Csomor Date: Sat, 3 Apr 2004 14:41:34 +0000 (+0000) Subject: concentrating content and structure region calculations X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/f5ea731f5daa211ffcb44b3175f09f3fd229da4e?ds=inline concentrating content and structure region calculations git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26586 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/mac/carbon/toplevel.h b/include/wx/mac/carbon/toplevel.h index 1eadf131e3..bf854094b9 100644 --- a/include/wx/mac/carbon/toplevel.h +++ b/include/wx/mac/carbon/toplevel.h @@ -102,6 +102,8 @@ public: WXEVENTHANDLERREF MacGetEventHandler() { return m_macEventHandler ; } + virtual void MacGetContentAreaInset( int &left , int &top , int &right , int &bottom ) ; + protected: // common part of all ctors void Init(); diff --git a/include/wx/mac/carbon/window.h b/include/wx/mac/carbon/window.h index b97187fd46..2d2258c7e2 100644 --- a/include/wx/mac/carbon/window.h +++ b/include/wx/mac/carbon/window.h @@ -230,6 +230,9 @@ public: // calculates the real window position and size from the native control void MacGetPositionAndSizeFromControl(int& x, int& y, int& w, int& h) const ; + // gets the inset from every part + virtual void MacGetContentAreaInset( int &left , int &top , int &right , int &bottom ) ; + protected: // For controls like radiobuttons which are really composite wxList m_subControls;