|
Class: SequenceView
Object
|
+--GraphicsMedium
|
+--DisplaySurface
|
+--SimpleView
|
+--ScrollableView
|
+--SequenceView
|
+--MultiSelectionSequenceView
- Package:
- stx:libwidg
- Category:
- Views-Lists
- Version:
- rev:
1.16
date: 2023/11/07 16:24:53
- user: cg
- file: SequenceView.st directory: libwidg
- module: stx stc-classLibrary: libwidg
implements a SelectionInListView with configurable scrollbars
ST-80 compatibility
copyrightCOPYRIGHT (c) 1997 by eXept Software AG
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.
defaults
-
defaultFont
-
Compatibility-ST80
-
optimizeForText
-
dummy - ST-80 compatibility
initialization
-
initialize
-
setup a ScrollableView scrolling a SelectionInList instance
slave-view messages
-
enabled: aBoolean
-
senders assume that I am the listView - not a wrapper
-
font: aFont
-
set the font for the scrolled view
-
invalidate
-
senders assume that I am the listView - not a wrapper
-
invalidate: aRectangle
-
senders assume that I am the listView - not a wrapper
-
invalidate: aRectangle repairNow: doRepair
-
senders assume that I am the listView - not a wrapper
-
invalidateDeviceRectangle: aRectangle repairNow: doRepair
-
senders assume that I am the listView - not a wrapper
-
invalidateRepairNow: doRepair
-
senders assume that I am the listView - not a wrapper
same behavior as a SelectionInListView, but scrollable
|view|
view := self extent:100@100.
view list:#( 'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'in der Ruhe liegt die Kraft').
view multipleSelectOk:true.
view openAndWaitUntilVisible.
|
|