EditTextView.st
changeset 5149 cc14f4e4157d
parent 5146 3169904851a4
child 5153 7dfd1a447284
equal deleted inserted replaced
5148:006f1e2256cd 5149:cc14f4e4157d
  5540     "the view lost the keyboard focus 
  5540     "the view lost the keyboard focus 
  5541      (either explicit, via tabbing; or implicit, by pointer movement)
  5541      (either explicit, via tabbing; or implicit, by pointer movement)
  5542       - change any display attributes as req'd."
  5542       - change any display attributes as req'd."
  5543 
  5543 
  5544     super showNoFocus:explicit.
  5544     super showNoFocus:explicit.
  5545     completionSupport notNil ifTrue:[
  5545 
  5546         completionSupport release.
  5546     "/ cg: only do this for an explicit change (i.e. by tabbing),
       
  5547     "/ not when the focus is lost normally (because this also happens when
       
  5548     "/ the completion-menu is clicked on), and we don't want to kill the
       
  5549     "/ completer. Otherwise, completion does not work when clocking into the list.
       
  5550     explicit ifTrue:[
       
  5551         completionSupport notNil ifTrue:[
       
  5552             completionSupport release.
       
  5553         ].
  5547     ].
  5554     ].
  5548 !
  5555 !
  5549 
  5556 
  5550 wantsFocusWithPointerEnter
  5557 wantsFocusWithPointerEnter
  5551     "return true, if I want the focus when
  5558     "return true, if I want the focus when
  8651 ! !
  8658 ! !
  8652 
  8659 
  8653 !EditTextView class methodsFor:'documentation'!
  8660 !EditTextView class methodsFor:'documentation'!
  8654 
  8661 
  8655 version
  8662 version
  8656     ^ '$Header: /cvs/stx/stx/libwidg/EditTextView.st,v 1.624 2014-11-15 13:12:55 cg Exp $'
  8663     ^ '$Header: /cvs/stx/stx/libwidg/EditTextView.st,v 1.625 2014-11-17 22:50:13 cg Exp $'
  8657 !
  8664 !
  8658 
  8665 
  8659 version_CVS
  8666 version_CVS
  8660     ^ '$Header: /cvs/stx/stx/libwidg/EditTextView.st,v 1.624 2014-11-15 13:12:55 cg Exp $'
  8667     ^ '$Header: /cvs/stx/stx/libwidg/EditTextView.st,v 1.625 2014-11-17 22:50:13 cg Exp $'
  8661 ! !
  8668 ! !
  8662 
  8669