MultiSelectionInList.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Thu, 21 Mar 2019 11:09:23 +0000
branchjv
changeset 6607 1da320242101
parent 6509 110f6a02e2d5
permissions -rw-r--r--
Issue #261: add test https://swing.fit.cvut.cz/projects/stx-jv/ticket/261
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
174
d80a6cc3f9b2 uff - version methods changed to return stings
Claus Gittinger <cg@exept.de>
parents: 166
diff changeset
     1
"
d80a6cc3f9b2 uff - version methods changed to return stings
Claus Gittinger <cg@exept.de>
parents: 166
diff changeset
     2
 COPYRIGHT (c) 1995 by Claus Gittinger
d80a6cc3f9b2 uff - version methods changed to return stings
Claus Gittinger <cg@exept.de>
parents: 166
diff changeset
     3
	      All Rights Reserved
d80a6cc3f9b2 uff - version methods changed to return stings
Claus Gittinger <cg@exept.de>
parents: 166
diff changeset
     4
d80a6cc3f9b2 uff - version methods changed to return stings
Claus Gittinger <cg@exept.de>
parents: 166
diff changeset
     5
 This software is furnished under a license and may be used
d80a6cc3f9b2 uff - version methods changed to return stings
Claus Gittinger <cg@exept.de>
parents: 166
diff changeset
     6
 only in accordance with the terms of that license and with the
d80a6cc3f9b2 uff - version methods changed to return stings
Claus Gittinger <cg@exept.de>
parents: 166
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
d80a6cc3f9b2 uff - version methods changed to return stings
Claus Gittinger <cg@exept.de>
parents: 166
diff changeset
     8
 be provided or otherwise made available to, or used by, any
d80a6cc3f9b2 uff - version methods changed to return stings
Claus Gittinger <cg@exept.de>
parents: 166
diff changeset
     9
 other person.  No title to or ownership of the software is
d80a6cc3f9b2 uff - version methods changed to return stings
Claus Gittinger <cg@exept.de>
parents: 166
diff changeset
    10
 hereby transferred.
d80a6cc3f9b2 uff - version methods changed to return stings
Claus Gittinger <cg@exept.de>
parents: 166
diff changeset
    11
"
2724
23f4e16dc4f4 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1413
diff changeset
    12
"{ Package: 'stx:libwidg' }"
23f4e16dc4f4 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1413
diff changeset
    13
5888
86e2b8b7db7c #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 3847
diff changeset
    14
"{ NameSpace: Smalltalk }"
86e2b8b7db7c #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 3847
diff changeset
    15
114
5d736ee65276 Initial revision
claus
parents:
diff changeset
    16
SelectionInList subclass:#MultiSelectionInList
526
8203430fbadd oops - clearing selection was wrong in MultiSelectionInList
ca
parents: 360
diff changeset
    17
	instanceVariableNames:''
8203430fbadd oops - clearing selection was wrong in MultiSelectionInList
ca
parents: 360
diff changeset
    18
	classVariableNames:''
8203430fbadd oops - clearing selection was wrong in MultiSelectionInList
ca
parents: 360
diff changeset
    19
	poolDictionaries:''
8203430fbadd oops - clearing selection was wrong in MultiSelectionInList
ca
parents: 360
diff changeset
    20
	category:'Interface-Support-Models'
114
5d736ee65276 Initial revision
claus
parents:
diff changeset
    21
!
5d736ee65276 Initial revision
claus
parents:
diff changeset
    22
174
d80a6cc3f9b2 uff - version methods changed to return stings
Claus Gittinger <cg@exept.de>
parents: 166
diff changeset
    23
!MultiSelectionInList class methodsFor:'documentation'!
d80a6cc3f9b2 uff - version methods changed to return stings
Claus Gittinger <cg@exept.de>
parents: 166
diff changeset
    24
d80a6cc3f9b2 uff - version methods changed to return stings
Claus Gittinger <cg@exept.de>
parents: 166
diff changeset
    25
copyright
d80a6cc3f9b2 uff - version methods changed to return stings
Claus Gittinger <cg@exept.de>
parents: 166
diff changeset
    26
"
d80a6cc3f9b2 uff - version methods changed to return stings
Claus Gittinger <cg@exept.de>
parents: 166
diff changeset
    27
 COPYRIGHT (c) 1995 by Claus Gittinger
d80a6cc3f9b2 uff - version methods changed to return stings
Claus Gittinger <cg@exept.de>
parents: 166
diff changeset
    28
	      All Rights Reserved
