Layout.st
author claus
Thu, 10 Aug 1995 20:44:27 +0200
changeset 88 f8a41aa4b34b
parent 83 97fd04d167c8
child 93 f2389560b8eb
permissions -rw-r--r--
.

"
 COPYRIGHT (c) 1995 by Claus Gittinger
              All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"

Object subclass:#Layout
	 instanceVariableNames:''
	 classVariableNames:''
	 poolDictionaries:''
	 category:'Graphics-Geometry'
!

!Layout class methodsFor:'documentation'!

copyright
"
 COPYRIGHT (c) 1995 by Claus Gittinger
              All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"
!

version
"
$Header: /cvs/stx/stx/libview2/Layout.st,v 1.3 1995-08-10 18:43:53 claus Exp $
"
! !

!Layout class methodsFor:'instance creation'!

new
    ^ self basicNew initialize
! !

!Layout methodsFor:'queries'!

rectangleRelativeTo:superRectangle preferred:prefRect
    ^ self subclassResponsibility
!

isLayout
    ^ true
! !

!Layout methodsFor:'initialization'!

initialize
    ^ self subclassResponsibility
! !