VariableHorizontalPanelController.st
author Claus Gittinger <cg@exept.de>
Thu, 23 Nov 1995 11:42:48 +0100
changeset 200 aa3e56929a5a
parent 174 d80a6cc3f9b2
child 203 8a38b0b03233
permissions -rw-r--r--
checkin from browser

"
 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.
"

VariablePanelController subclass:#VariableHorizontalPanelController
	 instanceVariableNames:''
	 classVariableNames:''
	 poolDictionaries:''
	 category:'Interface-Support-Controllers'
!

!VariableHorizontalPanelController 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.
"
!

documentation
"
    Normally, not used directly by applications, these are created automatically
    whenever a variableVerticalPanel is created.
    Actually, these are simply panelControllers which initialize themself for
    horizontal orientation.
"
!

version
    ^ '$Header: /cvs/stx/stx/libwidg/VariableHorizontalPanelController.st,v 1.6 1995-11-23 10:40:56 cg Exp $'
! !

!VariableHorizontalPanelController methodsFor:'initialization'!

initialize
    super initialize.
    isHorizontal := true
! !