PanelView.st
changeset 2527 3e7d9eaa347b
parent 2305 f2850e54b0ab
child 2753 8e1f4b3fc40a
equal deleted inserted replaced
2526:fef4754e6097 2527:3e7d9eaa347b
   530         mustRearrange := true
   530         mustRearrange := true
   531     ]
   531     ]
   532 !
   532 !
   533 
   533 
   534 makeMyselfDependentOnSubviews
   534 makeMyselfDependentOnSubviews
   535     (subViews := self subViews) notNil ifTrue:[
   535     subViews notNil ifTrue:[
   536         subViews do:[:aView |
   536         subViews do:[:aView |
   537             aView addDependent:self
   537             aView addDependent:self
   538         ]
   538         ]
   539     ]
   539     ]
   540 
       
   541 
       
   542 !
   540 !
   543 
   541 
   544 subViewsToConsider
   542 subViewsToConsider
   545     "return a collection of subviews which are to be considered in
   543     "return a collection of subviews which are to be considered in
   546      the layout. If ignoreInvisibleComponents is true, only visible 
   544      the layout. If ignoreInvisibleComponents is true, only visible 
   564 ! !
   562 ! !
   565 
   563 
   566 !PanelView class methodsFor:'documentation'!
   564 !PanelView class methodsFor:'documentation'!
   567 
   565 
   568 version
   566 version
   569     ^ '$Header: /cvs/stx/stx/libwidg/PanelView.st,v 1.35 2000-11-08 09:16:37 cg Exp $'
   567     ^ '$Header: /cvs/stx/stx/libwidg/PanelView.st,v 1.36 2002-04-10 10:50:18 cg Exp $'
   570 ! !
   568 ! !