RadioButtonController.st
author claus
Wed, 10 May 1995 04:30:46 +0200
changeset 126 40228f4fd66b
parent 104 ca75c90df7a9
child 128 06a050529335
permissions -rw-r--r--
.

'From Smalltalk/X, Version:2.10.5 on 14-mar-1995 at 11:07:27 am'!

ToggleController subclass:#RadioButtonController
	 instanceVariableNames:''
	 classVariableNames:''
	 poolDictionaries:''
	 category:'Interface-Support-Controllers'
!

!RadioButtonController methodsFor:'event handling'!

buttonPress:button x:x y:y
    "radiobuttons change only off-to-on; turning off is done by other
     buttons"

    pressed ifFalse:[
	view toggle
    ]
! !