d80a6cc3f9b2 uff - version methods changed to return stings
Claus Gittinger <cg@exept.de>
parents: 166
diff changeset
    29
d80a6cc3f9b2 uff - version methods changed to return stings
Claus Gittinger <cg@exept.de>
parents: 166
diff changeset
    30
 This software is furnished under a license and may be used
d80a6cc3f9b2 uff - version methods changed to return stings
Claus Gittinger <cg@exept.de>
parents: 166
diff changeset
    31
 only in accordance with the terms of that license and with the
d80a6cc3f9b2 uff - version methods changed to return stings
Claus Gittinger <cg@exept.de>
parents: 166
diff changeset
    32
 inclusion of the above copyright notice.   This software may not
d80a6cc3f9b2 uff - version methods changed to return stings
Claus Gittinger <cg@exept.de>
parents: 166
diff changeset
    33
 be provided or otherwise made available to, or used by, any
d80a6cc3f9b2 uff - version methods changed to return stings
Claus Gittinger <cg@exept.de>
parents: 166
diff changeset
    34
 other person.  No title to or ownership of the software is
d80a6cc3f9b2 uff - version methods changed to return stings
Claus Gittinger <cg@exept.de>
parents: 166
diff changeset
    35
 hereby transferred.
d80a6cc3f9b2 uff - version methods changed to return stings
Claus Gittinger <cg@exept.de>
parents: 166
diff changeset
    36
"
d80a6cc3f9b2 uff - version methods changed to return stings
Claus Gittinger <cg@exept.de>
parents: 166
diff changeset
    37
!
d80a6cc3f9b2 uff - version methods changed to return stings
Claus Gittinger <cg@exept.de>
parents: 166
diff changeset
    38
d80a6cc3f9b2 uff - version methods changed to return stings
Claus Gittinger <cg@exept.de>
parents: 166
diff changeset
    39
documentation
d80a6cc3f9b2 uff - version methods changed to return stings
Claus Gittinger <cg@exept.de>
parents: 166
diff changeset
    40
"
d80a6cc3f9b2 uff - version methods changed to return stings
Claus Gittinger <cg@exept.de>
parents: 166
diff changeset
    41
    Like a selectionInList, but allows for multiple selected items.
d80a6cc3f9b2 uff - version methods changed to return stings
Claus Gittinger <cg@exept.de>
parents: 166
diff changeset
    42
    For use as a model for SelectionInListViews, with multipleSelectOk set to true.
583
2ec13b7ceba5 documentation
Claus Gittinger <cg@exept.de>
parents: 579
diff changeset
    43
2ec13b7ceba5 documentation
Claus Gittinger <cg@exept.de>
parents: 579
diff changeset
    44
    [author:]
2ec13b7ceba5 documentation
Claus Gittinger <cg@exept.de>
parents: 579
diff changeset
    45
        Claus Gittinger
174
d80a6cc3f9b2 uff - version methods changed to return stings
Claus Gittinger <cg@exept.de>
parents: 166
diff changeset
    46
"
d80a6cc3f9b2 uff - version methods changed to return stings
Claus Gittinger <cg@exept.de>
parents: 166
diff changeset
    47
! !
d80a6cc3f9b2 uff - version methods changed to return stings
Claus Gittinger <cg@exept.de>
parents: 166
diff changeset
    48
526
8203430fbadd oops - clearing selection was wrong in MultiSelectionInList
ca
parents: 360
diff changeset
    49
!MultiSelectionInList methodsFor:'accessing-values'!
8203430fbadd oops - clearing selection was wrong in MultiSelectionInList
ca
parents: 360
diff changeset
    50
8203430fbadd oops - clearing selection was wrong in MultiSelectionInList
ca
parents: 360
diff changeset
    51
selection
537
21fc632b22fe dont err when selection is set, but there is no list
Claus Gittinger <cg@exept.de>
parents: 536
diff changeset
    52
    "return the selections value (i.e. the entry numbers in the list)"
526
8203430fbadd oops - clearing selection was wrong in MultiSelectionInList
ca
parents: 360
diff changeset
    53
1413
e00159f1414d add selection queries:
ca
parents: 1410
diff changeset
    54
    |l s|
537
21fc632b22fe dont err when selection is set, but there is no list
Claus Gittinger <cg@exept.de>
parents: 536
diff changeset
    55
