Color.st
author Stefan Vogel <sv@exept.de>
Tue, 28 Apr 2020 15:28:14 +0200
changeset 9038 dd177fea6408
parent 8993 424fd9705378
permissions -rw-r--r--
#REFACTORING by stefan class: Font changed: #setFamily:face:style:size:sizeUnit:encoding:device:
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
8792
cdc228b4e90c #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 8787
diff changeset
     1
"{ Encoding: utf8 }"
cdc228b4e90c #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 8787
diff changeset
     2
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
     3
"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
     4
 COPYRIGHT (c) 1992 by Claus Gittinger
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
     5
	      All Rights Reserved
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
     6
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
     7
 This software is furnished under a license and may be used
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
     8
 only in accordance with the terms of that license and with the
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
     9
 inclusion of the above copyright notice.   This software may not
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    10
 be provided or otherwise made available to, or used by, any
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    11
 other person.  No title to or ownership of the software is
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    12
 hereby transferred.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    13
"
3213
78add46c0f4b only init once
Claus Gittinger <cg@exept.de>
parents: 3145
diff changeset
    14
"{ Package: 'stx:libview' }"
78add46c0f4b only init once
Claus Gittinger <cg@exept.de>
parents: 3145
diff changeset
    15
6785
7babceb91298 class: Color
Claus Gittinger <cg@exept.de>
parents: 6654
diff changeset
    16
"{ NameSpace: Smalltalk }"
7babceb91298 class: Color
Claus Gittinger <cg@exept.de>
parents: 6654
diff changeset
    17
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    18
Object subclass:#Color
3757
d6b9e17dcc45 checkin from browser
Stefan Vogel <sv@exept.de>
parents: 3727
diff changeset
    19
	instanceVariableNames:'red green blue device colorId ditherForm replacementColor
d6b9e17dcc45 checkin from browser
Stefan Vogel <sv@exept.de>
parents: 3727
diff changeset
    20
		writable'
8123
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
    21
	classVariableNames:'Black Blue Cells ColorAllocationFailSignal ColorErrorSignal
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
    22
		DarkGrey DitherBits Green Grey InvalidColorNameSignal LightGrey
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
    23
		MaxValue Orange Pseudo0 Pseudo1 PseudoAll Red RetryAllocation
8660
ee175c43cba6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8456
diff changeset
    24
		StandardColorValues Transparent White Yellow DarkGreen DarkRed'
3757
d6b9e17dcc45 checkin from browser
Stefan Vogel <sv@exept.de>
parents: 3727
diff changeset
    25
	poolDictionaries:''
d6b9e17dcc45 checkin from browser
Stefan Vogel <sv@exept.de>
parents: 3727
diff changeset
    26
	category:'Graphics-Support'
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    27
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    28
1907
61fdff318175 Make Device*Handles (used for finalization) private in their resp. classes.
Stefan Vogel <sv@exept.de>
parents: 1859
diff changeset
    29
Object subclass:#DeviceColorHandle
3757
d6b9e17dcc45 checkin from browser
Stefan Vogel <sv@exept.de>
parents: 3727
diff changeset
    30
	instanceVariableNames:'device colorId'
d6b9e17dcc45 checkin from browser
Stefan Vogel <sv@exept.de>
parents: 3727
diff changeset
    31
	classVariableNames:''
d6b9e17dcc45 checkin from browser
Stefan Vogel <sv@exept.de>
parents: 3727
diff changeset
    32
	poolDictionaries:''
d6b9e17dcc45 checkin from browser
Stefan Vogel <sv@exept.de>
parents: 3727
diff changeset
    33
	privateIn:Color
1907
61fdff318175 Make Device*Handles (used for finalization) private in their resp. classes.
Stefan Vogel <sv@exept.de>
parents: 1859
diff changeset
    34
!
61fdff318175 Make Device*Handles (used for finalization) private in their resp. classes.
Stefan Vogel <sv@exept.de>
parents: 1859
diff changeset
    35
1144
07f3de59864d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1023
diff changeset
    36
!Color class methodsFor:'documentation'!
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    37
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    38
copyright
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    39
"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    40
 COPYRIGHT (c) 1992 by Claus Gittinger
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
    41
	      All Rights Reserved
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    42
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    43
 This software is furnished under a license and may be used
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    44
 only in accordance with the terms of that license and with the
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    45
 inclusion of the above copyright notice.   This software may not
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    46
 be provided or otherwise made available to, or used by, any
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    47
 other person.  No title to or ownership of the software is
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    48
 hereby transferred.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    49
"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    50
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    51
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    52
documentation
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    53
"
7782
5c396aabbe58 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7762
diff changeset
    54
    Color represents colors in a device independent manner.
5c396aabbe58 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7762
diff changeset
    55
    The main info I keep in mySelf are the red, green and blue components scaled into 0 .. MaxValue.
5c396aabbe58 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7762
diff changeset
    56
    
5c396aabbe58 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7762
diff changeset
    57
    A device specific color can be acquired by sending a color the 'onDevice:aDevice' message,
5c396aabbe58 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7762
diff changeset
    58
    which will return a color with the same r/g/b values as the receiver but with a specific
5c396aabbe58 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7762
diff changeset
    59
    colorID for that device (which may or may not imply a colormap slot allocation on that device).
5c396aabbe58 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7762
diff changeset
    60
    A device-specific color index (i.e. palette-ID) is then found in the newly allocated color's colorID slot.
5c396aabbe58 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7762
diff changeset
    61
    
5c396aabbe58 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7762
diff changeset
    62
    Most of the device dependent coding was to support limited graphics devices (non truecolor, eg. palette)
6553
7d7458ec2686 class: Color
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
    63
    in a transparent way. This was required at that time (late 80's, early 90's),
7782
5c396aabbe58 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7762
diff changeset
    64
    but is now almost obsolete, as these days, virtually any graphic systems supports true colors.
6553
7d7458ec2686 class: Color
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
    65
    It is arguably, if that stuff should remain here, or if we should simply give up support
7782
5c396aabbe58 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7762
diff changeset
    66
    for old VGA-like displays 
5c396aabbe58 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7762
diff changeset
    67
    (actually, there are still such limited displays around, for example in the embedded area.
5c396aabbe58 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7762
diff changeset
    68
     So we will leave that support in for another few years ;-) ).
5c396aabbe58 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7762
diff changeset
    69
5c396aabbe58 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7762
diff changeset
    70
    On such limited devices, colors can be pure or dithered, depending on the capabilities of the device.
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    71
    For plain colors, the colorId-instvar is a handle (usually lookup-table entry) for that
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    72
    device. For dithered colors, the colorId is nil and ditherForm specifies the form
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    73
    used to dither that color. The ditherForm can be either a depth-1 bitmap or a pixmap
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    74
    with the devices depth. The plain colors needed by the ditherForm are found in its
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    75
    colormap (as usual for bitmaps).
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    76
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    77
    The default algorithm for color allocation is to ask the display for colors as
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    78
    new colors are created. When running out of colors, dithered colors will be used,
7620
3b59f3c6764f #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 7580
diff changeset
    79
    using existing nearest colors and a dither pattern to approximate the color.
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    80
    There could be situations, where no good colors are available for the dither, leading
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    81
    to ugly looking dither colors.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    82
    This can be avoided by preallocating a set of colors over the complete range, which
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    83
    makes certain that appropriate colors are later available for the dither process.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    84
    To do so, add a statement like: 'Color getColors5x5x5' to the startup.rc file.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    85
    (beside 5x5x5, there are various other size combinations available).
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    86
    However, doing so may make things worse when displaying bitmap images, since this
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    87
    preallocated table may steal colors from the image ...
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    88
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    89
    [Instance variables:]
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    90
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    91
      red             <Integer>       the red component (0..MaxValue)
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    92
      green           <Integer>       the green component (0..MaxValue)
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    93
      blue            <Integer>       the blue component (0..MaxValue)
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    94
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    95
      device          <Device>        the device I am on, or nil
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    96
      colorId         <Object>        some device dependent identifier (or nil if dithered)
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    97
      ditherForm      <Form>          the Form to dither this color (if non-nil)
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    98
      writable        <Boolean>       true if this is for a writable color cell
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
    99
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   100
    [Class variables:]
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   101
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   102
      MaxValue        <Integer>       r/g/b components are scaled relative to this maximum
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   103
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   104
      Lobby           <Registry>      all colors in use - keeps track of already allocated
6553
7d7458ec2686 class: Color
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
   105
                                      colors for reuse and finalization.
7650
5781e05a6a1d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7642
diff changeset
   106
                                      (don't use it: this will be moved to the device)
1229
249c0d78fd34 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1224
diff changeset
   107
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   108
      Cells           <Registry>      keeps track of allocated writable color cells
7650
5781e05a6a1d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7642
diff changeset
   109
                                      (don't use it: this will be moved to the device)
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   110
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   111
      FixColors       <Array>         preallocated colors for dithering on Display
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   112
      NumRedFix       <Integer>       number of distinct red values in FixColors
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   113
      NumGreenFix     <Integer>       number of distinct green values in FixColors
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   114
      NumBlueFix      <Integer>       number of distinct blue values in FixColors
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   115
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   116
      Black           <Color>         for fast return of black
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   117
      White           <Color>         for fast return of white
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   118
      Grey            <Color>         for fast return of grey
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   119
      LightGrey       <Color>         for fast return of lightGrey
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   120
      DarkGrey        <Color>         for fast return of darkGrey
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   121
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   122
      Pseudo0         <Color>         a color with 0 as handle (for forms and bitblit)
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   123
      Pseudo1         <Color>         a color with 1 as handle (for forms)
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   124
      PseudoAll       <Color>         a color with allPlanes as handle (for bitblit)
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   125
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   126
      Red             <Color>         red, needed for dithering
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   127
      Green           <Color>         green, for dithering
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   128
      Blue            <Color>         blue, for dithering
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   129
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   130
      DitherColors    <Collection>    some preallocated colors for dithering
6553
7d7458ec2686 class: Color
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
   131
                                      (kept, so they are available when needed)
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   132
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   133
      RetryAllocation <Boolean>       this flag controls how a request for a
6553
7d7458ec2686 class: Color
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
   134
                                      color should be handled which failed previously.
7d7458ec2686 class: Color
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
   135
                                      I.e. a color is asked for, which was dithered
7d7458ec2686 class: Color
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
   136
                                      the last time. Since it could happen, that in
7d7458ec2686 class: Color
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
   137
                                      the meantime more colors became free, the request
7d7458ec2686 class: Color
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
   138
                                      might succeed this time - however, your screen may
7d7458ec2686 class: Color
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
   139
                                      look a bit funny, due to having both dithered and
7d7458ec2686 class: Color
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
   140
                                      undithered versions around.
7d7458ec2686 class: Color
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
   141
                                      The default is true, which means: do retry
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   142
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   143
    compatibility issues:
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   144
6553
7d7458ec2686 class: Color
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
   145
        ST-80 seems to represent colors internally with scaled smallInteger
7d7458ec2686 class: Color
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
   146
        components (this can be guessed from uses of
7d7458ec2686 class: Color
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
   147
        scaledRed:scaledGreen:scaledBlue:). The main instance creation method is
7d7458ec2686 class: Color
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
   148
        via 'ColorValue red:green:blue:', passing components in 0..1.
8277
942b74deecfe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 8243
diff changeset
   149
        In ST/X, rgb components are typically represented as percent.
6553
7d7458ec2686 class: Color
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
   150
        For more compatibility (when subclassing color), these internals may
7d7458ec2686 class: Color
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
   151
        change in the near future. For migration, a compatibility subclass
7d7458ec2686 class: Color
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
   152
        called ColorValue is provided.
7d7458ec2686 class: Color
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
   153
        After the change, Color will be renamed to ColorValue and Color
7d7458ec2686 class: Color
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
   154
        be made a subclass of ColorValue (offering the 0..100 interface for
7d7458ec2686 class: Color
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
   155
        backward compatibility).
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   156
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   157
    [see also:]
6553
7d7458ec2686 class: Color
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
   158
        DeviceWorkstation
7d7458ec2686 class: Color
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
   159
        GraphicsContext DeviceDrawable Form Image Colormap
7d7458ec2686 class: Color
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
   160
        Font Cursor
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   161
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   162
    [author:]
6553
7d7458ec2686 class: Color
Claus Gittinger <cg@exept.de>
parents: 6552
diff changeset
   163
        Claus Gittinger
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   164
"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   165
! !
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   166
1144
07f3de59864d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1023
diff changeset
   167
!Color class methodsFor:'initialization'!
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   168
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   169
initialize
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   170
    "setup tracker of known colors and initialize classvars with
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   171
     heavily used colors"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   172
2379
b2a844aabc93 made my signals children of a common colorErrorSignal
Claus Gittinger <cg@exept.de>
parents: 2375
diff changeset
   173
    ColorErrorSignal isNil ifTrue:[
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   174
	ColorErrorSignal := Error newSignalMayProceed:true.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   175
	ColorErrorSignal nameClass:self message:#colorErrorSignal.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   176
	ColorErrorSignal notifierString:'color error'.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   177
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   178
	ColorAllocationFailSignal := ColorErrorSignal newSignalMayProceed:true.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   179
	ColorAllocationFailSignal nameClass:self message:#colorAllocationFailSignal.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   180
	ColorAllocationFailSignal notifierString:'color allocation failed'.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   181
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   182
	InvalidColorNameSignal := ColorErrorSignal newSignalMayProceed:true.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   183
	InvalidColorNameSignal nameClass:self message:#invalidColorNameSignal.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   184
	InvalidColorNameSignal notifierString:'invalid color name'.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   185
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   186
	MaxValue := 16rFFFF.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   187
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   188
	"want to be informed when returning from snapshot"
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   189
	ObjectMemory addDependent:self.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   190
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   191
	RetryAllocation := true.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   192
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   193
	DitherBits := self ditherBits.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   194
	self initializeStandardColorNames.
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   195
    ].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   196
1365
37a9e7ac4dbc moved color registration from Color class to per-device lobby
Claus Gittinger <cg@exept.de>
parents: 1348
diff changeset
   197
    "
37a9e7ac4dbc moved color registration from Color class to per-device lobby
Claus Gittinger <cg@exept.de>
parents: 1348
diff changeset
   198
     Color initialize
37a9e7ac4dbc moved color registration from Color class to per-device lobby
Claus Gittinger <cg@exept.de>
parents: 1348
diff changeset
   199
    "
37a9e7ac4dbc moved color registration from Color class to per-device lobby
Claus Gittinger <cg@exept.de>
parents: 1348
diff changeset
   200
2379
b2a844aabc93 made my signals children of a common colorErrorSignal
Claus Gittinger <cg@exept.de>
parents: 2375
diff changeset
   201
    "Modified: / 30.9.1998 / 21:56:50 / cg"
1428
79251ddda7a1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1390
diff changeset
   202
!
79251ddda7a1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1390
diff changeset
   203
79251ddda7a1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1390
diff changeset
   204
initializeStandardColorNames
1929
e500fcf94969 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1928
diff changeset
   205
    "{ Pragma: +optSpace }"
e500fcf94969 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1928
diff changeset
   206
1428
79251ddda7a1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1390
diff changeset
   207
    "setup standard colors"
79251ddda7a1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1390
diff changeset
   208
79251ddda7a1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1390
diff changeset
   209
    StandardColorValues := Dictionary new.
79251ddda7a1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1390
diff changeset
   210
    #(
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   211
		'red'     (16rFFFF 16r0000 16r0000)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   212
		'green'   (16r0000 16rFFFF 16r0000)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   213
		'blue'    (16r0000 16r0000 16rFFFF)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   214
		'yellow'  (16rFFFF 16rFFFF 16r0000)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   215
		'magenta' (16rFFFF 16r0000 16rFFFF)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   216
		'cyan'    (16r0000 16rFFFF 16rFFFF)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   217
		'white'   (16rFFFF 16rFFFF 16rFFFF)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   218
		'black'   (16r0000 16r0000 16r0000)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   219
		'olive'   (16r7FFF 16r7FFF 16r0000)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   220
		'teal'    (16r0000 16r7FFF 16r7FFF)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   221
		'silver'  (16r6666 16r6666 16r6666)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   222
		'lime'    (16r3333 16rFFFF 16r0000)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   223
		'fuchsia' (16r9999 16r07ae 16rFFFF)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   224
		'aqua'    (16r199a 16rFFFF 16rFFFF)
1428
79251ddda7a1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1390
diff changeset
   225
    ) pairWiseDo:[:name :value |
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   226
	StandardColorValues at:name put:value
1428
79251ddda7a1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1390
diff changeset
   227
    ].
79251ddda7a1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1390
diff changeset
   228
79251ddda7a1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1390
diff changeset
   229
    "
79251ddda7a1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1390
diff changeset
   230
     Color initializeStandardColorNames
79251ddda7a1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1390
diff changeset
   231
    "
79251ddda7a1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1390
diff changeset
   232
79251ddda7a1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1390
diff changeset
   233
    "Modified: 6.3.1997 / 02:28:58 / cg"
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   234
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   235
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   236
update:something with:aParameter from:changedObject
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   237
    "handle image restarts and flush any device resource handles"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   238
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   239
    (something == #returnFromSnapshot) ifTrue:[
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   240
	Display notNil ifTrue:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   241
	    Display visualType == #TrueColor ifTrue:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   242
		Display releaseFixColors
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   243
	    ] ifFalse:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   244
		Display fixColors notNil ifTrue:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   245
		    ColorAllocationFailSignal handle:[:ex |
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   246
			ex return
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   247
		    ] do:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   248
			|nR nG nB|
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   249
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   250
			nR := Display numFixRed.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   251
			nG := Display numFixGreen.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   252
			nB := Display numFixBlue.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   253
			Display releaseFixColors.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   254
			self getColorsRed:nR
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   255
				    green:nG
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   256
				     blue:nB
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   257
				       on:Display
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   258
		    ]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   259
		]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   260
	    ]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   261
	]
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   262
    ]
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   263
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   264
    "Created: 15.6.1996 / 15:14:03 / cg"
1370
37dfdffdd4b6 getPrimaryColors now invoked from device
Claus Gittinger <cg@exept.de>
parents: 1368
diff changeset
   265
    "Modified: 24.2.1997 / 22:08:05 / cg"
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   266
! !
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   267
1144
07f3de59864d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1023
diff changeset
   268
!Color class methodsFor:'instance creation'!
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   269
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   270
allColor
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   271
    "return a special color which, when used for bit-blitting will
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   272
     behave like a all-1-color (i.e. have a device-pixel value of all-1s)"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   273
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   274
    PseudoAll isNil ifTrue:[
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   275
	PseudoAll := self basicNew setColorId:-1
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   276
    ].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   277
    ^ PseudoAll
1238
b363894182d0 prepare for replacement colors
Claus Gittinger <cg@exept.de>
parents: 1237
diff changeset
   278
b363894182d0 prepare for replacement colors
Claus Gittinger <cg@exept.de>
parents: 1237
diff changeset
   279
    "Modified: 17.1.1997 / 00:05:36 / cg"
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   280
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   281
2455
9d61d6c0d0f9 added #bgrValue (sigh)
Claus Gittinger <cg@exept.de>
parents: 2388
diff changeset
   282
bgrValue:bgr
3005
b8d9132ebbfd checkin from browser
Stefan Vogel <sv@exept.de>
parents: 2999
diff changeset
   283
    "return a color from a 24bit BGR value (intentionally not RGB);
2455
9d61d6c0d0f9 added #bgrValue (sigh)
Claus Gittinger <cg@exept.de>
parents: 2388
diff changeset
   284
     The value is composed of b<<16 + g<<8 + r.
9d61d6c0d0f9 added #bgrValue (sigh)
Claus Gittinger <cg@exept.de>
parents: 2388
diff changeset
   285
     (this byte-order is sometimes encountered with windows systems (progs)"
9d61d6c0d0f9 added #bgrValue (sigh)
Claus Gittinger <cg@exept.de>
parents: 2388
diff changeset
   286
9d61d6c0d0f9 added #bgrValue (sigh)
Claus Gittinger <cg@exept.de>
parents: 2388
diff changeset
   287
    |r g b|
9d61d6c0d0f9 added #bgrValue (sigh)
Claus Gittinger <cg@exept.de>
parents: 2388
diff changeset
   288
9d61d6c0d0f9 added #bgrValue (sigh)
Claus Gittinger <cg@exept.de>
parents: 2388
diff changeset
   289
    b := (bgr bitShift:-16) bitAnd:16rFF.
9d61d6c0d0f9 added #bgrValue (sigh)
Claus Gittinger <cg@exept.de>
parents: 2388
diff changeset
   290
    g := (bgr bitShift:-8) bitAnd:16rFF.
9d61d6c0d0f9 added #bgrValue (sigh)
Claus Gittinger <cg@exept.de>
parents: 2388
diff changeset
   291
    r := (bgr) bitAnd:16rFF.
9d61d6c0d0f9 added #bgrValue (sigh)
Claus Gittinger <cg@exept.de>
parents: 2388
diff changeset
   292
    ^ self redByte:r greenByte:g blueByte:b
9d61d6c0d0f9 added #bgrValue (sigh)
Claus Gittinger <cg@exept.de>
parents: 2388
diff changeset
   293
9d61d6c0d0f9 added #bgrValue (sigh)
Claus Gittinger <cg@exept.de>
parents: 2388
diff changeset
   294
!
9d61d6c0d0f9 added #bgrValue (sigh)
Claus Gittinger <cg@exept.de>
parents: 2388
diff changeset
   295
1985
4af804551b39 some instancing methods added
tz
parents: 1976
diff changeset
   296
blue: blue
4af804551b39 some instancing methods added
tz
parents: 1976
diff changeset
   297
    "return a color from blue value;
4af804551b39 some instancing methods added
tz
parents: 1976
diff changeset
   298
     the argument green is interpreted as percent (0..100)"
4af804551b39 some instancing methods added
tz
parents: 1976
diff changeset
   299
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   300
    ^ here
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   301
	scaledRed:0 scaledGreen:0 scaledBlue:(blue * MaxValue // 100)
3005
b8d9132ebbfd checkin from browser
Stefan Vogel <sv@exept.de>
parents: 2999
diff changeset
   302
b8d9132ebbfd checkin from browser
Stefan Vogel <sv@exept.de>
parents: 2999
diff changeset
   303
    "
b8d9132ebbfd checkin from browser
Stefan Vogel <sv@exept.de>
parents: 2999
diff changeset
   304
     (Color blue:50) inspect
b8d9132ebbfd checkin from browser
Stefan Vogel <sv@exept.de>
parents: 2999
diff changeset
   305
    "
b8d9132ebbfd checkin from browser
Stefan Vogel <sv@exept.de>
parents: 2999
diff changeset
   306
1985
4af804551b39 some instancing methods added
tz
parents: 1976
diff changeset
   307
!
4af804551b39 some instancing methods added
tz
parents: 1976
diff changeset
   308
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   309
brightness:brightness
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   310
    "create a gray color with given brightness (0..1).
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   311
     ST-80 compatibility."
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   312
3264
ab71c2bd250f fixed #brightness:
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   313
    ^ self scaledGray:(brightness * MaxValue) rounded
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   314
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   315
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   316
colorId:id
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   317
    "return a color for a specific colorid without associating it to a
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   318
     specific device. Use this only for bitmaps which want 0- or 1-color,
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   319
     or for bitblits if you want to manipulate a specific colorplane."
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   320
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   321
    id == 0 ifTrue:[
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   322
	^ self noColor
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   323
    ].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   324
    id == 1 ifTrue:[
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   325
	Pseudo1 isNil ifTrue:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   326
	    Pseudo1 := self basicNew setColorId:1
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   327
	].
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   328
	^ Pseudo1
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   329
    ].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   330
    id == -1 ifTrue:[
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   331
	^ self allColor
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   332
    ].
1365
37a9e7ac4dbc moved color registration from Color class to per-device lobby
Claus Gittinger <cg@exept.de>
parents: 1348
diff changeset
   333
1238
b363894182d0 prepare for replacement colors
Claus Gittinger <cg@exept.de>
parents: 1237
diff changeset
   334
    ^ self basicNew setColorId:id
b363894182d0 prepare for replacement colors
Claus Gittinger <cg@exept.de>
parents: 1237
diff changeset
   335
1365
37a9e7ac4dbc moved color registration from Color class to per-device lobby
Claus Gittinger <cg@exept.de>
parents: 1348
diff changeset
   336
    "Modified: 24.2.1997 / 18:16:30 / cg"
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   337
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   338
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   339
cyan:c magenta:m yellow:y
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   340
    "return a color from cyan, magenta and yellow values.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   341
     all values are given in percent (0..100)"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   342
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   343
    ^ self
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   344
	redPercent:(100 - c)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   345
	greenPercent:(100 - m)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   346
	bluePercent:(100 - y)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   347
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   348
    "
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   349
     Color cyan:100 magenta:0 yellow:0      - cyan
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   350
     Color cyan:100 magenta:100 yellow:0    - blue
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   351
     Color cyan:100 magenta:0 yellow:100    - green
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   352
     Color cyan:100 magenta:100 yellow:100  - black
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   353
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   354
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   355
    "Modified: 11.6.1996 / 18:29:15 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   356
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   357
2888
ce7e932e7cf6 added cyan:magenta:yellow:black
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   358
cyan:c magenta:m yellow:y black:k
ce7e932e7cf6 added cyan:magenta:yellow:black
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   359
    "return a color from cyan, magenta, yellow and black values.
ce7e932e7cf6 added cyan:magenta:yellow:black
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   360
     all values are given in percent (0..100).
2889
143b466ea54b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2888
diff changeset
   361
     The value returned here is questionable.
143b466ea54b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2888
diff changeset
   362
     TODO: we loose information about one component here,
143b466ea54b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2888
diff changeset
   363
     and should actually return an instance of CMYK color, which keeps this
143b466ea54b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2888
diff changeset
   364
     information internally for later use (when saving)."
2888
ce7e932e7cf6 added cyan:magenta:yellow:black
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   365
ce7e932e7cf6 added cyan:magenta:yellow:black
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   366
    |scale r g b|
ce7e932e7cf6 added cyan:magenta:yellow:black
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   367
ce7e932e7cf6 added cyan:magenta:yellow:black
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   368
    "/ mhmh - how should we scale black into the components ?
ce7e932e7cf6 added cyan:magenta:yellow:black
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   369
ce7e932e7cf6 added cyan:magenta:yellow:black
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   370
    r := (100 - c).
ce7e932e7cf6 added cyan:magenta:yellow:black
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   371
    g := (100 - m).
ce7e932e7cf6 added cyan:magenta:yellow:black
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   372
    b := (100 - y).
ce7e932e7cf6 added cyan:magenta:yellow:black
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   373
    k ~~ 0 ifTrue:[
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   374
	"/ more black - darker
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   375
	scale := (100-k) max:0.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   376
	scale := scale / 100.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   377
	r := r * scale.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   378
	g := g * scale.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   379
	b := b * scale.
2888
ce7e932e7cf6 added cyan:magenta:yellow:black
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   380
    ].
ce7e932e7cf6 added cyan:magenta:yellow:black
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   381
ce7e932e7cf6 added cyan:magenta:yellow:black
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   382
    ^ self redPercent:r greenPercent:g bluePercent:b
ce7e932e7cf6 added cyan:magenta:yellow:black
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   383
ce7e932e7cf6 added cyan:magenta:yellow:black
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   384
    "
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   385
     Color cyan:100 magenta:0 yellow:0 black:0      - cyan
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   386
     Color cyan:100 magenta:0 yellow:0 black:50     - cyan darkened
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   387
     Color cyan:100 magenta:50 yellow:50 black:0    - cyan darkened
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   388
     Color cyan:0 magenta:0 yellow:0 black:100      - black
2888
ce7e932e7cf6 added cyan:magenta:yellow:black
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   389
    "
ce7e932e7cf6 added cyan:magenta:yellow:black
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   390
ce7e932e7cf6 added cyan:magenta:yellow:black
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   391
    "Modified: 11.6.1996 / 18:29:15 / cg"
ce7e932e7cf6 added cyan:magenta:yellow:black
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   392
!
ce7e932e7cf6 added cyan:magenta:yellow:black
Claus Gittinger <cg@exept.de>
parents: 2845
diff changeset
   393
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   394
dither:fraction between:color1 and:color2 on:aDevice
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   395
    "create a dithered Color which dithers between color1 and color2.
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   396
     Fraction must be 0..1, color1 and color2 must be real (i.e. undithered)
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   397
     colors.
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   398
     Useful, if you explicitely want a dithered color
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   399
     (for example, to not use up too many colors, or for special effects)"
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   400
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   401
    |newColor form c1 c2|
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   402
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   403
    "/ both must be true device colors
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   404
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   405
    c1 := color1 exactOn:aDevice.
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   406
    c2 := color2 exactOn:aDevice.
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   407
    (c1 isNil or:[c2 isNil]) ifTrue:[
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   408
	'Color [warning]: monoDither failed - no real colors given' errorPrintCR.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   409
	^ nil
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   410
    ].
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   411
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   412
    self
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   413
	monoDitherFor:fraction
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   414
	between:c1
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   415
	and:c2
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   416
	on:aDevice
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   417
	into:[:c :f | newColor := c. form := f].
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   418
    newColor notNil ifTrue:[^ newColor].
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   419
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   420
    form isNil ifTrue:[
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   421
	"/ cannot happen
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   422
	'Color [warning]: monoDither failed' errorPrintCR.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   423
	^ nil
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   424
    ].
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   425
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   426
    newColor := self basicNew
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   427
			setScaledRed:nil
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   428
			scaledGreen:nil
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   429
			scaledBlue:nil
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   430
			device:aDevice.
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   431
    newColor setDitherForm:form.
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   432
    newColor setDevice:aDevice colorId:nil.
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   433
    ^ newColor
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   434
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   435
    "
3005
b8d9132ebbfd checkin from browser
Stefan Vogel <sv@exept.de>
parents: 2999
diff changeset
   436
     (Color dither:0.25 between:Color red and:Color yellow on:Display) inspect
b8d9132ebbfd checkin from browser
Stefan Vogel <sv@exept.de>
parents: 2999
diff changeset
   437
     (Color dither:0.5 between:Color red and:Color yellow on:Display) inspect
b8d9132ebbfd checkin from browser
Stefan Vogel <sv@exept.de>
parents: 2999
diff changeset
   438
     (Color dither:0.75 between:Color red and:Color yellow on:Display) inspect
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   439
    "
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   440
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   441
    "Created: 3.5.1997 / 10:54:32 / cg"
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   442
    "Modified: 3.5.1997 / 11:10:51 / cg"
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   443
!
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   444
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   445
dithered:fraction between:color1 and:color2 on:aDevice
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   446
    "create a dithered Color which dithers between color1 and color2.
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   447
     Fraction must be 0..1, color1 and color2 must be real (i.e. undithered)
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   448
     colors.
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   449
     Useful, if you explicitely want a dithered color
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   450
     (for example, to not use up too many colors, or for special effects)"
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   451
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   452
    |newColor form c1 c2|
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   453
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   454
    "/ both must be true device colors
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   455
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   456
    c1 := color1 exactOn:aDevice.
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   457
    c2 := color2 exactOn:aDevice.
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   458
    (c1 isNil or:[c2 isNil]) ifTrue:[
8277
942b74deecfe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 8243
diff changeset
   459
        'Color [warning]: monoDither failed - no real colors given' errorPrintCR.
942b74deecfe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 8243
diff changeset
   460
        ^ nil
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   461
    ].
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   462
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   463
    self
8277
942b74deecfe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 8243
diff changeset
   464
        monoDitherFor:fraction
942b74deecfe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 8243
diff changeset
   465
        between:c1
942b74deecfe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 8243
diff changeset
   466
        and:c2
942b74deecfe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 8243
diff changeset
   467
        on:aDevice
942b74deecfe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 8243
diff changeset
   468
        into:[:c :f | newColor := c. form := f].
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   469
    newColor notNil ifTrue:[^ newColor].
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   470
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   471
    form isNil ifTrue:[
8277
942b74deecfe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 8243
diff changeset
   472
        "/ cannot happen
942b74deecfe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 8243
diff changeset
   473
        'Color [warning]: monoDither failed' errorPrintCR.
942b74deecfe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 8243
diff changeset
   474
        ^ nil
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   475
    ].
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   476
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   477
    newColor := self basicNew
8277
942b74deecfe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 8243
diff changeset
   478
                        setScaledRed:nil
942b74deecfe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 8243
diff changeset
   479
                        scaledGreen:nil
942b74deecfe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 8243
diff changeset
   480
                        scaledBlue:nil
942b74deecfe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 8243
diff changeset
   481
                        device:aDevice.
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   482
    newColor setDitherForm:form.
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   483
    newColor setDevice:aDevice colorId:nil.
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   484
    ^ newColor
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   485
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   486
    "
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   487
     |c|
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   488
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   489
     c := Color dithered:0.5 between:Color red and:Color yellow on:Display.
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   490
     c inspect.
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   491
    "
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   492
    "
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   493
     |v c|
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   494
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   495
     v := StandardSystemView new.
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   496
     v extent:100@100.
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   497
     v openAndWait.
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   498
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   499
     c := Color dithered:0.5 between:Color red and:Color yellow on:Display.
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   500
     v paint:c.
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   501
     v fillRectangle:(10@10 corner:90@90).
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   502
    "
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   503
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   504
    "Created: 3.5.1997 / 10:54:32 / cg"
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   505
    "Modified: 3.5.1997 / 11:13:12 / cg"
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   506
!
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
   507
8993
424fd9705378 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8968
diff changeset
   508
fromColorDialog
424fd9705378 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8968
diff changeset
   509
    "open a color editor, ask for a color;
424fd9705378 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8968
diff changeset
   510
     if cancelled, return nil. Otherwise return the chosen color."
424fd9705378 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8968
diff changeset
   511
424fd9705378 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8968
diff changeset
   512
    "{ Pragma: +optSpace }"
424fd9705378 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8968
diff changeset
   513
424fd9705378 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8968
diff changeset
   514
    |editor|
424fd9705378 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8968
diff changeset
   515
424fd9705378 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8968
diff changeset
   516
    editor := ColorEditDialog new.
424fd9705378 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8968
diff changeset
   517
    editor open.
424fd9705378 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8968
diff changeset
   518
    editor accepted ifTrue:[
424fd9705378 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8968
diff changeset
   519
        ^ editor color
424fd9705378 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8968
diff changeset
   520
    ].
424fd9705378 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8968
diff changeset
   521
    ^ nil
424fd9705378 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8968
diff changeset
   522
424fd9705378 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8968
diff changeset
   523
    "
424fd9705378 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8968
diff changeset
   524
     Color fromColorDialog
424fd9705378 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8968
diff changeset
   525
    "
424fd9705378 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8968
diff changeset
   526
!
424fd9705378 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8968
diff changeset
   527
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   528
fromUser
1929
e500fcf94969 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1928
diff changeset
   529
    "{ Pragma: +optSpace }"
e500fcf94969 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1928
diff changeset
   530
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   531
    "let user point on a screen pixel.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   532
     Return an instance for that pixels color"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   533
4896
bd1f161a578a added feedback option in color-fromUser
Claus Gittinger <cg@exept.de>
parents: 4851
diff changeset
   534
    ^ self fromUserWithFeedBack:nil
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   535
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   536
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   537
     Color fromUser
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   538
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   539
1976
fcf9afd72f0f Do not use obsolete method Color>>at:
Stefan Vogel <sv@exept.de>
parents: 1971
diff changeset
   540
    "Modified: / 31.8.1995 / 01:34:22 / claus"
fcf9afd72f0f Do not use obsolete method Color>>at:
Stefan Vogel <sv@exept.de>
parents: 1971
diff changeset
   541
    "Modified: / 9.1.1998 / 20:48:58 / stefan"
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   542
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   543
4896
bd1f161a578a added feedback option in color-fromUser
Claus Gittinger <cg@exept.de>
parents: 4851
diff changeset
   544
fromUserWithFeedBack:feedbackBlockOrNil
bd1f161a578a added feedback option in color-fromUser
Claus Gittinger <cg@exept.de>
parents: 4851
diff changeset
   545
    "{ Pragma: +optSpace }"
bd1f161a578a added feedback option in color-fromUser
Claus Gittinger <cg@exept.de>
parents: 4851
diff changeset
   546
bd1f161a578a added feedback option in color-fromUser
Claus Gittinger <cg@exept.de>
parents: 4851
diff changeset
   547
    "let user point on a screen pixel.
bd1f161a578a added feedback option in color-fromUser
Claus Gittinger <cg@exept.de>
parents: 4851
diff changeset
   548
     Return an instance for that pixels color"
bd1f161a578a added feedback option in color-fromUser
Claus Gittinger <cg@exept.de>
parents: 4851
diff changeset
   549
bd1f161a578a added feedback option in color-fromUser
Claus Gittinger <cg@exept.de>
parents: 4851
diff changeset
   550
    |p screen|
bd1f161a578a added feedback option in color-fromUser
Claus Gittinger <cg@exept.de>
parents: 4851
diff changeset
   551
bd1f161a578a added feedback option in color-fromUser
Claus Gittinger <cg@exept.de>
parents: 4851
diff changeset
   552
    screen := Screen current.
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   553
    p := screen
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   554
	    pointFromUserShowing:(Cursor crossHair)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   555
	    positionFeedback:[:p |
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   556
				feedbackBlockOrNil notNil ifTrue:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   557
				    feedbackBlockOrNil value:(screen colorAt:p)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   558
				]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   559
			    ].
4896
bd1f161a578a added feedback option in color-fromUser
Claus Gittinger <cg@exept.de>
parents: 4851
diff changeset
   560
    ^ screen colorAt:p
bd1f161a578a added feedback option in color-fromUser
Claus Gittinger <cg@exept.de>
parents: 4851
diff changeset
   561
bd1f161a578a added feedback option in color-fromUser
Claus Gittinger <cg@exept.de>
parents: 4851
diff changeset
   562
    "
bd1f161a578a added feedback option in color-fromUser
Claus Gittinger <cg@exept.de>
parents: 4851
diff changeset
   563
     Color fromUserWithFeedBack:nil
bd1f161a578a added feedback option in color-fromUser
Claus Gittinger <cg@exept.de>
parents: 4851
diff changeset
   564
    "
bd1f161a578a added feedback option in color-fromUser
Claus Gittinger <cg@exept.de>
parents: 4851
diff changeset
   565
bd1f161a578a added feedback option in color-fromUser
Claus Gittinger <cg@exept.de>
parents: 4851
diff changeset
   566
    "Modified: / 31.8.1995 / 01:34:22 / claus"
bd1f161a578a added feedback option in color-fromUser
Claus Gittinger <cg@exept.de>
parents: 4851
diff changeset
   567
    "Modified: / 9.1.1998 / 20:48:58 / stefan"
bd1f161a578a added feedback option in color-fromUser
Claus Gittinger <cg@exept.de>
parents: 4851
diff changeset
   568
!
bd1f161a578a added feedback option in color-fromUser
Claus Gittinger <cg@exept.de>
parents: 4851
diff changeset
   569
3005
b8d9132ebbfd checkin from browser
Stefan Vogel <sv@exept.de>
parents: 2999
diff changeset
   570
green:green
1985
4af804551b39 some instancing methods added
tz
parents: 1976
diff changeset
   571
    "return a color from green value;
4af804551b39 some instancing methods added
tz
parents: 1976
diff changeset
   572
     the argument green is interpreted as percent (0..100)"
4af804551b39 some instancing methods added
tz
parents: 1976
diff changeset
   573
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   574
    ^ here
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   575
	scaledRed:0 scaledGreen:(green * MaxValue // 100) scaledBlue:0
3005
b8d9132ebbfd checkin from browser
Stefan Vogel <sv@exept.de>
parents: 2999
diff changeset
   576
b8d9132ebbfd checkin from browser
Stefan Vogel <sv@exept.de>
parents: 2999
diff changeset
   577
    "
b8d9132ebbfd checkin from browser
Stefan Vogel <sv@exept.de>
parents: 2999
diff changeset
   578
     (Color green:50) inspect
b8d9132ebbfd checkin from browser
Stefan Vogel <sv@exept.de>
parents: 2999
diff changeset
   579
    "
b8d9132ebbfd checkin from browser
Stefan Vogel <sv@exept.de>
parents: 2999
diff changeset
   580
1985
4af804551b39 some instancing methods added
tz
parents: 1976
diff changeset
   581
!
4af804551b39 some instancing methods added
tz
parents: 1976
diff changeset
   582
7910
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   583
htmlName:colorName
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   584
    "see https://en.wikipedia.org/wiki/Web-safe#HTML_color_names
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   585
     The web defines 16 standard color names, which are returned here. 
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   586
     Attention:
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   587
        these are not the same colors as those built into X-servers;
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   588
        eg. (Color name:'green') returns a bright green,
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   589
        whereas (Color htmlName:'green') returns a dark green, and 'lime' would be the X-green.
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   590
        Sigh"
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   591
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   592
    ^ self
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   593
        htmlName:colorName
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   594
        ifIllegal:[
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   595
            InvalidColorNameSignal
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   596
                raiseRequestWith:colorName errorString:' : ' , colorName
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   597
        ]
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   598
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   599
    "
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   600
     Color htmlName:'lime'
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   601
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   602
     Color htmlName:'green'
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   603
     Color name:'green'
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   604
    "
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   605
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   606
    "Created: / 17-02-2017 / 12:41:17 / cg"
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   607
!
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   608
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   609
htmlName:colorName ifIllegal:errorBlock
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   610
    "see https://en.wikipedia.org/wiki/Web-safe#HTML_color_names
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   611
     The web defines 16 standard color names, which are returned here. 
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   612
     If aString is not a valid color name,
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   613
     return the result from evaluating errorBlock.
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   614
     Attention:
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   615
        these are not the same colors as those built into X-servers;
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   616
        eg. (Color name:'green') returns a bright green,
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   617
        whereas (Color htmlName:'green') returns a dark green, and 'lime' would be the X-green.
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   618
        Sigh"
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   619
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   620
    |nameLowercase|
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   621
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   622
    nameLowercase := colorName asLowercase.
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   623
    ^ #(
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   624
        ('silver'  16rC0C0C0)
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   625
        ('maroon'  16r800000)
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   626
        ('olive'   16r808000)
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   627
        ('lime'    16r00FF00)
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   628
        ('green'   16r008000)
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   629
        ('aqua'    16r00FFFF)
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   630
        ('teal'    16r008080)
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   631
        ('navy'    16r000080)
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   632
        ('fuchsia' 16rFF00FF)
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   633
        ('purple'  16r800080)
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   634
    ) 
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   635
        detect:[:e | e first = nameLowercase]
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   636
        thenCompute:[:e | self rgbValue:(e second)]
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   637
        ifNone:[ self name:colorName ifIllegal:errorBlock ]
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   638
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   639
    "
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   640
     Color htmlName:'lime'
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   641
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   642
     Color htmlName:'green'
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   643
     Color name:'green'
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   644
    "
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   645
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   646
    "Created: / 17-02-2017 / 12:42:01 / cg"
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   647
!
303d43b7c688 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7909
diff changeset
   648
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   649
hue:h light:l saturation:s
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   650
    "return a color from hue, light and saturation values.
7569
872e25793b0e #DOCUMENTATION by mawalch
mawalch
parents: 7430
diff changeset
   651
     Hue is in degrees (0..360); light and saturation are
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   652
     in percent (0..100)"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   653
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   654
    self withRGBFromHue:h light:l saturation:s do:[:r :g :b |
7569
872e25793b0e #DOCUMENTATION by mawalch
mawalch
parents: 7430
diff changeset
   655
        ^ self
872e25793b0e #DOCUMENTATION by mawalch
mawalch
parents: 7430
diff changeset
   656
            redPercent:(r clampBetween:0 and:100)
872e25793b0e #DOCUMENTATION by mawalch
mawalch
parents: 7430
diff changeset
   657
            greenPercent:(g clampBetween:0 and:100)
872e25793b0e #DOCUMENTATION by mawalch
mawalch
parents: 7430
diff changeset
   658
            bluePercent:(b clampBetween:0 and:100)
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   659
    ]
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   660
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   661
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   662
     Color hue:0 light:50 saturation:100     - red
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   663
     Color hue:60 light:50 saturation:100    - yellow
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   664
     Color hue:120 light:50 saturation:100   - green
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   665
     Color hue:120 light:75 saturation:100   - bright green
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   666
     Color hue:120 light:25 saturation:100   - dark green
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   667
     Color hue:120 light:50 saturation:50    - greyish dark green
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   668
     Color hue:120 light:50 saturation:0     - b&w television dark green
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   669
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   670
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   671
    "Modified: 23.4.1996 / 13:22:22 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   672
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   673
8112
0825f3c6a0cb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8109
diff changeset
   674
luma:y chromaBlue:cb chromaRed:cr
0825f3c6a0cb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8109
diff changeset
   675
    "return a color from Y-Cb-Cr components.
0825f3c6a0cb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8109
diff changeset
   676
     See https://en.wikipedia.org/wiki/YCbCr
0825f3c6a0cb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8109
diff changeset
   677
     and ITU-R BT.601"
0825f3c6a0cb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8109
diff changeset
   678
0825f3c6a0cb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8109
diff changeset
   679
    |r g b|
0825f3c6a0cb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8109
diff changeset
   680
0825f3c6a0cb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8109
diff changeset
   681
    r := y + (1.400 * cr).
0825f3c6a0cb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8109
diff changeset
   682
    g := y - (0.343 * (cb-128)) - (0.711 * (cr-128)).
0825f3c6a0cb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8109
diff changeset
   683
    b := y + (1.765 * (cb-128)).
0825f3c6a0cb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8109
diff changeset
   684
0825f3c6a0cb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8109
diff changeset
   685
    ^ self redByte:r greenByte:g blueByte:b
0825f3c6a0cb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8109
diff changeset
   686
0825f3c6a0cb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8109
diff changeset
   687
    "
0825f3c6a0cb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8109
diff changeset
   688
     Color luma:0 chromaBlue:128 chromaRed:128 
0825f3c6a0cb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8109
diff changeset
   689
     Color luma:1 chromaBlue:128 chromaRed:128 
0825f3c6a0cb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8109
diff changeset
   690
     Color luma:0.5 chromaBlue:128 chromaRed:128
0825f3c6a0cb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8109
diff changeset
   691
    "
0825f3c6a0cb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8109
diff changeset
   692
0825f3c6a0cb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8109
diff changeset
   693
    "Created: / 26-08-2017 / 21:33:52 / cg"
0825f3c6a0cb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8109
diff changeset
   694
!
0825f3c6a0cb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8109
diff changeset
   695
1233
c6796bddc7d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1229
diff changeset
   696
name:colorName
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   697
    "Return a named color (either exact or dithered).
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   698
     Report an error, if aString is not a valid color name.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   699
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   700
     We hereby only guarantee that the 8 basic colors are supported
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   701
     on every device (X uses the Xcolor database, so it supports more
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   702
     names - other devices use a builtIn name table containing only the
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   703
     common names)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   704
     - use with special names (such as 'mediumGoldenRod' is not recommended).
3005
b8d9132ebbfd checkin from browser
Stefan Vogel <sv@exept.de>
parents: 2999
diff changeset
   705
     Better use: #name:ifIllegal: and provide a fallBack."
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   706
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   707
    ^ self
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   708
	name:colorName
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   709
	ifIllegal:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   710
	    InvalidColorNameSignal
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   711
		raiseRequestWith:colorName errorString:' : ' , colorName
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   712
	]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   713
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   714
    "
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   715
     Color name:'brown'
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   716
     Color name:'snow'
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   717
     Color name:'foo'
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   718
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   719
1534
73dd2c4b86c8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1502
diff changeset
   720
    "Modified: 4.4.1997 / 15:32:33 / cg"
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   721
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   722
1233
c6796bddc7d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1229
diff changeset
   723
name:colorName ifIllegal:errorBlock
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   724
    "Return a named color (either exact or dithered).
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   725
     If aString is not a valid color name,
1233
c6796bddc7d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1229
diff changeset
   726
     return the result from evaluating errorBlock."
c6796bddc7d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1229
diff changeset
   727
3399
02a4018f9549 care for no-display case when asking for a color-by-name
Claus Gittinger <cg@exept.de>
parents: 3396
diff changeset
   728
    |triple r g b currScreen|
1428
79251ddda7a1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1390
diff changeset
   729
79251ddda7a1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1390
diff changeset
   730
    triple := StandardColorValues at:colorName asString ifAbsent:nil.
79251ddda7a1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1390
diff changeset
   731
    triple notNil ifTrue:[
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   732
	r := triple at:1.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   733
	g := triple at:2.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   734
	b := triple at:3.
1428
79251ddda7a1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1390
diff changeset
   735
    ] ifFalse:[
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   736
	"/ ask display (if there is one) ...
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   737
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   738
	(Screen notNil
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   739
	and:[ (currScreen := Screen current) notNil])
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   740
	ifTrue:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   741
	    currScreen
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   742
		getScaledRGBFromName:colorName
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   743
		into:[:rr :gg :bb |
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   744
		    r := rr.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   745
		    g := gg.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   746
		    b := bb
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   747
		].
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   748
	]
1428
79251ddda7a1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1390
diff changeset
   749
    ].
1233
c6796bddc7d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1229
diff changeset
   750
    r notNil ifTrue:[
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   751
	^ here scaledRed:r scaledGreen:g scaledBlue:b
1233
c6796bddc7d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1229
diff changeset
   752
    ].
c6796bddc7d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1229
diff changeset
   753
    ^ errorBlock value
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   754
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   755
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   756
     Color name:'brown' ifIllegal:[Color black]
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   757
     Color name:'red' ifIllegal:[Color black]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   758
     Color name:'fuchsia' ifIllegal:[Color black]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   759
     Color name:'foo' ifIllegal:[Color black]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   760
     Color name:'foo' ifIllegal:[nil]
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   761
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   762
1428
79251ddda7a1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1390
diff changeset
   763
    "Modified: 6.3.1997 / 02:32:41 / cg"
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   764
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   765
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   766
noColor
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   767
    "return a special color which, when used for bit-blitting will
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   768
     behave like a 0-color (i.e. have a device-pixel value of all-0s)"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   769
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   770
     Pseudo0 isNil ifTrue:[
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   771
	 Pseudo0 := self basicNew setColorId:0
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   772
     ].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   773
     ^ Pseudo0
1238
b363894182d0 prepare for replacement colors
Claus Gittinger <cg@exept.de>
parents: 1237
diff changeset
   774
b363894182d0 prepare for replacement colors
Claus Gittinger <cg@exept.de>
parents: 1237
diff changeset
   775
    "Modified: 17.1.1997 / 00:06:49 / cg"
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   776
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   777
3005
b8d9132ebbfd checkin from browser
Stefan Vogel <sv@exept.de>
parents: 2999
diff changeset
   778
red:red
1985
4af804551b39 some instancing methods added
tz
parents: 1976
diff changeset
   779
    "return a color from red value;
4af804551b39 some instancing methods added
tz
parents: 1976
diff changeset
   780
     the argument r is interpreted as percent (0..100)"
4af804551b39 some instancing methods added
tz
parents: 1976
diff changeset
   781
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   782
    ^ here
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   783
	scaledRed:(red * MaxValue // 100) scaledGreen:0 scaledBlue:0
3005
b8d9132ebbfd checkin from browser
Stefan Vogel <sv@exept.de>
parents: 2999
diff changeset
   784
b8d9132ebbfd checkin from browser
Stefan Vogel <sv@exept.de>
parents: 2999
diff changeset
   785
    "
b8d9132ebbfd checkin from browser
Stefan Vogel <sv@exept.de>
parents: 2999
diff changeset
   786
     (Color red:50) inspect
b8d9132ebbfd checkin from browser
Stefan Vogel <sv@exept.de>
parents: 2999
diff changeset
   787
    "
1985
4af804551b39 some instancing methods added
tz
parents: 1976
diff changeset
   788
!
4af804551b39 some instancing methods added
tz
parents: 1976
diff changeset
   789
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   790
red:r green:g blue:b
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   791
    "return a color from red, green and blue values;
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   792
     the arguments, r, g and b are interpreted as percent (0..100)"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   793
8277
942b74deecfe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 8243
diff changeset
   794
    ^ self new
942b74deecfe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 8243
diff changeset
   795
        setScaledRed:(r * MaxValue // 100)
942b74deecfe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 8243
diff changeset
   796
        scaledGreen:(g * MaxValue // 100)
942b74deecfe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 8243
diff changeset
   797
        scaledBlue:(b * MaxValue // 100)
942b74deecfe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 8243
diff changeset
   798
942b74deecfe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 8243
diff changeset
   799
    "
942b74deecfe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 8243
diff changeset
   800
     Color red:50 green:50 blue:50
942b74deecfe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 8243
diff changeset
   801
     ColorValue red:0.5 green:0.5 blue:0.5
942b74deecfe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 8243
diff changeset
   802
     TranslucentColor red:50 green:50 blue:50
942b74deecfe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 8243
diff changeset
   803
    "
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   804
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   805
1237
15848ece8b95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1235
diff changeset
   806
redByte:r greenByte:g blueByte:b
15848ece8b95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1235
diff changeset
   807
    "return a color from red, green and blue values;
15848ece8b95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1235
diff changeset
   808
     the arguments, r, g and b are interpreted as byte values (0..255)"
15848ece8b95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1235
diff changeset
   809
1348
acb4e4874e4d care for ColorValue (ColorValue cyan)
ca
parents: 1347
diff changeset
   810
    ^ here scaledRed:(r * MaxValue // 255)
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   811
	   scaledGreen:(g * MaxValue // 255)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   812
	   scaledBlue:(b * MaxValue // 255)
1237
15848ece8b95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1235
diff changeset
   813
15848ece8b95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1235
diff changeset
   814
    "
15848ece8b95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1235
diff changeset
   815
     (Color redByte:255 greenByte:0 blueByte:0) inspect
15848ece8b95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1235
diff changeset
   816
     (Color redByte:255 greenByte:255 blueByte:255) inspect
15848ece8b95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1235
diff changeset
   817
     (Color redByte:0 greenByte:0 blueByte:0) inspect
15848ece8b95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1235
diff changeset
   818
    "
15848ece8b95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1235
diff changeset
   819
15848ece8b95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1235
diff changeset
   820
    "Modified: 16.1.1997 / 23:32:43 / cg"
15848ece8b95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1235
diff changeset
   821
!
15848ece8b95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1235
diff changeset
   822
4789
8a525695f2ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4785
diff changeset
   823
redByte:r greenByte:g blueByte:b alphaByte:a
8a525695f2ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4785
diff changeset
   824
    "return a color from red, green, blue and alpha values;
8a525695f2ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4785
diff changeset
   825
     the arguments, r, g, b and a are interpreted as byte values (0..255)"
8a525695f2ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4785
diff changeset
   826
8a525695f2ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4785
diff changeset
   827
    ^ (here scaledRed:(r * MaxValue // 255)
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   828
	   scaledGreen:(g * MaxValue // 255)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   829
	   scaledBlue:(b * MaxValue // 255))
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   830
	   alpha:(a / 255)
4789
8a525695f2ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4785
diff changeset
   831
8a525695f2ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4785
diff changeset
   832
    "
8a525695f2ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4785
diff changeset
   833
     (Color redByte:255 greenByte:0 blueByte:0 alphaByte:127) inspect
8a525695f2ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4785
diff changeset
   834
    "
8a525695f2ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4785
diff changeset
   835
8a525695f2ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4785
diff changeset
   836
    "Created: / 06-06-2007 / 11:15:47 / cg"
8a525695f2ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4785
diff changeset
   837
!
8a525695f2ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4785
diff changeset
   838
5144
d93391e9ea8d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5131
diff changeset
   839
redFraction:r greenFraction:g blueFraction:b
d93391e9ea8d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5131
diff changeset
   840
    "return a color from red, green and blue values;
d93391e9ea8d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5131
diff changeset
   841
     the arguments, r, g and b are interpreted as fraction (0..1)"
d93391e9ea8d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5131
diff changeset
   842
d93391e9ea8d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5131
diff changeset
   843
    ^ here scaledRed:(r * MaxValue) rounded
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   844
	   scaledGreen:(g * MaxValue) rounded
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   845
	   scaledBlue:(b * MaxValue) rounded
5144
d93391e9ea8d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5131
diff changeset
   846
!
d93391e9ea8d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5131
diff changeset
   847
1348
acb4e4874e4d care for ColorValue (ColorValue cyan)
ca
parents: 1347
diff changeset
   848
redPercent:r greenPercent:g bluePercent:b
acb4e4874e4d care for ColorValue (ColorValue cyan)
ca
parents: 1347
diff changeset
   849
    "return a color from red, green and blue values;
acb4e4874e4d care for ColorValue (ColorValue cyan)
ca
parents: 1347
diff changeset
   850
     the arguments, r, g and b are interpreted as percent (0..100)"
acb4e4874e4d care for ColorValue (ColorValue cyan)
ca
parents: 1347
diff changeset
   851
acb4e4874e4d care for ColorValue (ColorValue cyan)
ca
parents: 1347
diff changeset
   852
    ^ here scaledRed:(r * MaxValue // 100)
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   853
	   scaledGreen:(g * MaxValue // 100)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   854
	   scaledBlue:(b * MaxValue // 100)
1348
acb4e4874e4d care for ColorValue (ColorValue cyan)
ca
parents: 1347
diff changeset
   855
!
acb4e4874e4d care for ColorValue (ColorValue cyan)
ca
parents: 1347
diff changeset
   856
5127
40d2ac51c76d color conversions fixed (16bit images)
Claus Gittinger <cg@exept.de>
parents: 4986
diff changeset
   857
redPercent:r greenPercent:g bluePercent:b alphaPercent:a
40d2ac51c76d color conversions fixed (16bit images)
Claus Gittinger <cg@exept.de>
parents: 4986
diff changeset
   858
    "return a color from red, green and blue values;
40d2ac51c76d color conversions fixed (16bit images)
Claus Gittinger <cg@exept.de>
parents: 4986
diff changeset
   859
     the arguments, r, g and b are interpreted as percent (0..100)"
40d2ac51c76d color conversions fixed (16bit images)
Claus Gittinger <cg@exept.de>
parents: 4986
diff changeset
   860
40d2ac51c76d color conversions fixed (16bit images)
Claus Gittinger <cg@exept.de>
parents: 4986
diff changeset
   861
    ^ (here scaledRed:(r * MaxValue // 100)
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   862
	   scaledGreen:(g * MaxValue // 100)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   863
	   scaledBlue:(b * MaxValue // 100))
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   864
	   alpha:(a * 255 // 100)
5127
40d2ac51c76d color conversions fixed (16bit images)
Claus Gittinger <cg@exept.de>
parents: 4986
diff changeset
   865
!
40d2ac51c76d color conversions fixed (16bit images)
Claus Gittinger <cg@exept.de>
parents: 4986
diff changeset
   866
3956
74f5434f3e38 +redShort:greenShort:blueShort:
Claus Gittinger <cg@exept.de>
parents: 3935
diff changeset
   867
redShort:r greenShort:g blueShort:b
74f5434f3e38 +redShort:greenShort:blueShort:
Claus Gittinger <cg@exept.de>
parents: 3935
diff changeset
   868
    "return a color from red, green and blue short values;
74f5434f3e38 +redShort:greenShort:blueShort:
Claus Gittinger <cg@exept.de>
parents: 3935
diff changeset
   869
     the arguments, r, g and b are interpreted as unsigned short values (0..16rFFFF)"
74f5434f3e38 +redShort:greenShort:blueShort:
Claus Gittinger <cg@exept.de>
parents: 3935
diff changeset
   870
74f5434f3e38 +redShort:greenShort:blueShort:
Claus Gittinger <cg@exept.de>
parents: 3935
diff changeset
   871
    ^ here scaledRed:(r * MaxValue // 16rFFFF)
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   872
	   scaledGreen:(g * MaxValue // 16rFFFF)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   873
	   scaledBlue:(b * MaxValue // 16rFFFF)
3956
74f5434f3e38 +redShort:greenShort:blueShort:
Claus Gittinger <cg@exept.de>
parents: 3935
diff changeset
   874
74f5434f3e38 +redShort:greenShort:blueShort:
Claus Gittinger <cg@exept.de>
parents: 3935
diff changeset
   875
    "
74f5434f3e38 +redShort:greenShort:blueShort:
Claus Gittinger <cg@exept.de>
parents: 3935
diff changeset
   876
     (Color redShort:16rFFFF greenShort:0 blueShort:0) inspect
74f5434f3e38 +redShort:greenShort:blueShort:
Claus Gittinger <cg@exept.de>
parents: 3935
diff changeset
   877
    "
74f5434f3e38 +redShort:greenShort:blueShort:
Claus Gittinger <cg@exept.de>
parents: 3935
diff changeset
   878
!
74f5434f3e38 +redShort:greenShort:blueShort:
Claus Gittinger <cg@exept.de>
parents: 3935
diff changeset
   879
1859
b483006c48f5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1856
diff changeset
   880
rgbValue:rgb
3005
b8d9132ebbfd checkin from browser
Stefan Vogel <sv@exept.de>
parents: 2999
diff changeset
   881
    "return a color from a 24bit RGB value;
8109
017a2867ba53 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 8063
diff changeset
   882
     The value is composed of r<<16 + g<<8 + b,
017a2867ba53 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 8063
diff changeset
   883
     i.e. rrggbb"
1859
b483006c48f5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1856
diff changeset
   884
b483006c48f5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1856
diff changeset
   885
    |r g b|
b483006c48f5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1856
diff changeset
   886
8243
c16d146a30e1 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 8171
diff changeset
   887
    "/ constant colors
c16d146a30e1 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 8171
diff changeset
   888
    rgb == 0 ifTrue:[
c16d146a30e1 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 8171
diff changeset
   889
        ^ self black
c16d146a30e1 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 8171
diff changeset
   890
    ].
c16d146a30e1 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 8171
diff changeset
   891
    rgb == 16rFFFFFF ifTrue:[
c16d146a30e1 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 8171
diff changeset
   892
        ^ self white
c16d146a30e1 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 8171
diff changeset
   893
    ].
c16d146a30e1 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 8171
diff changeset
   894
1859
b483006c48f5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1856
diff changeset
   895
    r := (rgb bitShift:-16) bitAnd:16rFF.
b483006c48f5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1856
diff changeset
   896
    g := (rgb bitShift:-8) bitAnd:16rFF.
8243
c16d146a30e1 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 8171
diff changeset
   897
    b := rgb bitAnd:16rFF.
1859
b483006c48f5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1856
diff changeset
   898
    ^ self redByte:r greenByte:g blueByte:b
b483006c48f5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1856
diff changeset
   899
b483006c48f5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1856
diff changeset
   900
    "
b483006c48f5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1856
diff changeset
   901
     (Color rgbValue:16rFF0000) inspect
b483006c48f5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1856
diff changeset
   902
     (Color rgbValue:16r00FF00) inspect
b483006c48f5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1856
diff changeset
   903
     (Color rgbValue:16r0000FF) inspect
b483006c48f5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1856
diff changeset
   904
     (Color rgbValue:16rFF00FF) inspect
8243
c16d146a30e1 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 8171
diff changeset
   905
     (Color rgbValue:16rFFFFFF) inspect
1859
b483006c48f5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1856
diff changeset
   906
    "
b483006c48f5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1856
diff changeset
   907
8109
017a2867ba53 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 8063
diff changeset
   908
    "Modified: / 13-08-1997 / 20:24:37 / cg"
017a2867ba53 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 8063
diff changeset
   909
    "Modified (comment): / 26-08-2017 / 13:02:23 / cg"
8243
c16d146a30e1 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 8171
diff changeset
   910
    "Modified (format): / 11-01-2018 / 12:21:56 / stefan"
1859
b483006c48f5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1856
diff changeset
   911
!
b483006c48f5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1856
diff changeset
   912
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   913
scaledGray:aGrayValue
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   914
    "return a gray color with a scaled gray value (0..MaxValue)"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   915
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   916
    ^ self scaledRed:aGrayValue scaledGreen:aGrayValue scaledBlue:aGrayValue
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   917
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   918
    "Modified: 11.6.1996 / 16:31:42 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   919
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   920
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   921
scaledRed:r scaledGreen:g scaledBlue:b
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   922
    "return a color from red, green and blue values;
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   923
     the arguments, r, g and b are interpreted as (0..MaxValue)"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   924
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   925
    |newColor|
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   926
8277
942b74deecfe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 8243
diff changeset
   927
    newColor := self basicNew setScaledRed:r scaledGreen:g scaledBlue:b.
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   928
    ^ newColor
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   929
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   930
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   931
     (Color red:100 green:0 blue:0) inspect
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   932
     (Color red:100 green:50 blue:50) inspect
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   933
     (Color red:50 green:0 blue:0) inspect
8277
942b74deecfe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 8243
diff changeset
   934
     (TranslucentColor red:50 green:0 blue:0) inspect
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   935
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   936
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   937
    "Modified: 2.5.1996 / 13:40:51 / stefan"
1365
37a9e7ac4dbc moved color registration from Color class to per-device lobby
Claus Gittinger <cg@exept.de>
parents: 1348
diff changeset
   938
    "Modified: 24.2.1997 / 18:18:47 / cg"
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   939
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   940
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   941
variableColorOn:aDevice
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   942
    "return a variable color (i.e. allocate a writable colorcell) on
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   943
     aDevice. The returned color is not shared and its rgb components
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   944
     are initially undefined. The components can be set to any value
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   945
     using Color>>red:green:blue. Care should be taken, since this call
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   946
     fails on static color or b&w displays (i.e. it depends on the device
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   947
     being a pseudocolor device using colormaps).
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   948
     Returns nil, if no more colorCells are available, or the display
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   949
     uses a fix colormap (i.e. is a directColor or staticColor pr b&w device).
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   950
     Because of this, you should not write your application to depend on
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   951
     writable colors to be available (i.e. add fallBack code to redraw
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   952
     things in another color)"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   953
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   954
    |c lutIndex|
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   955
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   956
    lutIndex := aDevice colorCell.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   957
    lutIndex isNil ifTrue:[^ nil].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   958
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   959
    c := self new.
1934
fe7d73fe0df4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1929
diff changeset
   960
    c setDevice:aDevice colorId:lutIndex writable:true.
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   961
    Cells isNil ifTrue:[
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   962
	Cells := Registry new.
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   963
    ].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   964
    Cells register:c.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   965
    ^ c
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   966
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   967
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   968
     |l cell|
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   969
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   970
     l := Label new.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   971
     l label:('hello' asText allBold).
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   972
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   973
     cell := Color variableColorOn:(Screen current).
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   974
     l foregroundColor:cell.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   975
     [
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   976
	1 to:40 do:[:i|
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   977
	    i odd ifTrue:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   978
		cell red:100 green:0 blue:0
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   979
	    ] ifFalse:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   980
		cell red:0 green:0 blue:0
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   981
	    ].
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   982
	    Display flush.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   983
	    (Delay forSeconds:0.4) wait
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   984
	].
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   985
	l destroy.
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   986
     ] fork.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   987
     l open
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   988
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   989
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   990
    "Modified: 13.5.1996 / 12:41:53 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   991
! !
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
   992
3892
fb62c937c134 category
Claus Gittinger <cg@exept.de>
parents: 3880
diff changeset
   993
!Color class methodsFor:'Compatibility-Squeak'!
2934
33b1988133d3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2911
diff changeset
   994
3021
5f9fc57177b8 more Squeak compatibility stuff
ps
parents: 3005
diff changeset
   995
colorPaletteForDepth: depth extent: chartExtent
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   996
	"Squeak mimicri:
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   997
	 Display a palette of colors sorted horizontally by hue and vertically by lightness. Useful for eyeballing the color gamut of the display, or for choosing a color interactively."
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   998
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
   999
	"Note: It is slow to build this palette, so it should be cached for quick access."
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1000
	"(Color colorPaletteForDepth: 16 extent: 190@60) display"
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1001
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1002
	| basicHue x y c startHue palette transHt vSteps transCaption grayWidth hSteps |
3324
a4244f890bde *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3309
diff changeset
  1003
a4244f890bde *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3309
diff changeset
  1004
"/        Smalltalk isSmalltalkX ifTrue:[
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1005
	    palette := Image extent:chartExtent depth:24.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1006
	    palette photometric:#rgb.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1007
	    palette bits:(ByteArray new:chartExtent x * chartExtent y * 3).
3324
a4244f890bde *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3309
diff changeset
  1008
"/        ] ifFalse:[
a4244f890bde *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3309
diff changeset
  1009
"/            palette := Form extent: chartExtent depth: depth.
a4244f890bde *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3309
diff changeset
  1010
"/        ].
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1011
	transCaption := "(DisplayText text: 'no color' asText textStyle: (TextConstants at: #ComicPlain)) form storeString"
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1012
		(Form extent: 34@9 depth: 1
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1013
			fromArray: #(0 0 256 0 256 0 3808663859 2147483648 2491688266 2147483648 2491688266 0 2491688266 0 2466486578 0 0 0)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1014
			offset: 0@0).
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1015
	transHt := transCaption height.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1016
	palette fillWhite: (0@0 extent: palette width@transHt).
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1017
	palette fillBlack: (0@transHt extent: palette width@1).
3021
5f9fc57177b8 more Squeak compatibility stuff
ps
parents: 3005
diff changeset
  1018
"/        transCaption displayOn: palette at: palette boundingBox topCenter - ((transCaption width // 2)@0).
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1019
	grayWidth := 10.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1020
	startHue := 338.0.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1021
	vSteps := palette height - transHt // 2.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1022
	hSteps := palette width - grayWidth.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1023
	x := 0.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1024
	startHue to: startHue + 360.0 by: 360.0/hSteps do: [:h |
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1025
		basicHue := Color h: h asFloat s: 1.0 v: 1.0.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1026
		y := transHt+1.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1027
		0 to: vSteps do: [:n |
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1028
			c := basicHue mixed: (n asFloat / vSteps asFloat) with: Color white.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1029
			palette fill: (x@y extent: 1@1) fillColor: c.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1030
			y := y + 1].
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1031
		1 to: vSteps do: [:n |
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1032
			c := Color black mixed: (n asFloat / vSteps asFloat) with: basicHue.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1033
			y < palette height ifTrue:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1034
			    palette fill: (x@y extent: 1@1) fillColor: c.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1035
			].
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1036
			y := y + 1].
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1037
		x := x + 1].
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1038
	y := transHt + 1.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1039
	1 to: vSteps * 2 do: [:n |
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1040
		c := Color black mixed: (n asFloat / (vSteps*2) asFloat) with: Color white.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1041
		palette fill: (x@y corner:(((x@y) +(10@1))min:palette extent)) fillColor: c.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1042
		y := y + 1].
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1043
	^ palette
3021
5f9fc57177b8 more Squeak compatibility stuff
ps
parents: 3005
diff changeset
  1044
!
5f9fc57177b8 more Squeak compatibility stuff
ps
parents: 3005
diff changeset
  1045
3024
a565d805ad69 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
  1046
fromRgbTriplet:aTriple
a565d805ad69 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
  1047
    ^ self r:(aTriple at:1)
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1048
	   g:(aTriple at:2)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1049
	   b:(aTriple at:3)
3024
a565d805ad69 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
  1050
a565d805ad69 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
  1051
!
a565d805ad69 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
  1052
3021
5f9fc57177b8 more Squeak compatibility stuff
ps
parents: 3005
diff changeset
  1053
h:hue s:saturation v:brightness
5f9fc57177b8 more Squeak compatibility stuff
ps
parents: 3005
diff changeset
  1054
    "Squeak mimicri:
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1055
     Create a color with the given hue, saturation, and brightness.
3021
5f9fc57177b8 more Squeak compatibility stuff
ps
parents: 3005
diff changeset
  1056
     Hue is given as the angle in degrees of the color on the color circle,
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1057
     where red is zero degrees.
3021
5f9fc57177b8 more Squeak compatibility stuff
ps
parents: 3005
diff changeset
  1058
     Saturation and brightness are numbers in [0.0..1.0],
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1059
     where larger values are more saturated or brighter colors.
3021
5f9fc57177b8 more Squeak compatibility stuff
ps
parents: 3005
diff changeset
  1060
     For example, (Color h: 0 s: 1 v: 1) is pure red."
5f9fc57177b8 more Squeak compatibility stuff
ps
parents: 3005
diff changeset
  1061
7411
9fdde791fac0 #DOCUMENTATION by mawalch
mawalch
parents: 7403
diff changeset
  1062
    "Note: By convention, brightness is abbreviated 'v' to avoid confusion with blue."
3021
5f9fc57177b8 more Squeak compatibility stuff
ps
parents: 3005
diff changeset
  1063
3024
a565d805ad69 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
  1064
    ^ self hue:hue light:(brightness*50) saturation:(saturation*100)
a565d805ad69 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
  1065
!
a565d805ad69 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
  1066
4986
a9325e813324 +indexedColors
Claus Gittinger <cg@exept.de>
parents: 4910
diff changeset
  1067
indexedColors
a9325e813324 +indexedColors
Claus Gittinger <cg@exept.de>
parents: 4910
diff changeset
  1068
    "Build an array of colors corresponding to the fixed colormap used
a9325e813324 +indexedColors
Claus Gittinger <cg@exept.de>
parents: 4910
diff changeset
  1069
     for display depths of 1, 2, 4, or 8 bits."
a9325e813324 +indexedColors
Claus Gittinger <cg@exept.de>
parents: 4910
diff changeset
  1070
    "Color indexedColors"
a9325e813324 +indexedColors
Claus Gittinger <cg@exept.de>
parents: 4910
diff changeset
  1071
a9325e813324 +indexedColors
Claus Gittinger <cg@exept.de>
parents: 4910
diff changeset
  1072
    | a index grayVal |
a9325e813324 +indexedColors
Claus Gittinger <cg@exept.de>
parents: 4910
diff changeset
  1073
a9325e813324 +indexedColors
Claus Gittinger <cg@exept.de>
parents: 4910
diff changeset
  1074
    a := Array new: 256.
a9325e813324 +indexedColors
Claus Gittinger <cg@exept.de>
parents: 4910
diff changeset
  1075
a9325e813324 +indexedColors
Claus Gittinger <cg@exept.de>
parents: 4910
diff changeset
  1076
    "1-bit colors (monochrome)"
a9325e813324 +indexedColors
Claus Gittinger <cg@exept.de>
parents: 4910
diff changeset
  1077
    a at: 1 put: (Color r: 1.0 g: 1.0 b: 1.0).  "white or transparent"
a9325e813324 +indexedColors
Claus Gittinger <cg@exept.de>
parents: 4910
diff changeset
  1078
    a at: 2 put: (Color r: 0.0 g: 0.0 b: 0.0).  "black"
a9325e813324 +indexedColors
Claus Gittinger <cg@exept.de>
parents: 4910
diff changeset
  1079
a9325e813324 +indexedColors
Claus Gittinger <cg@exept.de>
parents: 4910
diff changeset
  1080
    "additional colors for 2-bit color"
a9325e813324 +indexedColors
Claus Gittinger <cg@exept.de>
parents: 4910
diff changeset
  1081
    a at: 3 put: (Color r: 1.0 g: 1.0 b: 1.0).  "opaque white"
a9325e813324 +indexedColors
Claus Gittinger <cg@exept.de>
parents: 4910
diff changeset
  1082
    a at: 4 put: (Color r: 0.5 g: 0.5 b: 0.5).  "1/2 gray"
a9325e813324 +indexedColors
Claus Gittinger <cg@exept.de>
parents: 4910
diff changeset
  1083
a9325e813324 +indexedColors
Claus Gittinger <cg@exept.de>
parents: 4910
diff changeset
  1084
    "additional colors for 4-bit color"
a9325e813324 +indexedColors
Claus Gittinger <cg@exept.de>
parents: 4910
diff changeset
  1085
    a at:  5 put: (Color r: 1.0 g: 0.0 b: 0.0). "red"
a9325e813324 +indexedColors
Claus Gittinger <cg@exept.de>
parents: 4910
diff changeset
  1086
    a at:  6 put: (Color r: 0.0 g: 1.0 b: 0.0). "green"
a9325e813324 +indexedColors
Claus Gittinger <cg@exept.de>
parents: 4910
diff changeset
  1087
    a at:  7 put: (Color r: 0.0 g: 0.0 b: 1.0). "blue"
a9325e813324 +indexedColors
Claus Gittinger <cg@exept.de>
parents: 4910
diff changeset
  1088
    a at:  8 put: (Color r: 0.0 g: 1.0 b: 1.0). "cyan"
a9325e813324 +indexedColors
Claus Gittinger <cg@exept.de>
parents: 4910
diff changeset
  1089
    a at:  9 put: (Color r: 1.0 g: 1.0 b: 0.0). "yellow"
a9325e813324 +indexedColors
Claus Gittinger <cg@exept.de>
parents: 4910
diff changeset
  1090
    a at: 10 put: (Color r: 1.0 g: 0.0 b: 1.0). "magenta"
a9325e813324 +indexedColors
Claus Gittinger <cg@exept.de>
parents: 4910
diff changeset
  1091
a9325e813324 +indexedColors
Claus Gittinger <cg@exept.de>
parents: 4910
diff changeset
  1092
    a at: 11 put: (Color r: 0.125 g: 0.125 b: 0.125).       "1/8 gray"
a9325e813324 +indexedColors
Claus Gittinger <cg@exept.de>
parents: 4910
diff changeset
  1093
    a at: 12 put: (Color r: 0.25 g: 0.25 b: 0.25).      "2/8 gray"
a9325e813324 +indexedColors
Claus Gittinger <cg@exept.de>
parents: 4910
diff changeset
  1094
    a at: 13 put: (Color r: 0.375 g: 0.375 b: 0.375).       "3/8 gray"
a9325e813324 +indexedColors
Claus Gittinger <cg@exept.de>
parents: 4910
diff changeset
  1095
    a at: 14 put: (Color r: 0.625 g: 0.625 b: 0.625).       "5/8 gray"
a9325e813324 +indexedColors
Claus Gittinger <cg@exept.de>
parents: 4910
diff changeset
  1096
    a at: 15 put: (Color r: 0.75 g: 0.75 b: 0.75).      "6/8 gray"
a9325e813324 +indexedColors
Claus Gittinger <cg@exept.de>
parents: 4910
diff changeset
  1097
    a at: 16 put: (Color r: 0.875 g: 0.875 b: 0.875).       "7/8 gray"
a9325e813324 +indexedColors
Claus Gittinger <cg@exept.de>
parents: 4910
diff changeset
  1098
a9325e813324 +indexedColors
Claus Gittinger <cg@exept.de>
parents: 4910
diff changeset
  1099
    "additional colors for 8-bit color"
a9325e813324 +indexedColors
Claus Gittinger <cg@exept.de>
parents: 4910
diff changeset
  1100
    "24 more shades of gray (1/32 increments but not repeating 1/8 increments)"
a9325e813324 +indexedColors
Claus Gittinger <cg@exept.de>
parents: 4910
diff changeset
  1101
    index := 17.
a9325e813324 +indexedColors
Claus Gittinger <cg@exept.de>
parents: 4910
diff changeset
  1102
    1 to: 31 do: [:v |
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1103
	(v \\ 4) = 0 ifFalse: [
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1104
	    grayVal := v / 32.0.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1105
	    a at: index put: (Color r: grayVal g: grayVal b: grayVal).
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1106
	    index := index + 1]].
4986
a9325e813324 +indexedColors
Claus Gittinger <cg@exept.de>
parents: 4910
diff changeset
  1107
a9325e813324 +indexedColors
Claus Gittinger <cg@exept.de>
parents: 4910
diff changeset
  1108
    "The remainder of color table defines a color cube with six steps
a9325e813324 +indexedColors
Claus Gittinger <cg@exept.de>
parents: 4910
diff changeset
  1109
     for each primary color. Note that the corners of this cube repeat
a9325e813324 +indexedColors
Claus Gittinger <cg@exept.de>
parents: 4910
diff changeset
  1110
     previous colors, but this simplifies the mapping between RGB colors
a9325e813324 +indexedColors
Claus Gittinger <cg@exept.de>
parents: 4910
diff changeset
  1111
     and color map indices. This color cube spans indices 40 through 255
a9325e813324 +indexedColors
Claus Gittinger <cg@exept.de>
parents: 4910
diff changeset
  1112
     (indices 41-256 in this 1-based array)."
a9325e813324 +indexedColors
Claus Gittinger <cg@exept.de>
parents: 4910
diff changeset
  1113
    0 to: 5 do: [:r |
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1114
	0 to: 5 do: [:g |
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1115
	    0 to: 5 do: [:b |
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1116
		index := 41 + ((36 * r) + (6 * b) + g).
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1117
		index > 256 ifTrue: [
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1118
		    self error: 'index out of range in color table compuation'].
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1119
		a at: index put: (Color r: r g: g b: b range: 5)]]].
4986
a9325e813324 +indexedColors
Claus Gittinger <cg@exept.de>
parents: 4910
diff changeset
  1120
a9325e813324 +indexedColors
Claus Gittinger <cg@exept.de>
parents: 4910
diff changeset
  1121
    ^ a.
a9325e813324 +indexedColors
Claus Gittinger <cg@exept.de>
parents: 4910
diff changeset
  1122
!
a9325e813324 +indexedColors
Claus Gittinger <cg@exept.de>
parents: 4910
diff changeset
  1123
3893
0e96816ba790 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3892
diff changeset
  1124
paleBlue
0e96816ba790 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3892
diff changeset
  1125
    ^ self r:0.75 g:0.75 b:1
0e96816ba790 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3892
diff changeset
  1126
!
0e96816ba790 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3892
diff changeset
  1127
3024
a565d805ad69 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
  1128
pixelScreenForDepth: depth
3898
368c43005b5a isSmalltalkX -> dialectName comparison (CS-Compatibility)
Claus Gittinger <cg@exept.de>
parents: 3893
diff changeset
  1129
    "Return a 50% stipple containing alternating pixels of all-zeros and all-ones to be used as a mask at the given depth."
368c43005b5a isSmalltalkX -> dialectName comparison (CS-Compatibility)
Claus Gittinger <cg@exept.de>
parents: 3893
diff changeset
  1130
368c43005b5a isSmalltalkX -> dialectName comparison (CS-Compatibility)
Claus Gittinger <cg@exept.de>
parents: 3893
diff changeset
  1131
    | mask bits |
368c43005b5a isSmalltalkX -> dialectName comparison (CS-Compatibility)
Claus Gittinger <cg@exept.de>
parents: 3893
diff changeset
  1132
6584
f087c33d95db class: Color
Claus Gittinger <cg@exept.de>
parents: 6554
diff changeset
  1133
    (Smalltalk isSmalltalkX) ifTrue:[
f087c33d95db class: Color
Claus Gittinger <cg@exept.de>
parents: 6554
diff changeset
  1134
        depth == 1 ifTrue:[
f087c33d95db class: Color
Claus Gittinger <cg@exept.de>
parents: 6554
diff changeset
  1135
            ^ Form mediumGreyFormOn:Screen current
f087c33d95db class: Color
Claus Gittinger <cg@exept.de>
parents: 6554
diff changeset
  1136
        ].
f087c33d95db class: Color
Claus Gittinger <cg@exept.de>
parents: 6554
diff changeset
  1137
        self shouldImplement.
3898
368c43005b5a isSmalltalkX -> dialectName comparison (CS-Compatibility)
Claus Gittinger <cg@exept.de>
parents: 3893
diff changeset
  1138
    ].
368c43005b5a isSmalltalkX -> dialectName comparison (CS-Compatibility)
Claus Gittinger <cg@exept.de>
parents: 3893
diff changeset
  1139
368c43005b5a isSmalltalkX -> dialectName comparison (CS-Compatibility)
Claus Gittinger <cg@exept.de>
parents: 3893
diff changeset
  1140
    mask := (1 bitShift: depth) - 1.
368c43005b5a isSmalltalkX -> dialectName comparison (CS-Compatibility)
Claus Gittinger <cg@exept.de>
parents: 3893
diff changeset
  1141
    bits := 2 * depth.
368c43005b5a isSmalltalkX -> dialectName comparison (CS-Compatibility)
Claus Gittinger <cg@exept.de>
parents: 3893
diff changeset
  1142
    [bits >= 32] whileFalse: [
6584
f087c33d95db class: Color
Claus Gittinger <cg@exept.de>
parents: 6554
diff changeset
  1143
        mask := mask bitOr: (mask bitShift: bits).  "double the length of mask"
f087c33d95db class: Color
Claus Gittinger <cg@exept.de>
parents: 6554
diff changeset
  1144
        bits := bits + bits
3898
368c43005b5a isSmalltalkX -> dialectName comparison (CS-Compatibility)
Claus Gittinger <cg@exept.de>
parents: 3893
diff changeset
  1145
    ].
368c43005b5a isSmalltalkX -> dialectName comparison (CS-Compatibility)
Claus Gittinger <cg@exept.de>
parents: 3893
diff changeset
  1146
    ^ Bitmap with: mask with: mask bitInvert32
368c43005b5a isSmalltalkX -> dialectName comparison (CS-Compatibility)
Claus Gittinger <cg@exept.de>
parents: 3893
diff changeset
  1147
368c43005b5a isSmalltalkX -> dialectName comparison (CS-Compatibility)
Claus Gittinger <cg@exept.de>
parents: 3893
diff changeset
  1148
    "
368c43005b5a isSmalltalkX -> dialectName comparison (CS-Compatibility)
Claus Gittinger <cg@exept.de>
parents: 3893
diff changeset
  1149
     self pixelScreenForDepth: depth
368c43005b5a isSmalltalkX -> dialectName comparison (CS-Compatibility)
Claus Gittinger <cg@exept.de>
parents: 3893
diff changeset
  1150
    "
3021
5f9fc57177b8 more Squeak compatibility stuff
ps
parents: 3005
diff changeset
  1151
!
5f9fc57177b8 more Squeak compatibility stuff
ps
parents: 3005
diff changeset
  1152
2934
33b1988133d3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2911
diff changeset
  1153
r:redFraction g:greenFraction b:blueFraction
3021
5f9fc57177b8 more Squeak compatibility stuff
ps
parents: 3005
diff changeset
  1154
    "Squeak mimicri:
5f9fc57177b8 more Squeak compatibility stuff
ps
parents: 3005
diff changeset
  1155
     return a color from red, green and blue fractional values;
4789
8a525695f2ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4785
diff changeset
  1156
     the arguments, r, g and b must be in (0..1)"
2934
33b1988133d3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2911
diff changeset
  1157
2937
4536e6de438a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2934
diff changeset
  1158
    ^ here scaledRed:(redFraction * MaxValue) rounded
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1159
	   scaledGreen:(greenFraction * MaxValue) rounded
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1160
	   scaledBlue:(blueFraction * MaxValue) rounded
4789
8a525695f2ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4785
diff changeset
  1161
8a525695f2ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4785
diff changeset
  1162
    "Modified: / 06-06-2007 / 11:19:53 / cg"
8a525695f2ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4785
diff changeset
  1163
!
8a525695f2ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4785
diff changeset
  1164
8a525695f2ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4785
diff changeset
  1165
r:r g:g b:b alpha:alphaValue
8a525695f2ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4785
diff changeset
  1166
    "return a color from red, green and blue values;
8a525695f2ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4785
diff changeset
  1167
     the arguments, r, g, b and alpha must be in 0..1"
8a525695f2ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4785
diff changeset
  1168
8a525695f2ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4785
diff changeset
  1169
    ^ (self r:r g:g b:b) alpha:alphaValue
8a525695f2ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4785
diff changeset
  1170
8a525695f2ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4785
diff changeset
  1171
    "
8a525695f2ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4785
diff changeset
  1172
     (Color r:1 g:0 b:0 alpha:0) inspect
8a525695f2ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4785
diff changeset
  1173
     (Color r:0 g:1 b:0 alpha:0.5) inspect
8a525695f2ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4785
diff changeset
  1174
     (Color r:0 g:0 b:1 alpha:1) inspect
8a525695f2ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4785
diff changeset
  1175
    "
8a525695f2ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4785
diff changeset
  1176
8a525695f2ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4785
diff changeset
  1177
    "Created: / 06-06-2007 / 10:48:21 / cg"
3396
18f99e9fc5ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3324
diff changeset
  1178
!
18f99e9fc5ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3324
diff changeset
  1179
4202
a82c1cbb8d30 +r:g:b:range:
Claus Gittinger <cg@exept.de>
parents: 4186
diff changeset
  1180
r:r g:g b:b range:componentMax
a82c1cbb8d30 +r:g:b:range:
Claus Gittinger <cg@exept.de>
parents: 4186
diff changeset
  1181
    "return a color from red, green and blue values;
a82c1cbb8d30 +r:g:b:range:
Claus Gittinger <cg@exept.de>
parents: 4186
diff changeset
  1182
     the arguments, r, g and b are interpreted as values (0..componentMax)"
a82c1cbb8d30 +r:g:b:range:
Claus Gittinger <cg@exept.de>
parents: 4186
diff changeset
  1183
a82c1cbb8d30 +r:g:b:range:
Claus Gittinger <cg@exept.de>
parents: 4186
diff changeset
  1184
    ^ here scaledRed:(r * MaxValue // componentMax)
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1185
	   scaledGreen:(g * MaxValue // componentMax)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1186
	   scaledBlue:(b * MaxValue // componentMax)
4202
a82c1cbb8d30 +r:g:b:range:
Claus Gittinger <cg@exept.de>
parents: 4186
diff changeset
  1187
a82c1cbb8d30 +r:g:b:range:
Claus Gittinger <cg@exept.de>
parents: 4186
diff changeset
  1188
    "
a82c1cbb8d30 +r:g:b:range:
Claus Gittinger <cg@exept.de>
parents: 4186
diff changeset
  1189
     (Color r:1023 g:0 b:0 range:1023) inspect
a82c1cbb8d30 +r:g:b:range:
Claus Gittinger <cg@exept.de>
parents: 4186
diff changeset
  1190
     (Color r:1023 g:1023 b:1023 range:1023) inspect
a82c1cbb8d30 +r:g:b:range:
Claus Gittinger <cg@exept.de>
parents: 4186
diff changeset
  1191
     (Color r:0 g:0 b:0 range:1023) inspect
a82c1cbb8d30 +r:g:b:range:
Claus Gittinger <cg@exept.de>
parents: 4186
diff changeset
  1192
    "
a82c1cbb8d30 +r:g:b:range:
Claus Gittinger <cg@exept.de>
parents: 4186
diff changeset
  1193
!
a82c1cbb8d30 +r:g:b:range:
Claus Gittinger <cg@exept.de>
parents: 4186
diff changeset
  1194
3396
18f99e9fc5ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3324
diff changeset
  1195
showColors: colorList
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1196
	"Display the given collection of colors across the top of the Display."
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1197
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1198
	| w r |
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1199
	w := Screen current width // colorList size.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1200
	r := 0@0 extent: w@((w min: 30) max: 10).
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1201
	colorList do: [:c |
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1202
		Screen current fill: r fillColor: c.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1203
		r := r translateBy: w@0].
3396
18f99e9fc5ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3324
diff changeset
  1204
!
18f99e9fc5ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3324
diff changeset
  1205
18f99e9fc5ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3324
diff changeset
  1206
wheel: thisMany
18f99e9fc5ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3324
diff changeset
  1207
    "Return a collection of thisMany colors evenly spaced around the color wheel."
18f99e9fc5ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3324
diff changeset
  1208
    "Color showColors: (Color wheel: 12)"
18f99e9fc5ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3324
diff changeset
  1209
18f99e9fc5ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3324
diff changeset
  1210
    ^ Color wheel: thisMany saturation: 0.9 brightness: 0.7
18f99e9fc5ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3324
diff changeset
  1211
!
18f99e9fc5ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3324
diff changeset
  1212
18f99e9fc5ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3324
diff changeset
  1213
wheel: thisMany saturation: s brightness: v
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1214
    "Return a collection of thisMany colors evenly spaced around the color wheel,
4789
8a525695f2ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4785
diff changeset
  1215
     all of the given saturation and brightness."
3396
18f99e9fc5ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3324
diff changeset
  1216
    "Color showColors: (Color wheel: 12 saturation: 0.4 brightness: 1.0)"
18f99e9fc5ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3324
diff changeset
  1217
    "Color showColors: (Color wheel: 12 saturation: 0.8 brightness: 0.5)"
18f99e9fc5ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3324
diff changeset
  1218
18f99e9fc5ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3324
diff changeset
  1219
    ^ (Color h: 0.0 s: s v: v) wheel: thisMany
4789
8a525695f2ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4785
diff changeset
  1220
8a525695f2ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4785
diff changeset
  1221
    "Modified: / 06-06-2007 / 11:20:59 / cg"
2934
33b1988133d3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2911
diff changeset
  1222
! !
33b1988133d3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2911
diff changeset
  1223
1144
07f3de59864d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1023
diff changeset
  1224
!Color class methodsFor:'Signal constants'!
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1225
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1226
colorAllocationFailSignal
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1227
    "return the signal raised when a color allocation failed."
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1228
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1229
    ^ ColorAllocationFailSignal
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1230
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1231
    "Created: 12.6.1996 / 17:44:49 / cg"
1269
f0777b2cc08a use a signal for invalid color names
Claus Gittinger <cg@exept.de>
parents: 1239
diff changeset
  1232
!
f0777b2cc08a use a signal for invalid color names
Claus Gittinger <cg@exept.de>
parents: 1239
diff changeset
  1233
2379
b2a844aabc93 made my signals children of a common colorErrorSignal
Claus Gittinger <cg@exept.de>
parents: 2375
diff changeset
  1234
colorErrorSignal
b2a844aabc93 made my signals children of a common colorErrorSignal
Claus Gittinger <cg@exept.de>
parents: 2375
diff changeset
  1235
    "return the parent signal of all color error signals."
b2a844aabc93 made my signals children of a common colorErrorSignal
Claus Gittinger <cg@exept.de>
parents: 2375
diff changeset
  1236
b2a844aabc93 made my signals children of a common colorErrorSignal
Claus Gittinger <cg@exept.de>
parents: 2375
diff changeset
  1237
    ^ ColorErrorSignal
b2a844aabc93 made my signals children of a common colorErrorSignal
Claus Gittinger <cg@exept.de>
parents: 2375
diff changeset
  1238
b2a844aabc93 made my signals children of a common colorErrorSignal
Claus Gittinger <cg@exept.de>
parents: 2375
diff changeset
  1239
    "Created: / 30.9.1998 / 21:56:04 / cg"
b2a844aabc93 made my signals children of a common colorErrorSignal
Claus Gittinger <cg@exept.de>
parents: 2375
diff changeset
  1240
!
b2a844aabc93 made my signals children of a common colorErrorSignal
Claus Gittinger <cg@exept.de>
parents: 2375
diff changeset
  1241
1269
f0777b2cc08a use a signal for invalid color names
Claus Gittinger <cg@exept.de>
parents: 1239
diff changeset
  1242
invalidColorNameSignal
f0777b2cc08a use a signal for invalid color names
Claus Gittinger <cg@exept.de>
parents: 1239
diff changeset
  1243
    "return the signal raised when an invalid color name is encountered"
f0777b2cc08a use a signal for invalid color names
Claus Gittinger <cg@exept.de>
parents: 1239
diff changeset
  1244
f0777b2cc08a use a signal for invalid color names
Claus Gittinger <cg@exept.de>
parents: 1239
diff changeset
  1245
    ^ InvalidColorNameSignal
f0777b2cc08a use a signal for invalid color names
Claus Gittinger <cg@exept.de>
parents: 1239
diff changeset
  1246
f0777b2cc08a use a signal for invalid color names
Claus Gittinger <cg@exept.de>
parents: 1239
diff changeset
  1247
    "Created: 24.1.1997 / 13:36:25 / cg"
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1248
! !
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1249
1144
07f3de59864d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1023
diff changeset
  1250
!Color class methodsFor:'accessing'!
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1251
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1252
allocatedColorsOn:aDevice
3833
4537841edc0f code cleanup
Claus Gittinger <cg@exept.de>
parents: 3816
diff changeset
  1253
    "return a collection of colors which have already been allocated
4537841edc0f code cleanup
Claus Gittinger <cg@exept.de>
parents: 3816
diff changeset
  1254
     on aDevice."
4537841edc0f code cleanup
Claus Gittinger <cg@exept.de>
parents: 3816
diff changeset
  1255
4176
40b359dfc293 Mark obsolete methods
Stefan Vogel <sv@exept.de>
parents: 4170
diff changeset
  1256
    <resource: #obsolete>
3833
4537841edc0f code cleanup
Claus Gittinger <cg@exept.de>
parents: 3816
diff changeset
  1257
    self obsoleteMethodWarning:'use #allocatedColorsOnDevice:'.
4537841edc0f code cleanup
Claus Gittinger <cg@exept.de>
parents: 3816
diff changeset
  1258
4537841edc0f code cleanup
Claus Gittinger <cg@exept.de>
parents: 3816
diff changeset
  1259
    ^ self allocatedColorsOnDevice:aDevice
4537841edc0f code cleanup
Claus Gittinger <cg@exept.de>
parents: 3816
diff changeset
  1260
!
4537841edc0f code cleanup
Claus Gittinger <cg@exept.de>
parents: 3816
diff changeset
  1261
4537841edc0f code cleanup
Claus Gittinger <cg@exept.de>
parents: 3816
diff changeset
  1262
allocatedColorsOnDevice:aDevice
4537841edc0f code cleanup
Claus Gittinger <cg@exept.de>
parents: 3816
diff changeset
  1263
    "return a collection of colors which have already been allocated
4537841edc0f code cleanup
Claus Gittinger <cg@exept.de>
parents: 3816
diff changeset
  1264
     on aDevice."
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1265
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1266
    |colors|
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1267
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1268
    colors := OrderedCollection new.
1365
37a9e7ac4dbc moved color registration from Color class to per-device lobby
Claus Gittinger <cg@exept.de>
parents: 1348
diff changeset
  1269
    aDevice deviceColors do:[:clr |
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1270
	clr colorId notNil ifTrue:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1271
	    colors add:clr
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1272
	] ifFalse:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1273
	    'Color [oops]: nil colorId in color' infoPrintCR.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1274
	]
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1275
    ].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1276
    ^ colors asArray
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1277
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1278
    "
3833
4537841edc0f code cleanup
Claus Gittinger <cg@exept.de>
parents: 3816
diff changeset
  1279
     Color allocatedColorsOnDevice:Display
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1280
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1281
1365
37a9e7ac4dbc moved color registration from Color class to per-device lobby
Claus Gittinger <cg@exept.de>
parents: 1348
diff changeset
  1282
    "Modified: 24.2.1997 / 18:16:14 / cg"
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1283
! !
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1284
1144
07f3de59864d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1023
diff changeset
  1285
!Color class methodsFor:'color space conversions'!
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1286
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1287
withHLSFromRed:r green:g blue:b do:aBlock
3543
240b9b32ec20 comments
Claus Gittinger <cg@exept.de>
parents: 3427
diff changeset
  1288
    "compute hls form rgb, evaluate aBlock with h,l and s as arguments.
240b9b32ec20 comments
Claus Gittinger <cg@exept.de>
parents: 3427
diff changeset
  1289
     r,g,b in 0..100
240b9b32ec20 comments
Claus Gittinger <cg@exept.de>
parents: 3427
diff changeset
  1290
     h in 0..360; l in 0..100; s in 0..100"
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1291
6110
28bccabea00a class: Color
Claus Gittinger <cg@exept.de>
parents: 5965
diff changeset
  1292
    |max min r1 g1 b1 delta h l s divisor|
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1293
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1294
    r1 := r / 100.   "scale to  0..1"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1295
    g1 := g / 100.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1296
    b1 := b / 100.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1297
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1298
    max := (r1 max:g1) max:b1.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1299
    min := (r1 min:g1) min:b1.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1300
    l := (max + min) / 2.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1301
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1302
    max = min ifTrue:[
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1303
	"achromatic, r=g=b"
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1304
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1305
	s := 0.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1306
	h := nil
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1307
    ] ifFalse:[
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1308
	l < 0.5 ifTrue:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1309
	    divisor := (max + min)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1310
	] ifFalse:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1311
	    divisor := (2 - max - min)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1312
	].
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1313
	divisor = 0 ifTrue:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1314
	    s := 1.0
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1315
	] ifFalse:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1316
	    s := (max - min) / divisor
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1317
	].
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1318
	"calc hue"
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1319
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1320
	delta := max - min.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1321
	r1 = max ifTrue:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1322
	    h := (g1 - b1) / delta
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1323
	] ifFalse:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1324
	    g1 = max ifTrue:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1325
		h := 2 + ((b1 - r1) / delta)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1326
	    ] ifFalse:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1327
		h := 4 + ((r1 - g1) / delta)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1328
	    ]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1329
	].
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1330
	h := h * 60.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1331
	h < 0 ifTrue:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1332
	    h := h + 360
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1333
	].
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1334
    ].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1335
    aBlock value:h value:(l * 100) value:(s * 100)
6110
28bccabea00a class: Color
Claus Gittinger <cg@exept.de>
parents: 5965
diff changeset
  1336
28bccabea00a class: Color
Claus Gittinger <cg@exept.de>
parents: 5965
diff changeset
  1337
    "Modified: / 27-07-2013 / 11:48:20 / cg"
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1338
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1339
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1340
withHLSFromScaledRed:r scaledGreen:g scaledBlue:b do:aBlock
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1341
    "compute hls form rgb, evaluate aBlock with h,l and s as arguments"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1342
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1343
    ^ self withHLSFromRed:(r * 100.0 / MaxValue)
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1344
		    green:(g * 100.0 / MaxValue)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1345
		     blue:(b * 100.0 / MaxValue)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1346
		       do:aBlock
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1347
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1348
    "Created: 11.6.1996 / 17:23:47 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1349
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1350
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1351
withRGBFromHue:h light:l saturation:s do:aBlock
3543
240b9b32ec20 comments
Claus Gittinger <cg@exept.de>
parents: 3427
diff changeset
  1352
    "compute rgb form hls, evaluate aBlock with r,g and b as arguments
240b9b32ec20 comments
Claus Gittinger <cg@exept.de>
parents: 3427
diff changeset
  1353
     r,g,b in 0..100
240b9b32ec20 comments
Claus Gittinger <cg@exept.de>
parents: 3427
diff changeset
  1354
     h in 0..360; l in 0..100; s in 0..100"
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1355
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1356
    |valueFunc s1 l1 r g b m1 m2|
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1357
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1358
    valueFunc := [:n1 :n2 :hIn |
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1359
	|hue|
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1360
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1361
	hue := hIn.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1362
	hue > 360 ifTrue:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1363
	    hue := hue - 360
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1364
	] ifFalse:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1365
	    hue < 0 ifTrue:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1366
		hue := hue + 360
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1367
	    ].
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1368
	].
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1369
	hue < 60 ifTrue:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1370
	    n1 + ((n2 - n1) * hue / 60)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1371
	] ifFalse:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1372
	    hue < 180 ifTrue:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1373
		n2
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1374
	    ] ifFalse:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1375
		hue < 240 ifTrue:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1376
		    n1 + ((n2 - n1) * (240 - hue) / 60)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1377
		] ifFalse:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1378
		    n1
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1379
		]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1380
	    ]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1381
	]
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1382
    ].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1383
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1384
    "compute hls; h in 0..360; l 0..100; s 0..100"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1385
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1386
    s1 := s / 100.0.   "scale to  0..1"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1387
    l1 := l / 100.0.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1388
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1389
    l1 <= 0.5 ifTrue:[
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1390
	m2 := l1 * (1 + s1)
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1391
    ] ifFalse:[
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1392
	m2 := l1 + s1 - (l1 * s1)
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1393
    ].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1394
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1395
    m1 := 2 * l1 - m2.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1396
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1397
    s1 = 0 ifTrue:[
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1398
	"achromatic, ignore hue"
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1399
	r := g := b := l1
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1400
    ] ifFalse:[
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1401
	r := valueFunc value:m1 value:m2 value:h + 120.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1402
	g := valueFunc value:m1 value:m2 value:h.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1403
	b := valueFunc value:m1 value:m2 value:h - 120.
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1404
    ].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1405
    aBlock value:r*100 value:g*100 value:b*100
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1406
! !
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1407
1144
07f3de59864d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1023
diff changeset
  1408
!Color class methodsFor:'constant colors'!
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1409
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1410
black
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1411
    "return the black color"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1412
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1413
    Black isNil ifTrue:[
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1414
	Black := self red:0 green:0 blue:0
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1415
    ].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1416
    ^ Black
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1417
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1418
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1419
     Color black inspect
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1420
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1421
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1422
    "Modified: 11.6.1996 / 15:55:31 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1423
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1424
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1425
blue
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1426
    "return the blue color"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1427
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1428
    Blue isNil ifTrue:[
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1429
	Blue := self redPercent:0 greenPercent:0 bluePercent:100
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1430
    ].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1431
    ^ Blue
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1432
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1433
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1434
     Color blue inspect
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1435
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1436
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1437
    "Modified: 23.4.1996 / 13:15:51 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1438
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1439
2962
c60ec983a6f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2949
diff changeset
  1440
brown
c60ec983a6f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2949
diff changeset
  1441
    ^ self redPercent:60 greenPercent:20 bluePercent:0
c60ec983a6f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2949
diff changeset
  1442
c60ec983a6f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2949
diff changeset
  1443
    "
c60ec983a6f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2949
diff changeset
  1444
     Color brown
c60ec983a6f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2949
diff changeset
  1445
    "
c60ec983a6f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2949
diff changeset
  1446
!
c60ec983a6f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2949
diff changeset
  1447
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1448
cyan
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1449
    "return the cyan color - ST-80 compatibility"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1450
2087
619e0288e4e1 #cyan:, #magenta:, and #yellow: added
tz
parents: 2083
diff changeset
  1451
    ^ self cyan:100
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1452
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1453
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1454
     Color cyan inspect
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1455
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1456
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1457
    "Modified: 23.4.1996 / 13:16:07 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1458
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1459
2087
619e0288e4e1 #cyan:, #magenta:, and #yellow: added
tz
parents: 2083
diff changeset
  1460
cyan: cyan
619e0288e4e1 #cyan:, #magenta:, and #yellow: added
tz
parents: 2083
diff changeset
  1461
    "return a cyan color;
619e0288e4e1 #cyan:, #magenta:, and #yellow: added
tz
parents: 2083
diff changeset
  1462
     the argument cyan is interpreted as percent (0..100)"
619e0288e4e1 #cyan:, #magenta:, and #yellow: added
tz
parents: 2083
diff changeset
  1463
619e0288e4e1 #cyan:, #magenta:, and #yellow: added
tz
parents: 2083
diff changeset
  1464
     ^ self cyan:100 magenta:100-cyan yellow:100-cyan
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1465
2087
619e0288e4e1 #cyan:, #magenta:, and #yellow: added
tz
parents: 2083
diff changeset
  1466
!
619e0288e4e1 #cyan:, #magenta:, and #yellow: added
tz
parents: 2083
diff changeset
  1467
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1468
darkGray
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1469
    "return the dark grey color (English version ;-)"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1470
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1471
    DarkGrey isNil ifTrue:[
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1472
	DarkGrey := self grayPercent:33
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1473
    ].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1474
    ^ DarkGrey
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1475
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1476
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1477
     Color darkGray inspect
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1478
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1479
1368
cb5fbbcf568f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1365
diff changeset
  1480
    "Modified: 24.2.1997 / 21:33:11 / cg"
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1481
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1482
8660
ee175c43cba6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8456
diff changeset
  1483
darkGreen
ee175c43cba6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8456
diff changeset
  1484
    "return a dark green color"
ee175c43cba6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8456
diff changeset
  1485
ee175c43cba6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8456
diff changeset
  1486
    DarkGreen isNil ifTrue:[
ee175c43cba6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8456
diff changeset
  1487
        DarkGreen := self green darkened
ee175c43cba6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8456
diff changeset
  1488
    ].
ee175c43cba6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8456
diff changeset
  1489
    ^ DarkGreen
ee175c43cba6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8456
diff changeset
  1490
    
ee175c43cba6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8456
diff changeset
  1491
    "
ee175c43cba6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8456
diff changeset
  1492
     Color darkGreen
ee175c43cba6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8456
diff changeset
  1493
    "
ee175c43cba6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8456
diff changeset
  1494
ee175c43cba6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8456
diff changeset
  1495
    "Created: / 13-03-2019 / 21:10:09 / Claus Gittinger"
ee175c43cba6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8456
diff changeset
  1496
!
ee175c43cba6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8456
diff changeset
  1497
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1498
darkGrey
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1499
    "return the darkGrey color (US version ;-)"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1500
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1501
    ^ self darkGray
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1502
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1503
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1504
     Color darkGrey inspect
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1505
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1506
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1507
    "Modified: 28.5.1996 / 20:47:14 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1508
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1509
8660
ee175c43cba6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8456
diff changeset
  1510
darkRed
ee175c43cba6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8456
diff changeset
  1511
    "return a dark green color"
ee175c43cba6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8456
diff changeset
  1512
ee175c43cba6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8456
diff changeset
  1513
    DarkRed isNil ifTrue:[
ee175c43cba6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8456
diff changeset
  1514
        DarkRed := self red darkened
ee175c43cba6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8456
diff changeset
  1515
    ].
ee175c43cba6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8456
diff changeset
  1516
    ^ DarkRed
ee175c43cba6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8456
diff changeset
  1517
    
ee175c43cba6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8456
diff changeset
  1518
    "
ee175c43cba6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8456
diff changeset
  1519
     Color darkRed
ee175c43cba6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8456
diff changeset
  1520
    "
ee175c43cba6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8456
diff changeset
  1521
ee175c43cba6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8456
diff changeset
  1522
    "Created: / 13-03-2019 / 21:16:02 / Claus Gittinger"
ee175c43cba6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8456
diff changeset
  1523
!
ee175c43cba6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8456
diff changeset
  1524
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1525
gray
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1526
    "return a medium grey color (US version ;-)"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1527
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1528
    Grey isNil ifTrue:[
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1529
	Grey := self grayPercent:50
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1530
    ].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1531
    ^ Grey
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1532
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1533
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1534
     Color gray inspect
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1535
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1536
1368
cb5fbbcf568f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1365
diff changeset
  1537
    "Modified: 24.2.1997 / 21:33:19 / cg"
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1538
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1539
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1540
gray:gray
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1541
    "return a gray color (US version).
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1542
     The argument, gray is interpreted as percent (0..100)."
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1543
1348
acb4e4874e4d care for ColorValue (ColorValue cyan)
ca
parents: 1347
diff changeset
  1544
    ^ self redPercent:gray greenPercent:gray bluePercent:gray
acb4e4874e4d care for ColorValue (ColorValue cyan)
ca
parents: 1347
diff changeset
  1545
acb4e4874e4d care for ColorValue (ColorValue cyan)
ca
parents: 1347
diff changeset
  1546
    "
acb4e4874e4d care for ColorValue (ColorValue cyan)
ca
parents: 1347
diff changeset
  1547
     Color gray:25
acb4e4874e4d care for ColorValue (ColorValue cyan)
ca
parents: 1347
diff changeset
  1548
    "
acb4e4874e4d care for ColorValue (ColorValue cyan)
ca
parents: 1347
diff changeset
  1549
acb4e4874e4d care for ColorValue (ColorValue cyan)
ca
parents: 1347
diff changeset
  1550
    "Modified: 28.5.1996 / 20:49:51 / cg"
acb4e4874e4d care for ColorValue (ColorValue cyan)
ca
parents: 1347
diff changeset
  1551
!
acb4e4874e4d care for ColorValue (ColorValue cyan)
ca
parents: 1347
diff changeset
  1552
acb4e4874e4d care for ColorValue (ColorValue cyan)
ca
parents: 1347
diff changeset
  1553
grayPercent:gray
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1554
    "return a gray color (US version).
1348
acb4e4874e4d care for ColorValue (ColorValue cyan)
ca
parents: 1347
diff changeset
  1555
     The argument, gray is interpreted as percent (0..100)."
acb4e4874e4d care for ColorValue (ColorValue cyan)
ca
parents: 1347
diff changeset
  1556
acb4e4874e4d care for ColorValue (ColorValue cyan)
ca
parents: 1347
diff changeset
  1557
    ^ self redPercent:gray greenPercent:gray bluePercent:gray
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1558
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1559
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1560
     Color gray:25
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1561
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1562
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1563
    "Modified: 28.5.1996 / 20:49:51 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1564
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1565
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1566
green
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1567
    "return green"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1568
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1569
    Green isNil ifTrue:[
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1570
	Green := self redPercent:0 greenPercent:100 bluePercent:0
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1571
    ].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1572
    ^ Green
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1573
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1574
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1575
     Color green inspect
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1576
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1577
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1578
    "Modified: 23.4.1996 / 13:23:08 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1579
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1580
7832
9f302a33066b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7831
diff changeset
  1581
greenCaringForColorBlindness
7833
7cffe851a6d2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  1582
    "return the color to use for a darkened green (showing text in that color),
7832
9f302a33066b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7831
diff changeset
  1583
     possibly using anther color if the settings specifies color blindness"
9f302a33066b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7831
diff changeset
  1584
     
9f302a33066b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7831
diff changeset
  1585
    UserPreferences current useColorsForColorBlindness ifTrue:[
9f302a33066b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7831
diff changeset
  1586
        "/ for now: later, this will also be configurable
9f302a33066b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7831
diff changeset
  1587
        ^ self blue.
9f302a33066b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7831
diff changeset
  1588
    ] ifFalse:[
7833
7cffe851a6d2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  1589
        ^ self green darkened.
7832
9f302a33066b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7831
diff changeset
  1590
    ].
9f302a33066b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7831
diff changeset
  1591
7833
7cffe851a6d2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  1592
    "
7cffe851a6d2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  1593
     self greenCaringForColorBlindness
7cffe851a6d2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  1594
    "
7cffe851a6d2 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7832
diff changeset
  1595
7832
9f302a33066b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7831
diff changeset
  1596
    "Created: / 03-02-2017 / 14:02:26 / cg"
9f302a33066b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7831
diff changeset
  1597
!
9f302a33066b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7831
diff changeset
  1598
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1599
grey
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1600
    "return the grey color (English version ;-)"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1601
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1602
    ^ self gray
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1603
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1604
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1605
     Color grey inspect
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1606
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1607
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1608
    "Modified: 28.5.1996 / 20:48:26 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1609
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1610
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1611
grey:grey
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1612
    "return a grey color (English version).
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1613
     The argument, grey is interpreted as percent (0..100)."
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1614
1368
cb5fbbcf568f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1365
diff changeset
  1615
    ^ self grayPercent:grey
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1616
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1617
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1618
     Color grey:25
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1619
     Color grey:12.5
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1620
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1621
1368
cb5fbbcf568f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1365
diff changeset
  1622
    "Modified: 24.2.1997 / 21:33:28 / cg"
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1623
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1624
5419
7718ae7f7e6b added: #greyByte:
Claus Gittinger <cg@exept.de>
parents: 5337
diff changeset
  1625
greyByte:greyByte
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1626
    "return a grey color (English version).
5419
7718ae7f7e6b added: #greyByte:
Claus Gittinger <cg@exept.de>
parents: 5337
diff changeset
  1627
     The argument, grey is interpreted as byte-value (0..255)."
7718ae7f7e6b added: #greyByte:
Claus Gittinger <cg@exept.de>
parents: 5337
diff changeset
  1628
7718ae7f7e6b added: #greyByte:
Claus Gittinger <cg@exept.de>
parents: 5337
diff changeset
  1629
    ^ self redByte:greyByte greenByte:greyByte blueByte:greyByte
7718ae7f7e6b added: #greyByte:
Claus Gittinger <cg@exept.de>
parents: 5337
diff changeset
  1630
7718ae7f7e6b added: #greyByte:
Claus Gittinger <cg@exept.de>
parents: 5337
diff changeset
  1631
    "
7718ae7f7e6b added: #greyByte:
Claus Gittinger <cg@exept.de>
parents: 5337
diff changeset
  1632
     Color greyByte:127
7718ae7f7e6b added: #greyByte:
Claus Gittinger <cg@exept.de>
parents: 5337
diff changeset
  1633
    "
7718ae7f7e6b added: #greyByte:
Claus Gittinger <cg@exept.de>
parents: 5337
diff changeset
  1634
!
7718ae7f7e6b added: #greyByte:
Claus Gittinger <cg@exept.de>
parents: 5337
diff changeset
  1635
2388
8a7f4bb3847c added lightRed/lightGreen/lightBlue
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
  1636
lightBlue
8a7f4bb3847c added lightRed/lightGreen/lightBlue
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
  1637
    "return a light blue color"
8a7f4bb3847c added lightRed/lightGreen/lightBlue
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
  1638
8a7f4bb3847c added lightRed/lightGreen/lightBlue
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
  1639
    ^ self redPercent:50 greenPercent:50 bluePercent:100
8a7f4bb3847c added lightRed/lightGreen/lightBlue
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
  1640
8a7f4bb3847c added lightRed/lightGreen/lightBlue
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
  1641
    "
8a7f4bb3847c added lightRed/lightGreen/lightBlue
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
  1642
     Color lightBlue inspect
8a7f4bb3847c added lightRed/lightGreen/lightBlue
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
  1643
    "
8a7f4bb3847c added lightRed/lightGreen/lightBlue
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
  1644
8a7f4bb3847c added lightRed/lightGreen/lightBlue
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
  1645
    "Modified: 23.4.1996 / 13:23:08 / cg"
8a7f4bb3847c added lightRed/lightGreen/lightBlue
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
  1646
!
8a7f4bb3847c added lightRed/lightGreen/lightBlue
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
  1647
2962
c60ec983a6f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2949
diff changeset
  1648
lightBrown
c60ec983a6f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2949
diff changeset
  1649
    ^ self brown lighter
c60ec983a6f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2949
diff changeset
  1650
c60ec983a6f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2949
diff changeset
  1651
    "
c60ec983a6f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2949
diff changeset
  1652
     Color lightBrown
c60ec983a6f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2949
diff changeset
  1653
    "
c60ec983a6f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2949
diff changeset
  1654
!
c60ec983a6f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2949
diff changeset
  1655
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1656
lightGray
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1657
    "return the lightGrey color (US version ;-)"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1658
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1659
    LightGrey isNil ifTrue:[
8792
cdc228b4e90c #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 8787
diff changeset
  1660
        LightGrey := self grayPercent:67
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1661
    ].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1662
    ^ LightGrey
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1663
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1664
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1665
     Color lightGray inspect
8792
cdc228b4e90c #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 8787
diff changeset
  1666
     Color gray lightened inspect
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1667
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1668
1368
cb5fbbcf568f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1365
diff changeset
  1669
    "Modified: 24.2.1997 / 21:33:41 / cg"
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1670
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1671
2388
8a7f4bb3847c added lightRed/lightGreen/lightBlue
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
  1672
lightGreen
8a7f4bb3847c added lightRed/lightGreen/lightBlue
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
  1673
    "return a light green color"
8a7f4bb3847c added lightRed/lightGreen/lightBlue
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
  1674
8a7f4bb3847c added lightRed/lightGreen/lightBlue
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
  1675
    ^ self redPercent:50 greenPercent:100 bluePercent:50
8a7f4bb3847c added lightRed/lightGreen/lightBlue
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
  1676
8a7f4bb3847c added lightRed/lightGreen/lightBlue
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
  1677
    "
8a7f4bb3847c added lightRed/lightGreen/lightBlue
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
  1678
     Color lightGreen inspect
8a7f4bb3847c added lightRed/lightGreen/lightBlue
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
  1679
    "
8a7f4bb3847c added lightRed/lightGreen/lightBlue
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
  1680
8a7f4bb3847c added lightRed/lightGreen/lightBlue
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
  1681
    "Modified: 23.4.1996 / 13:23:08 / cg"
8a7f4bb3847c added lightRed/lightGreen/lightBlue
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
  1682
!
8a7f4bb3847c added lightRed/lightGreen/lightBlue
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
  1683
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1684
lightGrey
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1685
    "return the lightGrey color (English version ;-)"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1686
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1687
    ^ self lightGray
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1688
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1689
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1690
     Color lightGrey inspect
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1691
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1692
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1693
    "Modified: 28.5.1996 / 20:51:11 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1694
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1695
2388
8a7f4bb3847c added lightRed/lightGreen/lightBlue
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
  1696
lightRed
8a7f4bb3847c added lightRed/lightGreen/lightBlue
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
  1697
    "return a light red color"
8a7f4bb3847c added lightRed/lightGreen/lightBlue
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
  1698
8a7f4bb3847c added lightRed/lightGreen/lightBlue
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
  1699
    ^ self redPercent:100 greenPercent:50 bluePercent:50
8a7f4bb3847c added lightRed/lightGreen/lightBlue
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
  1700
8a7f4bb3847c added lightRed/lightGreen/lightBlue
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
  1701
    "
8a7f4bb3847c added lightRed/lightGreen/lightBlue
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
  1702
     Color lightRed inspect
8a7f4bb3847c added lightRed/lightGreen/lightBlue
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
  1703
    "
8a7f4bb3847c added lightRed/lightGreen/lightBlue
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
  1704
8a7f4bb3847c added lightRed/lightGreen/lightBlue
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
  1705
    "Modified: 23.4.1996 / 13:23:08 / cg"
8a7f4bb3847c added lightRed/lightGreen/lightBlue
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
  1706
!
8a7f4bb3847c added lightRed/lightGreen/lightBlue
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
  1707
2949
b747daf42e13 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2948
diff changeset
  1708
lightYellow
b747daf42e13 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2948
diff changeset
  1709
    ^ self yellow lighter
b747daf42e13 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2948
diff changeset
  1710
!
b747daf42e13 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2948
diff changeset
  1711
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1712
magenta
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1713
    "return the magenta color - ST-80 compatibility"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1714
2087
619e0288e4e1 #cyan:, #magenta:, and #yellow: added
tz
parents: 2083
diff changeset
  1715
    ^ self magenta:100
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1716
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1717
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1718
     Color magenta inspect
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1719
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1720
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1721
    "Modified: 23.4.1996 / 13:23:41 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1722
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1723
2087
619e0288e4e1 #cyan:, #magenta:, and #yellow: added
tz
parents: 2083
diff changeset
  1724
magenta: magenta
619e0288e4e1 #cyan:, #magenta:, and #yellow: added
tz
parents: 2083
diff changeset
  1725
    "return a magenta color;
619e0288e4e1 #cyan:, #magenta:, and #yellow: added
tz
parents: 2083
diff changeset
  1726
     the argument magenta is interpreted as percent (0..100)"
619e0288e4e1 #cyan:, #magenta:, and #yellow: added
tz
parents: 2083
diff changeset
  1727
619e0288e4e1 #cyan:, #magenta:, and #yellow: added
tz
parents: 2083
diff changeset
  1728
     ^ self cyan:100-magenta magenta:100 yellow:100-magenta
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1729
2087
619e0288e4e1 #cyan:, #magenta:, and #yellow: added
tz
parents: 2083
diff changeset
  1730
!
619e0288e4e1 #cyan:, #magenta:, and #yellow: added
tz
parents: 2083
diff changeset
  1731
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1732
mediumGray
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1733
    "return medium-grey color (US version ;-)"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1734
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1735
    ^ self gray
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1736
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1737
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1738
     Color mediumGray inspect
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1739
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1740
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1741
    "Created: 23.4.1996 / 13:24:17 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1742
    "Modified: 28.5.1996 / 20:51:21 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1743
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1744
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1745
mediumGrey
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1746
    "return medium-grey color (English version ;-)"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1747
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1748
    ^ self gray
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1749
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1750
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1751
     Color mediumGrey inspect
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1752
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1753
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1754
    "Modified: 28.5.1996 / 20:51:24 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1755
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1756
8701
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  1757
neonPink
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  1758
    "return the neon pink color"
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  1759
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  1760
     ^ self rgbValue:16rFF66CC
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  1761
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  1762
    "Created: / 06-06-2019 / 11:55:05 / Claus Gittinger"
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  1763
!
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  1764
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1765
orange
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1766
    "return the orange color - ST-80 compatibility"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1767
7642
9285a6619b7c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7639
diff changeset
  1768
    Orange isNil ifTrue:[
7909
c5f82e9429f9 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7885
diff changeset
  1769
        Orange := self rgbValue:16rFFA500.
7642
9285a6619b7c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7639
diff changeset
  1770
    ].
9285a6619b7c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7639
diff changeset
  1771
    ^ Orange
9285a6619b7c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7639
diff changeset
  1772
9285a6619b7c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7639
diff changeset
  1773
    "
9285a6619b7c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7639
diff changeset
  1774
     Color orange inspect
9285a6619b7c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7639
diff changeset
  1775
    "
7909
c5f82e9429f9 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7885
diff changeset
  1776
c5f82e9429f9 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7885
diff changeset
  1777
    "Modified: / 17-02-2017 / 12:34:20 / cg"
2077
442b9763111c #orange should return an orange color and not a brown color
tz
parents: 2071
diff changeset
  1778
!
442b9763111c #orange should return an orange color and not a brown color
tz
parents: 2071
diff changeset
  1779
442b9763111c #orange should return an orange color and not a brown color
tz
parents: 2071
diff changeset
  1780
orange: orange
442b9763111c #orange should return an orange color and not a brown color
tz
parents: 2071
diff changeset
  1781
    "return a orange color;
442b9763111c #orange should return an orange color and not a brown color
tz
parents: 2071
diff changeset
  1782
     the argument orange is interpreted as percent (0..100)"
442b9763111c #orange should return an orange color and not a brown color
tz
parents: 2071
diff changeset
  1783
442b9763111c #orange should return an orange color and not a brown color
tz
parents: 2071
diff changeset
  1784
     ^ self redPercent:orange greenPercent:orange/2 bluePercent:0
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1785
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1786
!
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1787
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1788
pink
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1789
    "return the pink color - ST-80 compatibility"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1790
8701
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  1791
     ^ self rgbValue:16rFC0FC0
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  1792
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  1793
    "Modified: / 23-04-1996 / 13:29:38 / cg"
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  1794
    "Modified: / 06-06-2019 / 11:56:05 / Claus Gittinger"
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1795
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1796
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1797
red
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1798
    "return the red color"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1799
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1800
    Red isNil ifTrue:[
7642
9285a6619b7c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7639
diff changeset
  1801
        Red := self redPercent:100 greenPercent:0 bluePercent:0.
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1802
    ].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1803
    ^ Red
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1804
7642
9285a6619b7c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7639
diff changeset
  1805
    "
9285a6619b7c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7639
diff changeset
  1806
     Color red inspect
9285a6619b7c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7639
diff changeset
  1807
    "
9285a6619b7c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7639
diff changeset
  1808
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1809
    "Modified: 23.4.1996 / 13:29:44 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1810
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1811
7832
9f302a33066b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7831
diff changeset
  1812
redCaringForColorBlindness
9f302a33066b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7831
diff changeset
  1813
    "return the color to use for green,
9f302a33066b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7831
diff changeset
  1814
     possibly using anther color if the settings specifies color blindness"
9f302a33066b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7831
diff changeset
  1815
     
9f302a33066b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7831
diff changeset
  1816
    UserPreferences current useColorsForColorBlindness ifTrue:[
9f302a33066b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7831
diff changeset
  1817
        "/ for now: later, this will also be configurable
9f302a33066b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7831
diff changeset
  1818
        ^ self red.
9f302a33066b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7831
diff changeset
  1819
    ] ifFalse:[
9f302a33066b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7831
diff changeset
  1820
        ^ self red.
9f302a33066b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7831
diff changeset
  1821
    ].
9f302a33066b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7831
diff changeset
  1822
9f302a33066b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7831
diff changeset
  1823
    "Created: / 03-02-2017 / 14:02:50 / cg"
9f302a33066b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7831
diff changeset
  1824
!
9f302a33066b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7831
diff changeset
  1825
8701
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  1826
salmon
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  1827
    "return the salmon color"
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  1828
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  1829
     ^ self rgbValue:16rFDAB9F
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  1830
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  1831
    "Created: / 06-06-2019 / 11:59:37 / Claus Gittinger"
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  1832
!
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  1833
2942
513981eb5180 prepared support for translucent colors
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  1834
transparent
513981eb5180 prepared support for translucent colors
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  1835
    "return the transparent-color"
513981eb5180 prepared support for translucent colors
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  1836
513981eb5180 prepared support for translucent colors
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  1837
    Transparent isNil ifTrue:[
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1838
	Transparent := TranslucentColor scaledRed:0 scaledGreen:0 scaledBlue:0.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1839
	Transparent setAlphaByte:0.
2942
513981eb5180 prepared support for translucent colors
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  1840
    ].
513981eb5180 prepared support for translucent colors
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  1841
    ^ Transparent
513981eb5180 prepared support for translucent colors
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  1842
513981eb5180 prepared support for translucent colors
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  1843
    "
513981eb5180 prepared support for translucent colors
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  1844
     self transparent
513981eb5180 prepared support for translucent colors
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  1845
    "
513981eb5180 prepared support for translucent colors
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  1846
!
513981eb5180 prepared support for translucent colors
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  1847
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1848
veryDarkGray
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1849
    "return a very dark-grey color (US version ;-)"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1850
1368
cb5fbbcf568f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1365
diff changeset
  1851
    ^ self grayPercent:13
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1852
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1853
    "Created: 23.4.1996 / 13:33:14 / cg"
1368
cb5fbbcf568f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1365
diff changeset
  1854
    "Modified: 24.2.1997 / 21:33:52 / cg"
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1855
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1856
8660
ee175c43cba6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8456
diff changeset
  1857
veryDarkGreen
ee175c43cba6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8456
diff changeset
  1858
    "return a very dark green color"
ee175c43cba6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8456
diff changeset
  1859
ee175c43cba6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8456
diff changeset
  1860
    ^ self darkGreen darkened
ee175c43cba6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8456
diff changeset
  1861
ee175c43cba6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8456
diff changeset
  1862
    "
ee175c43cba6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8456
diff changeset
  1863
     Color veryDarkGreen
ee175c43cba6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8456
diff changeset
  1864
    "
ee175c43cba6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8456
diff changeset
  1865
ee175c43cba6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8456
diff changeset
  1866
    "Created: / 13-03-2019 / 21:15:31 / Claus Gittinger"
ee175c43cba6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8456
diff changeset
  1867
!
ee175c43cba6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8456
diff changeset
  1868
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1869
veryDarkGrey
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1870
    "return a very dark-grey color (English version ;-)"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1871
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1872
    ^ self veryDarkGray
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1873
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1874
    "Modified: 28.5.1996 / 20:52:49 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1875
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1876
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1877
veryLightGray
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1878
    "return a very light-grey color (US version ;-)"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1879
1368
cb5fbbcf568f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1365
diff changeset
  1880
    ^ self grayPercent:87
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1881
8792
cdc228b4e90c #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 8787
diff changeset
  1882
    "
cdc228b4e90c #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 8787
diff changeset
  1883
     Color veryLightGray inspect
cdc228b4e90c #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 8787
diff changeset
  1884
     Color gray lightened lightened inspect
cdc228b4e90c #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 8787
diff changeset
  1885
    "
cdc228b4e90c #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 8787
diff changeset
  1886
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1887
    "Created: 23.4.1996 / 13:33:46 / cg"
1368
cb5fbbcf568f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1365
diff changeset
  1888
    "Modified: 24.2.1997 / 21:33:58 / cg"
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1889
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1890
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1891
veryLightGrey
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1892
    "return a very light-grey color (English version ;-)"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1893
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1894
    ^ self veryLightGray
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1895
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1896
    "Modified: 28.5.1996 / 20:52:03 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1897
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1898
3030
11cb6482e344 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3024
diff changeset
  1899
veryVeryLightGray
11cb6482e344 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3024
diff changeset
  1900
    "return a very very light-grey color (US version ;-)"
11cb6482e344 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3024
diff changeset
  1901
11cb6482e344 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3024
diff changeset
  1902
    ^ self grayPercent:93
11cb6482e344 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3024
diff changeset
  1903
11cb6482e344 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3024
diff changeset
  1904
!
11cb6482e344 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3024
diff changeset
  1905
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1906
white
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1907
    "return the white-color"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1908
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1909
    White isNil ifTrue:[
7642
9285a6619b7c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7639
diff changeset
  1910
        White := self redPercent:100 greenPercent:100 bluePercent:100.
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1911
    ].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1912
    ^ White
7642
9285a6619b7c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7639
diff changeset
  1913
9285a6619b7c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7639
diff changeset
  1914
    "
9285a6619b7c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7639
diff changeset
  1915
     Color white inspect
9285a6619b7c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7639
diff changeset
  1916
    "
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1917
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1918
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1919
yellow
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1920
    "return the yellow color - ST-80 compatibility"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1921
7642
9285a6619b7c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7639
diff changeset
  1922
    Yellow isNil ifTrue:[
9285a6619b7c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7639
diff changeset
  1923
        Yellow := self redPercent:100 greenPercent:100 bluePercent:0.
9285a6619b7c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7639
diff changeset
  1924
    ].
9285a6619b7c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7639
diff changeset
  1925
    ^ Yellow
9285a6619b7c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7639
diff changeset
  1926
9285a6619b7c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7639
diff changeset
  1927
    "
9285a6619b7c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7639
diff changeset
  1928
     Color yellow inspect
9285a6619b7c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7639
diff changeset
  1929
    "
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1930
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1931
    "Modified: 23.4.1996 / 13:33:56 / cg"
2087
619e0288e4e1 #cyan:, #magenta:, and #yellow: added
tz
parents: 2083
diff changeset
  1932
!
619e0288e4e1 #cyan:, #magenta:, and #yellow: added
tz
parents: 2083
diff changeset
  1933
619e0288e4e1 #cyan:, #magenta:, and #yellow: added
tz
parents: 2083
diff changeset
  1934
yellow: yellow
619e0288e4e1 #cyan:, #magenta:, and #yellow: added
tz
parents: 2083
diff changeset
  1935
    "return a yellow color;
619e0288e4e1 #cyan:, #magenta:, and #yellow: added
tz
parents: 2083
diff changeset
  1936
     the argument yellow is interpreted as percent (0..100)"
619e0288e4e1 #cyan:, #magenta:, and #yellow: added
tz
parents: 2083
diff changeset
  1937
619e0288e4e1 #cyan:, #magenta:, and #yellow: added
tz
parents: 2083
diff changeset
  1938
     ^ self cyan:100-yellow magenta:100-yellow yellow:100
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1939
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1940
! !
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1941
1233
c6796bddc7d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1229
diff changeset
  1942
!Color class methodsFor:'obsolete'!
c6796bddc7d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1229
diff changeset
  1943
c6796bddc7d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1229
diff changeset
  1944
nameOrDither:colorName
c6796bddc7d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1229
diff changeset
  1945
    "return a named color - if the exact color is not available,
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  1946
     return a dithered color. Report an error, if the colorname is
1233
c6796bddc7d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1229
diff changeset
  1947
     illegal."
c6796bddc7d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1229
diff changeset
  1948
3427
609caad9766c Use <resource:#obsolete>
Stefan Vogel <sv@exept.de>
parents: 3399
diff changeset
  1949
    <resource:#obsolete>
609caad9766c Use <resource:#obsolete>
Stefan Vogel <sv@exept.de>
parents: 3399
diff changeset
  1950
1233
c6796bddc7d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1229
diff changeset
  1951
    self obsoleteMethodWarning:'use #name:'.
c6796bddc7d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1229
diff changeset
  1952
    ^ self name:colorName
c6796bddc7d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1229
diff changeset
  1953
c6796bddc7d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1229
diff changeset
  1954
    "Modified: 16.1.1997 / 23:01:03 / cg"
c6796bddc7d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1229
diff changeset
  1955
!
c6796bddc7d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1229
diff changeset
  1956
c6796bddc7d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1229
diff changeset
  1957
nameOrDither:colorName ifIllegal:errorBlock
c6796bddc7d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1229
diff changeset
  1958
    "return a named color - if the exact color is not available,
c6796bddc7d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1229
diff changeset
  1959
     return a dithered color. If the colorname is illegal, return
c6796bddc7d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1229
diff changeset
  1960
     the value of evaluating errorBlock."
c6796bddc7d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1229
diff changeset
  1961
3427
609caad9766c Use <resource:#obsolete>
Stefan Vogel <sv@exept.de>
parents: 3399
diff changeset
  1962
    <resource:#obsolete>
609caad9766c Use <resource:#obsolete>
Stefan Vogel <sv@exept.de>
parents: 3399
diff changeset
  1963
1233
c6796bddc7d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1229
diff changeset
  1964
    self obsoleteMethodWarning:'use #name:ifIllegal:'.
c6796bddc7d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1229
diff changeset
  1965
    ^ self name:colorName ifIllegal:errorBlock
c6796bddc7d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1229
diff changeset
  1966
c6796bddc7d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1229
diff changeset
  1967
    "Modified: 16.1.1997 / 23:01:32 / cg"
c6796bddc7d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1229
diff changeset
  1968
!
c6796bddc7d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1229
diff changeset
  1969
c6796bddc7d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1229
diff changeset
  1970
nameOrNearest:colorName
c6796bddc7d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1229
diff changeset
  1971
    "return a named color - or its nearest match"
c6796bddc7d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1229
diff changeset
  1972
3427
609caad9766c Use <resource:#obsolete>
Stefan Vogel <sv@exept.de>
parents: 3399
diff changeset
  1973
    <resource:#obsolete>
609caad9766c Use <resource:#obsolete>
Stefan Vogel <sv@exept.de>
parents: 3399
diff changeset
  1974
1233
c6796bddc7d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1229
diff changeset
  1975
    self obsoleteMethodWarning:'use #name:'.
c6796bddc7d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1229
diff changeset
  1976
    ^ self name:colorName
c6796bddc7d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1229
diff changeset
  1977
c6796bddc7d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1229
diff changeset
  1978
    "Modified: 16.1.1997 / 23:02:18 / cg"
c6796bddc7d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1229
diff changeset
  1979
! !
c6796bddc7d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1229
diff changeset
  1980
1144
07f3de59864d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1023
diff changeset
  1981
!Color class methodsFor:'private'!
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1982
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1983
colorNearRed:r green:g blue:b on:aDevice
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1984
    "return a device color on aDevice with rgb values
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1985
     almost matching. If there is one, nil otherwise.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1986
     This is tried as a last chance before dithering.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1987
     The algorithm needs rework, the color components
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1988
     should be weighted according some theory :-)"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1989
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1990
    |bestColor minDelta diff rr rg rb dRed|
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1991
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1992
"/    rr := (r * 3.0) rounded / 3.0.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1993
"/    rg := (g * 3.0) rounded / 3.0.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1994
"/    rb := (b * 3.0) rounded / 3.0.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1995
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1996
    rr := r rounded.                "round to 1%"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1997
    rg := (g * 2.0) rounded / 2.0.  "round to 0.5%"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1998
    rb := (b / 2) rounded * 2.      "round to 2%"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  1999
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2000
    minDelta := 100*100*100.
1365
37a9e7ac4dbc moved color registration from Color class to per-device lobby
Claus Gittinger <cg@exept.de>
parents: 1348
diff changeset
  2001
    aDevice deviceColors do:[:aColor |
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2002
	dRed := rr - aColor red.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2003
	dRed < 10 ifTrue:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2004
	    diff := dRed asInteger squared
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2005
		    + (rg - aColor green) asInteger squared
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2006
		    + (rb - aColor blue) asInteger squared.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2007
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2008
	    diff < minDelta ifTrue:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2009
		diff = 0 ifTrue:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2010
		    "got it"
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2011
		    ^ aColor
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2012
		].
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2013
		bestColor := aColor.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2014
		minDelta := diff
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2015
	    ]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2016
	]
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2017
    ].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2018
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2019
    "allow an error of 10% per component"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2020
    minDelta < (100+100+100) ifTrue:[ ^ bestColor ].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2021
    ^ nil
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2022
1365
37a9e7ac4dbc moved color registration from Color class to per-device lobby
Claus Gittinger <cg@exept.de>
parents: 1348
diff changeset
  2023
    "Modified: 24.2.1997 / 18:17:24 / cg"
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2024
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2025
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2026
existingColorRed:r green:g blue:b on:aDevice
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2027
    "return a device color on aDevice with rgb values
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2028
     if there is one, nil otherwise."
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2029
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2030
    ^ self existingColorScaledRed:(r * MaxValue // 100)
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2031
			scaledGreen:(g * MaxValue // 100)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2032
			scaledBlue:(b * MaxValue // 100)
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2033
!
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2034
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2035
existingColorScaledRed:r scaledGreen:g scaledBlue:b on:aDevice
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2036
    "return a device color on aDevice with rgb values
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2037
     if there is one, nil otherwise."
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2038
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2039
    aDevice deviceColors do:[:aColor |
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2040
	(r == aColor scaledRed) ifTrue:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2041
	    (g == aColor scaledGreen) ifTrue:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2042
		(b == aColor scaledBlue) ifTrue:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2043
		    ^ aColor
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2044
		]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2045
	    ]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2046
	]
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2047
    ].
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2048
    ^ nil
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2049
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2050
    "Modified: 24.2.1997 / 18:17:35 / cg"
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2051
! !
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2052
3878
28052cae1ad3 method category rename
Claus Gittinger <cg@exept.de>
parents: 3833
diff changeset
  2053
!Color class methodsFor:'private-dithering'!
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2054
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2055
complexDitherRed:red green:green blue:blue on:aDevice into:aBlock
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2056
    "get a deep dither form for an rgb value.
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2057
     Use all available colors for error dithering into a form."
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2058
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2059
    |errR errG errB f wantR wantG wantB clr
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2060
     dir   "{ Class: SmallInteger }"
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2061
     start "{ Class: SmallInteger }"
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2062
     end   "{ Class: SmallInteger }"
1929
e500fcf94969 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1928
diff changeset
  2063
     map
e500fcf94969 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1928
diff changeset
  2064
     w     "{ Class: SmallInteger }"
e500fcf94969 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1928
diff changeset
  2065
     h     "{ Class: SmallInteger }"|
e500fcf94969 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1928
diff changeset
  2066
e500fcf94969 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1928
diff changeset
  2067
"/    w := h := 32.
e500fcf94969 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1928
diff changeset
  2068
"/    w := h := 4.
e500fcf94969 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1928
diff changeset
  2069
    w := h := 2.
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2070
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2071
    errR := 0.
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2072
    errG := 0.
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2073
    errB := 0.
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2074
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2075
    "get a form and clear it"
4785
ffb3b0caceb8 Change senders of obsolete messages Form>>...on: to ...onDevice:
Stefan Vogel <sv@exept.de>
parents: 4772
diff changeset
  2076
    f := Form width:w height:h depth:(aDevice depth) onDevice:aDevice.
7360
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2077
    f isNil ifTrue:[^ nil].
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2078
    map := IdentityDictionary new.
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2079
1929
e500fcf94969 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1928
diff changeset
  2080
    0 to:(w-1) do:[:x |
7360
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2081
        x even ifTrue:[
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2082
            dir := 1.
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2083
            start := 0.
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2084
            end := (h-1).
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2085
        ] ifFalse:[
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2086
            dir := -1.
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2087
            start := (h-1).
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2088
            end := 0.
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2089
        ].
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2090
        start to:end by:dir do:[:y |
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2091
            wantR := red + errR.
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2092
            wantR > MaxValue ifTrue:[
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2093
                wantR := MaxValue
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2094
            ] ifFalse:[ wantR < 0 ifTrue:[
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2095
                wantR := 0
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2096
            ]].
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2097
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2098
            wantG := green + errG.
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2099
            wantG > MaxValue ifTrue:[
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2100
                wantG := MaxValue
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2101
            ] ifFalse:[ wantG < 0 ifTrue:[
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2102
                wantG := 0
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2103
            ]].
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2104
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2105
            wantB := blue + errB.
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2106
            wantB > MaxValue ifTrue:[
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2107
                wantB := MaxValue
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2108
            ] ifFalse:[ wantB < 0 ifTrue:[
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2109
                wantB := 0
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2110
            ]].
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2111
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2112
            "find the nearest color"
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2113
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2114
            clr := Color quickNearestColorScaledRed:wantR scaledGreen:wantG scaledBlue:wantB on:aDevice.
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2115
"
7360
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2116
            clr := Color nearestColorScaledRed:wantR green:wantG blue:wantB on:aDevice.
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2117
"
7360
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2118
            clr isNil ifTrue:[
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2119
                clr := Color scaledRed:wantR scaledGreen:wantG scaledBlue:wantB.
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2120
                clr brightness > 0.5 ifTrue:[
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2121
                    clr := Color white
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2122
                ] ifFalse:[
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2123
                    clr := Color black
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2124
                ].
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2125
                clr := clr onDevice:aDevice
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2126
"
7360
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2127
                ^ aBlock value:nil value:nil
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2128
"
7360
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2129
            ].
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2130
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2131
            f paint:clr.
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2132
            f displayPointX:x y:y.
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2133
            map at:clr colorId + 1 put:clr.
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2134
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2135
            "compute the new error"
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2136
            errR := wantR - clr scaledRed.
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2137
            errG := wantG - clr scaledGreen.
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2138
            errB := wantB - clr scaledBlue.
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  2139
        ].
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2140
    ].
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2141
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2142
    f colorMap:map.
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2143
"
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2144
'hard dither' printNewline.
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2145
"
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2146
    ^ aBlock value:nil value:f
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2147
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2148
    "Created: 3.5.1997 / 11:02:47 / cg"
1929
e500fcf94969 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1928
diff changeset
  2149
    "Modified: 19.10.1997 / 23:28:59 / cg"
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2150
!
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2151
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2152
ditherBits
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2153
    "return a dither pattern for x/64; x in 1..63"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2154
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2155
    ^ #(
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2156
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2157
	"/ 1in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2158
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2159
	  #[2r10000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2160
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2161
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2162
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2163
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2164
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2165
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2166
	    2r00000000]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2167
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2168
	"/ 2in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2169
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2170
	  #[2r10000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2171
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2172
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2173
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2174
	    2r00001000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2175
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2176
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2177
	    2r00000000]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2178
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2179
	"/ 3in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2180
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2181
	  #[2r10000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2182
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2183
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2184
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2185
	    2r10001000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2186
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2187
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2188
	    2r00000000]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2189
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2190
	"/ 4in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2191
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2192
	  #[2r10001000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2193
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2194
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2195
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2196
	    2r10001000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2197
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2198
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2199
	    2r00000000]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2200
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2201
	"/ 5in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2202
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2203
	  #[2r10001000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2204
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2205
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2206
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2207
	    2r10001000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2208
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2209
	    2r00000010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2210
	    2r00000000]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2211
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2212
	"/ 6in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2213
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2214
	  #[2r10001000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2215
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2216
	    2r00100000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2217
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2218
	    2r10001000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2219
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2220
	    2r00000010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2221
	    2r00000000]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2222
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2223
	"/ 7in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2224
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2225
	  #[2r10001000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2226
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2227
	    2r00100010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2228
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2229
	    2r10001000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2230
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2231
	    2r00000010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2232
	    2r00000000]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2233
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2234
	"/ 8in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2235
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2236
	  #[2r10001000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2237
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2238
	    2r00100010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2239
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2240
	    2r10001000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2241
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2242
	    2r00100010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2243
	    2r00000000]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2244
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2245
	"/ 9in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2246
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2247
	  #[2r10001000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2248
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2249
	    2r00100010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2250
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2251
	    2r10001000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2252
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2253
	    2r10100010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2254
	    2r00000000]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2255
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2256
	"/ 10in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2257
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2258
	  #[2r10001000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2259
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2260
	    2r00101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2261
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2262
	    2r10001000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2263
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2264
	    2r10100010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2265
	    2r00000000]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2266
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2267
	"/ 11in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2268
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2269
	  #[2r10001000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2270
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2271
	    2r00101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2272
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2273
	    2r10001000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2274
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2275
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2276
	    2r00000000]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2277
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2278
	"/ 12in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2279
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2280
	  #[2r10001000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2281
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2282
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2283
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2284
	    2r10001000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2285
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2286
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2287
	    2r00000000]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2288
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2289
	"/ 13in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2290
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2291
	  #[2r10001000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2292
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2293
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2294
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2295
	    2r10101000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2296
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2297
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2298
	    2r00000000]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2299
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2300
	"/ 14in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2301
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2302
	  #[2r10001010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2303
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2304
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2305
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2306
	    2r10101000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2307
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2308
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2309
	    2r00000000]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2310
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2311
	"/ 15in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2312
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2313
	  #[2r10001010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2314
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2315
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2316
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2317
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2318
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2319
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2320
	    2r00000000]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2321
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2322
	"/ 16in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2323
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2324
	  #[2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2325
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2326
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2327
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2328
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2329
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2330
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2331
	    2r00000000]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2332
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2333
	"/ 17in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2334
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2335
	  #[2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2336
	    2r01000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2337
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2338
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2339
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2340
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2341
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2342
	    2r00000000]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2343
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2344
	"/ 18in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2345
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2346
	  #[2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2347
	    2r01000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2348
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2349
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2350
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2351
	    2r00000100
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2352
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2353
	    2r00000000]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2354
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2355
	"/ 19in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2356
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2357
	  #[2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2358
	    2r01000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2359
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2360
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2361
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2362
	    2r01000100
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2363
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2364
	    2r00000000]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2365
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2366
	"/ 20in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2367
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2368
	  #[2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2369
	    2r01000100
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2370
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2371
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2372
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2373
	    2r01000100
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2374
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2375
	    2r00000000]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2376
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2377
	"/ 21in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2378
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2379
	  #[2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2380
	    2r01000100
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2381
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2382
	    2r00000000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2383
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2384
	    2r01000100
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2385
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2386
	    2r00000001]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2387
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2388
	"/ 22in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2389
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2390
	  #[2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2391
	    2r01000100
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2392
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2393
	    2r00010000
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2394
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2395
	    2r01000100
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2396
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2397
	    2r00000001]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2398
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2399
	"/ 23in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2400
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2401
	  #[2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2402
	    2r01000100
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2403
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2404
	    2r00010001
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2405
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2406
	    2r01000100
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2407
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2408
	    2r00000001]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2409
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2410
	"/ 24in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2411
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2412
	  #[2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2413
	    2r01000100
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2414
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2415
	    2r00010001
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2416
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2417
	    2r01000100
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2418
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2419
	    2r00010001]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2420
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2421
	"/ 25in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2422
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2423
	  #[2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2424
	    2r01000100
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2425
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2426
	    2r00010001
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2427
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2428
	    2r01000100
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2429
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2430
	    2r01010001]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2431
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2432
	"/ 26in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2433
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2434
	  #[2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2435
	    2r01000100
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2436
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2437
	    2r00010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2438
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2439
	    2r01000100
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2440
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2441
	    2r01010001]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2442
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2443
	"/ 27in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2444
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2445
	  #[2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2446
	    2r01000100
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2447
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2448
	    2r00010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2449
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2450
	    2r01000100
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2451
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2452
	    2r01010101]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2453
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2454
	"/ 28in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2455
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2456
	  #[2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2457
	    2r01000100
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2458
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2459
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2460
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2461
	    2r01000100
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2462
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2463
	    2r01010101]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2464
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2465
	"/ 29in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2466
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2467
	  #[2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2468
	    2r01000100
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2469
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2470
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2471
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2472
	    2r01010100
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2473
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2474
	    2r01010101]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2475
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2476
	"/ 30in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2477
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2478
	  #[2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2479
	    2r01000101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2480
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2481
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2482
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2483
	    2r01010100
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2484
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2485
	    2r01010101]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2486
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2487
	"/ 31in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2488
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2489
	  #[2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2490
	    2r01000101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2491
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2492
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2493
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2494
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2495
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2496
	    2r01010101]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2497
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2498
	"/ 32in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2499
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2500
	  #[2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2501
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2502
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2503
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2504
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2505
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2506
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2507
	    2r01010101]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2508
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2509
	"/ 33in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2510
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2511
	  #[2r11101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2512
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2513
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2514
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2515
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2516
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2517
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2518
	    2r01010101]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2519
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2520
	"/ 34in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2521
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2522
	  #[2r11101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2523
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2524
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2525
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2526
	    2r10101110
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2527
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2528
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2529
	    2r01010101]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2530
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2531
	"/ 35in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2532
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2533
	  #[2r11101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2534
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2535
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2536
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2537
	    2r11101110
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2538
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2539
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2540
	    2r01010101]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2541
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2542
	"/ 36in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2543
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2544
	  #[2r11101110
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2545
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2546
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2547
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2548
	    2r11101110
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2549
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2550
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2551
	    2r01010101]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2552
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2553
	"/ 37in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2554
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2555
	  #[2r11101110
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2556
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2557
	    2r10101010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2558
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2559
	    2r11101110
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2560
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2561
	    2r10101011
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2562
	    2r01010101]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2563
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2564
	"/ 38in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2565
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2566
	  #[2r11101110
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2567
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2568
	    2r10111010
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2569
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2570
	    2r11101110
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2571
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2572
	    2r10101011
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2573
	    2r01010101]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2574
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2575
	"/ 39in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2576
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2577
	  #[2r11101110
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2578
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2579
	    2r10111011
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2580
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2581
	    2r11101110
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2582
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2583
	    2r10101011
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2584
	    2r01010101]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2585
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2586
	"/ 40in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2587
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2588
	  #[2r11101110
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2589
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2590
	    2r10111011
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2591
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2592
	    2r11101110
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2593
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2594
	    2r10111011
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2595
	    2r01010101]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2596
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2597
	"/ 41in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2598
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2599
	  #[2r11101110
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2600
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2601
	    2r10111011
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2602
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2603
	    2r11101110
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2604
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2605
	    2r11111011
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2606
	    2r01010101]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2607
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2608
	"/ 42in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2609
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2610
	  #[2r11101110
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2611
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2612
	    2r10111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2613
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2614
	    2r11101110
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2615
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2616
	    2r11111011
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2617
	    2r01010101]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2618
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2619
	"/ 43in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2620
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2621
	  #[2r11101110
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2622
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2623
	    2r10111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2624
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2625
	    2r11101110
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2626
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2627
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2628
	    2r01010101]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2629
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2630
	"/ 44in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2631
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2632
	  #[2r11101110
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2633
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2634
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2635
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2636
	    2r11101110
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2637
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2638
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2639
	    2r01010101]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2640
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2641
	"/ 45in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2642
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2643
	  #[2r11101110
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2644
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2645
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2646
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2647
	    2r11111110
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2648
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2649
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2650
	    2r01010101]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2651
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2652
	"/ 46in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2653
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2654
	  #[2r11101111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2655
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2656
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2657
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2658
	    2r11111110
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2659
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2660
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2661
	    2r01010101]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2662
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2663
	"/ 47in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2664
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2665
	  #[2r11101111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2666
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2667
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2668
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2669
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2670
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2671
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2672
	    2r01010101]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2673
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2674
	"/ 48in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2675
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2676
	  #[2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2677
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2678
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2679
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2680
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2681
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2682
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2683
	    2r01010101]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2684
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2685
	"/ 49in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2686
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2687
	  #[2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2688
	    2r01110101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2689
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2690
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2691
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2692
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2693
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2694
	    2r01010101]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2695
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2696
	"/ 50in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2697
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2698
	  #[2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2699
	    2r01110101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2700
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2701
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2702
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2703
	    2r01010111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2704
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2705
	    2r01010101]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2706
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2707
	"/ 51in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2708
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2709
	  #[2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2710
	    2r01110101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2711
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2712
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2713
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2714
	    2r01110111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2715
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2716
	    2r01010101]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2717
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2718
	"/ 52in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2719
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2720
	  #[2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2721
	    2r01110111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2722
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2723
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2724
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2725
	    2r01110111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2726
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2727
	    2r01010101]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2728
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2729
	"/ 53in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2730
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2731
	  #[2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2732
	    2r01110111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2733
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2734
	    2r01010101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2735
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2736
	    2r01110111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2737
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2738
	    2r11010101]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2739
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2740
	"/ 54in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2741
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2742
	  #[2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2743
	    2r01110111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2744
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2745
	    2r01011101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2746
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2747
	    2r01110111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2748
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2749
	    2r11010101]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2750
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2751
	"/ 55in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2752
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2753
	  #[2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2754
	    2r01110111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2755
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2756
	    2r11011101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2757
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2758
	    2r01110111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2759
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2760
	    2r11010101]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2761
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2762
	"/ 56in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2763
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2764
	  #[2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2765
	    2r01110111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2766
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2767
	    2r11011101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2768
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2769
	    2r01110111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2770
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2771
	    2r11011101]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2772
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2773
	"/ 57in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2774
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2775
	  #[2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2776
	    2r01110111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2777
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2778
	    2r11011101
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2779
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2780
	    2r01110111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2781
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2782
	    2r11111101]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2783
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2784
	"/ 58in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2785
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2786
	  #[2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2787
	    2r01110111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2788
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2789
	    2r11011111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2790
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2791
	    2r01110111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2792
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2793
	    2r11111101]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2794
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2795
	"/ 59in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2796
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2797
	  #[2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2798
	    2r01110111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2799
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2800
	    2r11011111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2801
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2802
	    2r01110111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2803
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2804
	    2r11111111]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2805
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2806
	"/ 60in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2807
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2808
	  #[2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2809
	    2r01110111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2810
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2811
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2812
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2813
	    2r01110111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2814
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2815
	    2r11111111]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2816
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2817
	"/ 61in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2818
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2819
	  #[2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2820
	    2r01110111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2821
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2822
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2823
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2824
	    2r01111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2825
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2826
	    2r11111111]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2827
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2828
	"/ 62in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2829
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2830
	  #[2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2831
	    2r11110111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2832
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2833
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2834
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2835
	    2r01111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2836
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2837
	    2r11111111]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2838
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2839
	"/ 63in64
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2840
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2841
	  #[2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2842
	    2r11110111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2843
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2844
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2845
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2846
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2847
	    2r11111111
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2848
	    2r11111111]
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2849
     )
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2850
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2851
    "Modified: 23.4.1996 / 13:31:50 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2852
    "Created: 11.6.1996 / 15:34:29 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2853
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2854
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2855
ditherGrayFor:fraction on:aDevice into:aBlock
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2856
    "get a dither form or colorId for a brightness value.
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2857
     Fraction is 0..1.
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2858
     Returns 2 values (either color or ditherForm) through aBlock."
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2859
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2860
    |d nGray grayBelow scaledGrey scaledGray1 scaledGray2 clr1 clr2 newFraction step|
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2861
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2862
    d := aDevice depth.
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2863
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2864
    "/ special code for b&w displays
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2865
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2866
    d == 1 ifTrue:[
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2867
	aDevice blackpixel == 0 ifTrue:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2868
	    clr1 := Black.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2869
	    clr2 := White.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2870
	    newFraction := fraction.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2871
	] ifFalse:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2872
	    clr1 := White.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2873
	    clr2 := Black.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2874
	    newFraction := 1 - fraction
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2875
	]
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2876
    ] ifFalse:[
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2877
	"/ special code for 2-plane displays (NeXT)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2878
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2879
	d == 2 ifTrue:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2880
	    fraction <= 0.01 ifTrue:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2881
		clr1 := Black exactOn:aDevice
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2882
	    ] ifFalse:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2883
		(fraction between:0.32 and:0.34) ifTrue:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2884
		    clr1 := (Color gray:33) exactOn:aDevice
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2885
		] ifFalse:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2886
		    (fraction between:0.66 and:0.68) ifTrue:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2887
			clr1 := (Color gray:67) exactOn:aDevice
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2888
		    ] ifFalse:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2889
			fraction >= 0.99 ifTrue:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2890
			    clr1 := White exactOn:aDevice
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2891
			]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2892
		    ]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2893
		]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2894
	    ].
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2895
	    clr1 notNil ifTrue:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2896
		^ aBlock value:clr1 value:nil
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2897
	    ].
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2898
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2899
	    (fraction between:0 and:0.33) ifTrue:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2900
		clr1 := Black.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2901
		clr2 := Color gray:33.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2902
	    ] ifFalse:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2903
		(fraction between:0.34 and:0.66) ifTrue:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2904
		    clr1 := Color gray:33.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2905
		    clr2 := Color gray:67.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2906
		] ifFalse:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2907
		    clr1 := Color gray:67.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2908
		    clr2 := White.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2909
		]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2910
	    ].
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2911
	    scaledGray1 := clr1 scaledRed.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2912
	    scaledGray2 := clr2 scaledRed.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2913
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2914
	    scaledGrey := (MaxValue * fraction) rounded.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2915
	] ifFalse:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2916
	    nGray := (1 bitShift:d) - 1.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2917
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2918
	    "/ scale greyValue into grey levels
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2919
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2920
	    grayBelow := (fraction * nGray) truncated.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2921
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2922
	    grayBelow < 0 ifTrue:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2923
		^ Color black exactOn:aDevice
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2924
	    ].
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2925
	    grayBelow >= nGray ifTrue:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2926
		^ Color white exactOn:aDevice
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2927
	    ].
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2928
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2929
	    scaledGrey := (MaxValue * fraction) rounded.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2930
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2931
	    step := MaxValue // nGray.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2932
	    scaledGray1 := grayBelow * step.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2933
	    scaledGray2 := scaledGray1 + step.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2934
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2935
	    clr1 := Color scaledGray:scaledGray1.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2936
	    clr2 := Color scaledGray:scaledGray2.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2937
	].
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2938
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2939
	"/ scale remainder in between low..high
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2940
	newFraction := (scaledGrey - scaledGray1) asFloat / (scaledGray2 - scaledGray1).
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2941
    ].
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2942
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2943
    clr1 := clr1 exactOn:aDevice.
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2944
    clr2 := clr2 exactOn:aDevice.
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2945
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2946
    (clr1 isNil or:[clr2 isNil]) ifTrue:[
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2947
	"/ fall back to b&w dither
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2948
	aDevice blackpixel == 0 ifTrue:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2949
	    clr1 := Black.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2950
	    clr2 := White.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2951
	    newFraction := fraction.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2952
	] ifFalse:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2953
	    clr1 := White.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2954
	    clr2 := Black.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2955
	    newFraction := 1 - fraction
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2956
	]
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2957
    ].
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2958
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2959
    ^ self
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2960
	monoDitherFor:newFraction
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2961
	between:clr1 and:clr2
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2962
	on:aDevice
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2963
	into:aBlock
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2964
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2965
    "
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2966
     Color basicNew
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2967
	ditherGrayFor:0.5
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2968
	on:Display
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2969
	into:[:clr :form | clr notNil ifTrue:[clr inspect].
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2970
			   form notNil ifTrue:[(form magnifiedBy:16) inspect].]
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2971
    "
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2972
    "
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2973
     Color basicNew
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2974
	ditherGrayFor:0.25
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2975
	on:Display
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2976
	into:[:clr :form | clr notNil ifTrue:[clr inspect].
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2977
			   form notNil ifTrue:[(form magnifiedBy:16) inspect].]
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2978
    "
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2979
5779
def9764b9b8a changed: #ditherGrayFor:on:into:
Claus Gittinger <cg@exept.de>
parents: 5689
diff changeset
  2980
    "Created: / 03-05-1997 / 10:59:57 / cg"
def9764b9b8a changed: #ditherGrayFor:on:into:
Claus Gittinger <cg@exept.de>
parents: 5689
diff changeset
  2981
    "Modified: / 24-07-2011 / 07:18:00 / cg"
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2982
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  2983
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2984
ditherRed:rV green:gV blue:bV on:aDevice into:aBlock
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2985
    "get a dither form or colorId for an rgb value.
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2986
     Returns 2 values (either color or ditherForm) through
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2987
     aBlock.
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2988
     This code is just a minimum of what is really needed,
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2989
     and needs much more work. Currently only some special cases
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2990
     are handled"
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2991
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  2992
    |rh rl rs
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2993
     lowL hiL lowValL hiValL lowS hiS lowValS hiValS lowH hiH lowValH hiValH d|
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2994
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2995
    "get hls (since we dither anyway, round them a bit"
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  2996
7798
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  2997
    Color withHLSFromScaledRed:rV scaledGreen:gV scaledBlue:bV do:[:hue :light :saturation |
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  2998
        hue notNil ifTrue:[
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  2999
            rh := (hue * 3.0) rounded / 3.0.
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3000
        ].
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3001
        rl := (light * 3.0) rounded / 3.0.
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3002
        rs := (saturation * 3.0) rounded / 3.0.
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3003
    ].
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3004
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3005
    rh isNil ifTrue:[
7798
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3006
        "achromatic,  dither between achromatic colors"
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3007
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3008
        lowL := nil.
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3009
        hiL := nil.
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3010
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3011
        "find the 2 bounding colors"
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3012
        aDevice deviceColors do:[:aColor |
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3013
            aColor colorId notNil ifTrue:[
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3014
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3015
                Color withHLSFromRed:aColor red green:aColor green blue:aColor blue do:[:hue :light :saturation |
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3016
                    | cl |
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3017
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3018
                    hue isNil ifTrue:[
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3019
                        cl := (light * 3.0) rounded / 3.0.
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3020
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3021
                        cl > rl ifTrue:[
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3022
                            hiL isNil ifTrue:[
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3023
                                hiL := aColor.
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3024
                                hiValL := cl.
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3025
                            ] ifFalse:[
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3026
                                cl < hiValL ifTrue:[
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3027
                                    hiL := aColor.
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3028
                                    hiValL := cl.
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3029
                                ]
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3030
                            ]
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3031
                        ] ifFalse:[
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3032
                            lowL isNil ifTrue:[
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3033
                                lowL := aColor.
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3034
                                lowValL := cl
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3035
                            ] ifFalse:[
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3036
                                cl > lowValL ifTrue:[
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3037
                                    lowL := aColor.
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3038
                                    lowValL := cl
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3039
                                ]
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3040
                            ]
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3041
                        ]
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3042
                    ]
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3043
                ]
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3044
            ]
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3045
        ].
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3046
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3047
        (lowL notNil and:[hiL notNil]) ifTrue:[
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3048
            ^ self
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3049
                monoDitherFor:1.0 / (hiValL - lowValL) * (rl - lowValL)
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3050
                between:lowL and:hiL
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3051
                on:aDevice
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3052
                into:aBlock
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3053
        ].
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3054
        "cannot happen, should always find at least black and white"
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3055
        'Color [info]: oops - color to dither is not bound by b&w' infoPrintCR.
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3056
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3057
        ^ aBlock value:nil value:nil
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3058
    ].
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3059
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3060
    "chromatic case"
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3061
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3062
    aDevice hasColors ifFalse:[
7798
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3063
        "no chance, return nil values"
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3064
        ^ aBlock value:nil value:nil
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3065
    ].
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3066
    (Red isNil or:[Green isNil or:[Blue isNil]]) ifTrue:[
7798
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3067
        "if we where not able to get primary colors: no chance"
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3068
        ^ aBlock value:nil value:nil
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3069
    ].
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3070
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3071
    "try to find two bounding colors with same hue and saturation;
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3072
     dither on light between those"
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3073
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3074
    lowL := nil.
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3075
    hiL := nil.
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3076
    lowS := nil.
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3077
    hiS := nil.
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3078
    lowH := nil.
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3079
    hiH := nil.
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3080
1365
37a9e7ac4dbc moved color registration from Color class to per-device lobby
Claus Gittinger <cg@exept.de>
parents: 1348
diff changeset
  3081
    aDevice deviceColors do:[:aColor |
7798
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3082
        aColor colorId notNil ifTrue:[
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3083
            Color withHLSFromRed:aColor red green:aColor green blue:aColor blue do:[:hue :light :saturation |
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3084
                | cl ch cs|
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3085
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3086
                hue notNil ifTrue:[
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3087
                   ch := (hue * 3.0) rounded / 3.0.
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3088
                ] ifFalse:[
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3089
                   ch := nil
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3090
                ].
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3091
                cl := (light * 3.0) rounded / 3.0.
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3092
                cs := (saturation * 3.0) rounded / 3.0.
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3093
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3094
                ((ch = rh) and:[cs = rs]) ifTrue:[
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3095
                    "found a color with same saturation and same hue, keep for light"
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3096
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3097
                    cl > rl ifTrue:[
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3098
                        hiL isNil ifTrue:[
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3099
                            hiL := aColor.
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3100
                            hiValL := cl
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3101
                        ] ifFalse:[
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3102
                            cl < hiValL ifTrue:[
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3103
                                hiL := aColor.
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3104
                                hiValL := cl
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3105
                            ]
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3106
                        ].
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3107
                    ] ifFalse:[
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3108
                        lowL isNil ifTrue:[
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3109
                            lowL := aColor.
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3110
                            lowValL := cl
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3111
                        ] ifFalse:[
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3112
                            cl > lowValL ifTrue:[
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3113
                                lowL := aColor.
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3114
                                lowValL := cl
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3115
                            ]
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3116
                        ]
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3117
                    ]
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3118
                ].
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3119
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3120
                (((ch = rh) or:[ch isNil]) and:[cl = rl]) ifTrue:[
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3121
                    "found a color with same light and same hue, keep for saturation"
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3122
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3123
                    cs > rs ifTrue:[
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3124
                        hiS isNil ifTrue:[
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3125
                            hiS := aColor.
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3126
                            hiValS := cs
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3127
                        ] ifFalse:[
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3128
                            cs < hiValS ifTrue:[
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3129
                                hiS := aColor.
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3130
                                hiValS := cs
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3131
                            ]
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3132
                        ].
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3133
                    ] ifFalse:[
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3134
                        lowS isNil ifTrue:[
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3135
                            lowS := aColor.
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3136
                            lowValS := cs
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3137
                        ] ifFalse:[
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3138
                            cs > lowValS ifTrue:[
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3139
                                lowS := aColor.
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3140
                                lowValS := cs
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3141
                            ]
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3142
                        ]
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3143
                    ]
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3144
                ].
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3145
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3146
                rh notNil ifTrue:[
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3147
                    cl = rl ifTrue:[
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3148
                        cs = rs ifTrue:[
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3149
                            ch notNil ifTrue:[
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3150
                                d := (ch - rh) abs.
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3151
                                d > 300 ifTrue:[
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3152
                                    rh > 180 ifTrue:[
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3153
                                        ch := ch + 360
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3154
                                    ] ifFalse:[
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3155
                                        ch := ch - 360
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3156
                                    ].
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3157
                                ].
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3158
                                ch > rh ifTrue:[
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3159
                                    hiH isNil ifTrue:[
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3160
                                        hiH := aColor.
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3161
                                        hiValH := ch
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3162
                                    ] ifFalse:[
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3163
                                        ch < hiValH ifTrue:[
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3164
                                            hiH := aColor.
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3165
                                            hiValH := ch
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3166
                                        ]
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3167
                                    ]
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3168
                                ] ifFalse:[
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3169
                                    lowH isNil ifTrue:[
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3170
                                        lowH := aColor.
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3171
                                        lowValH := ch
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3172
                                    ] ifFalse:[
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3173
                                        ch > lowValH ifTrue:[
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3174
                                            lowH := aColor.
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3175
                                            lowValH := ch
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3176
                                        ]
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3177
                                    ]
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3178
                                ]
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3179
                            ]
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3180
                        ]
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3181
                    ]
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3182
                ]
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3183
            ]
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3184
        ]
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3185
    ].
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3186
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3187
    "found bounds for light ?"
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3188
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3189
    lowL notNil ifTrue:[
7798
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3190
        rl = lowValL ifTrue:[
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3191
            ^ aBlock value:lowL value:nil
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3192
        ].
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3193
        hiL notNil ifTrue:[
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3194
            ^ self
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3195
                monoDitherFor:1.0 / (hiValL - lowValL) / (rl - lowValL)
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3196
                between:lowL and:hiL
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3197
                on:aDevice
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3198
                into:aBlock
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3199
        ].
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3200
        "found bound for light - dither with white"
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3201
        ^ self
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3202
            monoDitherFor:1.0 / (100 - lowValL) / (rl - lowValL)
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3203
            between:lowL and:White
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3204
            on:aDevice
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3205
            into:aBlock
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3206
    ].
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3207
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3208
    "found bound for light - dither with black"
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3209
    hiL notNil ifTrue:[
7798
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3210
        ^ self
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3211
            monoDitherFor:1.0 / (hiValL) / (rl)
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3212
            between:Black and:hiL
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3213
            on:aDevice
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3214
            into:aBlock
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3215
    ].
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3216
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3217
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3218
    "found bounds for saturation?"
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3219
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3220
    (lowS notNil and:[hiS notNil]) ifTrue:[
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3221
"
7798
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3222
        'saturation dither' printNewline.
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3223
"
7798
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3224
        ^ self
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3225
            monoDitherFor:1.0 / (hiValS - lowValS) / (rs - lowValS)
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3226
            between:lowS and:hiS
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3227
            on:aDevice
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3228
            into:aBlock
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3229
    ].
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3230
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3231
    "found bounds for hue ?"
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3232
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3233
    (lowH notNil and:[hiH notNil]) ifTrue:[
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3234
"
7798
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3235
        'hue dither' printNewline.
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3236
"
7798
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3237
        hiValH < lowValH ifTrue:[
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3238
            hiValH := hiValH + 360
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3239
        ].
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3240
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3241
        d := hiValH - lowValH.
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3242
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3243
        ^ self
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3244
            monoDitherFor:1.0 / (d / (rh - lowValH))
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3245
            between:lowH and:hiH
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3246
            on:aDevice
8af654223c89 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7782
diff changeset
  3247
            into:aBlock
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3248
    ].
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3249
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3250
    ^ aBlock value:nil value:nil
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3251
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3252
    "Modified: 3.5.1997 / 10:58:54 / cg"
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3253
    "Created: 3.5.1997 / 11:02:03 / cg"
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3254
!
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3255
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3256
fixDitherRed:redVal green:greenVal blue:blueVal on:aDevice into:aBlock
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3257
    "get a dither form for an rgb value.
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3258
     Returns 2 values (either color or ditherForm) through aBlock.
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3259
     This code uses the table of preallocated fix-colors to find
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3260
     dither colors."
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3261
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3262
    |
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3263
     nR "{ Class: SmallInteger }"
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3264
     nG "{ Class: SmallInteger }"
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3265
     nB "{ Class: SmallInteger }"
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3266
     hR "{ Class: SmallInteger }"
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3267
     hG "{ Class: SmallInteger }"
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3268
     hB "{ Class: SmallInteger }"
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3269
     eR eG eB
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3270
     rI "{ Class: SmallInteger }"
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3271
     gI "{ Class: SmallInteger }"
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3272
     bI  "{ Class: SmallInteger }"
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3273
     idx "{ Class: SmallInteger }"
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3274
     f clr
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3275
     r    "{ Class: SmallInteger }"
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3276
     g    "{ Class: SmallInteger }"
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3277
     b    "{ Class: SmallInteger }"
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3278
     x1   "{ Class: SmallInteger }"
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3279
     x2   "{ Class: SmallInteger }"
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3280
     step "{ Class: SmallInteger }"
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3281
     lastIdx mx
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3282
     dS   "{ Class: SmallInteger }"
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3283
     cube|
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3284
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3285
    (cube := aDevice fixColors) notNil ifTrue:[
7360
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3286
        dS := 4.
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3287
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3288
        f := Form width:dS height:dS depth:(aDevice depth) onDevice:aDevice.
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3289
        f isNil ifTrue:[^ nil].
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3290
        f initGC.
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3291
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3292
        mx := MaxValue asFloat.
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3293
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3294
        nR := aDevice numFixRed.
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3295
        nG := aDevice numFixGreen.
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3296
        nB := aDevice numFixBlue.
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3297
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3298
        hR := nR // 2.
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3299
        hG := nG // 2.
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3300
        hB := nB // 2.
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3301
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3302
        eR := eG := eB := 0.
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3303
        r := redVal.
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3304
        g := greenVal.
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3305
        b := blueVal.
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3306
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3307
        step := -1.
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3308
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3309
        0 to:dS-1 do:[:y |
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3310
            step == -1 ifTrue:[
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3311
                x1 := 0. x2 := dS-1. step := 1.
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3312
            ] ifFalse:[
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3313
                x1 := dS-1. x2 := 0. step := -1.
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3314
            ].
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3315
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3316
            x1 to:x2 by:step do:[:x |
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3317
                "/ the nearest along the grid
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3318
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3319
                r := redVal + eR.
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3320
                r > MaxValue ifTrue:[r := MaxValue]
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3321
                             ifFalse:[r < 0 ifTrue:[r := 0]].
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3322
                g := greenVal + eG.
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3323
                g > MaxValue ifTrue:[g := MaxValue]
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3324
                             ifFalse:[g < 0 ifTrue:[g := 0]].
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3325
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3326
                b := blueVal + eB.
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3327
                b > MaxValue ifTrue:[b := MaxValue]
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3328
                             ifFalse:[b < 0 ifTrue:[b := 0]].
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3329
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3330
                rI := (r * (nR-1) + hR / mx) rounded.
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3331
                gI := (g * (nG-1) + hG / mx) rounded .
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3332
                bI := (b * (nB-1) + hB / mx) rounded .
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3333
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3334
                idx := (((rI * nG) + gI) * nB + bI) + 1.
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3335
                clr := (cube at:idx) exactOn:aDevice.
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3336
                lastIdx isNil ifTrue:[lastIdx := idx]
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3337
                ifFalse:[lastIdx ~~ idx ifTrue:[lastIdx := -1]].
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3338
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3339
                f foreground:clr.
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3340
                f displayPointX:x y:y.
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3341
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3342
                eR := r  - clr scaledRed.
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3343
                eG := g  - clr scaledGreen.
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3344
                eB := b  - clr scaledBlue.
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3345
            ].
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3346
        ].
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3347
        f releaseGC.
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3348
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3349
        lastIdx ~~ -1 ifTrue:[
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3350
            ^ aBlock value:clr value:nil
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3351
        ].
6629a4f605c4 #QUALITY by sr
sr
parents: 7291
diff changeset
  3352
        ^ aBlock value:nil value:f
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3353
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3354
    ].
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3355
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3356
    ^ aBlock value:nil value:nil
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3357
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3358
    "Modified: 11.7.1996 / 18:30:28 / cg"
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3359
    "Created: 3.5.1997 / 11:03:18 / cg"
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3360
!
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3361
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3362
monoDitherFor:fraction between:color1 and:color2 on:aDevice into:aBlock
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3363
    "get a dither form or colorId for dithering between 2 colors.
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3364
     Fraction is 0..1.
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3365
     Returns 2 values (either color or ditherForm) through aBlock."
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3366
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3367
    |form c1 c2
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3368
     index "{ Class:SmallInteger }"|
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3369
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3370
    "/
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3371
    "/ having forms with: [1 .. 63] of 64 pixels (see Form),
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3372
    "/ we get dithers for: 1/64, 2/64, ... 63/64
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3373
    "/
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3374
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3375
    index := (fraction * 64) rounded.
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3376
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3377
    c1 := color1 exactOn:aDevice.
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3378
    index < 1 ifTrue:[
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3379
	^ aBlock value:c1 value:nil
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3380
    ].
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3381
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3382
    c2 := color2 exactOn:aDevice.
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3383
    index >= 64 ifTrue:[
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3384
	^ aBlock value:c2 value:nil
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3385
    ].
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3386
4772
be4524221fa7 Use Form class>>#width:height:fromArray:onDevice: instead of obsolete
Stefan Vogel <sv@exept.de>
parents: 4749
diff changeset
  3387
    form := Form width:8 height:8 fromArray:(DitherBits at:index) onDevice:aDevice.
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3388
    form colorMap:(Array with:c1 with:c2).
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3389
    ^ aBlock value:nil value:form
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3390
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3391
    "
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3392
     Color basicNew
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3393
	monoDitherFor:(MaxValue // 2)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3394
	between:Color black
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3395
	and:Color white
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3396
	on:Display
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3397
	into:[:clr :dither | clr inspect. dither inspect]
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3398
    "
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3399
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3400
    "Created: 3.5.1997 / 10:55:06 / cg"
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  3401
    "Modified: 3.5.1997 / 11:05:20 / cg"
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3402
! !
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3403
1144
07f3de59864d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1023
diff changeset
  3404
!Color class methodsFor:'queries'!
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3405
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3406
constantNames
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3407
    "return names known as instance creation messages"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3408
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3409
    ^ #(white black
6534
876e009486be class: Color
Claus Gittinger <cg@exept.de>
parents: 6385
diff changeset
  3410
        grey mediumGray veryLightGray lightGray darkGray veryDarkGray
8966
7cbb2e039c8f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8812
diff changeset
  3411
        red green blue 
7cbb2e039c8f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8812
diff changeset
  3412
        cyan yellow pink orange magenta brown
7cbb2e039c8f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8812
diff changeset
  3413
        darkGreen darkRed
7cbb2e039c8f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8812
diff changeset
  3414
        lightGreen lightRed lightBlue
7cbb2e039c8f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8812
diff changeset
  3415
        salmon)
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3416
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3417
    "Modified: 2.5.1996 / 11:34:05 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3418
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3419
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3420
scalingValue
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3421
    "ST-80 compatibility"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3422
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3423
    ^ MaxValue
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3424
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3425
    "Created: 2.5.1996 / 11:30:09 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3426
    "Modified: 11.7.1996 / 21:42:26 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3427
! !
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3428
1144
07f3de59864d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1023
diff changeset
  3429
!Color class methodsFor:'special instance creation'!
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3430
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3431
nearestColorRed:r green:g blue:b on:aDevice in:colors
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3432
    "return the nearest color on aDevice with RGB values
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3433
     same or near r/g/b in a collection of colors.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3434
     If there is one, return it; nil otherwise.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3435
     Near is defined as having an error less than the argument
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3436
     error (in percent). The error is computed by the color
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3437
     vector distance (which may not be the best possible solution)."
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3438
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3439
    ^ self
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3440
	nearestColorScaledRed:(r * MaxValue // 100)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3441
		  scaledGreen:(g * MaxValue // 100)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3442
		   scaledBlue:(b * MaxValue // 100)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3443
			   on:aDevice
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3444
			   in:colors
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3445
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3446
    "Modified: 11.6.1996 / 18:04:55 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3447
    "Created: 14.6.1996 / 20:05:13 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3448
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3449
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3450
nearestColorScaledRed:r scaledGreen:g scaledBlue:b inCube:aColorCube numRed:nRed numGreen:nGreen numBlue:nBlue
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3451
    "return a color with rgb values same or near r/g/b in a given
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3452
     collection, containing colors from a colorCube.
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3453
     This is used with preallocated fixColors and is quite fast
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3454
     (no need to search)"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3455
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3456
    |sR  "{ Class: SmallInteger }"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3457
     sG  "{ Class: SmallInteger }"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3458
     sB  "{ Class: SmallInteger }"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3459
     idx "{ Class: SmallInteger }"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3460
     nR  "{ Class: SmallInteger }"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3461
     nG  "{ Class: SmallInteger }"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3462
     nB  "{ Class: SmallInteger }"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3463
     rI  "{ Class: SmallInteger }"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3464
     gI  "{ Class: SmallInteger }"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3465
     bI  "{ Class: SmallInteger }"|
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3466
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3467
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3468
     round to the step given by FixColors
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3469
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3470
    nR := nRed.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3471
    nG := nGreen.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3472
    nB := nBlue.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3473
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3474
    sR := MaxValue // (nR - 1).
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3475
    sG := MaxValue // (nG - 1).
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3476
    sB := MaxValue // (nB - 1).
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3477
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3478
    rI := (r + (sR // 2)) // sR.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3479
    gI := (g + (sG // 2)) // sG.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3480
    bI := (b + (sB // 2)) // sB.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3481
    idx := (((rI * nG) + gI) * nB + bI) + 1.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3482
    ^ aColorCube at:idx
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3483
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3484
    "Modified: 11.7.1996 / 17:52:46 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3485
    "Created: 11.7.1996 / 18:20:13 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3486
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3487
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3488
nearestColorScaledRed:r scaledGreen:g scaledBlue:b on:aDevice
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3489
    "return a device color on aDevice with RGB values
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3490
     same or near r/g/b, if there is one, nil otherwise.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3491
     Near is defined as having an error less than the argument
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3492
     error (in percent). The error is computed by the color
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3493
     vector distance (which may not be the best possible solution)."
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3494
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3495
    |cube|
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3496
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3497
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3498
     if there are preallocated colors, things are much easier ...
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3499
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3500
    (cube := aDevice fixColors) notNil ifTrue:[
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3501
	^ self
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3502
	    nearestColorScaledRed:r
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3503
	    scaledGreen:g
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3504
	    scaledBlue:b
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3505
	    inCube:cube
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3506
	    numRed:(aDevice numFixRed)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3507
	    numGreen:(aDevice numFixGreen)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3508
	    numBlue:(aDevice numFixBlue)
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3509
    ].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3510
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3511
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3512
     search in existing colors ...
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3513
    "
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3514
    ^ self
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3515
	nearestColorScaledRed:r
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3516
	scaledGreen:g
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3517
	scaledBlue:b
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3518
	on:aDevice
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3519
	in:aDevice deviceColors
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3520
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3521
    "Created: 14.6.1996 / 20:11:18 / cg"
1365
37a9e7ac4dbc moved color registration from Color class to per-device lobby
Claus Gittinger <cg@exept.de>
parents: 1348
diff changeset
  3522
    "Modified: 24.2.1997 / 18:17:51 / cg"
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3523
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3524
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3525
nearestColorScaledRed:r scaledGreen:g scaledBlue:b on:aDevice in:colors
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3526
    "return the nearest color on aDevice with RGB values
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3527
     same or near r/g/b in a collection of colors.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3528
     If there is one, return it; nil otherwise."
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3529
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3530
    |delta minDelta bestSoFar|
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3531
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3532
    minDelta := 9999999.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3533
1619
4a7dbd25c588 handle the case where not even r/g/b primaries can be allocated
Claus Gittinger <cg@exept.de>
parents: 1534
diff changeset
  3534
    colors isNil ifTrue:[^ nil].
4a7dbd25c588 handle the case where not even r/g/b primaries can be allocated
Claus Gittinger <cg@exept.de>
parents: 1534
diff changeset
  3535
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3536
    colors do:[:aColor |
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3537
	|cr cg cb|
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3538
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3539
	(aDevice isNil
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3540
	or:[(aColor graphicsDevice == aDevice)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3541
	    and:[aColor colorId notNil]]) ifTrue:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3542
		delta := aColor deltaFromScaledRed:r scaledGreen:g scaledBlue:b.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3543
		delta < minDelta ifTrue:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3544
		    "
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3545
		     an exact fit - no need to continue search
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3546
		    "
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3547
		    delta == 0 ifTrue:[^ aColor].
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3548
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3549
		    bestSoFar := aColor.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3550
		    minDelta := delta
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3551
		]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3552
	    ]
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3553
    ].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3554
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3555
    ^ bestSoFar
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3556
2198
122ff0da86d6 added support to find the nearest color in a colorMap.
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
  3557
    "Created: / 11.6.1996 / 18:02:12 / cg"
122ff0da86d6 added support to find the nearest color in a colorMap.
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
  3558
    "Modified: / 28.7.1998 / 20:40:41 / cg"
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3559
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3560
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3561
quickNearestColorScaledRed:r scaledGreen:g scaledBlue:b on:aDevice
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3562
    "return a device color on aDevice with rgb values
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3563
     same or near r/g/b.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3564
     This looks for primary colors only and is thus faster
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3565
     than the general nearestColor search (slightly uglier though)."
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3566
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3567
    |cube|
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3568
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3569
    "
1954
479d294564d8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1934
diff changeset
  3570
     if there are preallocated colors, things are much easier ...
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3571
    "
1954
479d294564d8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1934
diff changeset
  3572
    (cube := aDevice fixColors) notNil ifTrue:[
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3573
	^ self
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3574
	    nearestColorScaledRed:r
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3575
	    scaledGreen:g
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3576
	    scaledBlue:b
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3577
	    inCube:cube
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3578
	    numRed:(aDevice numFixRed)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3579
	    numGreen:(aDevice numFixGreen)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3580
	    numBlue:(aDevice numFixBlue)
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3581
    ].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3582
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3583
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3584
     search in existing colors ...
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3585
    "
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3586
    ^ self nearestColorScaledRed:r
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3587
		     scaledGreen:g
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3588
		      scaledBlue:b
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3589
			on:aDevice
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  3590
			in:(aDevice availableDitherColors)
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3591
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3592
    "Created: 14.6.1996 / 20:13:22 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3593
    "Modified: 11.7.1996 / 18:20:14 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3594
! !
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  3595
8123
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3596
!Color class methodsFor:'utilities'!
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3597
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3598
allocateColorsIn:aColorVector on:aDevice
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3599
    "{ Pragma: +optSpace }"
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3600
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3601
    "preallocates a nR x nG x nB colorMap for later use in dithering.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3602
     Doing so has the advantage that the system will never run out of colors,
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3603
     however, colors may be either inexact or dithered."
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3604
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3605
    |clr round devClr|
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3606
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3607
    round := 0.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3608
    1 to:aColorVector size do:[:dstIndex |
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3609
        clr := aColorVector at:dstIndex.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3610
        devClr := clr exactOn:aDevice.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3611
        devClr isNil ifTrue:[
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3612
            round == 0 ifTrue:[
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3613
                Logger info:'scavenge to reclaim colors'.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3614
                ObjectMemory scavenge.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3615
                round := 1.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3616
                devClr := clr exactOn:aDevice.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3617
            ].
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3618
            devClr isNil ifTrue:[
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3619
                round == 1 ifTrue:[
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3620
                    Logger info:'collect garbage to reclaim colors'.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3621
                    ObjectMemory 
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3622
                        garbageCollect; finalize.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3623
                    round := 2.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3624
                    devClr := clr exactOn:aDevice.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3625
                ].
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3626
                devClr isNil ifTrue:[
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3627
                    round == 2 ifTrue:[
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3628
                        Logger info:'lowSpaceCleanup and collect garbage to reclaim colors'.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3629
                        ObjectMemory 
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3630
                            performLowSpaceCleanup;
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3631
                            garbageCollect; finalize.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3632
                        round := 3.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3633
                        devClr := clr exactOn:aDevice.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3634
                    ].
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3635
                    devClr isNil ifTrue:[
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3636
                        ColorAllocationFailSignal raiseErrorString:'failed to allocate fix color'.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3637
                        ^ self
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3638
                    ].
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3639
                ].
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3640
            ].
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3641
        ].
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3642
        aColorVector at:dstIndex put:devClr.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3643
    ].
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3644
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3645
    "Modified: / 02-03-2017 / 17:43:36 / stefan"
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3646
!
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3647
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3648
best:numColors ditherColorsForImage:anImage 
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3649
    "work in progress"
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3650
    
8126
10c304b0f4db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8125
diff changeset
  3651
    |cube boxMaxR boxMaxG boxMaxB numBitsR numBitsG numBitsB numGray usedColors 
8123
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3652
     minRed maxRed minGreen maxGreen minBlue maxBlue
8126
10c304b0f4db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8125
diff changeset
  3653
     boundaryColors boxesAlreadySegmented segments boxesToDo enumerateNeighbors
8123
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3654
     firstTry segmentColors|
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3655
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3656
    ((anImage photometric == #blackIs0) or:[anImage photometric == #whiteIs0]) ifTrue:[
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3657
        numGray := (1 bitShift:anImage depth) min:numColors. 
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3658
        ^ self grayColorVector:numGray
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3659
    ].    
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3660
    (anImage photometric == #palette) ifTrue:[
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3661
        "/ all gray?
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3662
        (anImage colorMap conform:[:clr | clr isGrayColor]) ifTrue:[
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3663
            numGray := ((1 bitShift:anImage depth) min:anImage colorMap size) min:numColors. 
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3664
            ^ self grayColorVector:numGray
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3665
        ].    
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3666
    ].    
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3667
8126
10c304b0f4db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8125
diff changeset
  3668
    numBitsR := 7.
10c304b0f4db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8125
diff changeset
  3669
    numBitsG := 8.
10c304b0f4db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8125
diff changeset
  3670
    numBitsB := 5.
10c304b0f4db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8125
diff changeset
  3671
8123
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3672
    firstTry := true.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3673
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3674
    [
8126
10c304b0f4db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8125
diff changeset
  3675
        boxMaxR := (1 << numBitsR) - 1.
10c304b0f4db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8125
diff changeset
  3676
        boxMaxG := (1 << numBitsG) - 1.
10c304b0f4db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8125
diff changeset
  3677
        boxMaxB := (1 << numBitsB) - 1.
10c304b0f4db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8125
diff changeset
  3678
10c304b0f4db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8125
diff changeset
  3679
        cube := IntegerArray new:(boxMaxR+1)*(boxMaxG+1)*(boxMaxB+1).
8123
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3680
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3681
        firstTry ifTrue:[
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3682
            usedColors := Set new.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3683
            minRed := minGreen := minBlue := 255.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3684
            maxRed := maxGreen := maxBlue := 0.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3685
        ].
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3686
        
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3687
        anImage 
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3688
            rgbValuesFromX:0 y:0 
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3689
            toX:(anImage width-1) y:(anImage height-1)
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3690
            do:[:x :y :rgb |
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3691
                |redByte greenByte blueByte r g b idx oldCount|
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3692
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3693
                redByte := (rgb rightShift:16) bitAnd:16rFF.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3694
                greenByte := (rgb rightShift:8) bitAnd:16rFF.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3695
                blueByte := (rgb) bitAnd:16rFF.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3696
8126
10c304b0f4db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8125
diff changeset
  3697
                r := redByte rightShift:(8-numBitsR).
10c304b0f4db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8125
diff changeset
  3698
                g := greenByte rightShift:(8-numBitsG).
10c304b0f4db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8125
diff changeset
  3699
                b := blueByte rightShift:(8-numBitsB).
10c304b0f4db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8125
diff changeset
  3700
                idx := (((r * (boxMaxG+1))+g)*(boxMaxB+1))+b+1.
10c304b0f4db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8125
diff changeset
  3701
                oldCount := cube at:idx.
8123
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3702
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3703
                firstTry ifTrue:[
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3704
                    redByte < minRed ifTrue:[minRed := redByte] ifFalse:[redByte > maxRed ifTrue:[maxRed := redByte]].
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3705
                    greenByte < minGreen ifTrue:[minGreen := greenByte] ifFalse:[greenByte > maxGreen ifTrue:[maxGreen := greenByte]].
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3706
                    blueByte < minBlue ifTrue:[minBlue := blueByte] ifFalse:[blueByte > maxBlue ifTrue:[maxBlue := blueByte]].
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3707
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3708
                    oldCount == 0 ifTrue:[
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3709
                        usedColors add:rgb.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3710
                    ].    
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3711
                ].    
8126
10c304b0f4db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8125
diff changeset
  3712
                cube at:idx put:oldCount+1.
8123
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3713
            ].    
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3714
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3715
        firstTry ifTrue:[
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3716
            usedColors size <= numColors ifTrue:[
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3717
                "/ huh - that will be easy!!
8968
f18046cc5780 #BUGFIX by exept
Claus Gittinger <cg@exept.de>
parents: 8966
diff changeset
  3718
                ^ usedColors asArray collect:[:rgb | Color rgbValue:rgb].
8123
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3719
            ].
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3720
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3721
            "/ if not even the basic colors fit, dither to b&w
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3722
            numColors == 2 ifTrue:[
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3723
                ^ { Color black . Color white }
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3724
            ].
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3725
            "/ if not even the basic colors fit, dither to b&w
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3726
            numColors == 4 ifTrue:[
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3727
                ^ { Color black . Color red . Color green . Color blue. }
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3728
            ].
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3729
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3730
            "/ we need the at least the 8 corners for dithering, at least...
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3731
            boundaryColors := OrderedCollection new.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3732
            { minRed . maxRed } do:[:r |
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3733
                { minGreen . maxGreen } do:[:g |
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3734
                    { minBlue . maxBlue } do:[:b |
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3735
                        boundaryColors add:(Color redByte:r greenByte:g blueByte:b)
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3736
                    ].
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3737
                ].
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3738
            ].
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3739
            numColors == 8 ifTrue:[
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3740
                ^ boundaryColors
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3741
            ].
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3742
        ].
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3743
        firstTry := false.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3744
        
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3745
        "/
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3746
        "/ find and generate connected subarea box sets
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3747
        "/
8126
10c304b0f4db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8125
diff changeset
  3748
        boxesAlreadySegmented := Set new.
8123
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3749
        segments := OrderedCollection new.    
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3750
        boxesToDo := OrderedCollection new.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3751
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3752
        "/ each box has 9+9+3+3+1+1 neighbors
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3753
        "/ 
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3754
        enumerateNeighbors :=
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3755
            [:rgb :aBlock|
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3756
                |r g b|
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3757
8126
10c304b0f4db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8125
diff changeset
  3758
                r := (rgb rightShift:(numBitsG+numBitsB)) bitAnd:boxMaxR.
10c304b0f4db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8125
diff changeset
  3759
                g := (rgb rightShift:numBitsB) bitAnd:boxMaxG.
10c304b0f4db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8125
diff changeset
  3760
                b := (rgb) bitAnd:boxMaxB.
8123
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3761
                r-1 to:r+1 do:[:n_r |
8126
10c304b0f4db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8125
diff changeset
  3762
                    (n_r between:0 and:boxMaxR) ifTrue:[
8123
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3763
                        g-1 to:g+1 do:[:n_g |
8126
10c304b0f4db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8125
diff changeset
  3764
                            (n_g between:0 and:boxMaxG) ifTrue:[
8123
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3765
                                b-1 to:b+1 do:[:n_b |
8126
10c304b0f4db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8125
diff changeset
  3766
                                    (n_b between:0 and:boxMaxB) ifTrue:[
8123
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3767
                                        ((n_r == r) and:[n_g == g and:[n_b == b]]) ifFalse:[
8126
10c304b0f4db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8125
diff changeset
  3768
                                            aBlock value:((((n_r * (boxMaxG+1))+n_g)*(boxMaxB+1))+n_b).
8123
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3769
                                        ]
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3770
                                    ]
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3771
                                ]
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3772
                            ]
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3773
                        ]
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3774
                    ]
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3775
                ].
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3776
            ].
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3777
8126
10c304b0f4db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8125
diff changeset
  3778
        0 to:boxMaxR do:[:r |
10c304b0f4db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8125
diff changeset
  3779
            0 to:boxMaxG do:[:g |
10c304b0f4db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8125
diff changeset
  3780
                0 to:boxMaxB do:[:b |
8123
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3781
                    |rgb|
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3782
8126
10c304b0f4db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8125
diff changeset
  3783
                    rgb := (((r * (boxMaxG+1))+g)*(boxMaxB+1))+b.
8137
4d18d8b42894 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 8126
diff changeset
  3784
                    ((cube at:rgb+1) ~~ 0 
4d18d8b42894 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 8126
diff changeset
  3785
                     and:[(boxesAlreadySegmented includes:rgb) not]) ifTrue:[
4d18d8b42894 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 8126
diff changeset
  3786
                        |currentSegment|
4d18d8b42894 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 8126
diff changeset
  3787
4d18d8b42894 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 8126
diff changeset
  3788
                        "/ start a segment
4d18d8b42894 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 8126
diff changeset
  3789
                        currentSegment := OrderedCollection new.
4d18d8b42894 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 8126
diff changeset
  3790
                        segments add:currentSegment.
4d18d8b42894 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 8126
diff changeset
  3791
4d18d8b42894 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 8126
diff changeset
  3792
                        boxesToDo add:rgb.
4d18d8b42894 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 8126
diff changeset
  3793
                        boxesAlreadySegmented add:rgb.
4d18d8b42894 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 8126
diff changeset
  3794
4d18d8b42894 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 8126
diff changeset
  3795
                        [boxesToDo notEmpty] whileTrue:[
4d18d8b42894 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 8126
diff changeset
  3796
                            |lastRgb|
4d18d8b42894 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 8126
diff changeset
  3797
4d18d8b42894 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 8126
diff changeset
  3798
                            lastRgb := boxesToDo removeLast.
4d18d8b42894 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 8126
diff changeset
  3799
                            currentSegment add:lastRgb.
4d18d8b42894 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 8126
diff changeset
  3800
4d18d8b42894 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 8126
diff changeset
  3801
                            enumerateNeighbors
4d18d8b42894 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 8126
diff changeset
  3802
                                    value:lastRgb 
4d18d8b42894 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 8126
diff changeset
  3803
                                    value:[:n_rgb |
4d18d8b42894 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 8126
diff changeset
  3804
                                        (cube at:n_rgb+1) ~~ 0 ifTrue:[
4d18d8b42894 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 8126
diff changeset
  3805
                                            "/ neighbor has used pixels as well...
4d18d8b42894 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 8126
diff changeset
  3806
                                            (boxesAlreadySegmented includes:n_rgb) ifFalse:[
4d18d8b42894 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 8126
diff changeset
  3807
                                                "/ neighbor was not processed...
4d18d8b42894 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 8126
diff changeset
  3808
                                                boxesAlreadySegmented add:lastRgb.
4d18d8b42894 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 8126
diff changeset
  3809
                                                boxesToDo add:n_rgb.
4d18d8b42894 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 8126
diff changeset
  3810
                                            ].
4d18d8b42894 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 8126
diff changeset
  3811
                                        ].    
4d18d8b42894 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 8126
diff changeset
  3812
                                    ].
4d18d8b42894 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 8126
diff changeset
  3813
                        ].
8123
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3814
                    ].    
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3815
                ]
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3816
            ]
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3817
        ].
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3818
        
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3819
        (segments size < numColors) ifTrue:[
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3820
            segmentColors := segments 
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3821
                                collect:[:eachSegment |
8125
4deac40e67b0 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8123
diff changeset
  3822
                                    |sumWeight sumRed sumGreen sumBlue centerRed centerGreen centerBlue|
8123
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3823
                                    
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3824
                                    "/ compute central point
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3825
                                    "/ as center of mass (taking count per box as weight)
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3826
                                    "/ this central point will be placed into the colormap.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3827
                                    sumRed := sumGreen := sumBlue := 0.
8125
4deac40e67b0 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8123
diff changeset
  3828
4deac40e67b0 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8123
diff changeset
  3829
                                    sumWeight := 0.
8123
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3830
                                    eachSegment do:[:rgbOfBoxInSegment |
8125
4deac40e67b0 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8123
diff changeset
  3831
                                        |r g b idx count|
8123
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3832
                                        
8126
10c304b0f4db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8125
diff changeset
  3833
                                        r := (rgbOfBoxInSegment rightShift:(numBitsG+numBitsB)) bitAnd:boxMaxR.
10c304b0f4db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8125
diff changeset
  3834
                                        g := (rgbOfBoxInSegment rightShift:numBitsB) bitAnd:boxMaxG.
10c304b0f4db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8125
diff changeset
  3835
                                        b := (rgbOfBoxInSegment) bitAnd:boxMaxB.
10c304b0f4db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8125
diff changeset
  3836
10c304b0f4db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8125
diff changeset
  3837
                                        idx := (((r * (boxMaxG+1))+g)*(boxMaxB+1))+b+1.
10c304b0f4db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8125
diff changeset
  3838
                                        count := cube at:idx.
10c304b0f4db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8125
diff changeset
  3839
10c304b0f4db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8125
diff changeset
  3840
                                        sumRed := sumRed + (r * count).
10c304b0f4db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8125
diff changeset
  3841
                                        sumGreen := sumGreen + (g * count).
10c304b0f4db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8125
diff changeset
  3842
                                        sumBlue := sumBlue + (b * count).
10c304b0f4db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8125
diff changeset
  3843
                                        
8125
4deac40e67b0 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8123
diff changeset
  3844
                                        sumWeight := sumWeight + count. 
8123
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3845
                                    ].
8125
4deac40e67b0 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8123
diff changeset
  3846
                                    centerRed := (sumRed / sumWeight) rounded.
4deac40e67b0 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8123
diff changeset
  3847
                                    centerGreen := (sumGreen / sumWeight) rounded.
4deac40e67b0 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8123
diff changeset
  3848
                                    centerBlue := (sumBlue / sumWeight) rounded.
8123
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3849
8126
10c304b0f4db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8125
diff changeset
  3850
                                    centerRed := (centerRed bitShift:(8-numBitsR))
10c304b0f4db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8125
diff changeset
  3851
                                                 bitOr:(centerRed bitShift:(8-numBitsR-numBitsR)). 
10c304b0f4db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8125
diff changeset
  3852
                                    centerGreen := (centerGreen bitShift:(8-numBitsG))
10c304b0f4db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8125
diff changeset
  3853
                                                 bitOr:(centerGreen bitShift:(8-numBitsG-numBitsG)). 
10c304b0f4db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8125
diff changeset
  3854
                                    centerBlue := (centerBlue bitShift:(8-numBitsB))
10c304b0f4db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8125
diff changeset
  3855
                                                 bitOr:(centerBlue bitShift:(8-numBitsB-numBitsB)). 
8123
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3856
                                    
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3857
                                    Color redByte:centerRed greenByte:centerGreen blueByte:centerBlue.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3858
                                ]
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3859
                                as:OrderedCollection.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3860
            "/ can we add black & white?
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3861
            (segmentColors includes:Color white) ifFalse:[
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3862
                segmentColors add:Color white.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3863
            ].    
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3864
            (segmentColors includes:Color black) ifFalse:[
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3865
                segmentColors add:Color black.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3866
            ].    
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3867
            "/ can we add the boundary colors?
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3868
            boundaryColors do:[:each |
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3869
                (segmentColors size < numColors) ifTrue:[
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3870
                    (segmentColors includes:each) ifFalse:[
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3871
                        segmentColors add:each.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3872
                    ].    
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3873
                ].
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3874
            ].
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3875
            ^ segmentColors.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3876
        ].
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3877
        
8126
10c304b0f4db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8125
diff changeset
  3878
        numBitsR > 2 ifTrue:[ numBitsR := numBitsR - 1 ].
10c304b0f4db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8125
diff changeset
  3879
        numBitsG > 2 ifTrue:[ numBitsG := numBitsG - 1 ].
10c304b0f4db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8125
diff changeset
  3880
        numBitsB > 2 ifTrue:[ numBitsB := numBitsB - 1 ].
8123
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3881
        
8126
10c304b0f4db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8125
diff changeset
  3882
        ((numBitsR == 0) or:[numBitsG == 0 or:[numBitsB == 0]]) ifTrue:[
8123
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3883
            self error.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3884
        ].    
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3885
    ] loop.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3886
    
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3887
    "
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3888
     Color
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3889
        best:16 
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3890
        ditherColorsForImage:(Image fromFile:'../../goodies/bitmaps/pcxImages/lena_depth8_palette.pcx')
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3891
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3892
     Color
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3893
        best:16 
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3894
        ditherColorsForImage:(Image fromFile:'../../goodies/bitmaps/pcxImages/lena_depth24_rgb.pcx')
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3895
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3896
     Color
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3897
        best:16 
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3898
        ditherColorsForImage:((Image fromFile:'../../goodies/bitmaps/pcxImages/lena_depth8_palette.pcx') asGrayImageDepth:8)
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3899
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3900
    "
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3901
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3902
    "Created: / 29-08-2017 / 14:31:19 / cg"
8126
10c304b0f4db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8125
diff changeset
  3903
    "Modified: / 29-08-2017 / 21:53:47 / cg"
8123
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3904
!
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3905
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3906
browserColors
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3907
    "return the palette, known as 'the color cube', 'the Netscape palette',
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3908
     or 'the Browser-Safe palette'.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3909
     This is familiar to all seasoned Web designers and graphics production specialists;
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3910
     Use this map for low-color-res depth 8 (gif-) images, if old pseudo displays are to be
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3911
     supported."
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3912
     
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3913
    ^ self colorCubeWithRed:6 green:6 blue:6.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3914
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3915
    "
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3916
     |img|
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3917
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3918
     img := Image width:(8*6*6)+1 height:(8*6)+1 depth:8.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3919
     img colorMap:(Color browserColors). 
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3920
     img pixelFunction:
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3921
         [:x :y |
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3922
            |r g b|
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3923
            
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3924
            (y \\ 8 == 0 ) ifTrue:[
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3925
                86
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3926
            ] ifFalse:[
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3927
                x \\ 8 == 0 ifTrue:[
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3928
                    86
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3929
                ] ifFalse:[
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3930
                    r := g := b := 0.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3931
                    'y is green component'.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3932
                    g := 5-(y // 8).
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3933
                    'x inside subsquare is blue component'.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3934
                    b := (x \\ (8*6)) // 8.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3935
                    'subsquare is red component'.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3936
                    r := (x // (8*6)).
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3937
                    ((r*6)+g)*6+b
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3938
                ]
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3939
            ].    
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3940
         ].
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3941
     img inspect. 
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3942
    "
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3943
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3944
    "Created: / 29-08-2017 / 17:01:23 / cg"
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3945
!
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3946
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3947
colorCubeWithRed:nRed green:nGreen blue:nBlue
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3948
    "given a number of red, green and blue shades,
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3949
     return a color cube (map) containing those colors.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3950
     Eg, return a map containing any combination of the
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3951
     nRed, nGreen and nBlue shades.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3952
     This is used for dithering of deep images onto limited-depth canvases
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3953
     for example: with nRed,nGreen,nBlue == 2,3,2
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3954
      you will get a cube of 2*3*2 = 12 colors, with two shades of red (0 and 255),
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3955
      threed shades of green (0, 127 and 255) and two shades of blue (0 and 255)."
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3956
    
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3957
    "{ Pragma: +optSpace }"
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3958
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3959
    |nR "{Class: SmallInteger }"
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3960
     nG "{Class: SmallInteger }"
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3961
     nB "{Class: SmallInteger }"
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3962
     dR dG dB red green blue dstIndex clr round
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3963
     colorCube|
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3964
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3965
    nR := nRed.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3966
    nG := nGreen.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3967
    nB := nBlue.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3968
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3969
    dR := 100.0 / (nR - 1).
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3970
    dG := 100.0 / (nG - 1).
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3971
    dB := 100.0 / (nB - 1).
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3972
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3973
    colorCube := Array new:(nR * nG * nB).
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3974
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3975
    round := 0.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3976
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3977
    dstIndex := 1.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3978
    1 to:nR do:[:sR |
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3979
        red := dR * (sR - 1).
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3980
        1 to:nG do:[:sG |
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3981
            green := dG * (sG - 1).
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3982
            1 to:nB do:[:sB |
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3983
                blue := dB * (sB - 1).
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3984
                clr := self red:red green:green blue:blue.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3985
                colorCube at:dstIndex put:clr.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3986
                dstIndex := dstIndex + 1
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3987
            ]
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3988
        ]
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3989
    ].
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3990
    ^ colorCube
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3991
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3992
    "
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3993
     Color colorCubeWithRed:2 green:2 blue:2
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3994
     Color colorCubeWithRed:2 green:3 blue:2
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3995
     Color colorCubeWithRed:3 green:4 blue:3
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3996
    "
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3997
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3998
    "Created: / 11-07-1996 / 17:55:32 / cg"
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  3999
    "Modified: / 10-01-1997 / 15:37:13 / cg"
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4000
    "Modified (comment): / 29-08-2017 / 14:27:58 / cg"
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4001
!
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4002
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4003
flushDeviceColors
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4004
    "unassign all colors from their device"
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4005
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4006
    self allInstances do:[:aColor |
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4007
	aColor restored
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4008
    ].
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4009
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4010
    "Modified: 24.2.1997 / 18:27:06 / cg"
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4011
!
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4012
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4013
flushDeviceColorsFor:aDevice
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4014
    self allInstancesDo:[:aColor |
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4015
	aColor device == aDevice ifTrue:[
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4016
	    aColor restored
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4017
	]
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4018
    ]
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4019
!
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4020
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4021
getColors6x6x4
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4022
    "{ Pragma: +optSpace }"
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4023
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4024
    "preallocates a 6x6x4 (144) colorMap and later uses those colors only
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4025
     on a palette display (pseudoColor visual).
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4026
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4027
     Doing so has the advantage that the system will never run out of colors,
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4028
     however, colors may be either inexact or dithered."
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4029
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4030
    self getColorsRed:6 green:6 blue:4
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4031
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4032
    "
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4033
     Color getColors6x6x4
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4034
    "
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4035
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4036
    "Modified (comment): / 29-08-2017 / 17:22:22 / cg"
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4037
!
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4038
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4039
getColors6x6x5
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4040
    "{ Pragma: +optSpace }"
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4041
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4042
    "preallocates a 6x6x5 (180) colorMap and later uses those colors only
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4043
     on a palette display (pseudoColor visual).
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4044
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4045
     Doing so has the advantage that the system will never run out of colors,
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4046
     however, colors may be either inexact or dithered."
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4047
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4048
    self getColorsRed:6 green:6 blue:5
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4049
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4050
    "
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4051
     Color getColors6x6x5
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4052
    "
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4053
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4054
    "Modified (comment): / 29-08-2017 / 17:22:17 / cg"
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4055
!
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4056
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4057
getColors6x6x6
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4058
    "{ Pragma: +optSpace }"
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4059
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4060
    "preallocates a 6x6x6 (196) colorMap and later uses those colors only
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4061
     on a palette display (pseudoColor visual).
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4062
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4063
     Doing so has the advantage that the system will never run out of colors,
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4064
     however, colors may be either inexact or dithered."
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4065
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4066
    self getColorsRed:6 green:6 blue:6
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4067
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4068
    "
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4069
     Color getColors6x6x6
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4070
    "
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4071
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4072
    "Modified (comment): / 29-08-2017 / 17:22:10 / cg"
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4073
!
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4074
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4075
getColors6x7x4
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4076
    "{ Pragma: +optSpace }"
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4077
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4078
    "preallocates a 6x7x4 (168) colorMap and later uses those colors only
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4079
     on a palette display (pseudoColor visual).
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4080
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4081
     Doing so has the advantage that the system will never run out of colors,
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4082
     however, colors may be either inexact or dithered."
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4083
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4084
    self getColorsRed:6 green:7 blue:4
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4085
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4086
    "
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4087
     Color getColors6x7x4
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4088
    "
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4089
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4090
    "Created: / 12-06-1996 / 17:41:57 / cg"
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4091
    "Modified (comment): / 29-08-2017 / 17:22:04 / cg"
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4092
!
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4093
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4094
getColors7x8x4
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4095
    "{ Pragma: +optSpace }"
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4096
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4097
    "preallocates a 7x8x4 (224) colorMap and later uses those colors only
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4098
     on a palette display (pseudoColor visual).
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4099
     
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4100
     Doing so has the advantage that the system will never run out of colors,
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4101
     however, colors may be either inexact or dithered."
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4102
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4103
    self getColorsRed:7 green:8 blue:4
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4104
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4105
    "
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4106
     Color getColors7x8x4
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4107
    "
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4108
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4109
    "Modified (comment): / 29-08-2017 / 17:21:56 / cg"
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4110
!
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4111
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4112
getColorsRed:nRed green:nGreen blue:nBlue
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4113
    "{ Pragma: +optSpace }"
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4114
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4115
    "preallocates a nR x nG x nB colorMap for later use in dithering
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4116
     on a palette display (pseudoColor visual).
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4117
     
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4118
     Doing so has the advantage that the system will never run out of colors,
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4119
     however, colors may be either inexact or dithered."
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4120
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4121
    self getColorsRed:nRed green:nGreen blue:nBlue on:Screen current
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4122
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4123
    "
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4124
     Color getColorsRed:2 green:2 blue:2
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4125
    "
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4126
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4127
    "Modified: / 11-07-1996 / 17:58:09 / cg"
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4128
    "Modified (comment): / 29-08-2017 / 16:47:34 / cg"
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4129
!
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4130
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4131
getColorsRed:nRed green:nGreen blue:nBlue on:aDevice
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4132
    "{ Pragma: +optSpace }"
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4133
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4134
    "preallocates a nR x nG x nB colorMap for later use in dithering
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4135
     on a palette display (pseudoColor visual).
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4136
     
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4137
     Doing so has the advantage that the system will never run out of colors,
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4138
     however, colors may be either inexact or dithered."
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4139
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4140
    |nR "{Class: SmallInteger }"
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4141
     nG "{Class: SmallInteger }"
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4142
     nB "{Class: SmallInteger }"
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4143
     dR dG dB fixColors|
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4144
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4145
    aDevice visualType == #TrueColor ifTrue:[^ self].
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4146
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4147
    nR := nRed.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4148
    nG := nGreen.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4149
    nB := nBlue.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4150
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4151
    dR := 100.0 / (nR - 1).
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4152
    dG := 100.0 / (nG - 1).
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4153
    dB := 100.0 / (nB - 1).
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4154
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4155
    fixColors := self colorCubeWithRed:nRed green:nGreen blue:nBlue.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4156
    self allocateColorsIn:fixColors on:aDevice.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4157
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4158
    aDevice setFixColors:fixColors numRed:nR numGreen:nG numBlue:nB
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4159
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4160
    "
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4161
     Color getColorsRed:2 green:2 blue:2 on:Display
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4162
    "
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4163
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4164
    "Created: / 11-07-1996 / 17:55:32 / cg"
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4165
    "Modified: / 10-01-1997 / 15:37:13 / cg"
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4166
    "Modified (comment): / 29-08-2017 / 16:47:38 / cg"
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4167
!
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4168
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4169
getGrayColors:nGray on:aDevice
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4170
    "{ Pragma: +optSpace }"
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4171
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4172
    "preallocates nGray gray colors for later use in dithering
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4173
     on a palette display (pseudoColor visual).
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4174
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4175
     Doing so has the advantage that the system will never run out of colors,
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4176
     however, colors may be either inexact or dithered."
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4177
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4178
    |nG "{Class: SmallInteger }"
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4179
     d fixGrayColors|
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4180
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4181
    aDevice visualType == #TrueColor ifTrue:[^ self].
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4182
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4183
    nG := nGray.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4184
    d := 100.0 / (nG - 1).
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4185
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4186
    fixGrayColors := self grayColorVector:nGray.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4187
    self allocateColorsIn:fixGrayColors on:aDevice.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4188
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4189
    aDevice setFixGrayColors:fixGrayColors
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4190
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4191
    "
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4192
     Color getGrayColors:16 on:Display
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4193
    "
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4194
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4195
    "Created: / 23-06-1997 / 15:29:50 / cg"
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4196
    "Modified (comment): / 29-08-2017 / 17:23:18 / cg"
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4197
!
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4198
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4199
getPrimaryColorsOn:aDevice
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4200
    "{ Pragma: +optSpace }"
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4201
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4202
    "preallocate the primary colors on a palette display (pseudoColor visual).
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4203
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4204
     Doing so during early startup prevents us from running out
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4205
     of (at least those required) colors later.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4206
     This guarantees, that at least some colors are available
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4207
     for dithering (although, with only black, white, red, green and blue,
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4208
     dithered images look very poor)."
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4209
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4210
    |colors white black red green blue clr dDepth
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4211
     lastPix "{ Class: SmallInteger }" |
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4212
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4213
    (aDevice notNil and:[aDevice ditherColors isNil]) ifTrue:[
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4214
        white := (self red:100 green:100 blue:100) exactOn:aDevice.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4215
        white colorId isNil ifTrue:[
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4216
            'Color [warning]: cannot allocate white color' errorPrintCR.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4217
        ].
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4218
        black := (self red:0 green:0 blue:0) exactOn:aDevice.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4219
        black colorId isNil ifTrue:[
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4220
            'Color [warning]: cannot allocate black color' errorPrintCR.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4221
        ].
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4222
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4223
        aDevice hasColors ifTrue:[
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4224
            red := (self red:100 green:0 blue:0) exactOn:aDevice.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4225
            green := (self red:0 green:100 blue:0) exactOn:aDevice.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4226
            blue := (self red:0 green:0 blue:100) exactOn:aDevice.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4227
            (red isNil
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4228
            or:[green isNil
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4229
            or:[blue isNil
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4230
            or:[red colorId isNil
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4231
            or:[green colorId isNil
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4232
            or:[blue colorId isNil]]]]]) ifTrue:[
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4233
                'Color [warning]: cannot allocate primary color(s)' errorPrintCR.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4234
                dDepth := aDevice depth.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4235
                ((dDepth >= 4) and:[dDepth <= 8]) ifTrue:[
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4236
                    "/
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4237
                    "/ see what we have ...
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4238
                    "/
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4239
                    lastPix := (1 bitShift:dDepth) - 1.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4240
                    0 to:lastPix do:[:pixel |
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4241
                        colors := OrderedCollection new.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4242
                        aDevice getRGBFrom:pixel into:[:r :g :b |
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4243
                            colors add:((Color red:r green:g blue:b) exactOn:aDevice).
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4244
                        ]
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4245
                    ].
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4246
                    red := (self red:100 green:0 blue:0) nearestOn:aDevice.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4247
                    green := (self red:0 green:100 blue:0) nearestOn:aDevice.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4248
                    blue := (self red:0 green:0 blue:100) nearestOn:aDevice.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4249
                ] ifFalse:[
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4250
                    aDevice hasColors:false.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4251
                    aDevice hasGrayscales:false.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4252
                    red := green := blue := nil.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4253
                ]
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4254
            ]
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4255
        ].
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4256
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4257
        aDevice == Display ifTrue:[
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4258
            "/ keep those around for the main display
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4259
            White := white.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4260
            Black := black.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4261
            Red := red.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4262
            Green := green.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4263
            Blue := blue
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4264
        ].
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4265
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4266
        aDevice visualType ~~ #TrueColor ifTrue:[
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4267
            aDevice hasColors ifTrue:[
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4268
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4269
                "preallocate some colors for dithering
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4270
                 - otherwise, they may not be available when we need them ...
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4271
                 these are: black, white, grey50,
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4272
                            red, green, blue, yellow, cyan and magenta.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4273
                "
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4274
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4275
                colors := OrderedCollection new.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4276
                clr := (self gray:50) exactOn:aDevice.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4277
                (clr notNil and:[clr colorId notNil]) ifTrue:[
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4278
                    colors add:clr
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4279
                ].
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4280
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4281
                colors add:white; add:black; add:red; add:green; add:blue.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4282
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4283
                colors add:((self red:100 green:100 blue:0) exactOn:aDevice).
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4284
                colors add:((self red:100 green:0 blue:100) exactOn:aDevice).
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4285
                colors add:((self red:0 green:100 blue:100) exactOn:aDevice).
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4286
            ].
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4287
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4288
            aDevice hasGrayscales ifTrue:[
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4289
                aDevice hasColors ifFalse:[
8285
fcec3749083e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8277
diff changeset
  4290
                    colors := 
fcec3749083e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8277
diff changeset
  4291
                        OrderedCollection 
fcec3749083e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8277
diff changeset
  4292
                            with:((self gray:50) exactOn:aDevice)
fcec3749083e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8277
diff changeset
  4293
                            with:white
fcec3749083e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8277
diff changeset
  4294
                            with:black.
8123
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4295
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4296
                ].
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4297
                colors add:((self gray:25) exactOn:aDevice).
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4298
                colors add:((self gray:33) exactOn:aDevice).
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4299
                colors add:((self gray:67) exactOn:aDevice).
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4300
                colors add:((self gray:75) exactOn:aDevice).
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4301
            ].
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4302
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4303
            colors notNil ifTrue:[
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4304
                colors := colors select:[:clr | clr notNil and:[clr colorId notNil]].
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4305
                aDevice setDitherColors:(colors asArray).
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4306
            ]
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4307
        ]
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4308
    ]
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4309
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4310
    "Created: / 11-07-1996 / 18:09:28 / cg"
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4311
    "Modified: / 21-10-1997 / 02:42:28 / cg"
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4312
    "Modified (comment): / 29-08-2017 / 17:23:36 / cg"
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4313
!
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4314
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4315
grayColorVector:nGray
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4316
    |nG "{Class: SmallInteger }"
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4317
     d gray dstIndex clr round
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4318
     grayColors|
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4319
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4320
    nG := nGray.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4321
    d := 100.0 / (nG - 1).
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4322
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4323
    grayColors := Array new:nG.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4324
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4325
    round := 0.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4326
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4327
    dstIndex := 1.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4328
    1 to:nG do:[:sG |
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4329
	gray := d * (sG - 1).
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4330
	clr := self red:gray green:gray blue:gray.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4331
	grayColors at:dstIndex put:clr.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4332
	dstIndex := dstIndex + 1
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4333
    ].
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4334
    ^ grayColors
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4335
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4336
    "
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4337
     Color getGrayColors:16 on:Display
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4338
    "
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4339
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4340
    "Created: 23.6.1997 / 15:29:50 / cg"
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4341
!
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4342
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4343
standardDitherColorsForDepth8
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4344
    "return a set of colors useful for dithering (roughly 200 colors);
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4345
     This includes a color cube and the main grayScale colors."
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4346
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4347
    |ditherColors|
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4348
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4349
    ditherColors := self colorCubeWithRed:6 green:8 blue:4.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4350
    ditherColors := ditherColors ,
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4351
                        ( #(10 20 25 30 40 50 60 70 75 80 90) 
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4352
                            collect:[:grayPercent | Color gray:grayPercent]
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4353
                            thenSelect:[:grey | (ditherColors includes:grey) not] )
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4354
                        asArray.    
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4355
    ^ ditherColors
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4356
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4357
    "
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4358
     self standardDitherColorsForDepth8
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4359
    "
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4360
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4361
    "Modified: / 29-08-2017 / 17:29:58 / cg"
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4362
!
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4363
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4364
vgaColors
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4365
    "{ Pragma: +optSpace }"
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4366
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4367
    |colors|
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4368
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4369
    colors := Array new:16.
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4370
    colors at:1 put:(Color rgbValue:16rFFFFFF).
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4371
    colors at:2 put:(Color rgbValue:16rC0C0C0).
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4372
    colors at:3 put:(Color rgbValue:16r808080).
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4373
    colors at:4 put:(Color rgbValue:16r000000).
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4374
    colors at:5 put:(Color rgbValue:16rFF0000).
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4375
    colors at:6 put:(Color rgbValue:16r800000).
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4376
    colors at:7 put:(Color rgbValue:16r008000).
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4377
    colors at:8 put:(Color rgbValue:16r00FF00).
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4378
    colors at:9 put:(Color rgbValue:16r0000FF).
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4379
    colors at:10 put:(Color rgbValue:16r000080).
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4380
    colors at:11 put:(Color rgbValue:16rFF00FF).
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4381
    colors at:12 put:(Color rgbValue:16r800080).
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4382
    colors at:13 put:(Color rgbValue:16rFFFF00).
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4383
    colors at:14 put:(Color rgbValue:16r808000).
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4384
    colors at:15 put:(Color rgbValue:16r00FFFF).
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4385
    colors at:16 put:(Color rgbValue:16r008080).
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4386
    ^ colors
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4387
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4388
    "Created: / 07-07-2006 / 13:36:15 / cg"
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4389
! !
099bb6b94798 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8112
diff changeset
  4390
3880
c4c8268a2d9f method category rename
Claus Gittinger <cg@exept.de>
parents: 3878
diff changeset
  4391
!Color methodsFor:'Compatibility-ST80'!
1347
4e19b2d586a4 VW now has #on:, but calls it #asDevicePaintOn:
ca
parents: 1326
diff changeset
  4392
4e19b2d586a4 VW now has #on:, but calls it #asDevicePaintOn:
ca
parents: 1326
diff changeset
  4393
asDevicePaintOn:aDevice
4e19b2d586a4 VW now has #on:, but calls it #asDevicePaintOn:
ca
parents: 1326
diff changeset
  4394
    "ST-80 compatibility: an alias for on:.
4e19b2d586a4 VW now has #on:, but calls it #asDevicePaintOn:
ca
parents: 1326
diff changeset
  4395
     create a new Color representing the same color as
4e19b2d586a4 VW now has #on:, but calls it #asDevicePaintOn:
ca
parents: 1326
diff changeset
  4396
     myself on aDevice; if one already exists, return the one"
4e19b2d586a4 VW now has #on:, but calls it #asDevicePaintOn:
ca
parents: 1326
diff changeset
  4397
2828
5795bf162314 #on: -> #onDevice:
Claus Gittinger <cg@exept.de>
parents: 2779
diff changeset
  4398
    ^ self onDevice:aDevice
2943
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4399
!
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4400
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4401
asHiliteColor
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4402
    "same as lightened - for ST-80 compatibility"
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4403
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4404
    ^ self lightened
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4405
!
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4406
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4407
asShadowColor
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4408
    "same as darkened - for ST-80 compatibility"
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4409
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4410
    ^ self darkened
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4411
! !
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4412
3880
c4c8268a2d9f method category rename
Claus Gittinger <cg@exept.de>
parents: 3878
diff changeset
  4413
!Color methodsFor:'Compatibility-Squeak'!
2943
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4414
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  4415
alphaMixed: proportion with: aColor
7831
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4416
    "Squeak compatibility:
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4417
     Answer this color mixed with the given color. The proportion, a number
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  4418
     between 0.0 and 1.0, determines what what fraction of the receiver to
8165
dec0d9176839 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8163
diff changeset
  4419
     use in the mix. 
dec0d9176839 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8163
diff changeset
  4420
     For example, 1.0 yields the receiver, 0.0 yields aColor
dec0d9176839 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8163
diff changeset
  4421
     and 0.9 would yield a color close to the receiver. 
dec0d9176839 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8163
diff changeset
  4422
     This method uses RGB interpolation; 
dec0d9176839 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8163
diff changeset
  4423
     HSV interpolation can lead to surprises.  
dec0d9176839 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8163
diff changeset
  4424
     Mixes the alphas (for transparency) also."
4789
8a525695f2ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4785
diff changeset
  4425
8a525695f2ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4785
diff changeset
  4426
    | frac1 frac2 |
8a525695f2ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4785
diff changeset
  4427
8a525695f2ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4785
diff changeset
  4428
    frac1 := proportion asFloat min: 1.0 max: 0.0.
8a525695f2ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4785
diff changeset
  4429
    frac2 := 1.0 - frac1.
7762
29af5517f03a #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7758
diff changeset
  4430
    ^ self class
29af5517f03a #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7758
diff changeset
  4431
        r: ((red * frac1) + (aColor scaledRed * frac2)) / MaxValue
29af5517f03a #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7758
diff changeset
  4432
        g: ((green * frac1) + (aColor scaledGreen * frac2)) / MaxValue
29af5517f03a #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7758
diff changeset
  4433
        b: ((blue * frac1) + (aColor scaledBlue * frac2)) / MaxValue
29af5517f03a #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7758
diff changeset
  4434
        alpha: (self alpha * frac1) + (aColor alpha * frac2)
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  4435
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  4436
    "
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  4437
     (Color r:1 g:0 b:0 alpha:1) alphaMixed:0.5 with:(Color r:1 g:0 b:0 alpha:1)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  4438
     (Color r:1 g:0 b:0 alpha:0.5) alphaMixed:0.5 with:(Color r:0 g:1 b:0 alpha:0.5)
4789
8a525695f2ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4785
diff changeset
  4439
    "
8a525695f2ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4785
diff changeset
  4440
8a525695f2ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4785
diff changeset
  4441
    "Created: / 06-06-2007 / 10:53:25 / cg"
8165
dec0d9176839 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8163
diff changeset
  4442
    "Modified (comment): / 05-09-2017 / 14:38:23 / cg"
4789
8a525695f2ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4785
diff changeset
  4443
!
8a525695f2ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4785
diff changeset
  4444
2945
937fdf02965d more compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 2943
diff changeset
  4445
bitPatternForDepth: depth
7831
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4446
    "Squeak compatibility:
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4447
     Return a Bitmap, possibly containing a stipple pattern,
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  4448
     that best represents this color at the given depth.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  4449
     BitBlt calls this method to convert colors into Bitmaps.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  4450
     The resulting Bitmap may be multiple words to represent a stipple
2945
937fdf02965d more compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 2943
diff changeset
  4451
     pattern of several lines.  "
937fdf02965d more compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 2943
diff changeset
  4452
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  4453
    "See also:
7831
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4454
        pixelValueAtDepth:      -- value for single pixel
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4455
        pixelWordAtDepth:       -- a 32-bit word filled with the pixel value"
2945
937fdf02965d more compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 2943
diff changeset
  4456
    "Details: The pattern for the most recently requested depth is cached."
937fdf02965d more compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 2943
diff changeset
  4457
937fdf02965d more compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 2943
diff changeset
  4458
^ self.
937fdf02965d more compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 2943
diff changeset
  4459
"/    depth == cachedDepth ifTrue: [^ cachedBitPattern].
937fdf02965d more compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 2943
diff changeset
  4460
"/    cachedDepth _ depth.
937fdf02965d more compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 2943
diff changeset
  4461
"/
937fdf02965d more compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 2943
diff changeset
  4462
"/    depth > 2 ifTrue: [^ cachedBitPattern _ Bitmap with: (self pixelWordForDepth: depth)].
937fdf02965d more compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 2943
diff changeset
  4463
"/    depth = 1 ifTrue: [^ cachedBitPattern _ self halfTonePattern1].
937fdf02965d more compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 2943
diff changeset
  4464
"/    depth = 2 ifTrue: [^ cachedBitPattern _ self halfTonePattern2].
937fdf02965d more compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 2943
diff changeset
  4465
7831
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4466
    "Modified (comment): / 03-02-2017 / 11:38:04 / cg"
2945
937fdf02965d more compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 2943
diff changeset
  4467
!
937fdf02965d more compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 2943
diff changeset
  4468
3396
18f99e9fc5ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3324
diff changeset
  4469
colorForInsets
7831
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4470
    "Squeak compatibility - dummy"
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4471
3396
18f99e9fc5ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3324
diff changeset
  4472
    ^ self
7831
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4473
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4474
    "Modified (comment): / 03-02-2017 / 11:38:24 / cg"
3396
18f99e9fc5ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3324
diff changeset
  4475
!
18f99e9fc5ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3324
diff changeset
  4476
2943
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4477
darker
7831
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4478
    "Squeak compatibility;
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4479
     return a new color, which is darker than the receiver.
2943
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4480
     Almost the same as darkened for Squeak compatibility."
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4481
8047
84d3591c4da0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7964
diff changeset
  4482
    ^ self mixed:1 with:Black
84d3591c4da0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7964
diff changeset
  4483
    "/ ^ self mixed:0.8333 with:Black
2943
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4484
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4485
    "
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4486
     (Color red) darker
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4487
     (Color red) muchDarker
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4488
    "
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4489
8047
84d3591c4da0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7964
diff changeset
  4490
    "Modified: / 05-07-2017 / 09:28:40 / cg"
2943
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4491
!
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4492
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4493
lighter
7831
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4494
    "Squeak compatibility;
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4495
     return a new color, which is slightly lighter than the receiver.
2943
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4496
     Almost the same as lightened for Squeak compatibility."
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4497
8047
84d3591c4da0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7964
diff changeset
  4498
    ^ self mixed:1 with:White
84d3591c4da0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7964
diff changeset
  4499
    "/ ^ self mixed:0.8333 with:White
2943
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4500
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4501
    "
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  4502
     (Color red)
2943
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4503
     (Color red) lighter
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4504
     (Color red) muchLighter
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4505
     (Color red) veryMuchLighter
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4506
    "
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4507
8047
84d3591c4da0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7964
diff changeset
  4508
    "Modified: / 05-07-2017 / 09:29:18 / cg"
2943
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4509
!
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4510
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4511
muchDarker
7831
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4512
    "Squeak compatibility:
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4513
     return a new color, which is much darker than the receiver"
2943
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4514
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4515
    ^ self mixed:0.233 with:Black
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4516
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4517
    "
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4518
     (Color red) darker
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4519
     (Color red) muchDarker
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4520
    "
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4521
7831
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4522
    "Modified: / 11-06-1996 / 18:10:49 / cg"
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4523
    "Modified (comment): / 03-02-2017 / 11:37:46 / cg"
2943
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4524
!
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4525
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4526
muchLighter
7831
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4527
    "Squeak compatibility:
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4528
     return a new color, which is much lighter than the receiver"
2943
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4529
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4530
    ^ self mixed:0.233 with:White
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4531
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4532
    "
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4533
     (Color red) lighter
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4534
     (Color red) mixed:0.833 with:Color white
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4535
     (Color red) muchLighter
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4536
     (Color red) veryMuchLighter
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4537
    "
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4538
7831
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4539
    "Modified: / 11-06-1996 / 18:10:49 / cg"
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4540
    "Modified (comment): / 03-02-2017 / 11:39:05 / cg"
3396
18f99e9fc5ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3324
diff changeset
  4541
!
3024
a565d805ad69 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
  4542
4203
b306a1133946 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4202
diff changeset
  4543
privateBlue
b306a1133946 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4202
diff changeset
  4544
    "Squeak compatibility:
b306a1133946 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4202
diff changeset
  4545
     return the blue components value mapped to 0..MaxValue"
b306a1133946 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4202
diff changeset
  4546
b306a1133946 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4202
diff changeset
  4547
    ^ self scaledBlue
b306a1133946 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4202
diff changeset
  4548
!
b306a1133946 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4202
diff changeset
  4549
b306a1133946 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4202
diff changeset
  4550
privateGreen
b306a1133946 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4202
diff changeset
  4551
    "Squeak compatibility:
b306a1133946 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4202
diff changeset
  4552
     return the green components value mapped to 0..MaxValue"
b306a1133946 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4202
diff changeset
  4553
b306a1133946 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4202
diff changeset
  4554
    ^ self scaledGreen
b306a1133946 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4202
diff changeset
  4555
!
b306a1133946 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4202
diff changeset
  4556
b306a1133946 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4202
diff changeset
  4557
privateRed
b306a1133946 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4202
diff changeset
  4558
    "Squeak compatibility:
b306a1133946 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4202
diff changeset
  4559
     return the red components value mapped to 0..MaxValue"
b306a1133946 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4202
diff changeset
  4560
b306a1133946 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4202
diff changeset
  4561
    ^ self scaledRed
b306a1133946 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4202
diff changeset
  4562
!
b306a1133946 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4202
diff changeset
  4563
3309
cea34469e23f squeak compatibility
Claus Gittinger <cg@exept.de>
parents: 3277
diff changeset
  4564
scaledPixelValue32
7831
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4565
    "Squeak compatibility:
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4566
     return the argb byteValues packed into a 32bit integer;
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4567
     The returned value is composed of a<<24 + r<<16 + g<<8 + b.
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4568
     This is similar to rgbValue, but has an additional alpha byte value
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4569
     in its high bits (which is 0 for fully transparent, 255 for fully opaque colors)"
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4570
3309
cea34469e23f squeak compatibility
Claus Gittinger <cg@exept.de>
parents: 3277
diff changeset
  4571
    ^ (self redByte bitShift:16)
cea34469e23f squeak compatibility
Claus Gittinger <cg@exept.de>
parents: 3277
diff changeset
  4572
      + (self greenByte bitShift:8)
cea34469e23f squeak compatibility
Claus Gittinger <cg@exept.de>
parents: 3277
diff changeset
  4573
      + (self blueByte)
cea34469e23f squeak compatibility
Claus Gittinger <cg@exept.de>
parents: 3277
diff changeset
  4574
      + (self alphaByte bitShift:24)
7831
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4575
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4576
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4577
    "
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4578
     Color yellow scaledPixelValue
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4579
     Color yellow rgbValue
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4580
     Color yellow alpha
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4581
     Color yellow alphaByte
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4582
    "
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4583
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4584
    "Modified (comment): / 03-02-2017 / 11:40:03 / cg"
3309
cea34469e23f squeak compatibility
Claus Gittinger <cg@exept.de>
parents: 3277
diff changeset
  4585
!
cea34469e23f squeak compatibility
Claus Gittinger <cg@exept.de>
parents: 3277
diff changeset
  4586
8047
84d3591c4da0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7964
diff changeset
  4587
twiceDarker
84d3591c4da0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7964
diff changeset
  4588
    "Squeak compatibility:
84d3591c4da0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7964
diff changeset
  4589
     return a new color, which is twice as dark as the receiver"
84d3591c4da0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7964
diff changeset
  4590
84d3591c4da0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7964
diff changeset
  4591
    ^ self darker darker
84d3591c4da0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7964
diff changeset
  4592
84d3591c4da0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7964
diff changeset
  4593
    "
84d3591c4da0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7964
diff changeset
  4594
     (Color red) 
84d3591c4da0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7964
diff changeset
  4595
     (Color red) darker
84d3591c4da0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7964
diff changeset
  4596
     (Color red) twiceDarker
84d3591c4da0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7964
diff changeset
  4597
     (Color red) muchDarker
84d3591c4da0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7964
diff changeset
  4598
    "
84d3591c4da0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7964
diff changeset
  4599
84d3591c4da0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7964
diff changeset
  4600
    "Created: / 05-07-2017 / 09:27:16 / cg"
84d3591c4da0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7964
diff changeset
  4601
!
84d3591c4da0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7964
diff changeset
  4602
2943
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4603
veryMuchLighter
7831
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4604
    "Squeak compatibility:
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4605
     return a new color, which is very much lighter than the receiver"
2943
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4606
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4607
    ^ self mixed:0.1165 with:White
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4608
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4609
    "
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4610
     (Color red) lighter
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4611
     (Color red) muchLighter
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4612
     (Color red) veryMuchLighter
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4613
    "
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  4614
7831
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4615
    "Modified: / 11-06-1996 / 18:10:49 / cg"
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4616
    "Modified (comment): / 03-02-2017 / 11:40:13 / cg"
3396
18f99e9fc5ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3324
diff changeset
  4617
!
18f99e9fc5ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3324
diff changeset
  4618
18f99e9fc5ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3324
diff changeset
  4619
wheel:thisMany
7831
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4620
    "Squeak compatibility:
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4621
     An array of thisMany colors around the color wheel,
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4622
     starting at self and ending all the way around the hue space just before self.  
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4623
     Array is of length thisMany.  
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4624
     Very useful for displaying color based on a variable in your program.  "
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4625
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4626
    | sat l hue step c |
3396
18f99e9fc5ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3324
diff changeset
  4627
18f99e9fc5ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3324
diff changeset
  4628
    thisMany = 1 ifTrue: [^ Array with: self].
7831
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4629
    
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4630
    sat := self saturation.
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4631
    l := self light.
3396
18f99e9fc5ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3324
diff changeset
  4632
    hue := self hue.
18f99e9fc5ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3324
diff changeset
  4633
    step := 360.0 / thisMany.
18f99e9fc5ec *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3324
diff changeset
  4634
    ^ (1 to: thisMany) collect: [:num |
7831
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4635
        c := self class hue: hue light:l saturation: sat.  "hue is taken mod 360"
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4636
        hue := hue + step.
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4637
        c
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4638
    ].
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4639
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4640
    "
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4641
     Color red wheel:20
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4642
     Color red wheel:40
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4643
    "
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4644
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  4645
    "Modified (comment): / 03-02-2017 / 11:50:59 / cg"
1347
4e19b2d586a4 VW now has #on:, but calls it #asDevicePaintOn:
ca
parents: 1326
diff changeset
  4646
! !
4e19b2d586a4 VW now has #on:, but calls it #asDevicePaintOn:
ca
parents: 1326
diff changeset
  4647
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4648
!Color methodsFor:'accessing'!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4649
2942
513981eb5180 prepared support for translucent colors
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  4650
alpha
513981eb5180 prepared support for translucent colors
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  4651
    "return the alpha value (0..1),
513981eb5180 prepared support for translucent colors
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  4652
     where 0 is completely transparent and 1 is completely opaque"
513981eb5180 prepared support for translucent colors
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  4653
513981eb5180 prepared support for translucent colors
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  4654
    ^ 1.
513981eb5180 prepared support for translucent colors
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  4655
!
513981eb5180 prepared support for translucent colors
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  4656
3309
cea34469e23f squeak compatibility
Claus Gittinger <cg@exept.de>
parents: 3277
diff changeset
  4657
alphaByte
cea34469e23f squeak compatibility
Claus Gittinger <cg@exept.de>
parents: 3277
diff changeset
  4658
    "return the alpha byte-value (0..255),
cea34469e23f squeak compatibility
Claus Gittinger <cg@exept.de>
parents: 3277
diff changeset
  4659
     where 0 is completely transparent and 255 is completely opaque"
cea34469e23f squeak compatibility
Claus Gittinger <cg@exept.de>
parents: 3277
diff changeset
  4660
cea34469e23f squeak compatibility
Claus Gittinger <cg@exept.de>
parents: 3277
diff changeset
  4661
    ^ 255.
cea34469e23f squeak compatibility
Claus Gittinger <cg@exept.de>
parents: 3277
diff changeset
  4662
!
cea34469e23f squeak compatibility
Claus Gittinger <cg@exept.de>
parents: 3277
diff changeset
  4663
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4664
blue
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4665
    "return the blue component in percent [0..100]"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4666
8163
55b4897a908f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8137
diff changeset
  4667
    blue notNil ifTrue:[
55b4897a908f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8137
diff changeset
  4668
        ^ blue * 100.0 / MaxValue
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4669
    ].
8163
55b4897a908f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8137
diff changeset
  4670
55b4897a908f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8137
diff changeset
  4671
    (colorId notNil) ifTrue:[
55b4897a908f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8137
diff changeset
  4672
        device notNil ifTrue:[
55b4897a908f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8137
diff changeset
  4673
            device getRGBFrom:colorId into:[:r :g :b | ^ b].
55b4897a908f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8137
diff changeset
  4674
        ].
55b4897a908f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8137
diff changeset
  4675
    ].
55b4897a908f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8137
diff changeset
  4676
    ^ 0
55b4897a908f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8137
diff changeset
  4677
55b4897a908f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8137
diff changeset
  4678
    "Modified: / 05-09-2017 / 12:15:57 / cg"
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4679
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4680
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4681
blueByte
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4682
    "return the blue components value mapped to 0..255"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4683
2183
3c2115660746 removed row[Red/Green/Blue]Byte;
Claus Gittinger <cg@exept.de>
parents: 2096
diff changeset
  4684
    blue isNil ifTrue:[^ nil].
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4685
    ^ blue * 255 // MaxValue
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4686
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4687
    "
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  4688
     Color red blueByte
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  4689
     Color blue blueByte
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  4690
     Color green blueByte
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  4691
     Color black blueByte
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  4692
     Color grey blueByte
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  4693
     Color white blueByte
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4694
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4695
2183
3c2115660746 removed row[Red/Green/Blue]Byte;
Claus Gittinger <cg@exept.de>
parents: 2096
diff changeset
  4696
    "Created: / 7.6.1996 / 18:30:25 / cg"
3c2115660746 removed row[Red/Green/Blue]Byte;
Claus Gittinger <cg@exept.de>
parents: 2096
diff changeset
  4697
    "Modified: / 26.7.1998 / 12:31:44 / cg"
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4698
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4699
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4700
colorId
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4701
    "return the device-dependent color-id"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4702
1238
b363894182d0 prepare for replacement colors
Claus Gittinger <cg@exept.de>
parents: 1237
diff changeset
  4703
    colorId notNil ifTrue:[^ colorId].
b363894182d0 prepare for replacement colors
Claus Gittinger <cg@exept.de>
parents: 1237
diff changeset
  4704
    replacementColor notNil ifTrue:[^ replacementColor colorId].
b363894182d0 prepare for replacement colors
Claus Gittinger <cg@exept.de>
parents: 1237
diff changeset
  4705
    ^ nil
b363894182d0 prepare for replacement colors
Claus Gittinger <cg@exept.de>
parents: 1237
diff changeset
  4706
b363894182d0 prepare for replacement colors
Claus Gittinger <cg@exept.de>
parents: 1237
diff changeset
  4707
    "Modified: 17.1.1997 / 00:03:18 / cg"
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4708
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4709
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4710
cyan
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4711
    "return the cyan component in percent [0..100] in cmy color space"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4712
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4713
    ^ 100 - self red
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4714
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4715
    "Modified: 11.6.1996 / 17:20:07 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4716
    "Created: 11.6.1996 / 18:30:00 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4717
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4718
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4719
device
8966
7cbb2e039c8f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8812
diff changeset
  4720
    <resource: #obsolete>
8812
4a669dd76774 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 8792
diff changeset
  4721
    "return the device I am associated to.
4a669dd76774 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 8792
diff changeset
  4722
     Please use graphicsDevice for ST80 compatibility."
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4723
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4724
    ^ device
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4725
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4726
    "Modified: 23.4.1996 / 13:36:42 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4727
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4728
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4729
deviceBlue
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4730
    "return the actual value of the blue component in percent."
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4731
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4732
    |v|
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4733
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4734
    device getRGBFrom:colorId into:[:r :g :b | v := b].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4735
    ^ v
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4736
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4737
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4738
deviceGreen
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4739
    "return the actual value of the green component in percent.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4740
     (usually 16bit in X; but could be different on other systems)"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4741
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4742
    |v|
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4743
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4744
    device getRGBFrom:colorId into:[:r :g :b | v := g].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4745
    ^ v
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4746
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4747
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4748
deviceRed
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4749
    "return the actual value of the red component in percent."
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4750
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4751
    |v|
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4752
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4753
    device getRGBFrom:colorId into:[:r :g :b | v := r].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4754
    ^ v
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4755
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4756
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4757
     (Color yellow on:Display) deviceRedValue
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4758
     (Color yellow on:aPrinterPage) deviceRedValue
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4759
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4760
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4761
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4762
ditherForm
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4763
    "return the form to dither the color"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4764
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4765
    ^ ditherForm
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4766
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4767
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4768
graphicsDevice
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4769
    "same as #device, for ST-80 compatibility naming.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4770
     Return the device I am associated with."
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4771
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4772
    ^ device
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4773
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4774
    "Created: 28.5.1996 / 18:39:27 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4775
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4776
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4777
green
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4778
    "return the green component in percent [0..100]"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4779
8163
55b4897a908f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8137
diff changeset
  4780
    green notNil ifTrue:[
55b4897a908f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8137
diff changeset
  4781
        ^ green * 100.0 / MaxValue
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4782
    ].
8163
55b4897a908f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8137
diff changeset
  4783
    
55b4897a908f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8137
diff changeset
  4784
    colorId notNil ifTrue:[
55b4897a908f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8137
diff changeset
  4785
        device notNil ifTrue:[
55b4897a908f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8137
diff changeset
  4786
            device getRGBFrom:colorId into:[:r :g :b | ^ g].
55b4897a908f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8137
diff changeset
  4787
        ].
55b4897a908f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8137
diff changeset
  4788
    ].
55b4897a908f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8137
diff changeset
  4789
    ^ 0
55b4897a908f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8137
diff changeset
  4790
55b4897a908f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8137
diff changeset
  4791
    "Modified: / 05-09-2017 / 12:15:10 / cg"
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4792
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4793
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4794
greenByte
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4795
    "return the green components value mapped to 0..255"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4796
2183
3c2115660746 removed row[Red/Green/Blue]Byte;
Claus Gittinger <cg@exept.de>
parents: 2096
diff changeset
  4797
    green isNil ifTrue:[^ nil].
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4798
    ^ green * 255 // MaxValue
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4799
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4800
    "
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  4801
     Color red greenByte
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  4802
     Color blue greenByte
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  4803
     Color green greenByte
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  4804
     Color black greenByte
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  4805
     Color grey greenByte
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  4806
     Color white greenByte
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4807
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4808
2183
3c2115660746 removed row[Red/Green/Blue]Byte;
Claus Gittinger <cg@exept.de>
parents: 2096
diff changeset
  4809
    "Modified: / 26.7.1998 / 12:31:33 / cg"
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4810
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4811
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4812
hue
6654
57ee2fe958b9 class: Color
Claus Gittinger <cg@exept.de>
parents: 6584
diff changeset
  4813
    "return the hue (in hue/light/saturation model) in degrees [0..360].
57ee2fe958b9 class: Color
Claus Gittinger <cg@exept.de>
parents: 6584
diff changeset
  4814
     The hue value is the position on the color wheel.
57ee2fe958b9 class: Color
Claus Gittinger <cg@exept.de>
parents: 6584
diff changeset
  4815
     0 is red, 120 green, 240 blue"
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4816
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4817
    |r g b h|
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4818
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4819
    (red isNil and:[colorId notNil]) ifTrue:[
6654
57ee2fe958b9 class: Color
Claus Gittinger <cg@exept.de>
parents: 6584
diff changeset
  4820
        device getRGBFrom:colorId into:[:xr :xg :xb |
57ee2fe958b9 class: Color
Claus Gittinger <cg@exept.de>
parents: 6584
diff changeset
  4821
            r := xr.
57ee2fe958b9 class: Color
Claus Gittinger <cg@exept.de>
parents: 6584
diff changeset
  4822
            g := xg.
57ee2fe958b9 class: Color
Claus Gittinger <cg@exept.de>
parents: 6584
diff changeset
  4823
            b := xb.
57ee2fe958b9 class: Color
Claus Gittinger <cg@exept.de>
parents: 6584
diff changeset
  4824
        ]
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4825
    ] ifFalse:[
6654
57ee2fe958b9 class: Color
Claus Gittinger <cg@exept.de>
parents: 6584
diff changeset
  4826
        r := self red.
57ee2fe958b9 class: Color
Claus Gittinger <cg@exept.de>
parents: 6584
diff changeset
  4827
        g := self green.
57ee2fe958b9 class: Color
Claus Gittinger <cg@exept.de>
parents: 6584
diff changeset
  4828
        b := self blue.
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4829
    ].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4830
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4831
    self class withHLSFromRed:r green:g blue:b do:[:xh :xl :xs |
6654
57ee2fe958b9 class: Color
Claus Gittinger <cg@exept.de>
parents: 6584
diff changeset
  4832
        h := xh
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4833
    ].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4834
    ^ h
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4835
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4836
    "
7411
9fdde791fac0 #DOCUMENTATION by mawalch
mawalch
parents: 7403
diff changeset
  4837
     Color red hue
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4838
     Color yellow hue
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4839
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4840
6654
57ee2fe958b9 class: Color
Claus Gittinger <cg@exept.de>
parents: 6584
diff changeset
  4841
    "
57ee2fe958b9 class: Color
Claus Gittinger <cg@exept.de>
parents: 6584
diff changeset
  4842
     color wheel:
57ee2fe958b9 class: Color
Claus Gittinger <cg@exept.de>
parents: 6584
diff changeset
  4843
57ee2fe958b9 class: Color
Claus Gittinger <cg@exept.de>
parents: 6584
diff changeset
  4844
     |v|
57ee2fe958b9 class: Color
Claus Gittinger <cg@exept.de>
parents: 6584
diff changeset
  4845
57ee2fe958b9 class: Color
Claus Gittinger <cg@exept.de>
parents: 6584
diff changeset
  4846
     v := View new extent:200@200.
57ee2fe958b9 class: Color
Claus Gittinger <cg@exept.de>
parents: 6584
diff changeset
  4847
     v openAndWait.
57ee2fe958b9 class: Color
Claus Gittinger <cg@exept.de>
parents: 6584
diff changeset
  4848
     0 to:360 do:[:hue |
57ee2fe958b9 class: Color
Claus Gittinger <cg@exept.de>
parents: 6584
diff changeset
  4849
        100 downTo:0 do:[:sat |
57ee2fe958b9 class: Color
Claus Gittinger <cg@exept.de>
parents: 6584
diff changeset
  4850
            |p|
57ee2fe958b9 class: Color
Claus Gittinger <cg@exept.de>
parents: 6584
diff changeset
  4851
            v paint:(Color hue:hue light:50 saturation:sat).
57ee2fe958b9 class: Color
Claus Gittinger <cg@exept.de>
parents: 6584
diff changeset
  4852
            p := Point r:sat degrees:hue.
57ee2fe958b9 class: Color
Claus Gittinger <cg@exept.de>
parents: 6584
diff changeset
  4853
            v displayLineFrom:100@100 to:p+(100@100).
57ee2fe958b9 class: Color
Claus Gittinger <cg@exept.de>
parents: 6584
diff changeset
  4854
        ].
57ee2fe958b9 class: Color
Claus Gittinger <cg@exept.de>
parents: 6584
diff changeset
  4855
     ].
57ee2fe958b9 class: Color
Claus Gittinger <cg@exept.de>
parents: 6584
diff changeset
  4856
    "
57ee2fe958b9 class: Color
Claus Gittinger <cg@exept.de>
parents: 6584
diff changeset
  4857
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4858
    "Modified: 11.6.1996 / 17:14:51 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4859
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4860
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  4861
light
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4862
    "return the light (in hue/light/saturation model) in percent [0..100].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4863
     This corresponds to the brightness of the color (if displayed on
6170
8b03d05c720d class: Color
Claus Gittinger <cg@exept.de>
parents: 6110
diff changeset
  4864
     a b&w television screen).
8b03d05c720d class: Color
Claus Gittinger <cg@exept.de>
parents: 6110
diff changeset
  4865
     Old; please use #brightness (which is 0..1) for compatibility with other smalltalks"
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4866
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4867
    |r g b l|
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4868
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4869
    (red isNil and:[colorId notNil]) ifTrue:[
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  4870
	device getRGBFrom:colorId into:[:xr :xg :xb |
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  4871
	    r := xr.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  4872
	    g := xg.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  4873
	    b := xb.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  4874
	]
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4875
    ] ifFalse:[
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  4876
	r := self red.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  4877
	g := self green.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  4878
	b := self blue.
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4879
    ].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4880
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4881
    self class withHLSFromRed:r green:g blue:b do:[:xh :xl :xs |
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  4882
	l := xl
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4883
    ].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4884
    ^ l
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4885
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4886
    "
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  4887
     Color yellow light
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  4888
     Color yellow darkened light
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4889
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4890
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4891
    "Modified: 11.6.1996 / 17:15:24 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4892
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4893
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4894
magenta
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4895
    "return the magenta component in percent [0..100] in cmy color space"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4896
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4897
    ^ 100 - self green
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4898
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4899
    "Modified: 11.6.1996 / 17:20:07 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4900
    "Created: 11.6.1996 / 18:30:11 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4901
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4902
2945
937fdf02965d more compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 2943
diff changeset
  4903
privateAlpha
937fdf02965d more compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 2943
diff changeset
  4904
    "return the internal alpha value (0..255),
937fdf02965d more compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 2943
diff changeset
  4905
     where 0 is completely transparent and 255 is completely opaque"
937fdf02965d more compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 2943
diff changeset
  4906
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  4907
    ^ 255
2945
937fdf02965d more compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 2943
diff changeset
  4908
937fdf02965d more compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 2943
diff changeset
  4909
!
937fdf02965d more compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 2943
diff changeset
  4910
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4911
red
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4912
    "return the red component in percent [0..100]"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4913
8163
55b4897a908f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8137
diff changeset
  4914
    red notNil ifTrue:[
55b4897a908f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8137
diff changeset
  4915
        ^ red * 100.0 / MaxValue
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4916
    ].
8163
55b4897a908f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8137
diff changeset
  4917
    
55b4897a908f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8137
diff changeset
  4918
    (colorId notNil) ifTrue:[
55b4897a908f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8137
diff changeset
  4919
        device notNil ifTrue:[
55b4897a908f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8137
diff changeset
  4920
            device getRGBFrom:colorId into:[:r :g :b | ^ r].
55b4897a908f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8137
diff changeset
  4921
        ].
55b4897a908f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8137
diff changeset
  4922
    ].
55b4897a908f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8137
diff changeset
  4923
    ^ 0
55b4897a908f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8137
diff changeset
  4924
55b4897a908f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8137
diff changeset
  4925
    "Modified (format): / 05-09-2017 / 12:15:34 / cg"
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4926
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4927
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4928
red:r green:g blue:b
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4929
    "set r/g/b components in percent. This method will change the color lookup
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4930
     table in pseudocolor devices.
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  4931
     This is only allowed for writable colors (i.e. those allocated with
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  4932
     Color>>variableColorOn: on pseudoColor displays).
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  4933
     Using this may make your code unportable, since it depends on a display
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4934
     using palettes (i.e. it will not work on greyScale or b&w displays)."
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4935
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4936
    ^ self scaledRed:(r * MaxValue // 100)
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  4937
	   scaledGreen:(g * MaxValue // 100)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  4938
	   scaledBlue:(b * MaxValue // 100)
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4939
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4940
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4941
     |c|
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4942
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4943
     c := Color variableColorOn:Display.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4944
     c inspect.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4945
     (Delay forSeconds:5) wait.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4946
     c red:100 green:0 blue:0.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4947
     (Delay forSeconds:5) wait.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4948
     c red:0 green:100 blue:0.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4949
     (Delay forSeconds:5) wait.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4950
     c red:0 green:0 blue:100.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4951
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4952
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4953
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4954
redByte
2183
3c2115660746 removed row[Red/Green/Blue]Byte;
Claus Gittinger <cg@exept.de>
parents: 2096
diff changeset
  4955
    "return the red components value mapped to 0..255;
3c2115660746 removed row[Red/Green/Blue]Byte;
Claus Gittinger <cg@exept.de>
parents: 2096
diff changeset
  4956
     nil if it has no red component."
3c2115660746 removed row[Red/Green/Blue]Byte;
Claus Gittinger <cg@exept.de>
parents: 2096
diff changeset
  4957
3c2115660746 removed row[Red/Green/Blue]Byte;
Claus Gittinger <cg@exept.de>
parents: 2096
diff changeset
  4958
    red isNil ifTrue:[^ nil].
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4959
    ^ red * 255 // MaxValue
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4960
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4961
    "
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  4962
     Color red redByte
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  4963
     Color blue redByte
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  4964
     Color green redByte
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  4965
     Color black redByte
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  4966
     Color grey redByte
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  4967
     Color white redByte
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4968
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4969
2183
3c2115660746 removed row[Red/Green/Blue]Byte;
Claus Gittinger <cg@exept.de>
parents: 2096
diff changeset
  4970
    "Modified: / 26.7.1998 / 12:31:22 / cg"
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4971
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  4972
7830
fa41edb7876a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7798
diff changeset
  4973
rgbBytes
fa41edb7876a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7798
diff changeset
  4974
    "return the rgb byteValues as a 3-byte byteArray #[red green blue]"
fa41edb7876a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7798
diff changeset
  4975
fa41edb7876a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7798
diff changeset
  4976
    |r "{ Class: SmallInteger }"
fa41edb7876a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7798
diff changeset
  4977
     g "{ Class: SmallInteger }"
fa41edb7876a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7798
diff changeset
  4978
     b "{ Class: SmallInteger }"|
fa41edb7876a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7798
diff changeset
  4979
fa41edb7876a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7798
diff changeset
  4980
    r := red * 255 // MaxValue.
fa41edb7876a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7798
diff changeset
  4981
    g := green * 255 // MaxValue.
fa41edb7876a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7798
diff changeset
  4982
    b := blue * 255 // MaxValue.
fa41edb7876a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7798
diff changeset
  4983
    ^ ByteArray with:r with:g with:b
fa41edb7876a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7798
diff changeset
  4984
fa41edb7876a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7798
diff changeset
  4985
    "
fa41edb7876a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7798
diff changeset
  4986
     Color red rgbBytes
fa41edb7876a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7798
diff changeset
  4987
     Color blue rgbBytes
fa41edb7876a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7798
diff changeset
  4988
     Color green rgbBytes
fa41edb7876a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7798
diff changeset
  4989
     Color black rgbBytes
fa41edb7876a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7798
diff changeset
  4990
     Color grey rgbBytes
fa41edb7876a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7798
diff changeset
  4991
     Color white rgbBytes
fa41edb7876a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7798
diff changeset
  4992
    "
fa41edb7876a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7798
diff changeset
  4993
fa41edb7876a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7798
diff changeset
  4994
    "Created: / 03-02-2017 / 11:31:24 / cg"
fa41edb7876a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7798
diff changeset
  4995
!
fa41edb7876a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7798
diff changeset
  4996
1929
e500fcf94969 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1928
diff changeset
  4997
rgbValue
e500fcf94969 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1928
diff changeset
  4998
    "return the rgb byteValues packed into a 24bit integer;
e500fcf94969 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1928
diff changeset
  4999
     The returned value is composed of r<<16 + g<<8 + b."
e500fcf94969 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1928
diff changeset
  5000
e500fcf94969 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1928
diff changeset
  5001
    |t "{ Class: SmallInteger }"
e500fcf94969 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1928
diff changeset
  5002
     v "{ Class: SmallInteger }"|
e500fcf94969 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1928
diff changeset
  5003
e500fcf94969 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1928
diff changeset
  5004
    v := red * 255 // MaxValue.
e500fcf94969 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1928
diff changeset
  5005
    t := green * 255 // MaxValue.
e500fcf94969 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1928
diff changeset
  5006
    v := (v bitShift:8) + t.
e500fcf94969 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1928
diff changeset
  5007
    t := blue * 255 // MaxValue.
e500fcf94969 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1928
diff changeset
  5008
    ^ (v bitShift:8) + t.
e500fcf94969 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1928
diff changeset
  5009
e500fcf94969 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1928
diff changeset
  5010
    "
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5011
     Color red rgbValue hexPrintString
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5012
     Color blue rgbValue hexPrintString
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5013
     Color green rgbValue hexPrintString
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5014
     Color black rgbValue hexPrintString
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5015
     Color grey rgbValue hexPrintString
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5016
     Color white rgbValue hexPrintString
1929
e500fcf94969 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1928
diff changeset
  5017
    "
e500fcf94969 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1928
diff changeset
  5018
e500fcf94969 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1928
diff changeset
  5019
    "Modified: 17.10.1997 / 20:00:25 / cg"
e500fcf94969 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1928
diff changeset
  5020
!
e500fcf94969 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1928
diff changeset
  5021
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5022
saturation
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5023
    "return the saturation (in hue/light/saturation model) in percent [0..100].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5024
     This corresponds to the saturation setting of a color TV"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5025
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5026
    |r g b s|
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5027
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5028
    (red isNil and:[colorId notNil]) ifTrue:[
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5029
	device getRGBFrom:colorId into:[:xr :xg :xb |
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5030
	    r := xr.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5031
	    g := xg.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5032
	    b := xb.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5033
	]
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5034
    ] ifFalse:[
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5035
	r := self red.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5036
	g := self green.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5037
	b := self blue.
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5038
    ].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5039
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5040
    self class withHLSFromRed:r green:g blue:b do:[:xh :xl :xs |
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5041
	s := xs
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5042
    ].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5043
    ^ s
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5044
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5045
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5046
     Color yellow saturation
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5047
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5048
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5049
    "Modified: 11.6.1996 / 17:15:47 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5050
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5051
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5052
scaledAlpha
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5053
    "ST-80 compatibility:
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5054
     return the alpha components value mapped to 0..MaxValue"
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5055
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5056
    ^ MaxValue
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5057
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5058
    "
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5059
     Color blue scaledBlue
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5060
     Color black scaledBlue
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5061
     Color grey scaledBlue
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5062
    "
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5063
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5064
    "Modified: 7.6.1996 / 18:32:30 / cg"
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5065
!
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5066
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5067
scaledBlue
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5068
    "ST-80 compatibility:
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5069
     return the blue components value mapped to 0..MaxValue"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5070
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5071
    ^ blue
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5072
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5073
    "
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5074
     Color blue scaledBlue
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5075
     Color black scaledBlue
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5076
     Color grey scaledBlue
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5077
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5078
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5079
    "Modified: 7.6.1996 / 18:32:30 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5080
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5081
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5082
scaledGray
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5083
    "return the grey intensity scaled to 0..MaxValue"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5084
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5085
    ^ ((red * 3) + (green * 6) + blue) // 10
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5086
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5087
    "
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5088
     Color blue scaledGray
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5089
     Color black scaledGray
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5090
     Color white scaledGray
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5091
     Color grey scaledGray
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5092
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5093
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5094
    "Modified: 11.6.1996 / 14:43:51 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5095
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5096
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5097
scaledGreen
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5098
    "ST-80 compatibility:
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5099
     return the green components value mapped to 0..MaxValue"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5100
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5101
    ^ green
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5102
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5103
    "
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5104
     Color green scaledRed
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5105
     Color black scaledRed
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5106
     Color grey scaledRed
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5107
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5108
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5109
    "Modified: 7.6.1996 / 18:32:38 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5110
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5111
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5112
scaledRed
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5113
    "ST-80 compatibility:
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5114
     return the red components value mapped to 0..MaxValue"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5115
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5116
    ^ red
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5117
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5118
    "
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5119
     Color red scaledRed
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5120
     Color black scaledRed
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5121
     Color grey scaledRed
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5122
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5123
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5124
    "Modified: 7.6.1996 / 18:32:43 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5125
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5126
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5127
scaledRed:r scaledGreen:g scaledBlue:b
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5128
    "set r/g/b components in 0..MaxValue.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5129
     This method will change the color lookup table in pseudocolor devices.
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5130
     This is only allowed for writable colors (i.e. those allocated with
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5131
     Color>>variableColorOn: on pseudoColor displays).
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5132
     Using this may make your code unportable, since it depends on a display
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5133
     using palettes (i.e. it will not work on greyScale or b&w displays)."
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5134
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5135
    (colorId isNil or:[red notNil]) ifTrue:[
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5136
	^ self error:'operation is not allowed for shared colors'
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5137
    ].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5138
    device setColor:colorId scaledRed:r scaledGreen:g scaledBlue:b
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5139
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5140
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5141
writable
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5142
    "return true, if this is a writable colorcell"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5143
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5144
    ^ writable == true
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5145
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5146
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5147
yellow
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5148
    "return the yellow component in percent [0..100] in cmy color space"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5149
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5150
    ^ 100 - self blue
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5151
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5152
    "Modified: 11.6.1996 / 17:20:07 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5153
    "Created: 11.6.1996 / 18:30:20 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5154
! !
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5155
5131
95d91d6d649c care for invalid hue/light/saturation
Claus Gittinger <cg@exept.de>
parents: 5127
diff changeset
  5156
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5157
!Color methodsFor:'comparing'!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5158
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5159
= aColor
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5160
    "two colors are considered equal, if the color components are;
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5161
     independent of the device, the color is on"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5162
2083
117f2e5ca733 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2077
diff changeset
  5163
    aColor == self ifTrue:[^ true].
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5164
    aColor isColor ifTrue:[
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5165
	(red == aColor scaledRed) ifTrue:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5166
	    (green == aColor scaledGreen) ifTrue:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5167
		(blue == aColor scaledBlue) ifTrue:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5168
		    ^ true
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5169
		]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5170
	    ]
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5171
	]
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5172
    ].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5173
    ^ false
2083
117f2e5ca733 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2077
diff changeset
  5174
117f2e5ca733 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2077
diff changeset
  5175
    "Modified: / 2.4.1998 / 10:04:39 / cg"
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5176
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5177
1390
4b519886451f added #almostSameAs:
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  5178
almostSameAs:aColor
4b519886451f added #almostSameAs:
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  5179
    "return true, if aColor looks almost the same as the receiver
4b519886451f added #almostSameAs:
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  5180
     (i.e. the components differ by a small, invisible amount).
4b519886451f added #almostSameAs:
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  5181
     We assume, that the human eye can distinguish roughly 100 grey levels
4b519886451f added #almostSameAs:
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  5182
     (which is optimistic ;-);
4b519886451f added #almostSameAs:
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  5183
     therefore, allow a 1 percent difference in each component for the colors
4b519886451f added #almostSameAs:
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  5184
     to compare as looking the same."
4b519886451f added #almostSameAs:
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  5185
4b519886451f added #almostSameAs:
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  5186
     (self red - aColor red) abs > 1 ifTrue:[^ false].
4b519886451f added #almostSameAs:
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  5187
     (self green - aColor green) abs > 1 ifTrue:[^ false].
4b519886451f added #almostSameAs:
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  5188
     (self blue - aColor blue) abs > 1 ifTrue:[^ false].
4b519886451f added #almostSameAs:
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  5189
     ^ true
4b519886451f added #almostSameAs:
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  5190
4b519886451f added #almostSameAs:
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  5191
     "
4b519886451f added #almostSameAs:
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  5192
      (Color red:10 green:10 blue:10) almostSameAs:(Color red:11 green:11 blue:11)
4b519886451f added #almostSameAs:
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  5193
     "
4b519886451f added #almostSameAs:
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  5194
4b519886451f added #almostSameAs:
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  5195
    "Modified: 28.2.1997 / 12:00:01 / cg"
4b519886451f added #almostSameAs:
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  5196
!
4b519886451f added #almostSameAs:
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  5197
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5198
hash
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5199
    "return an integer useful as hash key for the receiver.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5200
     Redefined since = is redefined"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5201
2318
36d73b850969 fixed hash for colorId colors.
Claus Gittinger <cg@exept.de>
parents: 2313
diff changeset
  5202
    red isNil ifTrue:[
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5203
	^ colorId
2318
36d73b850969 fixed hash for colorId colors.
Claus Gittinger <cg@exept.de>
parents: 2313
diff changeset
  5204
    ].
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5205
    ^ red + green + blue
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5206
! !
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5207
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5208
!Color methodsFor:'converting'!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5209
6830
4b029193d399 class: Color
Claus Gittinger <cg@exept.de>
parents: 6793
diff changeset
  5210
asByteArray
7831
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  5211
    "return the rgb byteValues as a 3-byte byteArray #[red green blue]"
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  5212
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  5213
    ^ self rgbBytes.
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  5214
"/    ^ByteArray
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  5215
"/            with: self redByte
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  5216
"/            with: self greenByte
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  5217
"/            with: self blueByte
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  5218
460d842964af #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 7830
diff changeset
  5219
    "Modified: / 03-02-2017 / 11:33:23 / cg"
6830
4b029193d399 class: Color
Claus Gittinger <cg@exept.de>
parents: 6793
diff changeset
  5220
!
4b029193d399 class: Color
Claus Gittinger <cg@exept.de>
parents: 6793
diff changeset
  5221
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5222
fromLiteralArrayEncoding:encoding
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5223
    "read my values from an encoding.
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5224
     The encoding is supposed to be either of the form:
6552
9a9548feb83c class: Color
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  5225
        (#Color redPart greenPart bluePart)
2778
3ef64f104266 allow 'Color colorName' in literalEncoding.
Claus Gittinger <cg@exept.de>
parents: 2455
diff changeset
  5226
     or:
6552
9a9548feb83c class: Color
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  5227
        (#Color constantColorSymbol)
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5228
     This is the reverse operation to #literalArrayEncoding."
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5229
6552
9a9548feb83c class: Color
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  5230
    |clr nameOrRGB|
2778
3ef64f104266 allow 'Color colorName' in literalEncoding.
Claus Gittinger <cg@exept.de>
parents: 2455
diff changeset
  5231
8243
c16d146a30e1 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 8171
diff changeset
  5232
    red notNil ifTrue:[
c16d146a30e1 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 8171
diff changeset
  5233
        "oops cannot change an existing color (you want to make red be green - or what)"
c16d146a30e1 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 8171
diff changeset
  5234
        self error:'Colors cannot change their components'.
c16d146a30e1 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 8171
diff changeset
  5235
        ^ self
c16d146a30e1 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 8171
diff changeset
  5236
    ].
c16d146a30e1 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 8171
diff changeset
  5237
2778
3ef64f104266 allow 'Color colorName' in literalEncoding.
Claus Gittinger <cg@exept.de>
parents: 2455
diff changeset
  5238
    encoding size == 2 ifTrue:[
6552
9a9548feb83c class: Color
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  5239
        nameOrRGB := encoding at:2.
7411
9fdde791fac0 #DOCUMENTATION by mawalch
mawalch
parents: 7403
diff changeset
  5240
        nameOrRGB isSymbol ifTrue:[
8243
c16d146a30e1 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 8171
diff changeset
  5241
            clr := self class name:nameOrRGB
7411
9fdde791fac0 #DOCUMENTATION by mawalch
mawalch
parents: 7403
diff changeset
  5242
        ] ifFalse:[
7762
29af5517f03a #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7758
diff changeset
  5243
            clr := self class rgbValue:nameOrRGB.
6552
9a9548feb83c class: Color
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  5244
        ].
9a9548feb83c class: Color
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  5245
        red := clr scaledRed.
9a9548feb83c class: Color
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  5246
        green := clr scaledGreen.
9a9548feb83c class: Color
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  5247
        blue := clr scaledBlue
2778
3ef64f104266 allow 'Color colorName' in literalEncoding.
Claus Gittinger <cg@exept.de>
parents: 2455
diff changeset
  5248
    ] ifFalse:[
8243
c16d146a30e1 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 8171
diff changeset
  5249
        red := ((encoding at:2) / 100.0 * MaxValue) rounded.
c16d146a30e1 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 8171
diff changeset
  5250
        green := ((encoding at:3) / 100.0 * MaxValue) rounded.
c16d146a30e1 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 8171
diff changeset
  5251
        blue := ((encoding at:4) / 100.0 * MaxValue) rounded.
2778
3ef64f104266 allow 'Color colorName' in literalEncoding.
Claus Gittinger <cg@exept.de>
parents: 2455
diff changeset
  5252
    ].
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5253
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5254
    "
8243
c16d146a30e1 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 8171
diff changeset
  5255
      Color new fromLiteralArrayEncoding:#(Color 50 25 25)
c16d146a30e1 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 8171
diff changeset
  5256
      Color new fromLiteralArrayEncoding:#(Color 16rFF00FF)
c16d146a30e1 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 8171
diff changeset
  5257
      Color new fromLiteralArrayEncoding:#(Color blue)
c16d146a30e1 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 8171
diff changeset
  5258
    "
c16d146a30e1 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 8171
diff changeset
  5259
c16d146a30e1 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 8171
diff changeset
  5260
    "Modified (comment): / 11-01-2018 / 12:42:56 / stefan"
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5261
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5262
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5263
literalArrayEncoding
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5264
    "encode myself as an array, from which a copy of the receiver
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5265
     can be reconstructed with #decodeAsLiteralArray.
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5266
     The encoding is:
6552
9a9548feb83c class: Color
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  5267
        (#Color redPart greenPart bluePart)
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5268
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5269
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5270
    ^ Array
6552
9a9548feb83c class: Color
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  5271
        with:self class name
7411
9fdde791fac0 #DOCUMENTATION by mawalch
mawalch
parents: 7403
diff changeset
  5272
        with:((red * 100.0 / MaxValue) roundTo:0.25)
9fdde791fac0 #DOCUMENTATION by mawalch
mawalch
parents: 7403
diff changeset
  5273
        with:((green * 100.0 / MaxValue) roundTo:0.25)
9fdde791fac0 #DOCUMENTATION by mawalch
mawalch
parents: 7403
diff changeset
  5274
        with:((blue * 100.0 / MaxValue) roundTo:0.25)
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5275
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5276
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5277
      Color new fromLiteralArrayEncoding:#(#Color 50 25 25)
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5278
      (Color red:25 green:30 blue:70) literalArrayEncoding
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5279
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5280
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5281
    "Modified: 22.4.1996 / 13:00:11 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5282
! !
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5283
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5284
!Color methodsFor:'copying'!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5285
2910
97a836c7e15c deepCopy fix (do not copy device dependent stuff)
Claus Gittinger <cg@exept.de>
parents: 2889
diff changeset
  5286
skipInstvarIndexInDeepCopy:index
97a836c7e15c deepCopy fix (do not copy device dependent stuff)
Claus Gittinger <cg@exept.de>
parents: 2889
diff changeset
  5287
    index == 4 ifTrue:[
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5288
	^ true "/ skip device
2910
97a836c7e15c deepCopy fix (do not copy device dependent stuff)
Claus Gittinger <cg@exept.de>
parents: 2889
diff changeset
  5289
    ].
97a836c7e15c deepCopy fix (do not copy device dependent stuff)
Claus Gittinger <cg@exept.de>
parents: 2889
diff changeset
  5290
    index == 5 ifTrue:[
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5291
	^ true "/ skip colorId
2910
97a836c7e15c deepCopy fix (do not copy device dependent stuff)
Claus Gittinger <cg@exept.de>
parents: 2889
diff changeset
  5292
    ].
97a836c7e15c deepCopy fix (do not copy device dependent stuff)
Claus Gittinger <cg@exept.de>
parents: 2889
diff changeset
  5293
    index == 6 ifTrue:[
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5294
	^ true "/ skip ditherForm
2910
97a836c7e15c deepCopy fix (do not copy device dependent stuff)
Claus Gittinger <cg@exept.de>
parents: 2889
diff changeset
  5295
    ].
97a836c7e15c deepCopy fix (do not copy device dependent stuff)
Claus Gittinger <cg@exept.de>
parents: 2889
diff changeset
  5296
    index == 7 ifTrue:[
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5297
	^ true "/ skip replacementColor
2910
97a836c7e15c deepCopy fix (do not copy device dependent stuff)
Claus Gittinger <cg@exept.de>
parents: 2889
diff changeset
  5298
    ].
97a836c7e15c deepCopy fix (do not copy device dependent stuff)
Claus Gittinger <cg@exept.de>
parents: 2889
diff changeset
  5299
    ^ false
97a836c7e15c deepCopy fix (do not copy device dependent stuff)
Claus Gittinger <cg@exept.de>
parents: 2889
diff changeset
  5300
97a836c7e15c deepCopy fix (do not copy device dependent stuff)
Claus Gittinger <cg@exept.de>
parents: 2889
diff changeset
  5301
    "
97a836c7e15c deepCopy fix (do not copy device dependent stuff)
Claus Gittinger <cg@exept.de>
parents: 2889
diff changeset
  5302
     (Color black onDevice:Screen current) deepCopy
97a836c7e15c deepCopy fix (do not copy device dependent stuff)
Claus Gittinger <cg@exept.de>
parents: 2889
diff changeset
  5303
    "
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5304
! !
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5305
8692
665f0ed62ebe #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 8660
diff changeset
  5306
!Color methodsFor:'copying-private'!
665f0ed62ebe #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 8660
diff changeset
  5307
665f0ed62ebe #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 8660
diff changeset
  5308
postCopy
665f0ed62ebe #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 8660
diff changeset
  5309
    "redefined to clear out any device handles in the copy"
665f0ed62ebe #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 8660
diff changeset
  5310
665f0ed62ebe #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 8660
diff changeset
  5311
    device := colorId := ditherForm := replacementColor := nil
665f0ed62ebe #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 8660
diff changeset
  5312
665f0ed62ebe #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 8660
diff changeset
  5313
    "Modified: 17.1.1997 / 00:03:42 / cg"
665f0ed62ebe #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 8660
diff changeset
  5314
! !
665f0ed62ebe #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 8660
diff changeset
  5315
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5316
!Color methodsFor:'getting a device color'!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5317
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5318
exactOn:aDevice
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5319
    "create a new Color representing the same color as
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5320
     myself on aDevice; if one already exists, return the one.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5321
     Do not dither or otherwise approximate the color, but return
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5322
     nil, if the exact color is not available.
7403
9a4c5d6da62c #OTHER by mawalch
mawalch
parents: 7360
diff changeset
  5323
     Used to acquire primary colors for dithering, during startup."
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5324
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5325
    |newColor id r g b|
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5326
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5327
    "if Iam already assigned to that device ..."
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5328
    (device == aDevice and:[ditherForm isNil]) ifTrue:[^ self].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5329
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5330
    r := red.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5331
    g := green.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5332
    b := blue.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5333
1239
f4bd3bc9f3f9 oops - dont round when searching for existing colors
Claus Gittinger <cg@exept.de>
parents: 1238
diff changeset
  5334
    "first look if not already there"
7762
29af5517f03a #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7758
diff changeset
  5335
    newColor := self class existingColorScaledRed:r scaledGreen:g scaledBlue:b on:aDevice.
1239
f4bd3bc9f3f9 oops - dont round when searching for existing colors
Claus Gittinger <cg@exept.de>
parents: 1238
diff changeset
  5336
    (newColor notNil and:[newColor ditherForm isNil]) ifTrue:[^ newColor].
f4bd3bc9f3f9 oops - dont round when searching for existing colors
Claus Gittinger <cg@exept.de>
parents: 1238
diff changeset
  5337
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5338
    r := (r bitAnd:16rFF00) bitOr:(r bitShift:-8).
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5339
    g := (g bitAnd:16rFF00) bitOr:(g bitShift:-8).
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5340
    b := (b bitAnd:16rFF00) bitOr:(b bitShift:-8).
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5341
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5342
    "ask that device for the color"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5343
    id := aDevice colorScaledRed:r scaledGreen:g scaledBlue:b.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5344
    id isNil ifTrue:[
7403
9a4c5d6da62c #OTHER by mawalch
mawalch
parents: 7360
diff changeset
  5345
        "/ this is a kludge: scavenge to free unused colors
9a4c5d6da62c #OTHER by mawalch
mawalch
parents: 7360
diff changeset
  5346
        "/  and try again ...
9a4c5d6da62c #OTHER by mawalch
mawalch
parents: 7360
diff changeset
  5347
        ObjectMemory scavenge; finalize.
9a4c5d6da62c #OTHER by mawalch
mawalch
parents: 7360
diff changeset
  5348
        id := aDevice colorScaledRed:r scaledGreen:g scaledBlue:b
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5349
    ].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5350
    id isNil ifTrue:[
7403
9a4c5d6da62c #OTHER by mawalch
mawalch
parents: 7360
diff changeset
  5351
        "no such color - fail"
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5352
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5353
"/      'COLOR: no color for ' infoPrint. self displayString infoPrintCR.
7403
9a4c5d6da62c #OTHER by mawalch
mawalch
parents: 7360
diff changeset
  5354
        ^ nil
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5355
    ].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5356
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5357
    "receiver was not associated - do it now"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5358
    device isNil ifTrue:[
7403
9a4c5d6da62c #OTHER by mawalch
mawalch
parents: 7360
diff changeset
  5359
        device := aDevice.
9a4c5d6da62c #OTHER by mawalch
mawalch
parents: 7360
diff changeset
  5360
        colorId := id.
9a4c5d6da62c #OTHER by mawalch
mawalch
parents: 7360
diff changeset
  5361
9a4c5d6da62c #OTHER by mawalch
mawalch
parents: 7360
diff changeset
  5362
        aDevice visualType ~~ #TrueColor ifTrue:[
9a4c5d6da62c #OTHER by mawalch
mawalch
parents: 7360
diff changeset
  5363
            "/ Lobby register:self.
9a4c5d6da62c #OTHER by mawalch
mawalch
parents: 7360
diff changeset
  5364
            aDevice registerColor:self.
9a4c5d6da62c #OTHER by mawalch
mawalch
parents: 7360
diff changeset
  5365
        ].
9a4c5d6da62c #OTHER by mawalch
mawalch
parents: 7360
diff changeset
  5366
        ^ self
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5367
    ].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5368
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5369
    "receiver was already associated to another device - need a new color"
8277
942b74deecfe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 8243
diff changeset
  5370
    newColor := (self class basicNew) 
942b74deecfe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 8243
diff changeset
  5371
                    setScaledRed:r scaledGreen:g scaledBlue:b 
942b74deecfe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 8243
diff changeset
  5372
                    device:aDevice.
1238
b363894182d0 prepare for replacement colors
Claus Gittinger <cg@exept.de>
parents: 1237
diff changeset
  5373
    newColor setColorId:id.
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5374
    aDevice visualType ~~ #TrueColor ifTrue:[
7403
9a4c5d6da62c #OTHER by mawalch
mawalch
parents: 7360
diff changeset
  5375
        "/ Lobby register:newColor.
9a4c5d6da62c #OTHER by mawalch
mawalch
parents: 7360
diff changeset
  5376
        aDevice registerColor:newColor.
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5377
    ].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5378
    ^ newColor
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5379
1365
37a9e7ac4dbc moved color registration from Color class to per-device lobby
Claus Gittinger <cg@exept.de>
parents: 1348
diff changeset
  5380
    "Modified: 24.2.1997 / 18:23:20 / cg"
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5381
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5382
1856
50a92c932fbd added #exactOrNearestOn:
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  5383
exactOrNearestOn:aDevice
50a92c932fbd added #exactOrNearestOn:
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  5384
    "get a device color for the receiver, which is either exact
50a92c932fbd added #exactOrNearestOn:
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  5385
     or the nearest, but never dithered.
50a92c932fbd added #exactOrNearestOn:
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  5386
     This can be used for viewBackgrounds, where the exact greyLevel
50a92c932fbd added #exactOrNearestOn:
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  5387
     does not matter, but a dithered color is not wanted."
50a92c932fbd added #exactOrNearestOn:
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  5388
50a92c932fbd added #exactOrNearestOn:
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  5389
    |deviceColor|
50a92c932fbd added #exactOrNearestOn:
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  5390
50a92c932fbd added #exactOrNearestOn:
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  5391
    deviceColor := self exactOn:aDevice.
50a92c932fbd added #exactOrNearestOn:
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  5392
    deviceColor isNil ifTrue:[
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5393
	deviceColor := self nearestOn:aDevice
1856
50a92c932fbd added #exactOrNearestOn:
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  5394
    ].
50a92c932fbd added #exactOrNearestOn:
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  5395
    ^ deviceColor
50a92c932fbd added #exactOrNearestOn:
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  5396
50a92c932fbd added #exactOrNearestOn:
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  5397
    "Created: 13.8.1997 / 15:25:48 / cg"
50a92c932fbd added #exactOrNearestOn:
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  5398
!
50a92c932fbd added #exactOrNearestOn:
Claus Gittinger <cg@exept.de>
parents: 1855
diff changeset
  5399
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5400
nearestIn:aColorMap
2198
122ff0da86d6 added support to find the nearest color in a colorMap.
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
  5401
    "return the nearest color in a colorMap"
122ff0da86d6 added support to find the nearest color in a colorMap.
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
  5402
122ff0da86d6 added support to find the nearest color in a colorMap.
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
  5403
    ^ self class
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5404
	nearestColorScaledRed:(self scaledRed)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5405
		  scaledGreen:(self scaledGreen)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5406
		   scaledBlue:(self scaledBlue)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5407
			   on:nil
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5408
			   in:aColorMap
2198
122ff0da86d6 added support to find the nearest color in a colorMap.
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
  5409
122ff0da86d6 added support to find the nearest color in a colorMap.
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
  5410
    "Created: / 28.7.1998 / 20:42:11 / cg"
122ff0da86d6 added support to find the nearest color in a colorMap.
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
  5411
!
122ff0da86d6 added support to find the nearest color in a colorMap.
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
  5412
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5413
nearestOn:aDevice
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5414
    "create a new Color representing the same color as myself on aDevice;
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5415
     if one already exists, return the one. If no exact match is found,
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5416
     search for the nearest match"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5417
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5418
    |newColor id|
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5419
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5420
    "if I'am already assigned to that device ..."
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5421
    (device == aDevice) ifTrue:[^ self].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5422
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5423
    "first look if not already there"
7762
29af5517f03a #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7758
diff changeset
  5424
    newColor := self class nearestColorScaledRed:red scaledGreen:green scaledBlue:blue on:aDevice.
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5425
    newColor notNil ifTrue:[^ newColor].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5426
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5427
    "ask that device for the color"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5428
    id := aDevice colorScaledRed:red scaledGreen:green scaledBlue:blue.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5429
    id isNil ifTrue:[
7762
29af5517f03a #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7758
diff changeset
  5430
        "this is a kludge:
29af5517f03a #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7758
diff changeset
  5431
            scavenge to possuby free unused colors and try again ...
29af5517f03a #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7758
diff changeset
  5432
            this is a compromise: actually a full GC is required here,
29af5517f03a #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7758
diff changeset
  5433
            but that is too expensive.
29af5517f03a #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7758
diff changeset
  5434
        "
29af5517f03a #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7758
diff changeset
  5435
        ObjectMemory scavenge; finalize.
29af5517f03a #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7758
diff changeset
  5436
        id := aDevice colorScaledRed:red scaledGreen:green scaledBlue:blue
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5437
    ].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5438
    id isNil ifTrue:[
7762
29af5517f03a #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7758
diff changeset
  5439
        "no color - fail"
29af5517f03a #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7758
diff changeset
  5440
29af5517f03a #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7758
diff changeset
  5441
        ^ nil
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5442
    ].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5443
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5444
    "receiver was not associated - do it now"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5445
    device isNil ifTrue:[
7762
29af5517f03a #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7758
diff changeset
  5446
        device := aDevice.
29af5517f03a #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7758
diff changeset
  5447
        colorId := id.
29af5517f03a #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7758
diff changeset
  5448
29af5517f03a #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7758
diff changeset
  5449
        aDevice visualType ~~ #TrueColor ifTrue:[
29af5517f03a #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7758
diff changeset
  5450
            "/ Lobby register:self.
29af5517f03a #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7758
diff changeset
  5451
            aDevice registerColor:self.
29af5517f03a #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7758
diff changeset
  5452
        ].
29af5517f03a #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7758
diff changeset
  5453
        ^ self
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5454
    ].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5455
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5456
    "receiver was already associated to another device - need a new color"
8277
942b74deecfe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 8243
diff changeset
  5457
    newColor := (self class basicNew) 
942b74deecfe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 8243
diff changeset
  5458
                    setScaledRed:red scaledGreen:green scaledBlue:blue 
942b74deecfe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 8243
diff changeset
  5459
                    device:aDevice.
1238
b363894182d0 prepare for replacement colors
Claus Gittinger <cg@exept.de>
parents: 1237
diff changeset
  5460
    newColor setColorId:id.
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5461
    aDevice visualType ~~ #TrueColor ifTrue:[
7762
29af5517f03a #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7758
diff changeset
  5462
        "/ Lobby register:newColor.
29af5517f03a #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7758
diff changeset
  5463
        aDevice registerColor:newColor.
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5464
    ].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5465
    ^ newColor
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5466
1365
37a9e7ac4dbc moved color registration from Color class to per-device lobby
Claus Gittinger <cg@exept.de>
parents: 1348
diff changeset
  5467
    "Modified: 24.2.1997 / 18:23:26 / cg"
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5468
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5469
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5470
on:aDevice
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5471
    "create a new Color representing the same color as
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5472
     myself on aDevice; if one already exists, return the one"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5473
3623
16665d9b7263 #on: -> #onDevice
Claus Gittinger <cg@exept.de>
parents: 3611
diff changeset
  5474
    "/ send out a warning: #on: is typically used to create views
16665d9b7263 #on: -> #onDevice
Claus Gittinger <cg@exept.de>
parents: 3611
diff changeset
  5475
    "/ operating on a model.
16665d9b7263 #on: -> #onDevice
Claus Gittinger <cg@exept.de>
parents: 3611
diff changeset
  5476
    "/ Please use #onDevice: to avoid confusion.
16665d9b7263 #on: -> #onDevice
Claus Gittinger <cg@exept.de>
parents: 3611
diff changeset
  5477
16665d9b7263 #on: -> #onDevice
Claus Gittinger <cg@exept.de>
parents: 3611
diff changeset
  5478
    <resource:#obsolete>
16665d9b7263 #on: -> #onDevice
Claus Gittinger <cg@exept.de>
parents: 3611
diff changeset
  5479
16665d9b7263 #on: -> #onDevice
Claus Gittinger <cg@exept.de>
parents: 3611
diff changeset
  5480
    self obsoleteMethodWarning:'use #onDevice:'.
2836
6c1f6b223329 #on: -> #onDevice:
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  5481
    ^ self onDevice:aDevice
6c1f6b223329 #on: -> #onDevice:
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  5482
6c1f6b223329 #on: -> #onDevice:
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  5483
    "Created: / 16.11.1995 / 20:16:42 / cg"
6c1f6b223329 #on: -> #onDevice:
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  5484
    "Modified: / 8.9.1998 / 17:32:10 / cg"
6c1f6b223329 #on: -> #onDevice:
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  5485
!
6c1f6b223329 #on: -> #onDevice:
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  5486
6c1f6b223329 #on: -> #onDevice:
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  5487
onDevice:aDevice
6c1f6b223329 #on: -> #onDevice:
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  5488
    "create a new Color representing the same color as
6c1f6b223329 #on: -> #onDevice:
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  5489
     myself on aDevice; if one already exists, return the one"
6c1f6b223329 #on: -> #onDevice:
Claus Gittinger <cg@exept.de>
parents: 2828
diff changeset
  5490
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5491
    |newColor id form
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5492
     greyV "{ Class: SmallInteger }"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5493
     rV    "{ Class: SmallInteger }"
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5494
     gV    "{ Class: SmallInteger }"
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5495
     bV    "{ Class: SmallInteger }"
2375
265a5137e286 oops - possible color reuse between devices fixed
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
  5496
     deviceVisual deviceFixColors deviceDepth|
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5497
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5498
    "/ the most common cases (already allocated) first
1233
c6796bddc7d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1229
diff changeset
  5499
c6796bddc7d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1229
diff changeset
  5500
    colorId notNil ifTrue:[
7291
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5501
        "/ is someone validating me before drawing on aDevice ?
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5502
        (aDevice notNil and:[aDevice == device]) ifTrue:[
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5503
            ^ self
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5504
        ].
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5505
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5506
        "/ a special case for pseudo-colors (0 and 1 in bitmaps)
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5507
        "/ those have nil r/g/b values, but a nonNil colorId
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5508
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5509
        red isNil ifTrue:[^ self].
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5510
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5511
        "/ want to release color ?
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5512
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5513
        (aDevice isNil and:[device notNil]) ifTrue:[
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5514
            "/ trueColor device-colors are not registered
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5515
            device visualType ~~ #TrueColor ifTrue:[
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5516
                device unregisterColor:newColor.
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5517
                device freeColor:colorId
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5518
            ].
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5519
            device := nil.
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5520
            colorId := nil.
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5521
            ^ self
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5522
        ].
1205
e28b664586f8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  5523
    ].
2313
35b10e50a455 care for early onDevice:nil
Claus Gittinger <cg@exept.de>
parents: 2288
diff changeset
  5524
    aDevice isNil ifTrue:[
7291
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5525
        ^ self
2313
35b10e50a455 care for early onDevice:nil
Claus Gittinger <cg@exept.de>
parents: 2288
diff changeset
  5526
    ].
1205
e28b664586f8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  5527
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  5528
    device == aDevice ifTrue:[
7291
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5529
        ditherForm notNil ifTrue:[
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5530
            ^ self
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5531
        ]
1707
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  5532
    ].
c4ba0f13330c made all dither stuff class protocol
Claus Gittinger <cg@exept.de>
parents: 1621
diff changeset
  5533
7650
5781e05a6a1d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7642
diff changeset
  5534
    "/ on high-resolution true-color systems, don't care for dithering and
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5535
    "/ especially freeing colors
2842
dcb1f8eb648f removed obsolete method
Claus Gittinger <cg@exept.de>
parents: 2836
diff changeset
  5536
    "/ (no need to register)
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5537
2375
265a5137e286 oops - possible color reuse between devices fixed
Claus Gittinger <cg@exept.de>
parents: 2318
diff changeset
  5538
    deviceDepth := aDevice depth.
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5539
    (deviceVisual := aDevice visualType) == #TrueColor ifTrue:[
7291
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5540
        deviceDepth >= 15 ifTrue:[
8165
dec0d9176839 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8163
diff changeset
  5541
            id := aDevice colorScaledRed:(red ? 0) scaledGreen:(green ? 0) scaledBlue:(blue ? 0).
7291
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5542
            id notNil ifTrue:[
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5543
                device isNil ifTrue:[
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5544
                    "/ receiver was not associated - do it now & return mySelf
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5545
                    colorId := id.
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5546
                    ditherForm := nil.
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5547
                    device := aDevice.
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5548
                    ^ self
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5549
                ].
8277
942b74deecfe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 8243
diff changeset
  5550
                newColor := (self class basicNew)
8165
dec0d9176839 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8163
diff changeset
  5551
                                    setScaledRed:(red ? 0)
dec0d9176839 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8163
diff changeset
  5552
                                    scaledGreen:(green ? 0)
dec0d9176839 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8163
diff changeset
  5553
                                    scaledBlue:(blue ? 0)
7291
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5554
                                    device:aDevice.
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5555
                newColor setColorId:id.
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5556
                ^ newColor
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5557
            ]
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5558
        ]
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5559
    ].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5560
1239
f4bd3bc9f3f9 oops - dont round when searching for existing colors
Claus Gittinger <cg@exept.de>
parents: 1238
diff changeset
  5561
    rV := red.
f4bd3bc9f3f9 oops - dont round when searching for existing colors
Claus Gittinger <cg@exept.de>
parents: 1238
diff changeset
  5562
    gV := green.
f4bd3bc9f3f9 oops - dont round when searching for existing colors
Claus Gittinger <cg@exept.de>
parents: 1238
diff changeset
  5563
    bV := blue.
f4bd3bc9f3f9 oops - dont round when searching for existing colors
Claus Gittinger <cg@exept.de>
parents: 1238
diff changeset
  5564
7782
5c396aabbe58 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7762
diff changeset
  5565
"/    "/ round a bit within 1% in red & green, 2% in blue
1239
f4bd3bc9f3f9 oops - dont round when searching for existing colors
Claus Gittinger <cg@exept.de>
parents: 1238
diff changeset
  5566
"/    rV := (red / 100.0) rounded * 100.
f4bd3bc9f3f9 oops - dont round when searching for existing colors
Claus Gittinger <cg@exept.de>
parents: 1238
diff changeset
  5567
"/    gV := (green / 100.0) rounded * 100.
f4bd3bc9f3f9 oops - dont round when searching for existing colors
Claus Gittinger <cg@exept.de>
parents: 1238
diff changeset
  5568
"/    bV := (blue / 50.0) rounded * 50.
7782
5c396aabbe58 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7762
diff changeset
  5569
"/
5c396aabbe58 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7762
diff changeset
  5570
"/    "/ if I am already assigned to that device ...
5c396aabbe58 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7762
diff changeset
  5571
"/
1368
cb5fbbcf568f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1365
diff changeset
  5572
"/    ((device == aDevice) and:[ditherForm notNil]) ifTrue:[
cb5fbbcf568f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1365
diff changeset
  5573
"/
cb5fbbcf568f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1365
diff changeset
  5574
"/        "/ mhmh - if I was dithered the last time (not enough colors then)
cb5fbbcf568f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1365
diff changeset
  5575
"/        "/ try again - maybe some colors were reclaimed in the meanwhile
cb5fbbcf568f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1365
diff changeset
  5576
"/
cb5fbbcf568f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1365
diff changeset
  5577
"/        deviceFixColors := aDevice fixColors.
cb5fbbcf568f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1365
diff changeset
  5578
"/
cb5fbbcf568f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1365
diff changeset
  5579
"/        (deviceFixColors isNil
cb5fbbcf568f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1365
diff changeset
  5580
"/         and:[RetryAllocation]) ifTrue:[
cb5fbbcf568f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1365
diff changeset
  5581
"/            "
cb5fbbcf568f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1365
diff changeset
  5582
"/             but there is no chance on b&w displays - so don't try
cb5fbbcf568f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1365
diff changeset
  5583
"/            "
cb5fbbcf568f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1365
diff changeset
  5584
"/            aDevice depth > 2 ifTrue:[
cb5fbbcf568f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1365
diff changeset
  5585
"/                id := aDevice colorScaledRed:rV scaledGreen:gV scaledBlue:bV.
cb5fbbcf568f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1365
diff changeset
  5586
"/                id notNil ifTrue:[
cb5fbbcf568f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1365
diff changeset
  5587
"/                    colorId := id.
cb5fbbcf568f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1365
diff changeset
  5588
"/                    ditherForm := nil.
cb5fbbcf568f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1365
diff changeset
  5589
"/                    device registerColor:self.
cb5fbbcf568f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1365
diff changeset
  5590
"/                ]
cb5fbbcf568f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1365
diff changeset
  5591
"/            ]
cb5fbbcf568f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1365
diff changeset
  5592
"/        ].
cb5fbbcf568f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1365
diff changeset
  5593
"/        ^ self
cb5fbbcf568f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1365
diff changeset
  5594
"/    ].
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5595
7762
29af5517f03a #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7758
diff changeset
  5596
    newColor := self class existingColorScaledRed:rV scaledGreen:gV scaledBlue:bV on:aDevice.
2973
59770deee81c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
  5597
    newColor notNil ifTrue:[
7291
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5598
        (newColor scaledRed ~~ red
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5599
        or:[newColor scaledGreen ~~ green
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5600
        or:[newColor scaledBlue ~~ blue]]) ifTrue:[
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5601
            Transcript showCR:'Color>>#onDevice: got different color'.
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5602
        ].
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5603
        ^ newColor
2973
59770deee81c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
  5604
    ].
59770deee81c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
  5605
59770deee81c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
  5606
    "/ ask that device for the exact color
59770deee81c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
  5607
    id := aDevice colorScaledRed:red scaledGreen:green scaledBlue:blue.
59770deee81c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
  5608
    id notNil ifTrue:[
7291
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5609
        device isNil ifTrue:[
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5610
            "/ receiver was not associated - do it now & return mySelf
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5611
            colorId := id.
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5612
            ditherForm := nil.
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5613
            device := aDevice.
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5614
            newColor := self.
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5615
        ] ifFalse:[
7762
29af5517f03a #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7758
diff changeset
  5616
            newColor := self class basicNew
7291
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5617
                                setScaledRed:red
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5618
                                scaledGreen:green
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5619
                                scaledBlue:blue
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5620
                                device:aDevice.
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5621
            newColor setColorId:id.
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5622
        ].
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5623
        id notNil ifTrue:[
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5624
            deviceVisual ~~ #TrueColor ifTrue:[
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5625
                aDevice registerColor:newColor.
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5626
            ]
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5627
        ].
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5628
        ^ newColor
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5629
    ].
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5630
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5631
    "/
2973
59770deee81c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
  5632
    "/ ok, we are either going to dither that color, or look for
59770deee81c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2972
diff changeset
  5633
    "/ the nearest.
7885
0144afcdce5a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7833
diff changeset
  5634
    "/ if it's 'almost' grey, make it grey and round it a bit (1%)
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5635
    "/
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5636
    greyV := (3 * red) + (6 * green) + (1 * blue).
1621
5b1e6427d5f6 monochrome fixes
Claus Gittinger <cg@exept.de>
parents: 1619
diff changeset
  5637
    greyV := (greyV / 1000.0) rounded * 100.
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5638
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5639
    "/ allow an error of 1% in red & green, 2% in blue
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5640
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5641
    ((rV - greyV) abs <= 655                    "/ MaxValue // 100
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5642
    and:[(gV - greyV) abs <= 655                "/ MaxValue // 100
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5643
    and:[(bV - greyV) abs <= 1310]]) ifTrue:[   "/ MaxValue // 100 * 2
7291
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5644
        rV := gV := bV := greyV.
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5645
    ] ifFalse:[
7291
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5646
        rV := red. gV := green. bV := blue.
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5647
    ].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5648
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5649
    aDevice hasColors ifTrue:[
7291
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5650
        deviceFixColors := aDevice fixColors.
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5651
        deviceFixColors isNil ifTrue:[
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5652
            "/ ask that device for the exact color
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5653
            id := aDevice colorScaledRed:rV scaledGreen:gV scaledBlue:bV.
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5654
            id isNil ifTrue:[
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5655
                aDevice isOpen ifFalse:[
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5656
                    ^ nil
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5657
                ].
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5658
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5659
                "/ this is a kludge: scavenge to free unused colors
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5660
                "/ and try again ...
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5661
                ObjectMemory scavenge; finalize.
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5662
                id := aDevice colorScaledRed:rV scaledGreen:gV scaledBlue:bV
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5663
            ].
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5664
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5665
            id isNil ifTrue:[
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5666
                "/ no such color - try color dithers
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5667
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5668
                self class
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5669
                    ditherRed:rV green:gV blue:bV
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5670
                    on:aDevice
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5671
                    into:[:c :f | newColor := c. form := f].
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5672
                newColor notNil ifTrue:[^ newColor].
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5673
            ].
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5674
        ].
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5675
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5676
        "/ none found ? -> do a hard dither using fixColors
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5677
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5678
        (id isNil and:[form isNil]) ifTrue:[
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5679
            deviceFixColors notNil ifTrue:[
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5680
                self class
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5681
                    fixDitherRed:rV green:gV blue:bV
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5682
                    on:aDevice
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5683
                    into:[:c :f | newColor := c. form := f].
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5684
                newColor notNil ifTrue:[^ newColor].
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5685
            ]
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5686
        ].
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5687
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5688
        "/ still none found ? -> do a very hard dither using existing colors
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5689
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5690
        (id isNil and:[form isNil]) ifTrue:[
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5691
            self class
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5692
                complexDitherRed:rV green:gV blue:bV
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5693
                on:aDevice
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5694
                into:[:c :f | newColor := c. form := f].
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5695
            newColor notNil ifTrue:[^ newColor].
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5696
        ].
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5697
    ].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5698
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5699
    (id isNil and:[form isNil]) ifTrue:[
7291
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5700
        "still no result - try graying"
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5701
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5702
        greyV == 0 ifTrue:[
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5703
            id := aDevice blackpixel
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5704
        ] ifFalse:[
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5705
            greyV == MaxValue ifTrue:[
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5706
                id := aDevice whitepixel
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5707
            ] ifFalse:[
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5708
                aDevice hasGrayscales ifTrue:[
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5709
                    self class
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5710
                        ditherGrayFor:(greyV / MaxValue)
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5711
                        on:aDevice
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5712
                        into:[:c :f | newColor := c. form := f].
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5713
                    newColor notNil ifTrue:[^ newColor].
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5714
                ].
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5715
                form isNil ifTrue:[
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5716
                    "/ still none - dither b&w
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5717
                    self class
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5718
                        monoDitherFor:(greyV / MaxValue)
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5719
                        between:Black and:White
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5720
                        on:aDevice
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5721
                        into:[:c :f | newColor := c. form := f].
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5722
                    newColor notNil ifTrue:[^ newColor].
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5723
                    form isNil ifTrue:[
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5724
                        "/ cannot happen
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5725
                        'Color [warning]: monoDither failed' errorPrintCR.
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5726
                        ^ nil
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5727
                    ]
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5728
                ]
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5729
            ]
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5730
        ].
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5731
    ].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5732
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5733
    device isNil ifTrue:[
7291
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5734
        "/ receiver was not associated - do it now & return mySelf
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5735
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5736
        device := aDevice.
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5737
        id isNil ifTrue:[
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5738
            ditherForm := form
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5739
        ].
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5740
        colorId := id.
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5741
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5742
        "/ have to register - otherwise it keeps old info around
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5743
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5744
        id notNil ifTrue:[
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5745
            deviceVisual ~~ #TrueColor ifTrue:[
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5746
                aDevice registerColor:self.
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5747
            ]
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5748
        ].
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5749
        ^ self
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5750
    ].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5751
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5752
    "/ receiver was already associated to another device
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5753
    "/ - need a new color and return it
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5754
7762
29af5517f03a #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7758
diff changeset
  5755
    newColor := self class basicNew
7291
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5756
                        setScaledRed:red
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5757
                        scaledGreen:green
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5758
                        scaledBlue:blue
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5759
                        device:aDevice.
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5760
    id isNil ifTrue:[
7291
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5761
        newColor setDitherForm:form
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5762
    ] ifFalse:[
7291
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5763
        newColor setColorId:id.
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5764
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5765
        "/ trueColor device-colors are not registered
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5766
        deviceVisual ~~ #TrueColor ifTrue:[
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5767
            aDevice registerColor:newColor.
27effa38e219 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6967
diff changeset
  5768
        ]
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5769
    ].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5770
    ^ newColor
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5771
7885
0144afcdce5a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7833
diff changeset
  5772
    "Created: / 16-11-1995 / 20:16:42 / cg"
8165
dec0d9176839 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8163
diff changeset
  5773
    "Modified: / 05-09-2017 / 12:20:54 / cg"
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5774
! !
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5775
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5776
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5777
!Color methodsFor:'instance creation'!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5778
2948
86566f076d30 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2945
diff changeset
  5779
alpha:alphaValue
4789
8a525695f2ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4785
diff changeset
  5780
    "return a new color with the same color, but different alpha as the receiver.
8a525695f2ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4785
diff changeset
  5781
     The alpha arguments range is 0..1 (0=completely transparent; 1=completely opaque)"
2948
86566f076d30 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2945
diff changeset
  5782
86566f076d30 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2945
diff changeset
  5783
    alphaValue = 1 ifTrue:[ ^ self].
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5784
    ^ (TranslucentColor
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5785
	   scaledRed:red
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5786
	   scaledGreen:green
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5787
	   scaledBlue:blue) alpha:alphaValue
2948
86566f076d30 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2945
diff changeset
  5788
86566f076d30 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2945
diff changeset
  5789
    "
4789
8a525695f2ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4785
diff changeset
  5790
     (Color red alpha:0.5) alpha
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5791
     Color red alpha
4789
8a525695f2ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4785
diff changeset
  5792
    "
8a525695f2ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4785
diff changeset
  5793
8a525695f2ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4785
diff changeset
  5794
    "Modified: / 06-06-2007 / 11:17:55 / cg"
2948
86566f076d30 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2945
diff changeset
  5795
!
86566f076d30 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2945
diff changeset
  5796
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5797
blendWith:aColor
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5798
    "create a new color from equally mixing the receiver
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5799
     and the argument, aColor.
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5800
     Mixing is done by adding components
2943
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  5801
     (which is different from mixing colors on paper .. which is subtractive)."
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  5802
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  5803
    ^ self mixed:1 with:aColor
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5804
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5805
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5806
     (Color red) blendWith:(Color yellow)
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5807
     (Color red) blendWith:(Color blue)
1326
a519593747e8 #isGray - ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1269
diff changeset
  5808
     (Color red) blendWith:(Color black)
a519593747e8 #isGray - ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1269
diff changeset
  5809
     (Color red) blendWith:(Color white)
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5810
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5811
1326
a519593747e8 #isGray - ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1269
diff changeset
  5812
    "Modified: 10.2.1997 / 22:08:14 / cg"
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5813
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5814
5965
4f8e9e2ec50b class: Color
Stefan Vogel <sv@exept.de>
parents: 5957
diff changeset
  5815
contrastingBlackOrWhite
7639
78da2ec0985d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
  5816
    "answer either black or white, whichever gives a better contrast
78da2ec0985d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
  5817
     for drawing text on a background with my color.
78da2ec0985d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
  5818
     (i.e. if I am dark, return white; if I am bright, return black"
78da2ec0985d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
  5819
78da2ec0985d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
  5820
    ^ self brightness < 0.55 
78da2ec0985d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
  5821
        ifTrue:[self class white] 
78da2ec0985d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
  5822
        ifFalse:[self class black]
78da2ec0985d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
  5823
78da2ec0985d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
  5824
    "
78da2ec0985d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
  5825
     (Color blue) contrastingBlackOrWhite
78da2ec0985d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
  5826
     (Color red) contrastingBlackOrWhite
78da2ec0985d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
  5827
     (Color green) contrastingBlackOrWhite
78da2ec0985d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
  5828
     (Color yellow) contrastingBlackOrWhite
78da2ec0985d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
  5829
    "
78da2ec0985d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
  5830
!
78da2ec0985d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
  5831
78da2ec0985d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
  5832
contrastingColorFor:aBackgroundColor
78da2ec0985d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
  5833
    "answer a slightly brightened or darkened variant of myself,
78da2ec0985d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
  5834
     to ensure a good contrast when showing text on a background color.
78da2ec0985d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
  5835
     i.e. when drawing read on grey, it might be better to darken or brighten 
7885
0144afcdce5a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7833
diff changeset
  5836
     the red, if it's brightness is too near to the grey's brightness.
7639
78da2ec0985d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
  5837
     Use this for alert strings shown on a color background."
78da2ec0985d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
  5838
78da2ec0985d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
  5839
    |colorUsed bgBrightness|
78da2ec0985d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
  5840
78da2ec0985d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
  5841
    colorUsed := self.
78da2ec0985d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
  5842
    bgBrightness := aBackgroundColor brightness.
78da2ec0985d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
  5843
    
78da2ec0985d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
  5844
    (bgBrightness dist:colorUsed brightness) < 0.5 ifTrue:[
78da2ec0985d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
  5845
        bgBrightness > 0.5 ifTrue:[
78da2ec0985d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
  5846
            colorUsed := self slightlyDarkened.
78da2ec0985d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
  5847
            (bgBrightness dist:colorUsed brightness) < 0.5 ifTrue:[
78da2ec0985d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
  5848
                colorUsed := self darkened.
78da2ec0985d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
  5849
            ].
78da2ec0985d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
  5850
        ] ifFalse:[
78da2ec0985d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
  5851
            colorUsed := self slightlyLightened.
78da2ec0985d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
  5852
            (bgBrightness dist:colorUsed brightness) < 0.5 ifTrue:[
78da2ec0985d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
  5853
                colorUsed := self lightened.
78da2ec0985d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
  5854
            ].
78da2ec0985d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
  5855
        ].    
78da2ec0985d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
  5856
    ].
78da2ec0985d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
  5857
    ^ colorUsed.
78da2ec0985d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
  5858
78da2ec0985d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
  5859
    "
78da2ec0985d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
  5860
     (Color blue) contrastingColorFor:Color white.
78da2ec0985d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
  5861
     (Color blue) contrastingColorFor:Color blue.
8456
e9e1d8fb7e65 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
  5862
     (Color blue) contrastingColorFor:View defaultBackgroundColor.
7639
78da2ec0985d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
  5863
     (Color red) contrastingColorFor:Color grey
78da2ec0985d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
  5864
     (Color blue) contrastingColorFor:Color black
78da2ec0985d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
  5865
    "
7885
0144afcdce5a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7833
diff changeset
  5866
0144afcdce5a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7833
diff changeset
  5867
    "Modified (comment): / 13-02-2017 / 19:58:34 / cg"
8456
e9e1d8fb7e65 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
  5868
    "Modified (comment): / 29-08-2018 / 13:28:53 / Claus Gittinger"
5965
4f8e9e2ec50b class: Color
Stefan Vogel <sv@exept.de>
parents: 5957
diff changeset
  5869
!
4f8e9e2ec50b class: Color
Stefan Vogel <sv@exept.de>
parents: 5957
diff changeset
  5870
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5871
darkened
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5872
    "return a new color, which is slightly darker than the receiver"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5873
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5874
    ^ self blendWith:Black
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5875
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5876
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5877
     (Color red) darkened
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5878
     (Color red) darkened darkened
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5879
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5880
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5881
    "Modified: 11.6.1996 / 18:10:37 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5882
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5883
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5884
lightened
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5885
    "return a new color, which is slightly lighter than the receiver"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5886
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5887
    ^ self blendWith:White
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5888
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5889
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5890
     (Color red) lightened
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5891
     (Color red) lightened lightened
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5892
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5893
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5894
    "Modified: 11.6.1996 / 18:10:49 / cg"
2943
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  5895
!
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  5896
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  5897
mixed:amount with:aColor
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  5898
    "create a new color from mixing amount of the receiver
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  5899
     with the argument, aColor.
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  5900
     Mixing is done by adding components (i.e. additive mixing)
8165
dec0d9176839 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8163
diff changeset
  5901
     (which is different from mixing colors on paper, which is subtractive).
2943
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  5902
     With an amount of 1, this is the same as blendWith."
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  5903
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  5904
    red isNil ifTrue:[
8165
dec0d9176839 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8163
diff changeset
  5905
        ^ aColor
2943
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  5906
    ].
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  5907
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  5908
    ^ (self class)
8165
dec0d9176839 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8163
diff changeset
  5909
        scaledRed:((red * amount) + aColor scaledRed) // (1 + amount)
dec0d9176839 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8163
diff changeset
  5910
        scaledGreen:((green * amount) + aColor scaledGreen) // (1 + amount)
dec0d9176839 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8163
diff changeset
  5911
        scaledBlue:((blue * amount) + aColor scaledBlue) // (1 + amount)
2943
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  5912
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  5913
    "
8437
936e15ec91dd #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 8285
diff changeset
  5914
     (Color red) mixed:1 with:(Color yellow)    - 1 part red, 1 part yellow
2943
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  5915
     (Color red) mixed:0.9 with:(Color yellow)
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  5916
     (Color red) mixed:0.8 with:(Color yellow)
8437
936e15ec91dd #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 8285
diff changeset
  5917
     (Color red) mixed:0.5 with:(Color yellow)  - 1 part red, 2 parts yellow
936e15ec91dd #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 8285
diff changeset
  5918
     (Color red) mixed:0.25 with:(Color yellow) - 1 part red, 4 parts yellow  
936e15ec91dd #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 8285
diff changeset
  5919
     (Color red) mixed:0 with:(Color yellow)    - 0 parts red, 1 part yellow
2943
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  5920
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  5921
     (Color red) mixed:1 with:(Color white)
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  5922
     (Color red) mixed:0.8 with:(Color white)
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  5923
     (Color red) mixed:0.8 with:(Color black)
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  5924
    "
6b4dca5fbee2 more lightening/darkening stuff
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
  5925
8165
dec0d9176839 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8163
diff changeset
  5926
    "Modified: / 10-02-1997 / 22:08:14 / cg"
dec0d9176839 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8163
diff changeset
  5927
    "Modified (comment): / 05-09-2017 / 14:35:40 / cg"
8437
936e15ec91dd #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 8285
diff changeset
  5928
    "Modified (comment): / 31-07-2018 / 21:32:52 / Claus Gittinger"
3724
e35133b39f25 + slightlyLightened/darkened
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
  5929
!
e35133b39f25 + slightlyLightened/darkened
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
  5930
e35133b39f25 + slightlyLightened/darkened
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
  5931
slightlyDarkened
e35133b39f25 + slightlyLightened/darkened
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
  5932
    "return a new color, which is a bit darker than the receiver"
e35133b39f25 + slightlyLightened/darkened
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
  5933
e35133b39f25 + slightlyLightened/darkened
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
  5934
    ^ self blendWith:(self blendWith:Black)
e35133b39f25 + slightlyLightened/darkened
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
  5935
e35133b39f25 + slightlyLightened/darkened
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
  5936
    "
e35133b39f25 + slightlyLightened/darkened
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
  5937
     (Color green) inspect
e35133b39f25 + slightlyLightened/darkened
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
  5938
     (Color green) darkened inspect
e35133b39f25 + slightlyLightened/darkened
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
  5939
     (Color green) slightlyDarkened inspect
e35133b39f25 + slightlyLightened/darkened
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
  5940
    "
e35133b39f25 + slightlyLightened/darkened
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
  5941
!
e35133b39f25 + slightlyLightened/darkened
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
  5942
e35133b39f25 + slightlyLightened/darkened
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
  5943
slightlyLightened
e35133b39f25 + slightlyLightened/darkened
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
  5944
    "return a new color, which is a bit lighter than the receiver"
e35133b39f25 + slightlyLightened/darkened
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
  5945
e35133b39f25 + slightlyLightened/darkened
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
  5946
    ^ self blendWith:(self blendWith:White)
e35133b39f25 + slightlyLightened/darkened
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
  5947
e35133b39f25 + slightlyLightened/darkened
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
  5948
    "
e35133b39f25 + slightlyLightened/darkened
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
  5949
     (Color red) inspect
e35133b39f25 + slightlyLightened/darkened
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
  5950
     (Color red) lightened inspect
e35133b39f25 + slightlyLightened/darkened
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
  5951
     (Color red) slightlyLightened inspect
e35133b39f25 + slightlyLightened/darkened
Claus Gittinger <cg@exept.de>
parents: 3665
diff changeset
  5952
    "
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5953
! !
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5954
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5955
!Color methodsFor:'instance release'!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5956
2845
0794fef6db4a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2842
diff changeset
  5957
executor
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5958
    "redefined, since for finalization only device and colorIndex
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5959
     are needed - thus a faster copy is possible here"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5960
2845
0794fef6db4a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2842
diff changeset
  5961
    ^ DeviceColorHandle basicNew setDevice:device colorId:colorId
0794fef6db4a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2842
diff changeset
  5962
!
0794fef6db4a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2842
diff changeset
  5963
0794fef6db4a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2842
diff changeset
  5964
releaseFromDevice
0794fef6db4a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2842
diff changeset
  5965
    "I am no longer available on the device"
0794fef6db4a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2842
diff changeset
  5966
2975
9ddc41c98ca6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2973
diff changeset
  5967
    colorId := device := ditherForm := replacementColor := nil.
2845
0794fef6db4a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2842
diff changeset
  5968
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5969
! !
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5970
3122
ecf190618501 AEG extensions removed
Claus Gittinger <cg@exept.de>
parents: 3039
diff changeset
  5971
!Color methodsFor:'misc'!
ecf190618501 AEG extensions removed
Claus Gittinger <cg@exept.de>
parents: 3039
diff changeset
  5972
ecf190618501 AEG extensions removed
Claus Gittinger <cg@exept.de>
parents: 3039
diff changeset
  5973
magnifiedTo: extent
ecf190618501 AEG extensions removed
Claus Gittinger <cg@exept.de>
parents: 3039
diff changeset
  5974
    "do nothing here, for compatibility with Image/Form"
ecf190618501 AEG extensions removed
Claus Gittinger <cg@exept.de>
parents: 3039
diff changeset
  5975
! !
ecf190618501 AEG extensions removed
Claus Gittinger <cg@exept.de>
parents: 3039
diff changeset
  5976
6967
bd2a3899b4f9 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6830
diff changeset
  5977
4851
c0a32100d99e category change
Claus Gittinger <cg@exept.de>
parents: 4850
diff changeset
  5978
!Color methodsFor:'object persistency'!
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  5979
4207
9e70f7998f66 elementDescriptorFor: instead of encodingVectorFor:
penk
parents: 4203
diff changeset
  5980
elementDescriptorFor:aspect
4851
c0a32100d99e category change
Claus Gittinger <cg@exept.de>
parents: 4850
diff changeset
  5981
    "support for persistency:
c0a32100d99e category change
Claus Gittinger <cg@exept.de>
parents: 4850
diff changeset
  5982
     answer the elements to be made persistent with an ObjectCoder"
c0a32100d99e category change
Claus Gittinger <cg@exept.de>
parents: 4850
diff changeset
  5983
3935
c025aa0417cd encodingVectorFor:aspect (XMLStandardCoder)
tm
parents: 3931
diff changeset
  5984
    red isNil ifTrue:[
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  5985
	^ Array with:(#colorId->colorId)
3935
c025aa0417cd encodingVectorFor:aspect (XMLStandardCoder)
tm
parents: 3931
diff changeset
  5986
    ].
c025aa0417cd encodingVectorFor:aspect (XMLStandardCoder)
tm
parents: 3931
diff changeset
  5987
    ^ Array with:(#red->self red) with:(#green->self green) with:(#blue->self blue)
4851
c0a32100d99e category change
Claus Gittinger <cg@exept.de>
parents: 4850
diff changeset
  5988
! !
c0a32100d99e category change
Claus Gittinger <cg@exept.de>
parents: 4850
diff changeset
  5989
c0a32100d99e category change
Claus Gittinger <cg@exept.de>
parents: 4850
diff changeset
  5990
!Color methodsFor:'printing & storing'!
3935
c025aa0417cd encodingVectorFor:aspect (XMLStandardCoder)
tm
parents: 3931
diff changeset
  5991
8735
9001b9501c7e #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8701
diff changeset
  5992
displayOn:aStream
8736
271d82194cd3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8735
diff changeset
  5993
    |clsName colorName|
271d82194cd3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8735
diff changeset
  5994
271d82194cd3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8735
diff changeset
  5995
    clsName := self className.
271d82194cd3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8735
diff changeset
  5996
    (colorName := self standardColorNameOrNil) notNil ifTrue:[
271d82194cd3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8735
diff changeset
  5997
        aStream nextPutAll:'(',clsName,' ',colorName,')'.
271d82194cd3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8735
diff changeset
  5998
        ^ self
271d82194cd3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8735
diff changeset
  5999
    ].
271d82194cd3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8735
diff changeset
  6000
    aStream nextPutAll:clsName.
8735
9001b9501c7e #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8701
diff changeset
  6001
    aStream nextPutAll:'('.
9001b9501c7e #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8701
diff changeset
  6002
    aStream nextPutAll:self htmlPrintString.
9001b9501c7e #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8701
diff changeset
  6003
    aStream nextPutAll:')'.
9001b9501c7e #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8701
diff changeset
  6004
9001b9501c7e #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8701
diff changeset
  6005
    "
9001b9501c7e #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8701
diff changeset
  6006
     Color red printString
9001b9501c7e #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8701
diff changeset
  6007
     Color red displayString
8736
271d82194cd3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8735
diff changeset
  6008
     Color red storeString
271d82194cd3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8735
diff changeset
  6009
271d82194cd3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8735
diff changeset
  6010
     Color red lightened printString
271d82194cd3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8735
diff changeset
  6011
     Color red lightened displayString
271d82194cd3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8735
diff changeset
  6012
     Color red lightened storeString
8735
9001b9501c7e #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8701
diff changeset
  6013
    "
9001b9501c7e #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8701
diff changeset
  6014
9001b9501c7e #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8701
diff changeset
  6015
    "Created: / 18-07-2019 / 12:27:33 / Claus Gittinger"
9001b9501c7e #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8701
diff changeset
  6016
!
9001b9501c7e #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8701
diff changeset
  6017
4850
5e45abdda305 hexPrintString; htmlPrintString
Claus Gittinger <cg@exept.de>
parents: 4789
diff changeset
  6018
hex
5e45abdda305 hexPrintString; htmlPrintString
Claus Gittinger <cg@exept.de>
parents: 4789
diff changeset
  6019
    <resource: #obsolete>
5e45abdda305 hexPrintString; htmlPrintString
Claus Gittinger <cg@exept.de>
parents: 4789
diff changeset
  6020
5e45abdda305 hexPrintString; htmlPrintString
Claus Gittinger <cg@exept.de>
parents: 4789
diff changeset
  6021
    self obsoleteMethodWarning:'use #hexPrintString'.
5e45abdda305 hexPrintString; htmlPrintString
Claus Gittinger <cg@exept.de>
parents: 4789
diff changeset
  6022
    ^ self hexPrintString
5e45abdda305 hexPrintString; htmlPrintString
Claus Gittinger <cg@exept.de>
parents: 4789
diff changeset
  6023
!
5e45abdda305 hexPrintString; htmlPrintString
Claus Gittinger <cg@exept.de>
parents: 4789
diff changeset
  6024
8063
e335948608ed #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 8047
diff changeset
  6025
hexPrintOn:aStream
e335948608ed #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 8047
diff changeset
  6026
    "print a base16 representation on aStream as rrggbb"
e335948608ed #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 8047
diff changeset
  6027
e335948608ed #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 8047
diff changeset
  6028
    red isNil ifTrue:[
e335948608ed #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 8047
diff changeset
  6029
        colorId notNil ifTrue:[
e335948608ed #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 8047
diff changeset
  6030
            colorId printOn:aStream base:16 size:6 fill:$0.
e335948608ed #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 8047
diff changeset
  6031
        ]
e335948608ed #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 8047
diff changeset
  6032
    ] ifFalse:[
e335948608ed #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 8047
diff changeset
  6033
        self redByte   printOn:aStream base:16 size:2 fill:$0.
e335948608ed #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 8047
diff changeset
  6034
        self greenByte printOn:aStream base:16 size:2 fill:$0.
e335948608ed #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 8047
diff changeset
  6035
        self blueByte  printOn:aStream base:16 size:2 fill:$0.
e335948608ed #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 8047
diff changeset
  6036
    ].
e335948608ed #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 8047
diff changeset
  6037
e335948608ed #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 8047
diff changeset
  6038
    "Created: / 08-08-2017 / 15:58:52 / stefan"
e335948608ed #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 8047
diff changeset
  6039
!
e335948608ed #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 8047
diff changeset
  6040
4850
5e45abdda305 hexPrintString; htmlPrintString
Claus Gittinger <cg@exept.de>
parents: 4789
diff changeset
  6041
hexPrintString
4908
bb534a1fc0e3 #hexPrintString
Stefan Vogel <sv@exept.de>
parents: 4896
diff changeset
  6042
    "return a hex-printString as rrggbb"
bb534a1fc0e3 #hexPrintString
Stefan Vogel <sv@exept.de>
parents: 4896
diff changeset
  6043
bb534a1fc0e3 #hexPrintString
Stefan Vogel <sv@exept.de>
parents: 4896
diff changeset
  6044
    |s|
bb534a1fc0e3 #hexPrintString
Stefan Vogel <sv@exept.de>
parents: 4896
diff changeset
  6045
bb534a1fc0e3 #hexPrintString
Stefan Vogel <sv@exept.de>
parents: 4896
diff changeset
  6046
    s := WriteStream on:(String new:6).
8063
e335948608ed #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 8047
diff changeset
  6047
    self hexPrintOn:s.
4908
bb534a1fc0e3 #hexPrintString
Stefan Vogel <sv@exept.de>
parents: 4896
diff changeset
  6048
    ^ s contents.
bb534a1fc0e3 #hexPrintString
Stefan Vogel <sv@exept.de>
parents: 4896
diff changeset
  6049
bb534a1fc0e3 #hexPrintString
Stefan Vogel <sv@exept.de>
parents: 4896
diff changeset
  6050
    "
bb534a1fc0e3 #hexPrintString
Stefan Vogel <sv@exept.de>
parents: 4896
diff changeset
  6051
     Color red hexPrintString
bb534a1fc0e3 #hexPrintString
Stefan Vogel <sv@exept.de>
parents: 4896
diff changeset
  6052
     Color green hexPrintString
bb534a1fc0e3 #hexPrintString
Stefan Vogel <sv@exept.de>
parents: 4896
diff changeset
  6053
     Color blue hexPrintString
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  6054
     Color yellow hexPrintString
4850
5e45abdda305 hexPrintString; htmlPrintString
Claus Gittinger <cg@exept.de>
parents: 4789
diff changeset
  6055
    "
8063
e335948608ed #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 8047
diff changeset
  6056
e335948608ed #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 8047
diff changeset
  6057
    "Modified: / 08-08-2017 / 15:59:38 / stefan"
4850
5e45abdda305 hexPrintString; htmlPrintString
Claus Gittinger <cg@exept.de>
parents: 4789
diff changeset
  6058
!
5e45abdda305 hexPrintString; htmlPrintString
Claus Gittinger <cg@exept.de>
parents: 4789
diff changeset
  6059
5e45abdda305 hexPrintString; htmlPrintString
Claus Gittinger <cg@exept.de>
parents: 4789
diff changeset
  6060
htmlPrintString
8787
032a273e7648 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 8736
diff changeset
  6061
    "return a hex-printString for html as #rrggbb"
4850
5e45abdda305 hexPrintString; htmlPrintString
Claus Gittinger <cg@exept.de>
parents: 4789
diff changeset
  6062
5e45abdda305 hexPrintString; htmlPrintString
Claus Gittinger <cg@exept.de>
parents: 4789
diff changeset
  6063
    ^ '#',(self hexPrintString)
5e45abdda305 hexPrintString; htmlPrintString
Claus Gittinger <cg@exept.de>
parents: 4789
diff changeset
  6064
5e45abdda305 hexPrintString; htmlPrintString
Claus Gittinger <cg@exept.de>
parents: 4789
diff changeset
  6065
    "
5e45abdda305 hexPrintString; htmlPrintString
Claus Gittinger <cg@exept.de>
parents: 4789
diff changeset
  6066
     Color red htmlPrintString
5e45abdda305 hexPrintString; htmlPrintString
Claus Gittinger <cg@exept.de>
parents: 4789
diff changeset
  6067
     Color green htmlPrintString
5e45abdda305 hexPrintString; htmlPrintString
Claus Gittinger <cg@exept.de>
parents: 4789
diff changeset
  6068
     Color blue htmlPrintString
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  6069
     Color yellow htmlPrintString
4850
5e45abdda305 hexPrintString; htmlPrintString
Claus Gittinger <cg@exept.de>
parents: 4789
diff changeset
  6070
    "
5e45abdda305 hexPrintString; htmlPrintString
Claus Gittinger <cg@exept.de>
parents: 4789
diff changeset
  6071
!
5e45abdda305 hexPrintString; htmlPrintString
Claus Gittinger <cg@exept.de>
parents: 4789
diff changeset
  6072
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6073
printOn:aStream
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6074
    "append a string representing of the receiver
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6075
     to the argument, aStream"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6076
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6077
    self storeOn:aStream
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6078
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6079
8736
271d82194cd3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8735
diff changeset
  6080
standardColorNameOrNil
271d82194cd3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8735
diff changeset
  6081
    |myRed myGreen myBlue|
271d82194cd3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8735
diff changeset
  6082
271d82194cd3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8735
diff changeset
  6083
    myRed := self scaledRed.
271d82194cd3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8735
diff changeset
  6084
    myGreen := self scaledGreen.
271d82194cd3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8735
diff changeset
  6085
    myBlue := self scaledBlue.
271d82194cd3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8735
diff changeset
  6086
    StandardColorValues keysAndValuesDo:[:nm :rgbTriple |
271d82194cd3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8735
diff changeset
  6087
        (myRed = (rgbTriple at:1) 
271d82194cd3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8735
diff changeset
  6088
          and:[ myGreen = (rgbTriple at:2)
271d82194cd3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8735
diff changeset
  6089
          and:[ myBlue = (rgbTriple at:3)
271d82194cd3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8735
diff changeset
  6090
        ]]) ifTrue:[
271d82194cd3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8735
diff changeset
  6091
            ^ nm
271d82194cd3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8735
diff changeset
  6092
        ]    
271d82194cd3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8735
diff changeset
  6093
    ].
271d82194cd3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8735
diff changeset
  6094
    ^ nil
271d82194cd3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8735
diff changeset
  6095
271d82194cd3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8735
diff changeset
  6096
    "
271d82194cd3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8735
diff changeset
  6097
     Color red standardColorNameOrNil
271d82194cd3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8735
diff changeset
  6098
    "
271d82194cd3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8735
diff changeset
  6099
271d82194cd3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8735
diff changeset
  6100
    "Created: / 18-07-2019 / 12:32:01 / Claus Gittinger"
271d82194cd3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8735
diff changeset
  6101
!
271d82194cd3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8735
diff changeset
  6102
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6103
storeOn:aStream
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6104
    "append a string representing an expression to reconstruct the receiver
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6105
     to the argument, aStream"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6106
8736
271d82194cd3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8735
diff changeset
  6107
    |clsName colorName|
2942
513981eb5180 prepared support for translucent colors
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  6108
513981eb5180 prepared support for translucent colors
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  6109
    clsName := self class name.
513981eb5180 prepared support for translucent colors
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  6110
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6111
    red isNil ifTrue:[
8736
271d82194cd3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8735
diff changeset
  6112
        colorId notNil ifTrue:[
271d82194cd3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8735
diff changeset
  6113
            aStream nextPutAll:'(' , clsName , ' colorId:'.
271d82194cd3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8735
diff changeset
  6114
            colorId storeOn:aStream.
271d82194cd3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8735
diff changeset
  6115
            aStream nextPut:$).
271d82194cd3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8735
diff changeset
  6116
            ^ self
271d82194cd3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8735
diff changeset
  6117
        ]
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6118
    ].
8736
271d82194cd3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8735
diff changeset
  6119
    (colorName := self standardColorNameOrNil) notNil ifTrue:[
271d82194cd3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8735
diff changeset
  6120
        aStream nextPutAll:'(',clsName,' ',colorName,')'.
271d82194cd3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8735
diff changeset
  6121
        ^ self
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6122
    ].
8736
271d82194cd3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8735
diff changeset
  6123
    
2942
513981eb5180 prepared support for translucent colors
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  6124
    aStream nextPutAll:'(' , clsName , ' red:'.
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6125
    (self red) storeOn:aStream.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6126
    aStream nextPutAll:' green:'.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6127
    (self green) storeOn:aStream.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6128
    aStream nextPutAll:' blue:'.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6129
    (self blue) storeOn:aStream.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6130
    aStream nextPut:$).
8736
271d82194cd3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8735
diff changeset
  6131
271d82194cd3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8735
diff changeset
  6132
    "Modified: / 18-07-2019 / 12:33:21 / Claus Gittinger"
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6133
! !
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6134
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6135
!Color methodsFor:'private'!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6136
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6137
restored
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6138
    "private: color has been restored (either from snapin or binary store);
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6139
     flush device stuff or reallocate a cell."
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6140
1238
b363894182d0 prepare for replacement colors
Claus Gittinger <cg@exept.de>
parents: 1237
diff changeset
  6141
    ditherForm := replacementColor := nil.
b363894182d0 prepare for replacement colors
Claus Gittinger <cg@exept.de>
parents: 1237
diff changeset
  6142
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6143
    red notNil ifTrue:[
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  6144
	device := nil.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  6145
	colorId := nil
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6146
    ] ifFalse:[
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  6147
	"a variable color has been restored"
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  6148
	(colorId notNil and:[writable == true and:[device notNil]]) ifTrue:[
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  6149
	    colorId := device colorCell.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  6150
	    device setColor:colorId scaledRed:red scaledGreen:green scaledBlue:blue
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  6151
	]
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6152
    ]
1238
b363894182d0 prepare for replacement colors
Claus Gittinger <cg@exept.de>
parents: 1237
diff changeset
  6153
b363894182d0 prepare for replacement colors
Claus Gittinger <cg@exept.de>
parents: 1237
diff changeset
  6154
    "Modified: 17.1.1997 / 00:04:14 / cg"
b363894182d0 prepare for replacement colors
Claus Gittinger <cg@exept.de>
parents: 1237
diff changeset
  6155
!
b363894182d0 prepare for replacement colors
Claus Gittinger <cg@exept.de>
parents: 1237
diff changeset
  6156
b363894182d0 prepare for replacement colors
Claus Gittinger <cg@exept.de>
parents: 1237
diff changeset
  6157
setColorId:anId
b363894182d0 prepare for replacement colors
Claus Gittinger <cg@exept.de>
parents: 1237
diff changeset
  6158
    "private: set the deviceId"
b363894182d0 prepare for replacement colors
Claus Gittinger <cg@exept.de>
parents: 1237
diff changeset
  6159
b363894182d0 prepare for replacement colors
Claus Gittinger <cg@exept.de>
parents: 1237
diff changeset
  6160
    colorId := anId
b363894182d0 prepare for replacement colors
Claus Gittinger <cg@exept.de>
parents: 1237
diff changeset
  6161
b363894182d0 prepare for replacement colors
Claus Gittinger <cg@exept.de>
parents: 1237
diff changeset
  6162
    "Created: 17.1.1997 / 00:05:41 / cg"
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6163
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6164
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6165
setDevice:aDevice colorId:aNumber
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6166
    "private:set device and colorId"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6167
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6168
    device := aDevice.
1934
fe7d73fe0df4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1929
diff changeset
  6169
    colorId := aNumber.
fe7d73fe0df4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1929
diff changeset
  6170
    writable := false.
fe7d73fe0df4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1929
diff changeset
  6171
!
fe7d73fe0df4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1929
diff changeset
  6172
fe7d73fe0df4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1929
diff changeset
  6173
setDevice:aDevice colorId:aNumber writable:wBool
fe7d73fe0df4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1929
diff changeset
  6174
    "private:set device, colorId and writable flag"
fe7d73fe0df4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1929
diff changeset
  6175
fe7d73fe0df4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1929
diff changeset
  6176
    device := aDevice.
fe7d73fe0df4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1929
diff changeset
  6177
    colorId := aNumber.
fe7d73fe0df4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1929
diff changeset
  6178
    writable := wBool.
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6179
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6180
1238
b363894182d0 prepare for replacement colors
Claus Gittinger <cg@exept.de>
parents: 1237
diff changeset
  6181
setDitherForm:aForm
b363894182d0 prepare for replacement colors
Claus Gittinger <cg@exept.de>
parents: 1237
diff changeset
  6182
    "private: set the ditherForm"
b363894182d0 prepare for replacement colors
Claus Gittinger <cg@exept.de>
parents: 1237
diff changeset
  6183
b363894182d0 prepare for replacement colors
Claus Gittinger <cg@exept.de>
parents: 1237
diff changeset
  6184
    ditherForm := aForm
b363894182d0 prepare for replacement colors
Claus Gittinger <cg@exept.de>
parents: 1237
diff changeset
  6185
b363894182d0 prepare for replacement colors
Claus Gittinger <cg@exept.de>
parents: 1237
diff changeset
  6186
    "Created: 17.1.1997 / 00:04:57 / cg"
b363894182d0 prepare for replacement colors
Claus Gittinger <cg@exept.de>
parents: 1237
diff changeset
  6187
!
b363894182d0 prepare for replacement colors
Claus Gittinger <cg@exept.de>
parents: 1237
diff changeset
  6188
8277
942b74deecfe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 8243
diff changeset
  6189
setScaledRed:r scaledGreen:g scaledBlue:b
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6190
    "private: set the components"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6191
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6192
    red notNil ifTrue:[
8243
c16d146a30e1 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 8171
diff changeset
  6193
        "oops cannot change an existing color (you want to make red be green - or what)"
c16d146a30e1 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 8171
diff changeset
  6194
        self error:'Colors cannot change their components'.
c16d146a30e1 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 8171
diff changeset
  6195
        ^ self
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6196
    ].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6197
    red := r.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6198
    green := g.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6199
    blue := b.
8277
942b74deecfe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 8243
diff changeset
  6200
!
942b74deecfe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 8243
diff changeset
  6201
942b74deecfe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 8243
diff changeset
  6202
setScaledRed:r scaledGreen:g scaledBlue:b device:aDevice
942b74deecfe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 8243
diff changeset
  6203
    "private: set the components"
942b74deecfe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 8243
diff changeset
  6204
942b74deecfe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 8243
diff changeset
  6205
    self setScaledRed:r scaledGreen:g scaledBlue:b.
942b74deecfe #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 8243
diff changeset
  6206
    device := aDevice.
1233
c6796bddc7d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1229
diff changeset
  6207
8243
c16d146a30e1 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 8171
diff changeset
  6208
    "Modified: / 16-01-1997 / 22:39:26 / cg"
c16d146a30e1 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 8171
diff changeset
  6209
    "Modified (format): / 11-01-2018 / 12:25:46 / stefan"
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6210
! !
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6211
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6212
!Color methodsFor:'queries'!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6213
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6214
averageColor
6793
4eb2c49db190 class: Color
Claus Gittinger <cg@exept.de>
parents: 6785
diff changeset
  6215
    "return the average color - that's myself.
4eb2c49db190 class: Color
Claus Gittinger <cg@exept.de>
parents: 6785
diff changeset
  6216
     This method has been added for compatibility with the image protocol."
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6217
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  6218
    ^ self
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6219
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6220
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6221
averageColorIn:aRectangle
7580
1c51d1d76b32 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7569
diff changeset
  6222
    "return the average color - that's myself.
6793
4eb2c49db190 class: Color
Claus Gittinger <cg@exept.de>
parents: 6785
diff changeset
  6223
     This method has been added for compatibility with the image protocol."
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6224
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  6225
    ^ self
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6226
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6227
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6228
brightness
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6229
    "ST80 compatibility: return the grey intensity in [0..1]"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6230
6384
b6ddf75e709e class: Color
Claus Gittinger <cg@exept.de>
parents: 6353
diff changeset
  6231
    red isNil ifTrue:[
b6ddf75e709e class: Color
Claus Gittinger <cg@exept.de>
parents: 6353
diff changeset
  6232
        "/ a hack for colorId:0 and colorId:1 pseudo mask colors.
b6ddf75e709e class: Color
Claus Gittinger <cg@exept.de>
parents: 6353
diff changeset
  6233
        colorId == 0 ifTrue:[^ 0].
b6ddf75e709e class: Color
Claus Gittinger <cg@exept.de>
parents: 6353
diff changeset
  6234
        ^ 1
b6ddf75e709e class: Color
Claus Gittinger <cg@exept.de>
parents: 6353
diff changeset
  6235
    ].
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6236
    ^ ((3 * red) + (6 * green) + (blue)) / 10.0 / MaxValue
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6237
8171
17c30710ed4a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 8165
diff changeset
  6238
    "
17c30710ed4a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 8165
diff changeset
  6239
     Color black brightness -> 0.0
17c30710ed4a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 8165
diff changeset
  6240
     Color white brightness -> 1.0
17c30710ed4a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 8165
diff changeset
  6241
     Color red brightness   -> 0.3
17c30710ed4a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 8165
diff changeset
  6242
     Color green brightness -> 0.6
17c30710ed4a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 8165
diff changeset
  6243
     Color blue brightness  -> 0.1
17c30710ed4a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 8165
diff changeset
  6244
    "
17c30710ed4a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 8165
diff changeset
  6245
17c30710ed4a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 8165
diff changeset
  6246
    "Modified: / 07-06-1996 / 19:42:21 / cg"
17c30710ed4a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 8165
diff changeset
  6247
    "Modified (comment): / 10-09-2017 / 12:02:29 / cg"
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6248
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6249
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6250
deltaFrom:aColor
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6251
    "return the distance of the receiver from some color specified
6785
7babceb91298 class: Color
Claus Gittinger <cg@exept.de>
parents: 6654
diff changeset
  6252
     by r/g/b values.
7babceb91298 class: Color
Claus Gittinger <cg@exept.de>
parents: 6654
diff changeset
  6253
     A very questionable value;
7411
9fdde791fac0 #DOCUMENTATION by mawalch
mawalch
parents: 7403
diff changeset
  6254
     basing the distance on rgb values is very bad
6785
7babceb91298 class: Color
Claus Gittinger <cg@exept.de>
parents: 6654
diff changeset
  6255
     - better do a distance in a cie color cone"
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6256
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6257
    ^ aColor deltaFromRed:self red green:self green blue:self blue
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6258
3005
b8d9132ebbfd checkin from browser
Stefan Vogel <sv@exept.de>
parents: 2999
diff changeset
  6259
    "
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  6260
     Color red deltaFrom:(Color blue)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  6261
     Color red deltaFrom:(Color yellow)
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  6262
     Color red deltaFrom:(Color red:50)
3005
b8d9132ebbfd checkin from browser
Stefan Vogel <sv@exept.de>
parents: 2999
diff changeset
  6263
    "
b8d9132ebbfd checkin from browser
Stefan Vogel <sv@exept.de>
parents: 2999
diff changeset
  6264
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6265
    "Created: 14.6.1996 / 20:07:22 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6266
    "Modified: 14.6.1996 / 20:49:32 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6267
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6268
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6269
deltaFromRed:r green:g blue:b
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6270
    "return the distance of the receiver from some color specified
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6271
     by r/g/b values"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6272
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6273
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6274
     Q: how should component errors be weighted ?
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6275
    "
3005
b8d9132ebbfd checkin from browser
Stefan Vogel <sv@exept.de>
parents: 2999
diff changeset
  6276
    ^ ((self red - r) abs
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6277
      + (self green - g) abs
3005
b8d9132ebbfd checkin from browser
Stefan Vogel <sv@exept.de>
parents: 2999
diff changeset
  6278
      + (self blue - b) abs) rounded.
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6279
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6280
    "Created: 14.6.1996 / 20:03:58 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6281
    "Modified: 14.6.1996 / 20:20:24 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6282
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6283
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6284
deltaFromScaledRed:r scaledGreen:g scaledBlue:b
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6285
    "return the distance of the receiver from some color specified
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6286
     by r/g/b values"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6287
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6288
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6289
     Q: how should component errors be weighted ?
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6290
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6291
    ^ (red - r) abs
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6292
      + (green - g) abs
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6293
      + (blue - b) abs.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6294
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6295
    "Created: 11.6.1996 / 18:01:12 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6296
    "Modified: 14.6.1996 / 20:36:14 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6297
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6298
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6299
errorFrom:aColor
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6300
    "return some value which can be used to compare colors.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6301
     The following simply returns the vector distance of the r/g/b vectors.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6302
     This may not be a very good idea; probably, we should honor the
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6303
     fact that the hue difference should have more weight than saturation and/or light"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6304
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6305
    ^ (red - aColor scaledRed) squared
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6306
       + (green - aColor scaledGreen) squared
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6307
       + (blue - aColor scaledBlue) squared.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6308
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6309
8966
7cbb2e039c8f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8812
diff changeset
  6310
grayByte
7cbb2e039c8f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8812
diff changeset
  6311
    "return the grey intensity in [0..255]"
7cbb2e039c8f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8812
diff changeset
  6312
7cbb2e039c8f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8812
diff changeset
  6313
    red isNil ifTrue:[
7cbb2e039c8f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8812
diff changeset
  6314
        "/ a hack for colorId:0 and colorId:1 pseudo mask colors.
7cbb2e039c8f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8812
diff changeset
  6315
        colorId == 0 ifTrue:[^ 0].
7cbb2e039c8f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8812
diff changeset
  6316
        ^ 255
7cbb2e039c8f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8812
diff changeset
  6317
    ].
7cbb2e039c8f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8812
diff changeset
  6318
    ^ (((3 * red) + (6 * green) + (blue)) * 255 / 10 / MaxValue) rounded min:255
7cbb2e039c8f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8812
diff changeset
  6319
7cbb2e039c8f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8812
diff changeset
  6320
    "
7cbb2e039c8f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8812
diff changeset
  6321
     Color black grayByte -> 0.0
7cbb2e039c8f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8812
diff changeset
  6322
     Color white grayByte -> 1.0
7cbb2e039c8f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8812
diff changeset
  6323
     Color red grayByte   -> 0.3
7cbb2e039c8f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8812
diff changeset
  6324
     Color green grayByte -> 0.6
7cbb2e039c8f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8812
diff changeset
  6325
     Color blue grayByte  -> 0.1
7cbb2e039c8f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8812
diff changeset
  6326
    "
7cbb2e039c8f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8812
diff changeset
  6327
!
7cbb2e039c8f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8812
diff changeset
  6328
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6329
grayIntensity
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6330
    "return the grey intensity in percent [0..100] (US version ;-)"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6331
6385
463b0c40db9c class: Color
Claus Gittinger <cg@exept.de>
parents: 6384
diff changeset
  6332
    red isNil ifTrue:[
463b0c40db9c class: Color
Claus Gittinger <cg@exept.de>
parents: 6384
diff changeset
  6333
        "/ a hack for colorId:0 and colorId:1 pseudo mask colors.
463b0c40db9c class: Color
Claus Gittinger <cg@exept.de>
parents: 6384
diff changeset
  6334
        colorId == 0 ifTrue:[^ 0].
463b0c40db9c class: Color
Claus Gittinger <cg@exept.de>
parents: 6384
diff changeset
  6335
        ^ 100
463b0c40db9c class: Color
Claus Gittinger <cg@exept.de>
parents: 6384
diff changeset
  6336
    ].
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6337
    ^ ((3 * red) + (6 * green) + (1 * blue)) * 10.0 / MaxValue
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6338
7758
2e96180d15d8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7650
diff changeset
  6339
    "
2e96180d15d8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7650
diff changeset
  6340
     Color red brightness
2e96180d15d8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7650
diff changeset
  6341
     Color red grayIntensity
2e96180d15d8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7650
diff changeset
  6342
    "
2e96180d15d8 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7650
diff changeset
  6343
    
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6344
    "Created: 2.5.1996 / 11:38:21 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6345
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6346
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6347
greyIntensity
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6348
    "return the grey intensity in percent [0..100] (English version ;-)"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6349
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6350
    ^ self grayIntensity
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6351
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6352
    "Modified: 28.5.1996 / 20:45:41 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6353
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6354
8701
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6355
isBlueGreen
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6356
    "Am I considered BlueGreen ?"
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6357
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6358
    ^green > red 
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6359
    and: [self red < 30]
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6360
    and: [(self green - self blue) abs < 10]
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6361
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6362
    "
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6363
     Color blue isBlueGreen
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6364
     (Color blue blendWith:Color green) isBlueGreen
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6365
    "
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6366
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6367
    "Created: / 06-06-2019 / 11:42:24 / Claus Gittinger"
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6368
!
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6369
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6370
isBright
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6371
    "Am I considered a Bright color ?"
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6372
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6373
    ^ self brightness > 0.6
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6374
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6375
    "
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6376
     Color blue isBright
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6377
     Color yellow isBright
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6378
     Color white isBright
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6379
     Color black isBright
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6380
    "
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6381
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6382
    "Created: / 06-06-2019 / 11:44:26 / Claus Gittinger"
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6383
!
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6384
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6385
isBrown
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6386
    "Am I considered Brown ?"
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6387
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6388
    ^red >= green  
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6389
    and: [green > blue]                                   
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6390
    and: [(self red - self green) < 50]    
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6391
    and: [(self green - self blue) < 30]
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6392
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6393
    "
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6394
     Color blue isBrown
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6395
     Color yellow isBrown
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6396
     Color yellow darkened darkened isBrown
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6397
     Color brown isBrown
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6398
     Color black isBrown
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6399
    "
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6400
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6401
    "Created: / 06-06-2019 / 11:45:50 / Claus Gittinger"
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6402
!
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6403
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6404
isColor
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6405
    "return true if the receiver is a Color."
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6406
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6407
    ^ true
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6408
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6409
2828
5795bf162314 #on: -> #onDevice:
Claus Gittinger <cg@exept.de>
parents: 2779
diff changeset
  6410
isColorObject
5795bf162314 #on: -> #onDevice:
Claus Gittinger <cg@exept.de>
parents: 2779
diff changeset
  6411
    ^ true
5795bf162314 #on: -> #onDevice:
Claus Gittinger <cg@exept.de>
parents: 2779
diff changeset
  6412
!
5795bf162314 #on: -> #onDevice:
Claus Gittinger <cg@exept.de>
parents: 2779
diff changeset
  6413
8701
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6414
isDark
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6415
    "Am I considered a Dark color ?"
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6416
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6417
    ^self brightness < 0.5
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6418
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6419
    "
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6420
     Color blue isDark
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6421
     Color yellow isDark
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6422
     Color yellow darkened darkened isDark
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6423
     Color brown isDark
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6424
     Color black isDark
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6425
    "
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6426
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6427
    "Created: / 06-06-2019 / 11:46:55 / Claus Gittinger"
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6428
!
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6429
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6430
isDithered
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6431
    "return true, if this is a dithered Color.
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6432
     Only makes sense if the receiver is a device color."
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6433
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6434
    ^ ditherForm notNil
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6435
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6436
1326
a519593747e8 #isGray - ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1269
diff changeset
  6437
isGray
a519593747e8 #isGray - ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1269
diff changeset
  6438
    "same as isGrayColor - for ST80 compatibility."
a519593747e8 #isGray - ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1269
diff changeset
  6439
a519593747e8 #isGray - ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1269
diff changeset
  6440
    ^ self isGrayColor
a519593747e8 #isGray - ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1269
diff changeset
  6441
a519593747e8 #isGray - ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1269
diff changeset
  6442
    "
a519593747e8 #isGray - ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1269
diff changeset
  6443
     (Color grey:50) isGray
a519593747e8 #isGray - ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1269
diff changeset
  6444
     (Color red) isGray
a519593747e8 #isGray - ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1269
diff changeset
  6445
    "
a519593747e8 #isGray - ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1269
diff changeset
  6446
a519593747e8 #isGray - ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1269
diff changeset
  6447
    "Created: 10.2.1997 / 22:10:25 / cg"
a519593747e8 #isGray - ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1269
diff changeset
  6448
!
a519593747e8 #isGray - ST80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1269
diff changeset
  6449
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6450
isGrayColor
3005
b8d9132ebbfd checkin from browser
Stefan Vogel <sv@exept.de>
parents: 2999
diff changeset
  6451
    "return true, if this color is a gray one (US version ;-) -
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6452
     i.e. red = green = blue"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6453
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6454
    red ~~ green ifTrue:[^ false].
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6455
    ^ red == blue
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6456
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6457
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6458
     (Color grey:50) isGrayColor
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6459
     (Color red) isGrayColor
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6460
    "
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6461
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6462
    "Created: 2.5.1996 / 11:38:48 / cg"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6463
!
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6464
8701
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6465
isGrayish
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6466
    "Am I considered almost Gray  ?"
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6467
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6468
    ^(self red closeTo: self green withEpsilon:0.1)
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6469
    and: [self blue closeTo: self green withEpsilon:0.1]
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6470
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6471
    "
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6472
     Color blue isGrayish
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6473
     Color yellow isGrayish
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6474
     Color yellow darkened darkened isGrayish
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6475
     Color brown isGrayish
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6476
     Color black isGrayish
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6477
     Color white isGrayish
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6478
     Color grey isGrayish
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6479
    "
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6480
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6481
    "Created: / 06-06-2019 / 11:49:07 / Claus Gittinger"
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6482
!
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6483
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6484
isGreyColor
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6485
    "return true, if this color is a grey one (English version ;-) -
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6486
     i.e. red = green = blue"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6487
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6488
    ^ self isGrayColor
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6489
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6490
    "(Color grey:50) isGreyColor"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6491
    "(Color red) isGreyColor"
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6492
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6493
    "Modified: 28.5.1996 / 20:44:36 / cg"
2942
513981eb5180 prepared support for translucent colors
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  6494
!
513981eb5180 prepared support for translucent colors
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  6495
3598
2b6e50a38de6 New: #isOnDevice:
Stefan Vogel <sv@exept.de>
parents: 3543
diff changeset
  6496
isOnDevice:aGraphicsDevice
2b6e50a38de6 New: #isOnDevice:
Stefan Vogel <sv@exept.de>
parents: 3543
diff changeset
  6497
    "return true if i am allocated on aGraphicsDevice"
2b6e50a38de6 New: #isOnDevice:
Stefan Vogel <sv@exept.de>
parents: 3543
diff changeset
  6498
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  6499
    ^ device == aGraphicsDevice
3598
2b6e50a38de6 New: #isOnDevice:
Stefan Vogel <sv@exept.de>
parents: 3543
diff changeset
  6500
      and:[colorId notNil or:[replacementColor notNil and:[replacementColor colorId notNil]]]
2b6e50a38de6 New: #isOnDevice:
Stefan Vogel <sv@exept.de>
parents: 3543
diff changeset
  6501
!
2b6e50a38de6 New: #isOnDevice:
Stefan Vogel <sv@exept.de>
parents: 3543
diff changeset
  6502
2942
513981eb5180 prepared support for translucent colors
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  6503
isOpaque
513981eb5180 prepared support for translucent colors
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  6504
    "return true, if I represent an opaque color"
513981eb5180 prepared support for translucent colors
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  6505
513981eb5180 prepared support for translucent colors
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  6506
    ^ true
513981eb5180 prepared support for translucent colors
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  6507
513981eb5180 prepared support for translucent colors
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  6508
!
513981eb5180 prepared support for translucent colors
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  6509
8701
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6510
isOrange
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6511
    "Am I considered Orange ?"
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6512
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6513
    ^self red > ((self green max: self blue) + 20)  
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6514
            and: [self green > (self blue + 20)]
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6515
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6516
    "
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6517
     Color blue isOrange
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6518
     Color yellow isOrange
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6519
     Color yellow darkened isOrange
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6520
     (Color yellow blendWith:Color red) isOrange
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6521
     Color orange isOrange
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6522
     Color red isOrange
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6523
     Color white isOrange
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6524
     Color grey isOrange
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6525
    "
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6526
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6527
    "Created: / 06-06-2019 / 11:50:53 / Claus Gittinger"
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6528
!
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6529
8163
55b4897a908f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8137
diff changeset
  6530
isPseudoColor
55b4897a908f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8137
diff changeset
  6531
    "for special uses only: 
55b4897a908f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8137
diff changeset
  6532
        colors which ONLY hold alpha values or
55b4897a908f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8137
diff changeset
  6533
        colorIDs (for example, for bit-blt operaions) 
55b4897a908f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8137
diff changeset
  6534
        are called 'pseudo colors'"
55b4897a908f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8137
diff changeset
  6535
     
55b4897a908f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8137
diff changeset
  6536
    ^ red isNil
55b4897a908f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8137
diff changeset
  6537
55b4897a908f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8137
diff changeset
  6538
    "Created: / 05-09-2017 / 12:16:19 / cg"
55b4897a908f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8137
diff changeset
  6539
!
55b4897a908f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8137
diff changeset
  6540
8701
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6541
isSaturated
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6542
    "Am I considered to be a Saturated color ?"
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6543
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6544
    ^self saturation > 0.6
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6545
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6546
    "Created: / 06-06-2019 / 11:57:45 / Claus Gittinger"
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6547
!
6b8c2d4d2cc5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 8692
diff changeset
  6548
2942
513981eb5180 prepared support for translucent colors
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  6549
isTranslucent
513981eb5180 prepared support for translucent colors
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  6550
    "return true, if I represent a translucent color;
513981eb5180 prepared support for translucent colors
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  6551
     that is: not completely opaque"
513981eb5180 prepared support for translucent colors
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  6552
513981eb5180 prepared support for translucent colors
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  6553
    ^ false
513981eb5180 prepared support for translucent colors
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  6554
513981eb5180 prepared support for translucent colors
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  6555
!
513981eb5180 prepared support for translucent colors
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  6556
2945
937fdf02965d more compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 2943
diff changeset
  6557
isTranslucentColor
937fdf02965d more compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 2943
diff changeset
  6558
    "return true, if I represent a translucent color, but not transparent"
937fdf02965d more compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 2943
diff changeset
  6559
937fdf02965d more compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 2943
diff changeset
  6560
    ^ false
937fdf02965d more compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 2943
diff changeset
  6561
937fdf02965d more compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 2943
diff changeset
  6562
!
937fdf02965d more compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 2943
diff changeset
  6563
2942
513981eb5180 prepared support for translucent colors
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  6564
isTransparent
513981eb5180 prepared support for translucent colors
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  6565
    "return true, if I represent a completely transparent color"
513981eb5180 prepared support for translucent colors
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  6566
513981eb5180 prepared support for translucent colors
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  6567
    ^ false
513981eb5180 prepared support for translucent colors
Claus Gittinger <cg@exept.de>
parents: 2937
diff changeset
  6568
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6569
! !
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6570
1907
61fdff318175 Make Device*Handles (used for finalization) private in their resp. classes.
Stefan Vogel <sv@exept.de>
parents: 1859
diff changeset
  6571
!Color::DeviceColorHandle class methodsFor:'documentation'!
61fdff318175 Make Device*Handles (used for finalization) private in their resp. classes.
Stefan Vogel <sv@exept.de>
parents: 1859
diff changeset
  6572
61fdff318175 Make Device*Handles (used for finalization) private in their resp. classes.
Stefan Vogel <sv@exept.de>
parents: 1859
diff changeset
  6573
documentation
61fdff318175 Make Device*Handles (used for finalization) private in their resp. classes.
Stefan Vogel <sv@exept.de>
parents: 1859
diff changeset
  6574
"
61fdff318175 Make Device*Handles (used for finalization) private in their resp. classes.
Stefan Vogel <sv@exept.de>
parents: 1859
diff changeset
  6575
    This is an abstract class for device handles which are responsible
61fdff318175 Make Device*Handles (used for finalization) private in their resp. classes.
Stefan Vogel <sv@exept.de>
parents: 1859
diff changeset
  6576
    for finalization i.e. to destroy underlying system resources, when the GC
61fdff318175 Make Device*Handles (used for finalization) private in their resp. classes.
Stefan Vogel <sv@exept.de>
parents: 1859
diff changeset
  6577
    frees an object which has created some system object.
61fdff318175 Make Device*Handles (used for finalization) private in their resp. classes.
Stefan Vogel <sv@exept.de>
parents: 1859
diff changeset
  6578
    These are used with colors.
61fdff318175 Make Device*Handles (used for finalization) private in their resp. classes.
Stefan Vogel <sv@exept.de>
parents: 1859
diff changeset
  6579
61fdff318175 Make Device*Handles (used for finalization) private in their resp. classes.
Stefan Vogel <sv@exept.de>
parents: 1859
diff changeset
  6580
    [see also:]
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  6581
	Color
1907
61fdff318175 Make Device*Handles (used for finalization) private in their resp. classes.
Stefan Vogel <sv@exept.de>
parents: 1859
diff changeset
  6582
61fdff318175 Make Device*Handles (used for finalization) private in their resp. classes.
Stefan Vogel <sv@exept.de>
parents: 1859
diff changeset
  6583
    [author:]
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  6584
	Claus Gittinger
1907
61fdff318175 Make Device*Handles (used for finalization) private in their resp. classes.
Stefan Vogel <sv@exept.de>
parents: 1859
diff changeset
  6585
61fdff318175 Make Device*Handles (used for finalization) private in their resp. classes.
Stefan Vogel <sv@exept.de>
parents: 1859
diff changeset
  6586
"
61fdff318175 Make Device*Handles (used for finalization) private in their resp. classes.
Stefan Vogel <sv@exept.de>
parents: 1859
diff changeset
  6587
! !
61fdff318175 Make Device*Handles (used for finalization) private in their resp. classes.
Stefan Vogel <sv@exept.de>
parents: 1859
diff changeset
  6588
61fdff318175 Make Device*Handles (used for finalization) private in their resp. classes.
Stefan Vogel <sv@exept.de>
parents: 1859
diff changeset
  6589
!Color::DeviceColorHandle methodsFor:'accessing'!
61fdff318175 Make Device*Handles (used for finalization) private in their resp. classes.
Stefan Vogel <sv@exept.de>
parents: 1859
diff changeset
  6590
61fdff318175 Make Device*Handles (used for finalization) private in their resp. classes.
Stefan Vogel <sv@exept.de>
parents: 1859
diff changeset
  6591
setDevice:aDevice colorId:anId
61fdff318175 Make Device*Handles (used for finalization) private in their resp. classes.
Stefan Vogel <sv@exept.de>
parents: 1859
diff changeset
  6592
    "set the handles contents"
61fdff318175 Make Device*Handles (used for finalization) private in their resp. classes.
Stefan Vogel <sv@exept.de>
parents: 1859
diff changeset
  6593
61fdff318175 Make Device*Handles (used for finalization) private in their resp. classes.
Stefan Vogel <sv@exept.de>
parents: 1859
diff changeset
  6594
    device := aDevice.
61fdff318175 Make Device*Handles (used for finalization) private in their resp. classes.
Stefan Vogel <sv@exept.de>
parents: 1859
diff changeset
  6595
    colorId := anId.
61fdff318175 Make Device*Handles (used for finalization) private in their resp. classes.
Stefan Vogel <sv@exept.de>
parents: 1859
diff changeset
  6596
61fdff318175 Make Device*Handles (used for finalization) private in their resp. classes.
Stefan Vogel <sv@exept.de>
parents: 1859
diff changeset
  6597
    "Modified: 23.4.1996 / 22:10:26 / cg"
61fdff318175 Make Device*Handles (used for finalization) private in their resp. classes.
Stefan Vogel <sv@exept.de>
parents: 1859
diff changeset
  6598
    "Created: 25.3.1997 / 14:29:10 / stefan"
61fdff318175 Make Device*Handles (used for finalization) private in their resp. classes.
Stefan Vogel <sv@exept.de>
parents: 1859
diff changeset
  6599
! !
61fdff318175 Make Device*Handles (used for finalization) private in their resp. classes.
Stefan Vogel <sv@exept.de>
parents: 1859
diff changeset
  6600
61fdff318175 Make Device*Handles (used for finalization) private in their resp. classes.
Stefan Vogel <sv@exept.de>
parents: 1859
diff changeset
  6601
!Color::DeviceColorHandle methodsFor:'finalization'!
61fdff318175 Make Device*Handles (used for finalization) private in their resp. classes.
Stefan Vogel <sv@exept.de>
parents: 1859
diff changeset
  6602
3611
8b4384c9e660 Use #finalize instead of #disposed
Stefan Vogel <sv@exept.de>
parents: 3598
diff changeset
  6603
finalize
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  6604
    "the color for which I am a handle was collected
1907
61fdff318175 Make Device*Handles (used for finalization) private in their resp. classes.
Stefan Vogel <sv@exept.de>
parents: 1859
diff changeset
  6605
     - release system resources"
61fdff318175 Make Device*Handles (used for finalization) private in their resp. classes.
Stefan Vogel <sv@exept.de>
parents: 1859
diff changeset
  6606
2096
f3f0d358239f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2087
diff changeset
  6607
    |id|
f3f0d358239f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2087
diff changeset
  6608
f3f0d358239f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2087
diff changeset
  6609
    (id := colorId) notNil ifTrue:[
6353
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  6610
	colorId := nil.
757f173c4d2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6206
diff changeset
  6611
	device freeColor:id.
1907
61fdff318175 Make Device*Handles (used for finalization) private in their resp. classes.
Stefan Vogel <sv@exept.de>
parents: 1859
diff changeset
  6612
    ].
61fdff318175 Make Device*Handles (used for finalization) private in their resp. classes.
Stefan Vogel <sv@exept.de>
parents: 1859
diff changeset
  6613
61fdff318175 Make Device*Handles (used for finalization) private in their resp. classes.
Stefan Vogel <sv@exept.de>
parents: 1859
diff changeset
  6614
    "Created: 25.3.1997 / 14:29:10 / stefan"
61fdff318175 Make Device*Handles (used for finalization) private in their resp. classes.
Stefan Vogel <sv@exept.de>
parents: 1859
diff changeset
  6615
! !
61fdff318175 Make Device*Handles (used for finalization) private in their resp. classes.
Stefan Vogel <sv@exept.de>
parents: 1859
diff changeset
  6616
1144
07f3de59864d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1023
diff changeset
  6617
!Color class methodsFor:'documentation'!
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6618
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6619
version
6967
bd2a3899b4f9 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6830
diff changeset
  6620
    ^ '$Header$'
5419
7718ae7f7e6b added: #greyByte:
Claus Gittinger <cg@exept.de>
parents: 5337
diff changeset
  6621
!
7718ae7f7e6b added: #greyByte:
Claus Gittinger <cg@exept.de>
parents: 5337
diff changeset
  6622
7718ae7f7e6b added: #greyByte:
Claus Gittinger <cg@exept.de>
parents: 5337
diff changeset
  6623
version_CVS
6967
bd2a3899b4f9 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6830
diff changeset
  6624
    ^ '$Header$'
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6625
! !
3757
d6b9e17dcc45 checkin from browser
Stefan Vogel <sv@exept.de>
parents: 3727
diff changeset
  6626
6110
28bccabea00a class: Color
Claus Gittinger <cg@exept.de>
parents: 5965
diff changeset
  6627
1023
ddbc71885249 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1021
diff changeset
  6628
Color initialize!