|
Class: SequenceView
Object
|
+--GraphicsMedium
|
+--DisplaySurface
|
+--SimpleView
|
+--ScrollableView
|
+--SequenceView
|
+--MultiSelectionSequenceView
- Package:
- stx:libwidg
- Category:
- Views-Lists
- Version:
- rev:
1.12
date: 2016/10/14 16:43:46
- user: cg
- file: SequenceView.st directory: libwidg
- module: stx stc-classLibrary: libwidg
implements a SelectionInListView with configurable scrollbars
ST-80 compatibility
SelectionInListView
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 openAndWait.
|
|