RadioButtonController.st
changeset 2750 94531b6049a3
parent 790 de3424da84aa
child 6081 a3c3c71df0ef
equal deleted inserted replaced
2749:8d2ce5027c36 2750:94531b6049a3
     8  be provided or otherwise made available to, or used by, any
     8  be provided or otherwise made available to, or used by, any
     9  other person.  No title to or ownership of the software is
     9  other person.  No title to or ownership of the software is
    10  hereby transferred.
    10  hereby transferred.
    11 "
    11 "
    12 
    12 
       
    13 "{ Package: 'stx:libwidg' }"
       
    14 
    13 ToggleController subclass:#RadioButtonController
    15 ToggleController subclass:#RadioButtonController
    14 	instanceVariableNames:''
    16 	instanceVariableNames:''
    15 	classVariableNames:''
    17 	classVariableNames:''
    16 	poolDictionaries:''
    18 	poolDictionaries:''
    17 	category:'Interface-Support-Controllers'
    19 	category:'Interface-Support-Controllers'
    18 !
    20 !
    19 
    21 
    20 !RadioButtonController  class methodsFor:'documentation'!
    22 !RadioButtonController class methodsFor:'documentation'!
    21 
    23 
    22 copyright
    24 copyright
    23 "
    25 "
    24  COPYRIGHT (c) 1995 by Claus Gittinger
    26  COPYRIGHT (c) 1995 by Claus Gittinger
    25 	      All Rights Reserved
    27 	      All Rights Reserved
    48     [author:]
    50     [author:]
    49         Claus Gittinger
    51         Claus Gittinger
    50 "
    52 "
    51 ! !
    53 ! !
    52 
    54 
    53 !RadioButtonController methodsFor:'initialize / release'!
    55 !RadioButtonController methodsFor:'initialization & release'!
    54 
    56 
    55 initialize
    57 initialize
    56     super initialize.
    58     super initialize.
    57     isToggle := false.
    59     isToggle := false.
    58     isRadio := true.
    60     isRadio := true.
    59     isTriggerOnDown := true.
    61     isTriggerOnDown := true.
    60 
    62 
    61     "Created: 15.7.1996 / 13:43:23 / cg"
    63     "Created: 15.7.1996 / 13:43:23 / cg"
    62 ! !
    64 ! !
    63 
    65 
    64 !RadioButtonController  class methodsFor:'documentation'!
    66 !RadioButtonController class methodsFor:'documentation'!
    65 
    67 
    66 version
    68 version
    67     ^ '$Header: /cvs/stx/stx/libwidg/RadioButtonController.st,v 1.8 1996-07-15 14:41:38 cg Exp $'
    69     ^ '$Header: /cvs/stx/stx/libwidg/RadioButtonController.st,v 1.9 2003-05-07 14:56:15 cg Exp $'
    68 ! !
    70 ! !