1413
e00159f1414d add selection queries:
ca
parents: 1410
diff changeset
    56
    (     (l := self list) isNil                                "/ mhmh - no list; what should we do here ?
e00159f1414d add selection queries:
ca
parents: 1410
diff changeset
    57
      or:[(s := selectionIndexHolder value) size == 0]          "/ mhmh - can be nil ?
e00159f1414d add selection queries:
ca
parents: 1410
diff changeset
    58
    ) ifTrue:[
e00159f1414d add selection queries:
ca
parents: 1410
diff changeset
    59
        ^ self zeroIndex
e00159f1414d add selection queries:
ca
parents: 1410
diff changeset
    60
    ].
e00159f1414d add selection queries:
ca
parents: 1410
diff changeset
    61
e00159f1414d add selection queries:
ca
parents: 1410
diff changeset
    62
    ^ s collect:[:index | l at:index ]
166
Claus Gittinger <cg@exept.de>
parents: 129
diff changeset
    63
526
8203430fbadd oops - clearing selection was wrong in MultiSelectionInList
ca
parents: 360
diff changeset
    64
    "Created: 26.10.1995 / 16:52:27 / cg"
563
fa563ad7630c zeroIndex stuff
Claus Gittinger <cg@exept.de>
parents: 537
diff changeset
    65
    "Modified: 20.4.1996 / 13:14:29 / cg"
526
8203430fbadd oops - clearing selection was wrong in MultiSelectionInList
ca
parents: 360
diff changeset
    66
!
166
Claus Gittinger <cg@exept.de>
parents: 129
diff changeset
    67
Claus Gittinger <cg@exept.de>
parents: 129
diff changeset
    68
selection:anObjectList 
Claus Gittinger <cg@exept.de>
parents: 129
diff changeset
    69
    "set the selection to be anObjectList."
Claus Gittinger <cg@exept.de>
parents: 129
diff changeset
    70
1228
e30336972355 bugFixes & ST-80 compatibility
ca
parents: 583
diff changeset
    71
    |l indizes objList|
166
Claus Gittinger <cg@exept.de>
parents: 129
diff changeset
    72
579
a9188bedbfb9 commentary & backward compatibility fix
Claus Gittinger <cg@exept.de>
parents: 563
diff changeset
    73
    "/
a9188bedbfb9 commentary & backward compatibility fix
Claus Gittinger <cg@exept.de>
parents: 563
diff changeset
    74
    "/ for your convenience: allow 0 and nil as empty
a9188bedbfb9 commentary & backward compatibility fix
Claus Gittinger <cg@exept.de>
parents: 563
diff changeset
    75
    "/ selections
a9188bedbfb9 commentary & backward compatibility fix
Claus Gittinger <cg@exept.de>
parents: 563
diff changeset
    76
    "/
1228
e30336972355 bugFixes & ST-80 compatibility
ca
parents: 583
diff changeset
    77
    anObjectList size == 0 ifTrue:[
e30336972355 bugFixes & ST-80 compatibility
ca
parents: 583
diff changeset
    78
        (anObjectList isCollection or:[anObjectList isNil]) ifTrue:[
e30336972355 bugFixes & ST-80 compatibility
ca
parents: 583
diff changeset
    79
            ^ self selectionIndex:#()
e30336972355 bugFixes & ST-80 compatibility
ca
parents: 583
diff changeset
    80
        ].
e30336972355 bugFixes & ST-80 compatibility
ca
parents: 583
diff changeset
    81
        objList := Array with:anObjectList
e30336972355 bugFixes & ST-80 compatibility
ca
parents: 583
diff changeset
    82
    ] ifFalse:[
e30336972355 bugFixes & ST-80 compatibility
ca
parents: 583
diff changeset
    83
        objList := anObjectList
579
a9188bedbfb9 commentary & backward compatibility fix
Claus Gittinger <cg@exept.de>
parents: 563
diff changeset
    84
    ].
a9188bedbfb9 commentary & backward compatibility fix
Claus Gittinger <cg@exept.de>
parents: 563
diff changeset
    85
166
Claus Gittinger <cg@exept.de>
parents: 129
diff changeset
    86
    l := self list.
537
21fc632b22fe dont err when selection is set, but there is no list
Claus Gittinger <cg@exept.de>
parents: 536
diff changeset
    87
    l isNil ifTrue:[^ self].   "/ mhmh - no list; what should we do here ?
21fc632b22fe dont err when selection is set, but there is no list
Claus Gittinger <cg@exept.de>
parents: 536
diff changeset
    88
