Layout.st
changeset 2294 0bae42618306
parent 2137 1cc62200836d
child 3616 b79beb6fb8cf
equal deleted inserted replaced
2293:bd71da1fd58a 2294:0bae42618306
     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:libview2' }"
    12 "{ Package: 'stx:libview2' }"
    14 
    13 
    15 Object subclass:#Layout
    14 Object subclass:#Layout
    16 	instanceVariableNames:''
    15 	instanceVariableNames:''
    17 	classVariableNames:''
    16 	classVariableNames:''
    61         LayoutOrigin LayoutFrame AlignmentOrigin
    60         LayoutOrigin LayoutFrame AlignmentOrigin
    62 "
    61 "
    63 ! !
    62 ! !
    64 
    63 
    65 !Layout class methodsFor:'instance creation'!
    64 !Layout class methodsFor:'instance creation'!
    66 
       
    67 decodeFromLiteralArray:anArray
       
    68     "create & return a new instance from information encoded in anArray.
       
    69      Redefined since no initialization is needed 
       
    70      (the values are all set from the specArray."
       
    71 
       
    72     ^ self basicNew fromLiteralArrayEncoding:anArray.
       
    73 
       
    74     "Modified: / 28.1.1998 / 17:42:25 / cg"
       
    75 !
       
    76 
    65 
    77 new
    66 new
    78     "return a new initialized instance"
    67     "return a new initialized instance"
    79 
    68 
    80     ^ self basicNew initialize
    69     ^ self basicNew initialize
   145 ! !
   134 ! !
   146 
   135 
   147 !Layout class methodsFor:'documentation'!
   136 !Layout class methodsFor:'documentation'!
   148 
   137 
   149 version
   138 version
   150     ^ '$Header: /cvs/stx/stx/libview2/Layout.st,v 1.17 2006-07-03 16:11:48 stefan Exp $'
   139     ^ '$Header: /cvs/stx/stx/libview2/Layout.st,v 1.18 2007-03-27 09:20:25 cg Exp $'
   151 ! !
   140 ! !