mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 04:15:30 +00:00
ae21ffa9f2
* gdk/Color.custom: Added constructors from System.Drawing.Color and from rgb byte tuples. * gdk/Colormap.custom: Add new .custom file for the AllocColor call. svn path=/trunk/gtk-sharp/; revision=12054
35 lines
717 B
Plaintext
35 lines
717 B
Plaintext
// Gdk.Color.custom - Gdk Color class customizations
|
|
//
|
|
// Author: Jasper van Putten <Jaspervp@gmx.net>, Miguel de Icaza.
|
|
//
|
|
// (c) 2002 Jasper van Putten
|
|
// (c) 2003 Miguel de Icaza.
|
|
//
|
|
// This code is inserted after the automatically generated code.
|
|
|
|
|
|
public override string ToString ()
|
|
{
|
|
return String.Format ("rgb:{0:x}/{1:x}/{2:x}", red, green, blue);
|
|
}
|
|
|
|
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;
|
|
} |