HorizontalScroller.st
author Claus Gittinger <cg@exept.de>
Thu, 09 Nov 2017 20:09:30 +0100
changeset 6225 0122e4e6c587
parent 3165 58b08c376a6e
permissions -rw-r--r--
#FEATURE by cg class: GenericToolbarIconLibrary class added: #hideFilter16x16Icon
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
138
claus
parents: 130
diff changeset
     1
"
claus
parents: 130
diff changeset
     2
 COPYRIGHT (c) 1989 by Claus Gittinger
150
claus
parents: 138
diff changeset
     3
	      All Rights Reserved
138
claus
parents: 130
diff changeset
     4
claus
parents: 130
diff changeset
     5
 This software is furnished under a license and may be used
claus
parents: 130
diff changeset
     6
 only in accordance with the terms of that license and with the
claus
parents: 130
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
claus
parents: 130
diff changeset
     8
 be provided or otherwise made available to, or used by, any
claus
parents: 130
diff changeset
     9
 other person.  No title to or ownership of the software is
claus
parents: 130
diff changeset
    10
 hereby transferred.
claus
parents: 130
diff changeset
    11
"
claus
parents: 130
diff changeset
    12
3165
58b08c376a6e *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 1768
diff changeset
    13
"{ Package: 'stx:libwidg' }"
58b08c376a6e *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 1768
diff changeset
    14
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    15
Scroller subclass:#HorizontalScroller
538
b747ea31b972 use common code for H/V scrollers
Claus Gittinger <cg@exept.de>
parents: 205
diff changeset
    16
	instanceVariableNames:''
b747ea31b972 use common code for H/V scrollers
Claus Gittinger <cg@exept.de>
parents: 205
diff changeset
    17
	classVariableNames:''
b747ea31b972 use common code for H/V scrollers
Claus Gittinger <cg@exept.de>
parents: 205
diff changeset
    18
	poolDictionaries:''
b747ea31b972 use common code for H/V scrollers
Claus Gittinger <cg@exept.de>
parents: 205
diff changeset
    19
	category:'Views-Interactors'
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    20
!
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    21
138
claus
parents: 130
diff changeset
    22
!HorizontalScroller class methodsFor:'documentation'!
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    23
138
claus
parents: 130
diff changeset
    24
copyright
claus
parents: 130
diff changeset
    25
"
claus
parents: 130
diff changeset
    26
 COPYRIGHT (c) 1989 by Claus Gittinger
150
claus
parents: 138
diff changeset
    27
	      All Rights Reserved
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    28
138
claus
parents: 130
diff changeset
    29
 This software is furnished under a license and may be used
claus
parents: 130
diff changeset
    30
 only in accordance with the terms of that license and with the
claus
parents: 130
diff changeset
    31
 inclusion of the above copyright notice.   This software may not
claus
parents: 130
diff changeset
    32
 be provided or otherwise made available to, or used by, any
claus
parents: 130
diff changeset
    33
 other person.  No title to or ownership of the software is
claus
parents: 130
diff changeset
    34
 hereby transferred.
claus
parents: 130
diff changeset
    35
"
claus
parents: 130
diff changeset
    36
!
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    37
150
claus
parents: 138
diff changeset
    38
documentation
claus
parents: 138
diff changeset
    39
"
claus
parents: 138
diff changeset
    40
    Actually simply a scroller which preinitializes itself to have
claus
parents: 138
diff changeset
    41
    a horizontal orientation.
585
8f395aba0173 documentation
Claus Gittinger <cg@exept.de>
parents: 556
diff changeset
    42
8f395aba0173 documentation
Claus Gittinger <cg@exept.de>
parents: 556
diff changeset
    43
    [author:]
8f395aba0173 documentation
Claus Gittinger <cg@exept.de>
parents: 556
diff changeset
    44
        Claus Gittinger
150
claus
parents: 138
diff changeset
    45
"
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
    46
! !
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
    47
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    48
!HorizontalScroller methodsFor:'initialization'!
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    49
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    50
initialize
556
4c3edf42c03e checkin from browser
ca
parents: 538
diff changeset
    51
    orientation := #horizontal. 
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    52
    super initialize.
1768
32eb81e67be1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
    53
32eb81e67be1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
    54
    "Modified: / 7.3.1999 / 00:01:08 / cg"
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    55
! !
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    56
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
    57
!HorizontalScroller class methodsFor:'documentation'!
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
    58
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
    59
version
3165
58b08c376a6e *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 1768
diff changeset
    60
    ^ '$Header: /cvs/stx/stx/libwidg/HorizontalScroller.st,v 1.17 2005-05-11 16:36:28 stefan Exp $'
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
    61
! !