VariableHorizontalPanelController.st
author Claus Gittinger <cg@exept.de>
Thu, 18 Jan 1996 01:09:26 +0100
changeset 294 667773990289
parent 203 8a38b0b03233
child 582 e151eeae2c9a
permissions -rw-r--r--
merged all variablePanel code into a common class. Can now flip dynamically

"
 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
"
    This is a leftover class - its no longer needed, but left for backward compatibility.
    All functionality is in the VariablePanelController class.

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

!VariableHorizontalPanelController class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libwidg/VariableHorizontalPanelController.st,v 1.8 1996-01-18 00:09:21 cg Exp $'
! !