-
- wxRegion MacGetVisibleRegion( bool includeOuterStructures = false ) ;
- // returns true if children have to clipped to the content area (eg scrolled window)
- virtual bool MacClipChildren() const { return false ; }
- // returns true if the grandchildren have to be clipped to the children's content area (eg
- // splitter window)
- virtual bool MacClipGrandChildren() const { return false ; }
+ const wxRegion& MacGetVisibleRegion( bool includeOuterStructures = false ) ;
+
+ // returns true if children have to clipped to the content area
+ // (e.g., scrolled windows)
+ bool MacClipChildren() const { return m_clipChildren ; }
+ void MacSetClipChildren( bool clip ) { m_clipChildren = clip ; }
+
+ // returns true if the grandchildren need to be clipped to the children's content area
+ // (e.g., splitter windows)
+ virtual bool MacClipGrandChildren() const { return false ; }