DataSetLabel.st
changeset 2699 ffc569afbb18
parent 2451 383fdea243d0
child 2779 e5b0570c2c32
equal deleted inserted replaced
2698:b7a80e7a16d2 2699:ffc569afbb18
    52     ^ bgColor
    52     ^ bgColor
    53 
    53 
    54 
    54 
    55 !
    55 !
    56 
    56 
       
    57 backgroundColor:aColor
       
    58     "set the background color or nil
       
    59     "
       
    60     bgColor := aColor
       
    61 !
       
    62 
    57 foregroundColor
    63 foregroundColor
    58     "returns the foreground color or nil
    64     "returns the foreground color or nil
    59     "
    65     "
    60     ^ fgColor
    66     ^ fgColor
    61 
    67 
       
    68 !
       
    69 
       
    70 foregroundColor:aColor
       
    71     "set the foreground color or nil
       
    72     "
       
    73     fgColor := aColor
    62 ! !
    74 ! !
    63 
    75 
    64 !DataSetLabel methodsFor:'accessing-dimensions'!
    76 !DataSetLabel methodsFor:'accessing-dimensions'!
    65 
    77 
    66 preferredHeight
    78 preferredHeight
   302 ! !
   314 ! !
   303 
   315 
   304 !DataSetLabel class methodsFor:'documentation'!
   316 !DataSetLabel class methodsFor:'documentation'!
   305 
   317 
   306 version
   318 version
   307     ^ '$Header: /cvs/stx/stx/libwidg2/DataSetLabel.st,v 1.16 2003-02-28 13:24:49 cg Exp $'
   319     ^ '$Header: /cvs/stx/stx/libwidg2/DataSetLabel.st,v 1.17 2004-04-07 08:39:01 werner Exp $'
   308 ! !
   320 ! !