VariableVerticalPanelController.st
author claus
Tue, 29 Aug 1995 18:44:52 +0200
changeset 150 9411bf3927d9
parent 126 40228f4fd66b
child 174 d80a6cc3f9b2
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.
"

'From Smalltalk/X, Version:2.10.4 on 6-mar-1995 at 20:00:05'!

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

!VariableVerticalPanelController 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
    vertical orientation.
"
!

version
"
$Header: /cvs/stx/stx/libwidg/VariableVerticalPanelController.st,v 1.4 1995-08-29 16:44:47 claus Exp $
"
! !

!VariableVerticalPanelController methodsFor:'initialization'!

initialize
    super initialize.
    isHorizontal := false
! !