LayoutFrame.st
changeset 700 67f1dccb8333
parent 695 b27d39658fd2
child 949 0eb888b21192
equal deleted inserted replaced
699:aec16ce604a7 700:67f1dccb8333
     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 
    12 
    13 'From Smalltalk/X, Version:3.1.10 on 13-sep-1997 at 10:54:29 pm'                !
    13 'From Smalltalk/X, Version:3.1.10 on 20-sep-1997 at 12:00:17 am'                !
    14 
    14 
    15 LayoutOrigin subclass:#LayoutFrame
    15 LayoutOrigin subclass:#LayoutFrame
    16 	instanceVariableNames:'rightFraction bottomFraction rightOffset bottomOffset'
    16 	instanceVariableNames:'rightFraction bottomFraction rightOffset bottomOffset'
    17 	classVariableNames:''
    17 	classVariableNames:''
    18 	poolDictionaries:''
    18 	poolDictionaries:''
   351 ! !
   351 ! !
   352 
   352 
   353 !LayoutFrame methodsFor:'printing & storing'!
   353 !LayoutFrame methodsFor:'printing & storing'!
   354 
   354 
   355 displayString
   355 displayString
       
   356     "return a printed representation of the receiver for displaying"
       
   357 
   356     ^ (self class name) , '(' 
   358     ^ (self class name) , '(' 
   357 	, 'l: ' , leftFraction displayString
   359         , 'l: ' , leftFraction displayString
   358 	, '+' , leftOffset displayString
   360         , '+' , leftOffset displayString
   359 	, ' t: ' , topFraction displayString
   361         , ' t: ' , topFraction displayString
   360 	, '+' , topOffset displayString
   362         , '+' , topOffset displayString
   361 	, ' r: ' , rightFraction displayString
   363         , ' r: ' , rightFraction displayString
   362 	, '+' , rightOffset displayString
   364         , '+' , rightOffset displayString
   363 	, ' b: ' , bottomFraction displayString
   365         , ' b: ' , bottomFraction displayString
   364 	, '+' , bottomOffset displayString
   366         , '+' , bottomOffset displayString
   365 	, ')'
   367         , ')'
       
   368 
       
   369     "Modified: 20.9.1997 / 11:40:14 / cg"
   366 ! !
   370 ! !
   367 
   371 
   368 !LayoutFrame methodsFor:'queries'!
   372 !LayoutFrame methodsFor:'queries'!
   369 
   373 
   370 corner
   374 corner
   441 ! !
   445 ! !
   442 
   446 
   443 !LayoutFrame class methodsFor:'documentation'!
   447 !LayoutFrame class methodsFor:'documentation'!
   444 
   448 
   445 version
   449 version
   446     ^ '$Header: /cvs/stx/stx/libview2/LayoutFrame.st,v 1.22 1997-09-15 20:16:05 cg Exp $'
   450     ^ '$Header: /cvs/stx/stx/libview2/LayoutFrame.st,v 1.23 1997-09-20 22:19:44 cg Exp $'
   447 ! !
   451 ! !