HorizontalMiniScroller.st
author Claus Gittinger <cg@exept.de>
Fri, 27 Jun 1997 11:56:45 +0200
changeset 1254 c9e604f03e6a
parent 585 8f395aba0173
child 3165 58b08c376a6e
permissions -rw-r--r--
code compactified (slightly)

"
 COPYRIGHT (c) 1994 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.
"

MiniScroller subclass:#HorizontalMiniScroller
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Views-Interactors'
!

!HorizontalMiniScroller class methodsFor:'documentation'!

copyright
"
 COPYRIGHT (c) 1994 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
"
    like a scroller, but taking less screen space.

    [author:]
        Claus Gittinger
"
! !

!HorizontalMiniScroller methodsFor:'accessing-behavior'!

scrollLeftAction:aBlock
    "ignored -
     but implemented, so that scroller can be used in place of a scrollbar"

    "Created: 17.4.1996 / 14:04:29 / cg"
!

scrollRightAction:aBlock
    "ignored -
     but implemented, so that scroller can be used in place of a scrollbar"

    "Created: 17.4.1996 / 14:04:30 / cg"
! !

!HorizontalMiniScroller methodsFor:'initialization'!

initialize
    orientation := #horizontal.
    super initialize.

    "Created: 17.4.1996 / 14:01:26 / cg"
! !

!HorizontalMiniScroller class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libwidg/HorizontalMiniScroller.st,v 1.9 1996-04-25 17:22:22 cg Exp $'
! !