166
Claus Gittinger <cg@exept.de>
parents: 129
diff changeset
    89
    indizes := OrderedCollection new.
1228
e30336972355 bugFixes & ST-80 compatibility
ca
parents: 583
diff changeset
    90
    objList do:[:o |
537
21fc632b22fe dont err when selection is set, but there is no list
Claus Gittinger <cg@exept.de>
parents: 536
diff changeset
    91
        |idx|
166
Claus Gittinger <cg@exept.de>
parents: 129
diff changeset
    92
537
21fc632b22fe dont err when selection is set, but there is no list
Claus Gittinger <cg@exept.de>
parents: 536
diff changeset
    93
        idx := l indexOf:o ifAbsent:0.
21fc632b22fe dont err when selection is set, but there is no list
Claus Gittinger <cg@exept.de>
parents: 536
diff changeset
    94
        idx ~~ 0 ifTrue:[
21fc632b22fe dont err when selection is set, but there is no list
Claus Gittinger <cg@exept.de>
parents: 536
diff changeset
    95
            indizes add:idx
21fc632b22fe dont err when selection is set, but there is no list
Claus Gittinger <cg@exept.de>
parents: 536
diff changeset
    96
        ].
166
Claus Gittinger <cg@exept.de>
parents: 129
diff changeset
    97
    ].
Claus Gittinger <cg@exept.de>
parents: 129
diff changeset
    98
    ^ self selectionIndex:indizes
Claus Gittinger <cg@exept.de>
parents: 129
diff changeset
    99
Claus Gittinger <cg@exept.de>
parents: 129
diff changeset
   100
    "Created: 26.10.1995 / 16:40:24 / cg"
579
a9188bedbfb9 commentary & backward compatibility fix
Claus Gittinger <cg@exept.de>
parents: 563
diff changeset
   101
    "Modified: 25.4.1996 / 09:07:44 / cg"
1228
e30336972355 bugFixes & ST-80 compatibility
ca
parents: 583
diff changeset
   102
!
e30336972355 bugFixes & ST-80 compatibility
ca
parents: 583
diff changeset
   103
e30336972355 bugFixes & ST-80 compatibility
ca
parents: 583
diff changeset
   104
selectionIndex:indexes
2724
23f4e16dc4f4 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1413
diff changeset
   105
    "set the list of indexes"
23f4e16dc4f4 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1413
diff changeset
   106
23f4e16dc4f4 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1413
diff changeset
   107
    |newIndices|
23f4e16dc4f4 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1413
diff changeset
   108
1228
e30336972355 bugFixes & ST-80 compatibility
ca
parents: 583
diff changeset
   109
    indexes size ~~ 0 ifTrue:[
2724
23f4e16dc4f4 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1413
diff changeset
   110
        newIndices := indexes.
23f4e16dc4f4 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1413
diff changeset
   111
    ] ifFalse:[
23f4e16dc4f4 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1413
diff changeset
   112
        indexes isNumber ifTrue:[
23f4e16dc4f4 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1413
diff changeset
   113
            newIndices := OrderedCollection with:indexes    
23f4e16dc4f4 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1413
diff changeset
   114
        ] ifFalse:[
23f4e16dc4f4 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1413
diff changeset
   115
            newIndices := #()
23f4e16dc4f4 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1413
diff changeset
   116
        ].
1228
e30336972355 bugFixes & ST-80 compatibility
ca
parents: 583
diff changeset
   117
    ].
2724
23f4e16dc4f4 code cleanup
Claus Gittinger <cg@exept.de>
parents: 1413
diff changeset
   118
    ^ super selectionIndex:newIndices
1228
e30336972355 bugFixes & ST-80 compatibility
ca
parents: 583
diff changeset
   119
!
e30336972355 bugFixes & ST-80 compatibility
ca
parents: 583
diff changeset
   120
e30336972355 bugFixes & ST-80 compatibility
ca
parents: 583
diff changeset
   121
selectionIndexes
e30336972355 bugFixes & ST-80 compatibility
ca
parents: 583
diff changeset
   122
    "added for ST-80 compatibility
e30336972355 bugFixes & ST-80 compatibility
ca
parents: 583
diff changeset
   123
    "
e30336972355 bugFixes & ST-80 compatibility
ca
parents: 583
diff changeset
   124
    ^ self selectionIndex value
e30336972355 bugFixes & ST-80 compatibility
ca
parents: 583
diff changeset
   125
!
e30336972355 bugFixes & ST-80 compatibility
ca
parents: 583
diff changeset
   126
