DataSetLabel.st
changeset 1716 0e31e721d4ab
parent 1605 3eb7d3e78e08
child 1818 fe99c5c721e9
equal deleted inserted replaced
1715:c987686f5d37 1716:0e31e721d4ab
       
     1 "
       
     2  COPYRIGHT (c) 1997 by eXept Software AG
       
     3               All Rights Reserved
       
     4 
       
     5  This software is furnished under a license and may be used
       
     6  only in accordance with the terms of that license and with the
       
     7  inclusion of the above copyright notice.   This software may not
       
     8  be provided or otherwise made available to, or used by, any
       
     9  other person.  No title to or ownership of the software is
       
    10  hereby transferred.
       
    11 "
       
    12 
       
    13 
       
    14 
       
    15 
       
    16 
     1 Object subclass:#DataSetLabel
    17 Object subclass:#DataSetLabel
     2 	instanceVariableNames:'label selector argument adjust font fgColor bgColor
    18 	instanceVariableNames:'label selector argument adjust font fgColor bgColor
     3 		preferredHeight preferredWidth'
    19 		preferredHeight preferredWidth'
     4 	classVariableNames:''
    20 	classVariableNames:''
     5 	poolDictionaries:''
    21 	poolDictionaries:''
     6 	category:'Views-DataSet'
    22 	category:'Views-DataSet'
     7 !
    23 !
     8 
    24 
       
    25 !DataSetLabel class methodsFor:'documentation'!
       
    26 
       
    27 copyright
       
    28 "
       
    29  COPYRIGHT (c) 1997 by eXept Software AG
       
    30               All Rights Reserved
       
    31 
       
    32  This software is furnished under a license and may be used
       
    33  only in accordance with the terms of that license and with the
       
    34  inclusion of the above copyright notice.   This software may not
       
    35  be provided or otherwise made available to, or used by, any
       
    36  other person.  No title to or ownership of the software is
       
    37  hereby transferred.
       
    38 "
       
    39 
       
    40 
       
    41 
       
    42 
       
    43 ! !
     9 
    44 
    10 !DataSetLabel methodsFor:'accessing colors'!
    45 !DataSetLabel methodsFor:'accessing colors'!
    11 
    46 
    12 backgroundColor
    47 backgroundColor
    13     "returns the background color or nil
    48     "returns the background color or nil
   254 ! !
   289 ! !
   255 
   290 
   256 !DataSetLabel class methodsFor:'documentation'!
   291 !DataSetLabel class methodsFor:'documentation'!
   257 
   292 
   258 version
   293 version
   259     ^ '$Header: /cvs/stx/stx/libwidg2/DataSetLabel.st,v 1.8 1999-10-27 12:22:45 ca Exp $'
   294     ^ '$Header: /cvs/stx/stx/libwidg2/DataSetLabel.st,v 1.9 2000-02-18 14:32:15 cg Exp $'
   260 ! !
   295 ! !