VerticalPanelView.st
changeset 2305 f2850e54b0ab
parent 2033 fc16e79f649b
child 2370 d118a160afbe
equal deleted inserted replaced
2304:c96b6b899023 2305:f2850e54b0ab
     7  inclusion of the above copyright notice.   This software may not
     7  inclusion of the above copyright notice.   This software may not
     8  be provided or otherwise made available to, or used by, any
     8  be provided or otherwise made available to, or used by, any
     9  other person.  No title to or ownership of the software is
     9  other person.  No title to or ownership of the software is
    10  hereby transferred.
    10  hereby transferred.
    11 "
    11 "
       
    12 
       
    13 "{ Package: 'stx:libwidg' }"
    12 
    14 
    13 PanelView subclass:#VerticalPanelView
    15 PanelView subclass:#VerticalPanelView
    14 	instanceVariableNames:''
    16 	instanceVariableNames:''
    15 	classVariableNames:''
    17 	classVariableNames:''
    16 	poolDictionaries:''
    18 	poolDictionaries:''
   707      maxWidth maxHeight resizeToMaxV resizeToMaxH m2 subViews ext restHeight|
   709      maxWidth maxHeight resizeToMaxV resizeToMaxH m2 subViews ext restHeight|
   708 
   710 
   709     subViews := self subViewsToConsider.
   711     subViews := self subViewsToConsider.
   710     subViews size == 0 ifTrue:[^ self].
   712     subViews size == 0 ifTrue:[^ self].
   711 
   713 
   712     extentChanged ifTrue:[
   714     self extentChangedFlag ifTrue:[
   713         ext := self computeExtent.
   715         ext := self computeExtent.
   714         width := ext x.
   716         width := ext x.
   715         height := ext y.
   717         height := ext y.
   716     ].
   718     ].
   717 
   719 
  1053 ! !
  1055 ! !
  1054 
  1056 
  1055 !VerticalPanelView class methodsFor:'documentation'!
  1057 !VerticalPanelView class methodsFor:'documentation'!
  1056 
  1058 
  1057 version
  1059 version
  1058     ^ '$Header: /cvs/stx/stx/libwidg/VerticalPanelView.st,v 1.36 1999-10-08 15:21:25 cg Exp $'
  1060     ^ '$Header: /cvs/stx/stx/libwidg/VerticalPanelView.st,v 1.37 2000-11-08 09:16:01 cg Exp $'
  1059 ! !
  1061 ! !