e30336972355 bugFixes & ST-80 compatibility
ca
parents: 583
diff changeset
   127
selectionIndexes:indizes
e30336972355 bugFixes & ST-80 compatibility
ca
parents: 583
diff changeset
   128
    "added for ST-80 compatibility
e30336972355 bugFixes & ST-80 compatibility
ca
parents: 583
diff changeset
   129
    "
e30336972355 bugFixes & ST-80 compatibility
ca
parents: 583
diff changeset
   130
    ^ self selectionIndex:indizes
526
8203430fbadd oops - clearing selection was wrong in MultiSelectionInList
ca
parents: 360
diff changeset
   131
! !
8203430fbadd oops - clearing selection was wrong in MultiSelectionInList
ca
parents: 360
diff changeset
   132
563
fa563ad7630c zeroIndex stuff
Claus Gittinger <cg@exept.de>
parents: 537
diff changeset
   133
!MultiSelectionInList methodsFor:'queries'!
166
Claus Gittinger <cg@exept.de>
parents: 129
diff changeset
   134
1413
e00159f1414d add selection queries:
ca
parents: 1410
diff changeset
   135
numberOfSelections
e00159f1414d add selection queries:
ca
parents: 1410
diff changeset
   136
    "return the number of selected entries
e00159f1414d add selection queries:
ca
parents: 1410
diff changeset
   137
    "
e00159f1414d add selection queries:
ca
parents: 1410
diff changeset
   138
    ^ selectionIndexHolder value size
e00159f1414d add selection queries:
ca
parents: 1410
diff changeset
   139
e00159f1414d add selection queries:
ca
parents: 1410
diff changeset
   140
!
e00159f1414d add selection queries:
ca
parents: 1410
diff changeset
   141
563
fa563ad7630c zeroIndex stuff
Claus Gittinger <cg@exept.de>
parents: 537
diff changeset
   142
zeroIndex
fa563ad7630c zeroIndex stuff
Claus Gittinger <cg@exept.de>
parents: 537
diff changeset
   143
    "return the selectionIndex returned when nothing is selected.
fa563ad7630c zeroIndex stuff
Claus Gittinger <cg@exept.de>
parents: 537
diff changeset
   144
     Here, an empty collection is returned."
166
Claus Gittinger <cg@exept.de>
parents: 129
diff changeset
   145
5888
86e2b8b7db7c #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 3847
diff changeset
   146
    ^ #()
526
8203430fbadd oops - clearing selection was wrong in MultiSelectionInList
ca
parents: 360
diff changeset
   147
563
fa563ad7630c zeroIndex stuff
Claus Gittinger <cg@exept.de>
parents: 537
diff changeset
   148
    "Modified: 20.4.1996 / 13:12:58 / cg"
166
Claus Gittinger <cg@exept.de>
parents: 129
diff changeset
   149
! !
Claus Gittinger <cg@exept.de>
parents: 129
diff changeset
   150
114
5d736ee65276 Initial revision
claus
parents:
diff changeset
   151
!MultiSelectionInList methodsFor:'selections'!
5d736ee65276 Initial revision
claus
parents:
diff changeset
   152
1410
80332bbccffc ST80 compatibility
ca
parents: 1397
diff changeset
   153
clearAll
80332bbccffc ST80 compatibility
ca
parents: 1397
diff changeset
   154
    "ST80 compatibility"
80332bbccffc ST80 compatibility
ca
parents: 1397
diff changeset
   155
80332bbccffc ST80 compatibility
ca
parents: 1397
diff changeset
   156
    self selection:nil.
80332bbccffc ST80 compatibility
ca
parents: 1397
diff changeset
   157
!
80332bbccffc ST80 compatibility
ca
parents: 1397
diff changeset
   158
80332bbccffc ST80 compatibility
ca
parents: 1397
diff changeset
   159
selectAll
80332bbccffc ST80 compatibility
ca
parents: 1397
diff changeset
   160
    "ST80 compatibility"
80332bbccffc ST80 compatibility
ca
parents: 1397
diff changeset
   161
80332bbccffc ST80 compatibility
ca
parents: 1397
diff changeset
   162
    |indizes size|
80332bbccffc ST80 compatibility
ca
parents: 1397
diff changeset
   163
80332bbccffc ST80 compatibility
ca
parents: 1397
diff changeset
   164
    (size := listHolder value size) == 0 ifTrue:[
80332bbccffc ST80 compatibility
ca
parents: 1397
diff changeset
   165
        ^ self clearAll
80332bbccffc ST80 compatibility
ca
parents: 1397
diff changeset
   166
    ].
