ColorEditor.st
changeset 1838 170a0f24260b
parent 1837 2ebd7244e50a
equal deleted inserted replaced
1837:2ebd7244e50a 1838:170a0f24260b
       
     1 "
       
     2  COPYRIGHT (c) 1995 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 
     1 "{ Package: 'stx:libtool2' }"
    13 "{ Package: 'stx:libtool2' }"
     2 
    14 
     3 SimpleDialog subclass:#ColorEditor
    15 SimpleDialog subclass:#ColorEditor
     4 	instanceVariableNames:'red green blue hue light saturation colorNameHolder'
    16 	instanceVariableNames:'red green blue hue light saturation colorNameHolder'
     5 	classVariableNames:''
    17 	classVariableNames:''
     6 	poolDictionaries:''
    18 	poolDictionaries:''
     7 	category:'Interface-UIPainter'
    19 	category:'Interface-UIPainter'
     8 !
    20 !
     9 
    21 
    10 !ColorEditor class methodsFor:'documentation'!
    22 !ColorEditor class methodsFor:'documentation'!
       
    23 
       
    24 copyright
       
    25 "
       
    26  COPYRIGHT (c) 1995 by eXept Software AG
       
    27               All Rights Reserved
       
    28 
       
    29  This software is furnished under a license and may be used
       
    30  only in accordance with the terms of that license and with the
       
    31  inclusion of the above copyright notice.   This software may not
       
    32  be provided or otherwise made available to, or used by, any
       
    33  other person.  No title to or ownership of the software is
       
    34  hereby transferred.
       
    35 "
       
    36 !
    11 
    37 
    12 documentation
    38 documentation
    13 "
    39 "
    14     An edit-dialog for colors.
    40     An edit-dialog for colors.
    15 "
    41 "