2008-07-01 22:57:50 +00:00
|
|
|
/* GDK - The GIMP Drawing Kit
|
1997-11-24 22:37:52 +00:00
|
|
|
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
2000-07-26 11:33:08 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
1997-11-24 22:37:52 +00:00
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2000-07-26 11:33:08 +00:00
|
|
|
* Lesser General Public License for more details.
|
1997-11-24 22:37:52 +00:00
|
|
|
*
|
2000-07-26 11:33:08 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
1998-04-13 02:02:47 +00:00
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
1997-11-24 22:37:52 +00:00
|
|
|
*/
|
1999-02-24 07:37:18 +00:00
|
|
|
|
|
|
|
/*
|
2000-07-26 11:33:08 +00:00
|
|
|
* Modified by the GTK+ Team and others 1997-2000. See the AUTHORS
|
1999-02-24 07:37:18 +00:00
|
|
|
* file for a list of people on the GTK+ Team. See the ChangeLog
|
|
|
|
* files for a list of changes. These files are distributed with
|
|
|
|
* GTK+ at ftp://ftp.gtk.org/pub/gtk/.
|
|
|
|
*/
|
|
|
|
|
2008-06-22 14:28:52 +00:00
|
|
|
#include "config.h"
|
1999-10-01 23:18:30 +00:00
|
|
|
|
|
|
|
#include "gdkcolor.h"
|
2010-10-15 02:05:51 +00:00
|
|
|
|
|
|
|
#include "gdkscreen.h"
|
2000-03-28 01:40:57 +00:00
|
|
|
#include "gdkinternals.h"
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2010-10-15 02:05:51 +00:00
|
|
|
#include <time.h>
|
2002-10-23 23:15:58 +00:00
|
|
|
|
2010-10-04 01:47:40 +00:00
|
|
|
/**
|
|
|
|
* SECTION:colors
|
|
|
|
* @Short_description: Manipulation of colors
|
|
|
|
* @Title: Colors
|
2011-02-09 07:43:07 +00:00
|
|
|
*
|
|
|
|
* A #GdkColor represents a color.
|
|
|
|
*
|
|
|
|
* When working with cairo, it is often more convenient
|
|
|
|
* to use a #GdkRGBA instead.
|
2010-10-04 01:47:40 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2002-10-23 23:15:58 +00:00
|
|
|
/**
|
|
|
|
* gdk_color_copy:
|
2011-02-09 07:43:07 +00:00
|
|
|
* @color: a #GdkColor
|
|
|
|
*
|
|
|
|
* Makes a copy of a color structure.
|
|
|
|
*
|
|
|
|
* The result must be freed using gdk_color_free().
|
|
|
|
*
|
|
|
|
* Return value: a copy of @color
|
|
|
|
*/
|
1998-06-07 12:00:55 +00:00
|
|
|
GdkColor*
|
2000-03-14 19:57:25 +00:00
|
|
|
gdk_color_copy (const GdkColor *color)
|
1998-06-07 12:00:55 +00:00
|
|
|
{
|
|
|
|
GdkColor *new_color;
|
2011-02-09 07:43:07 +00:00
|
|
|
|
1998-06-07 12:00:55 +00:00
|
|
|
g_return_val_if_fail (color != NULL, NULL);
|
|
|
|
|
2005-12-05 20:51:18 +00:00
|
|
|
new_color = g_slice_new (GdkColor);
|
1998-06-07 12:00:55 +00:00
|
|
|
*new_color = *color;
|
|
|
|
return new_color;
|
|
|
|
}
|
|
|
|
|
2002-10-23 23:15:58 +00:00
|
|
|
/**
|
|
|
|
* gdk_color_free:
|
2011-02-09 07:43:07 +00:00
|
|
|
* @color: a #GdkColor
|
|
|
|
*
|
|
|
|
* Frees a color structure created with gdk_color_copy().
|
|
|
|
*/
|
1998-06-07 12:00:55 +00:00
|
|
|
void
|
|
|
|
gdk_color_free (GdkColor *color)
|
|
|
|
{
|
|
|
|
g_return_if_fail (color != NULL);
|
|
|
|
|
2005-12-05 20:51:18 +00:00
|
|
|
g_slice_free (GdkColor, color);
|
1998-06-07 12:00:55 +00:00
|
|
|
}
|
|
|
|
|
2002-10-23 23:15:58 +00:00
|
|
|
/**
|
|
|
|
* gdk_color_hash:
|
2011-02-09 07:43:07 +00:00
|
|
|
* @color: a #GdkColor
|
|
|
|
*
|
2002-10-23 23:15:58 +00:00
|
|
|
* A hash function suitable for using for a hash
|
2011-02-09 07:43:07 +00:00
|
|
|
* table that stores #GdkColors.
|
|
|
|
*
|
|
|
|
* Return value: The hash function applied to @color
|
|
|
|
*/
|
1998-08-25 00:06:38 +00:00
|
|
|
guint
|
2011-02-09 07:43:07 +00:00
|
|
|
gdk_color_hash (const GdkColor *color)
|
1998-08-25 00:06:38 +00:00
|
|
|
{
|
2011-02-09 07:43:07 +00:00
|
|
|
return ((color->red) +
|
|
|
|
(color->green << 11) +
|
|
|
|
(color->blue << 22) +
|
|
|
|
(color->blue >> 6));
|
1998-08-25 00:06:38 +00:00
|
|
|
}
|
|
|
|
|
2002-10-23 23:15:58 +00:00
|
|
|
/**
|
|
|
|
* gdk_color_equal:
|
2011-02-09 07:43:07 +00:00
|
|
|
* @colora: a #GdkColor
|
|
|
|
* @colorb: another #GdkColor
|
|
|
|
*
|
|
|
|
* Compares two colors.
|
|
|
|
*
|
2002-10-23 23:15:58 +00:00
|
|
|
* Return value: %TRUE if the two colors compare equal
|
2011-02-09 07:43:07 +00:00
|
|
|
*/
|
2000-03-14 19:57:25 +00:00
|
|
|
gboolean
|
1998-08-25 00:06:38 +00:00
|
|
|
gdk_color_equal (const GdkColor *colora,
|
2011-02-09 07:43:07 +00:00
|
|
|
const GdkColor *colorb)
|
1997-11-24 22:37:52 +00:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (colora != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (colorb != NULL, FALSE);
|
|
|
|
|
|
|
|
return ((colora->red == colorb->red) &&
|
2011-02-09 07:43:07 +00:00
|
|
|
(colora->green == colorb->green) &&
|
|
|
|
(colora->blue == colorb->blue));
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
2001-04-02 23:33:47 +00:00
|
|
|
|
2010-04-27 11:31:23 +00:00
|
|
|
G_DEFINE_BOXED_TYPE (GdkColor, gdk_color,
|
|
|
|
gdk_color_copy,
|
|
|
|
gdk_color_free)
|
2001-11-05 00:23:45 +00:00
|
|
|
|
2002-10-23 23:15:58 +00:00
|
|
|
/**
|
|
|
|
* gdk_color_parse:
|
2011-02-09 07:43:07 +00:00
|
|
|
* @spec: the string specifying the color
|
2009-08-18 18:35:10 +00:00
|
|
|
* @color: (out): the #GdkColor to fill in
|
|
|
|
*
|
2008-05-24 16:51:38 +00:00
|
|
|
* Parses a textual specification of a color and fill in the
|
|
|
|
* <structfield>red</structfield>, <structfield>green</structfield>,
|
|
|
|
* and <structfield>blue</structfield> fields of a #GdkColor
|
2011-02-09 07:43:07 +00:00
|
|
|
* structure.
|
|
|
|
*
|
|
|
|
* The string can either one of a large set of standard names
|
|
|
|
* (taken from the X11 <filename>rgb.txt</filename> file), or
|
2010-08-29 11:06:35 +00:00
|
|
|
* it can be a hex value in the form '#rgb' '#rrggbb'
|
2011-02-09 07:43:07 +00:00
|
|
|
* '#rrrgggbbb' or '#rrrrggggbbbb' where 'r', 'g' and
|
|
|
|
* 'b' are hex digits of the red, green, and blue components
|
|
|
|
* of the color, respectively. (White in the four forms is
|
|
|
|
* '#fff', '#ffffff', '#fffffffff' and
|
|
|
|
* '#ffffffffffff').
|
|
|
|
*
|
|
|
|
* Return value: %TRUE if the parsing succeeded
|
|
|
|
*/
|
2001-11-05 00:23:45 +00:00
|
|
|
gboolean
|
|
|
|
gdk_color_parse (const gchar *spec,
|
2011-02-09 07:43:07 +00:00
|
|
|
GdkColor *color)
|
2001-11-05 00:23:45 +00:00
|
|
|
{
|
|
|
|
PangoColor pango_color;
|
|
|
|
|
|
|
|
if (pango_color_parse (&pango_color, spec))
|
|
|
|
{
|
|
|
|
color->red = pango_color.red;
|
|
|
|
color->green = pango_color.green;
|
|
|
|
color->blue = pango_color.blue;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return FALSE;
|
|
|
|
}
|
Changes multihead reorganizing code for win32 support, mostly from a patch
Wed Jun 5 18:34:47 2002 Owen Taylor <otaylor@redhat.com>
Changes multihead reorganizing code for win32 support,
mostly from a patch by Hans Breuer.
* gdk/gdkcolor.c gdk/x11/gdkcolor-x11.c gdk/gdkcursor.c
gdk/x11/gdkcursor-x11.c gdk/gdkevents.c gdk/x11/gdkevents-x11.c
gdk/gdkfont.c gdk/x11/gdkfont-x11.c gdk/gdkkeys.c
gdk/x11/gdkkeys-x11.c gdk/gdkimage.c gdk/x11/gdkimage-x11.c
gdk/gdkscreen.c gdk/x11/gdkmain-x11.c
gdk/gdkdisplay.c gdk/gdkevents-x11.c gdk/gdkpango.c
gdk/x11/gdkpango-x11.c gdk/gdkselection.c
gdk/x11/gdkselection-x11.c gdk/gdkwindow.c
gdk/x11/gdkwindow-x11.c gdk/gdkvisual.c gdk/x11/gdkvisual-x11.c:
Move port-independent singlehead wrapper functions into
port-independent part of GDK. (#80009)
* gdk/win32/gdkcolor-win32.c gdk/win32/gdkcursor-win32.c
gdk/win32/gdkevents-win32.c gdk/win32/gdkfont-win32.c
gdk/win32/gdkimage-win32.c gdk/win32/gdkkeys-win32.c
gdk/win32/gdkmain-win32.c gdk/win32/gdkproperty-win32.c
gdk/win32/gdkselection-win32.c gdk/win32/gkwindow-win32.c:
Turn singlehead functions into "multihead" functions that ignore
their GdkDisplay or GdkScreen arguments.
* gdk/win32/gdkdrawable-win32.c gdk/win32/gdkevents-win32.c
gdk/win32/gdkinput-win32.c gdk/win32/gdkprivate-win32.h:
Misc multihead-compatibility changes.
* gtk/gtk.def gdk/gdk.def: Update for multihead functions.
* gdk/gdkcolormap.h gdk/gdkvisual.h gdk/x11/gdkcolormap-x11.c
gdk/x11/gdkvisual-x11.c: Remove the screen fields
from the public parts of the colormap/visual structures, add accessors
instead.
* gdk/gdkpixbuf-render.c gdk/gdkpixmap.c gdk/gdkrgb.c
gdk/x11/gdkcolormap-x11.c gdk/x11/gdkimage-x11.c
gdk/x11/gdkimage-x11.c gdk/x11/gdkprivate-x11.h gtk/gtkgc.c
gtk/gtkstyle.c gtk/gtkwidget.c: Use accessors to get the screen
for colormaps, visuals; move the fields into the private
structures for the x11 backend.
* gdk/gdkdisplay.[ch] gdk/x11/gdkdisplay-x11.[ch]
gdk/gdkscreen.[ch] gdk/x11/gdkscreen-x11.c:
Remove virtualization of screen and display functions.
(#79990, patch from Erwann Chenede)
* gdk/win32/gdkdisplay-x11.c gdk/win32/gdkscreen-win32.c
gdk/win32/{Makefile.am, makefile.msc, makefile.mingw}:
New files containing stub implementations of Display,
Screen functions.
* gdk/x11/gdkscreen-x11.[ch] gdk/x11/gdkdisplay-x11.[ch]
gdk/x11/gdkx.h: Clean up function exports and what
headers they are in. (#79954)
* gdk/x11/gdkx.h: Fix macro that was referring to a non-existant
screen->screen_num. (In the patch for #79972, Erwann Chenede)
* gdk/gdkscreen.c gdk/gdkwindow.c gdk/x11/gdkinternals.h
gdk/x11/gdkscreen-x11.c: Fix gdk_screen_get_window_at_pointer()
to use window hooks. (#79972, patch partly from Erwann Chenede)
* gdk/x11/gdkdisplay-x11.c gdk/x11/gdkevents-x11.c: Fix
some warnings.
2002-06-06 00:26:42 +00:00
|
|
|
|
2006-12-21 12:34:41 +00:00
|
|
|
/**
|
|
|
|
* gdk_color_to_string:
|
|
|
|
* @color: a #GdkColor
|
|
|
|
*
|
|
|
|
* Returns a textual specification of @color in the hexadecimal form
|
|
|
|
* <literal>#rrrrggggbbbb</literal>, where <literal>r</literal>,
|
|
|
|
* <literal>g</literal> and <literal>b</literal> are hex digits
|
|
|
|
* representing the red, green and blue components respectively.
|
|
|
|
*
|
2011-02-09 07:43:07 +00:00
|
|
|
* The returned string can be parsed by gdk_color_parse().
|
|
|
|
*
|
2006-12-21 12:34:41 +00:00
|
|
|
* Return value: a newly-allocated text string
|
|
|
|
*
|
|
|
|
* Since: 2.12
|
2011-02-09 07:43:07 +00:00
|
|
|
*/
|
2006-12-21 12:34:41 +00:00
|
|
|
gchar *
|
|
|
|
gdk_color_to_string (const GdkColor *color)
|
|
|
|
{
|
|
|
|
PangoColor pango_color;
|
|
|
|
|
|
|
|
g_return_val_if_fail (color != NULL, NULL);
|
|
|
|
|
|
|
|
pango_color.red = color->red;
|
|
|
|
pango_color.green = color->green;
|
|
|
|
pango_color.blue = color->blue;
|
|
|
|
|
|
|
|
return pango_color_to_string (&pango_color);
|
|
|
|
}
|