PanelView.st
changeset 1216 3506a6474c42
parent 1159 856ac1c6046c
child 1418 3397ec6b8419
equal deleted inserted replaced
1215:0d9e67bdfbe4 1216:3506a6474c42
   269 realize
   269 realize
   270     mustRearrange ifTrue:[
   270     mustRearrange ifTrue:[
   271 	self setChildPositions
   271 	self setChildPositions
   272     ].
   272     ].
   273     super realize
   273     super realize
       
   274 !
       
   275 
       
   276 resize
       
   277     super resize.
       
   278     mustRearrange ifTrue:[
       
   279         self setChildPositions
       
   280     ].
   274 !
   281 !
   275 
   282 
   276 setChildPositionsIfChanged
   283 setChildPositionsIfChanged
   277     "set all of my child positions - this is usually delayed,
   284     "set all of my child positions - this is usually delayed,
   278      until the panel is actually shown (since we dont know, if more
   285      until the panel is actually shown (since we dont know, if more
   379 ! !
   386 ! !
   380 
   387 
   381 !PanelView class methodsFor:'documentation'!
   388 !PanelView class methodsFor:'documentation'!
   382 
   389 
   383 version
   390 version
   384     ^ '$Header: /cvs/stx/stx/libwidg/PanelView.st,v 1.23 1997-03-28 14:52:00 ca Exp $'
   391     ^ '$Header: /cvs/stx/stx/libwidg/PanelView.st,v 1.24 1997-05-06 07:30:32 ca Exp $'
   385 ! !
   392 ! !