+ virtual void MacPaintBorders( int left , int top ) ;
+ WXWindow MacGetRootWindow() const ;
+ wxTopLevelWindowMac* MacGetTopLevelWindow() const ;
+
+ virtual WXWidget MacGetContainerForEmbedding() ;
+
+ virtual long MacGetLeftBorderSize() const ;
+ virtual long MacGetRightBorderSize() const ;
+ virtual long MacGetTopBorderSize() const ;
+ virtual long MacGetBottomBorderSize() const ;
+
+ static long MacRemoveBordersFromStyle( long style ) ;
+ virtual void MacSuperChangedPosition() ;
+ virtual void MacTopLevelWindowChangedPosition() ;
+ virtual void MacSuperShown( bool show ) ;
+ virtual void MacSuperEnabled( bool enable ) ;
+ bool MacIsReallyShown() const ;
+ virtual void Update() ;
+ // for compatibility
+ void MacUpdateImmediately() { Update() ; }
+
+// virtual bool MacSetPortDrawingParams( const Point & localOrigin, const Rect & clipRect, WindowRef window , wxWindowMac* rootwin ) ;
+// virtual void MacGetPortParams(Point* localOrigin, Rect* clipRect, WindowRef *window , wxWindowMac** rootwin ) ;
+// virtual void MacGetPortClientParams(Point* localOrigin, Rect* clipRect, WindowRef *window , wxWindowMac** rootwin) ;
+ const wxBrush& MacGetBackgroundBrush() ;
+ const wxRegion& MacGetVisibleRegion() ;
+ bool MacIsWindowScrollbar( const wxScrollBar* sb ) { return (m_hScrollBar == sb || m_vScrollBar == sb) ; }
+ static wxWindowMac* s_lastMouseWindow ;
+private:
+protected:
+// RgnHandle m_macUpdateRgn ;
+// bool m_macEraseOnRedraw ;
+ wxBrush m_macBackgroundBrush ;
+ wxRegion m_macVisibleRegion ;
+ int m_x ;
+ int m_y ;
+ int m_width ;
+ int m_height ;
+
+ wxScrollBar* m_hScrollBar ;
+ wxScrollBar* m_vScrollBar ;
+ wxString m_label ;
+
+ void MacCreateScrollBars( long style ) ;
+ void MacRepositionScrollBars() ;