aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/awt/Color.java
blob: 1cc780aa34a737cbf2cb86a20428e770779ab8ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/* Copyright (C) 2000  Free Software Foundation

   This file is part of libgcj.

This software is copyrighted work licensed under the terms of the
Libgcj License.  Please consult the file "LIBGCJ_LICENSE" for
details.  */

package java.awt;

/**
 * @author Warren Levy <warrenl@cygnus.com>
 * @date March 15, 2000.
 */

/**
 * Written using on-line Java Platform 1.2 API Specification, as well
 * as "The Java Class Libraries", 2nd edition (Addison-Wesley, 1998).
 * Status:  Stubbed; A very incomplete implementation.
 */

public class Color extends Object implements Paint, java.io.Serializable
{
  public static final Color white =	new Color(0xFFFFFFFF, true);
  public static final Color lightGray =	new Color(0xFFC0C0C0, true);
  public static final Color gray =	new Color(0xFF808080, true);
  public static final Color darkGray =	new Color(0xFF404040, true);
  public static final Color black =	new Color(0xFF000000, true);
  public static final Color red =	new Color(0xFFFF0000, true);
  public static final Color pink =	new Color(0xFFFFAFAF, true);
  public static final Color orange =	new Color(0xFFFFC800, true);
  public static final Color yellow =	new Color(0xFFFFFF00, true);
  public static final Color green =	new Color(0xFF00FF00, true);
  public static final Color magenta =	new Color(0xFFFF00FF, true);
  public static final Color cyan =	new Color(0xFF00FFFF, true);
  public static final Color blue =	new Color(0xFF0000FF, true);
  
  // The internal sRGB representation.
  // Alpha is bits 24-31, if hasalpha is true.
  // Red is bits 16-23; Green is bits 8-15; Blue is bits 0-7.
  private int rgba = 0xFFFFFFFF;

  public Color(int rgb)
  {
    this(rgb, false);
  } 

  public Color(int rgba, boolean hasalpha)
  {
    this.rgba = rgba;
    if (!hasalpha)
      rgba |= 0xFF000000;
  }

  public Color(int r, int g, int b)
  {
    this(r, g, b, 0xFF);
  }

  public Color(int r, int g, int b, int a)
  {
    rgba = a << 24 | ((r << 16) & 0x00FF0000) | ((g << 8) & 0x0000FF00) |
    	   (b & 0x000000FF);
  }

  public int getRed()
  {
    return (rgba >> 16) & 0xFF;
  }

  public int getGreen()
  {
    return (rgba >> 8) & 0xFF;
  }

  public int getBlue()
  {
    return rgba & 0xFF;
  }

  public int getAlpha()
  {
    return (rgba >> 24) & 0xFF;
  }

  public int getRGB()
  {
    return rgba;
  }
}