Layout.st
changeset 219 106b86ca81da
parent 216 a5f97668e99a
child 229 612861ef768a
equal deleted inserted replaced
218:96e8e87e5dc8 219:106b86ca81da
    43     This allows more flexible geometry management, since any algorithm can
    43     This allows more flexible geometry management, since any algorithm can
    44     be implemented (if the existing ones are not sufficient, add you own subclass
    44     be implemented (if the existing ones are not sufficient, add you own subclass
    45     and install it as layout-object in your view).
    45     and install it as layout-object in your view).
    46 
    46 
    47     See more info & examples in concrete subclasses:
    47     See more info & examples in concrete subclasses:
    48 	LayoutOrigin LayoutFrame AlignmentOrigin
    48         LayoutOrigin LayoutFrame AlignmentOrigin
    49 
    49 
    50     Notice: this class was implemented using protocol information
    50     Notice: this class was implemented using protocol information
    51     from alpha testers - it may not be complete or compatible to
    51     from alpha testers - it may not be complete or compatible to
    52     the corresponding ST-80 class. If you encounter any incompatibilities,
    52     the corresponding ST-80 class. If you encounter any incompatibilities,
    53     please forward a note to the ST/X team.
    53     please forward a note to the ST/X team.
       
    54 
       
    55     [author:]
       
    56         Claus Gittinger
    54 "
    57 "
    55 ! !
    58 ! !
    56 
    59 
    57 !Layout class methodsFor:'instance creation'!
    60 !Layout class methodsFor:'instance creation'!
    58 
    61 
    77 ! !
    80 ! !
    78 
    81 
    79 !Layout class methodsFor:'documentation'!
    82 !Layout class methodsFor:'documentation'!
    80 
    83 
    81 version
    84 version
    82     ^ '$Header: /cvs/stx/stx/libview2/Layout.st,v 1.9 1996-04-25 11:09:13 cg Exp $'
    85     ^ '$Header: /cvs/stx/stx/libview2/Layout.st,v 1.10 1996-04-25 16:20:30 cg Exp $'
    83 ! !
    86 ! !