]> git.saurik.com Git - wxWidgets.git/commitdiff
concentrating content and structure region calculations
authorStefan Csomor <csomor@advancedconcepts.ch>
Sat, 3 Apr 2004 14:41:34 +0000 (14:41 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Sat, 3 Apr 2004 14:41:34 +0000 (14:41 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26586 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/mac/carbon/toplevel.h
include/wx/mac/carbon/window.h

index 1eadf131e36bfa5f58694a06e4cac15b2389c8c1..bf854094b97f1e2b643705ce0fdeafc60d543ce6 100644 (file)
@@ -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();
index b97187fd46234e56fe758b62abeb9df0b43ab94d..2d2258c7e21c449afa85801bd197e3e55fd3f72d 100644 (file)
@@ -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;