LayoutFrame.st
changeset 426 45859f8a2044
parent 425 54077a8586f0
child 468 bb4100d09a18
equal deleted inserted replaced
425:54077a8586f0 426:45859f8a2044
   123                                 bottomFraction:1.0; bottomOffset:-10).
   123                                 bottomFraction:1.0; bottomOffset:-10).
   124 
   124 
   125         top open
   125         top open
   126                                                                         [exEnd]
   126                                                                         [exEnd]
   127 "
   127 "
       
   128 ! !
       
   129 
       
   130 !LayoutFrame class methodsFor:'instance creation'!
       
   131 
       
   132 leftFraction:lF offset:lO rightFraction:rF offset:rO topFraction:tF offset:tO bottomFraction:bF offset:bO
       
   133     "create a new layoutFrame"
       
   134 
       
   135     ^ self new
       
   136         leftFraction:lF offset:lO 
       
   137         rightFraction:rF offset:rO 
       
   138         topFraction:tF offset:tO 
       
   139         bottomFraction:bF offset:bO
       
   140 
       
   141 
       
   142 
   128 ! !
   143 ! !
   129 
   144 
   130 !LayoutFrame methodsFor:'accessing'!
   145 !LayoutFrame methodsFor:'accessing'!
   131 
   146 
   132 bottomFraction
   147 bottomFraction
   384 ! !
   399 ! !
   385 
   400 
   386 !LayoutFrame class methodsFor:'documentation'!
   401 !LayoutFrame class methodsFor:'documentation'!
   387 
   402 
   388 version
   403 version
   389     ^ '$Header: /cvs/stx/stx/libview2/LayoutFrame.st,v 1.17 1997-02-14 00:48:12 ca Exp $'
   404     ^ '$Header: /cvs/stx/stx/libview2/LayoutFrame.st,v 1.18 1997-02-14 00:50:01 ca Exp $'
   390 ! !
   405 ! !