VariableVerticalPanelController.st
author Claus Gittinger <cg@exept.de>
Fri, 14 Jul 2017 10:00:20 +0200
changeset 6181 f87b4ee3d071
parent 4312 aa2ee800b1d8
permissions -rw-r--r--
#OTHER by cg class: MacOSX2ToolbarIconLibrary class changed:28 methods image storage format

"
 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.
"
"{ Package: 'stx:libwidg' }"

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

    [see also:]
        VariableVerticalPanel

    [author:]
        Claus Gittinger
"
! !

!VariableVerticalPanelController class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libwidg/VariableVerticalPanelController.st,v 1.10 2011-09-29 11:19:09 cg Exp $'
! !