DataSetBuilder.st
changeset 2944 17933efd2f0f
parent 2903 8470507f8cd8
child 2991 705850a604ee
equal deleted inserted replaced
2943:e7d181ac8f06 2944:17933efd2f0f
  3432 
  3432 
  3433 processEvent:anEvent
  3433 processEvent:anEvent
  3434     "filter keyboard edit-events typed into the listOfItemsView.
  3434     "filter keyboard edit-events typed into the listOfItemsView.
  3435      Return true, if I have eaten the event"
  3435      Return true, if I have eaten the event"
  3436 
  3436 
       
  3437     <resource: #keyboard (#Delete #BackSPace #Cut #Copy #Paste #CtrlCursorDown #CtrlCursorUp )>
       
  3438 
  3437     |evView inView rawKey key|
  3439     |evView inView rawKey key|
  3438 
  3440 
  3439     anEvent isKeyPressEvent ifFalse:[^ false].
  3441     anEvent isKeyPressEvent ifFalse:[^ false].
  3440 
  3442 
  3441     evView := anEvent targetView.
  3443     evView := anEvent targetView.
  4411 !
  4413 !
  4412 
  4414 
  4413 version_CVS
  4415 version_CVS
  4414     ^ '$Header$'
  4416     ^ '$Header$'
  4415 ! !
  4417 ! !
       
  4418