SelectionInListView.st
changeset 5864 2b97dee5149e
parent 5852 9543b58b0e6c
child 5867 ae5f44ecba6e
child 5956 649159a0d63a
equal deleted inserted replaced
5863:65a6789689a3 5864:2b97dee5149e
  1393      For example, the inspector uses this, and redisplays the value,
  1393      For example, the inspector uses this, and redisplays the value,
  1394      if the selection is the same.
  1394      if the selection is the same.
  1395      The default is true, meaning that a click on an already selected
  1395      The default is true, meaning that a click on an already selected
  1396      does not lead to a notification via the actionBlock/change mechanism."
  1396      does not lead to a notification via the actionBlock/change mechanism."
  1397 
  1397 
  1398 "ca: 
  1398     "note by ca: 
  1399     multiple selection on: the ignoreReselect will have no influence
  1399         multiple selection on: the ignoreReselect will have no influence
  1400 "
  1400     "
  1401     ignoreReselect := aBoolean
  1401     ignoreReselect := aBoolean
  1402 !
  1402 !
  1403 
  1403 
  1404 multipleSelectOk
  1404 multipleSelectOk
  1405     ^ multipleSelectOk
  1405     ^ multipleSelectOk
  1414     multipleSelectOk := aBoolean.
  1414     multipleSelectOk := aBoolean.
  1415 
  1415 
  1416 !
  1416 !
  1417 
  1417 
  1418 toggleSelect:aBoolean
  1418 toggleSelect:aBoolean
  1419     "turn on/off toggle select. If true, clicking on a selected entry
  1419     "turn on/off toggle select. 
  1420      unselects it and vice versa. The default is false, which means
  1420      If true, clicking on a selected entry unselects it and vice versa. 
       
  1421      The default is false, which means
  1421      that clicking on an already selected entry does not change its
  1422      that clicking on an already selected entry does not change its
  1422      select status (see also ignoreReselect:)."
  1423      select status (see also ignoreReselect:, which has higher prio and is checked first)."
  1423 
  1424 
  1424     toggleSelect := aBoolean.
  1425     toggleSelect := aBoolean.
  1425 ! !
  1426 ! !
  1426 
  1427 
  1427 !SelectionInListView methodsFor:'accessing-channels'!
  1428 !SelectionInListView methodsFor:'accessing-channels'!