2002-10-08 06:49:11 +00:00
|
|
|
// Gdk.Color.custom - Gdk Color class customizations
|
|
|
|
//
|
2003-02-28 07:28:06 +00:00
|
|
|
// Author: Jasper van Putten <Jaspervp@gmx.net>, Miguel de Icaza.
|
2002-10-08 06:49:11 +00:00
|
|
|
//
|
|
|
|
// (c) 2002 Jasper van Putten
|
2003-02-28 07:28:06 +00:00
|
|
|
// (c) 2003 Miguel de Icaza.
|
2002-10-08 06:49:11 +00:00
|
|
|
//
|
|
|
|
// This code is inserted after the automatically generated code.
|
|
|
|
|
|
|
|
|
|
|
|
public override string ToString ()
|
|
|
|
{
|
2003-02-13 03:10:22 +00:00
|
|
|
return String.Format ("rgb:{0:x}/{1:x}/{2:x}", red, green, blue);
|
2002-10-08 06:49:11 +00:00
|
|
|
}
|
2003-02-28 07:28:06 +00:00
|
|
|
|
|
|
|
public Color (byte r, byte g, byte b)
|
|
|
|
{
|
|
|
|
red = (ushort) (r << 8 | r);
|
|
|
|
green = (ushort) (g << 8 | g);
|
|
|
|
blue = (ushort) (b << 8 | b);
|
|
|
|
pixel = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Color (System.Drawing.Color color)
|
|
|
|
{
|
|
|
|
byte r, g, b;
|
|
|
|
r = color.R;
|
|
|
|
g = color.G;
|
|
|
|
b = color.B;
|
|
|
|
|
|
|
|
red = (ushort) (r << 8 | r);
|
|
|
|
green = (ushort) (g << 8 | g);
|
|
|
|
blue = (ushort) (b << 8 | b);
|
|
|
|
pixel = 0;
|
2003-04-14 18:01:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
[DllImport("libgdk-win32-2.0-0.dll")]
|
|
|
|
static extern uint gdk_color_hash(ref Gdk.Color raw);
|
|
|
|
|
|
|
|
public override int GetHashCode() {
|
|
|
|
return (int) gdk_color_hash(ref this);
|
|
|
|
}
|
|
|
|
|