80332bbccffc ST80 compatibility
ca
parents: 1397
diff changeset
   167
80332bbccffc ST80 compatibility
ca
parents: 1397
diff changeset
   168
    indizes := Array new:size.
80332bbccffc ST80 compatibility
ca
parents: 1397
diff changeset
   169
    1 to:size do:[:i| indizes at:i put:i].
80332bbccffc ST80 compatibility
ca
parents: 1397
diff changeset
   170
    self selectionIndex:indizes.
80332bbccffc ST80 compatibility
ca
parents: 1397
diff changeset
   171
!
80332bbccffc ST80 compatibility
ca
parents: 1397
diff changeset
   172
114
5d736ee65276 Initial revision
claus
parents:
diff changeset
   173
selections
3847
bb36b6a3fc7c Mark obsolete methods
Stefan Vogel <sv@exept.de>
parents: 2724
diff changeset
   174
    <resource: #obsolete>
579
a9188bedbfb9 commentary & backward compatibility fix
Claus Gittinger <cg@exept.de>
parents: 563
diff changeset
   175
    "obsolete - almost the same as selection"
a9188bedbfb9 commentary & backward compatibility fix
Claus Gittinger <cg@exept.de>
parents: 563
diff changeset
   176
114
5d736ee65276 Initial revision
claus
parents:
diff changeset
   177
    |selectionIndices|
5d736ee65276 Initial revision
claus
parents:
diff changeset
   178
579
a9188bedbfb9 commentary & backward compatibility fix
Claus Gittinger <cg@exept.de>
parents: 563
diff changeset
   179
    self obsoleteMethodWarning.
a9188bedbfb9 commentary & backward compatibility fix
Claus Gittinger <cg@exept.de>
parents: 563
diff changeset
   180
293
ab897211c99c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   181
    selectionIndices := selectionIndexHolder value.
536
fd1b723e69b6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
   182
    (selectionIndices isNil
563
fa563ad7630c zeroIndex stuff
Claus Gittinger <cg@exept.de>
parents: 537
diff changeset
   183
     or:[selectionIndices == 0     
536
fd1b723e69b6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
   184
     or:[selectionIndices isEmpty]]) ifFalse:[
fd1b723e69b6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
   185
        ^ selectionIndices collect:[:index | listHolder value at:index]
114
5d736ee65276 Initial revision
claus
parents:
diff changeset
   186
    ].
5888
86e2b8b7db7c #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 3847
diff changeset
   187
    ^ #()
536
fd1b723e69b6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 526
diff changeset
   188
579
a9188bedbfb9 commentary & backward compatibility fix
Claus Gittinger <cg@exept.de>
parents: 563
diff changeset
   189
    "Modified: 25.4.1996 / 09:09:45 / cg"
1397
d52f3f02882d added #selections: (ST80 compat)
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   190
!
d52f3f02882d added #selections: (ST80 compat)
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   191
d52f3f02882d added #selections: (ST80 compat)
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   192
selections:aCollection
d52f3f02882d added #selections: (ST80 compat)
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   193
    "ST80 compatibility"
d52f3f02882d added #selections: (ST80 compat)
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   194
d52f3f02882d added #selections: (ST80 compat)
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   195
    ^ self selection:aCollection
d52f3f02882d added #selections: (ST80 compat)
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   196
d52f3f02882d added #selections: (ST80 compat)
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   197
    "Created: / 8.11.1997 / 12:55:23 / cg"
114
5d736ee65276 Initial revision
claus
parents:
diff changeset
   198
! !
5d736ee65276 Initial revision
claus
parents:
diff changeset
   199
526
8203430fbadd oops - clearing selection was wrong in MultiSelectionInList
ca
parents: 360
diff changeset
   200
!MultiSelectionInList class methodsFor:'documentation'!
8203430fbadd oops - clearing selection was wrong in MultiSelectionInList
ca
parents: 360
diff changeset
   201
8203430fbadd oops - clearing selection was wrong in MultiSelectionInList
ca
parents: 360
diff changeset
   202
version
5888
86e2b8b7db7c #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 3847
diff changeset
   203
    ^ '$Header$'
526
8203430fbadd oops - clearing selection was wrong in MultiSelectionInList
ca
parents: 360
diff changeset
   204
! !
5888
86e2b8b7db7c #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 3847
diff changeset
   205