PanelView.st
changeset 3779 0b7292e63f0d
parent 3501 bd23629696c7
child 3843 1cc743b63926
equal deleted inserted replaced
3778:c7257987a773 3779:0b7292e63f0d
   542      components are considered; otherwise, all are considered."
   542      components are considered; otherwise, all are considered."
   543 
   543 
   544     |subViews|
   544     |subViews|
   545 
   545 
   546     subViews := self subViews.
   546     subViews := self subViews.
   547     subViews size ~~ 0 ifTrue:[
   547     ignoreInvisibleComponents ifTrue:[
   548 	ignoreInvisibleComponents ifTrue:[
   548         subViews size ~~ 0 ifTrue:[
   549 	    subViews := subViews 
   549             subViews := subViews 
   550 			    select:[:v | realized 
   550                             select:[:v | realized 
   551 					    ifTrue:[v realized]       
   551                                             ifTrue:[v realized]       
   552 					    ifFalse:[v isHiddenOnRealize not]
   552                                             ifFalse:[v isHiddenOnRealize not]
   553 				   ].
   553                                    ].
   554 	].
   554         ].
   555     ].
   555     ].
   556     ^ subViews
   556     ^ subViews
   557 
   557 
   558     "Created: / 17.1.1998 / 00:17:05 / cg"
   558     "Created: / 17.1.1998 / 00:17:05 / cg"
   559 ! !
   559 ! !
   560 
   560 
   561 !PanelView class methodsFor:'documentation'!
   561 !PanelView class methodsFor:'documentation'!
   562 
   562 
   563 version
   563 version
   564     ^ '$Header: /cvs/stx/stx/libwidg/PanelView.st,v 1.39 2007-10-09 08:44:03 ca Exp $'
   564     ^ '$Header: /cvs/stx/stx/libwidg/PanelView.st,v 1.40 2008-11-17 17:33:02 cg Exp $'
   565 ! !
   565 ! !