CheckLabel.st
changeset 2137 2642e627bb2a
parent 1682 6289269ca02c
child 2288 93f27fcd6dc2
equal deleted inserted replaced
2136:eb816448daec 2137:2642e627bb2a
    65 !CheckLabel methodsFor:'redrawing'!
    65 !CheckLabel methodsFor:'redrawing'!
    66 
    66 
    67 drawWith:fg and:bg
    67 drawWith:fg and:bg
    68     super drawWith:fg and:bg.
    68     super drawWith:fg and:bg.
    69     hasFocus == true ifTrue:[
    69     hasFocus == true ifTrue:[
    70         styleSheet name == #win95 ifTrue:[
    70         (styleSheet at:#focusHighlightStyle) == #win95 ifTrue:[
    71             self drawWin95FocusFrame
    71             self drawWin95FocusFrame
    72         ]
    72         ]
    73     ].
    73     ].
    74 
    74 
    75     "Created: / 17.9.1998 / 14:16:07 / cg"
    75     "Created: / 17.9.1998 / 14:16:07 / cg"
    77 ! !
    77 ! !
    78 
    78 
    79 !CheckLabel class methodsFor:'documentation'!
    79 !CheckLabel class methodsFor:'documentation'!
    80 
    80 
    81 version
    81 version
    82     ^ '$Header: /cvs/stx/stx/libwidg/CheckLabel.st,v 1.1 1998-09-18 17:59:40 cg Exp $'
    82     ^ '$Header: /cvs/stx/stx/libwidg/CheckLabel.st,v 1.2 2000-02-11 14:56:32 cg Exp $'
    83 ! !
    83 ! !