CheckBox.st
changeset 484 e2b01fd13ade
parent 383 fa5fa79b1e8a
child 527 30d5dfb51612
equal deleted inserted replaced
483:1dad61b63e9d 484:e2b01fd13ade
   555 ! !
   555 ! !
   556 
   556 
   557 !CheckBox methodsFor:'event handling'!
   557 !CheckBox methodsFor:'event handling'!
   558 
   558 
   559 invalidate
   559 invalidate
       
   560     super invalidate.
   560     toggleView invalidate.
   561     toggleView invalidate.
   561     labelView invalidate
   562     labelView invalidate
   562 
   563 
   563     "Created: 1.4.1997 / 13:22:09 / cg"
   564     "Created: 1.4.1997 / 13:22:09 / cg"
       
   565     "Modified: 6.8.1997 / 18:20:12 / cg"
   564 !
   566 !
   565 
   567 
   566 keyPress:aKey x:x y:y
   568 keyPress:aKey x:x y:y
   567     aKey == Character space ifTrue:[
   569     aKey == Character space ifTrue:[
   568 	self hasFocus ifTrue:[
   570 	self hasFocus ifTrue:[
   696 ! !
   698 ! !
   697 
   699 
   698 !CheckBox class methodsFor:'documentation'!
   700 !CheckBox class methodsFor:'documentation'!
   699 
   701 
   700 version
   702 version
   701     ^ '$Header: /cvs/stx/stx/libwidg2/CheckBox.st,v 1.45 1997-05-02 13:00:34 cg Exp $'
   703     ^ '$Header: /cvs/stx/stx/libwidg2/CheckBox.st,v 1.46 1997-08-07 10:57:02 cg Exp $'
   702 ! !
   704 ! !