1997-12-17 00:14:36 +00:00
|
|
|
/* GDK - The GIMP Drawing Kit
|
|
|
|
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* 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
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library 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-12-17 00:14:36 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* Color Context module
|
|
|
|
* Copyright 1994,1995 John L. Cwikla
|
|
|
|
* Copyright (C) 1997 by Ripley Software Development
|
|
|
|
* Copyright (C) 1997 by Federico Mena (port to Gtk/Gdk)
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Copyright 1994,1995 John L. Cwikla
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, distribute, and sell this software
|
|
|
|
* and its documentation for any purpose is hereby granted without fee,
|
|
|
|
* provided that the above copyright notice appears in all copies and that
|
|
|
|
* both that copyright notice and this permission notice appear in
|
|
|
|
* supporting documentation, and that the name of John L. Cwikla or
|
|
|
|
* Wolfram Research, Inc not be used in advertising or publicity
|
|
|
|
* pertaining to distribution of the software without specific, written
|
|
|
|
* prior permission. John L. Cwikla and Wolfram Research, Inc make no
|
|
|
|
* representations about the suitability of this software for any
|
|
|
|
* purpose. It is provided "as is" without express or implied warranty.
|
|
|
|
*
|
|
|
|
* John L. Cwikla and Wolfram Research, Inc disclaim all warranties with
|
|
|
|
* regard to this software, including all implied warranties of
|
|
|
|
* merchantability and fitness, in no event shall John L. Cwikla or
|
|
|
|
* Wolfram Research, Inc be liable for any special, indirect or
|
|
|
|
* consequential damages or any damages whatsoever resulting from loss of
|
|
|
|
* use, data or profits, whether in an action of contract, negligence or
|
|
|
|
* other tortious action, arising out of or in connection with the use or
|
|
|
|
* performance of this software.
|
|
|
|
*
|
|
|
|
* Author:
|
|
|
|
* John L. Cwikla
|
|
|
|
* X Programmer
|
|
|
|
* Wolfram Research Inc.
|
|
|
|
*
|
|
|
|
* cwikla@wri.com
|
|
|
|
*/
|
|
|
|
|
1999-02-24 07:37:18 +00:00
|
|
|
/*
|
|
|
|
* Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
|
|
|
|
* 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/.
|
|
|
|
*/
|
1997-12-17 00:14:36 +00:00
|
|
|
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
1999-10-01 23:18:30 +00:00
|
|
|
#include "gdkcc.h"
|
|
|
|
#include "gdkcolor.h"
|
|
|
|
#include "gdkx.h"
|
1997-12-17 00:14:36 +00:00
|
|
|
|
|
|
|
#define MAX_IMAGE_COLORS 256
|
|
|
|
|
1999-10-01 23:18:30 +00:00
|
|
|
typedef struct _GdkColorContextPrivate GdkColorContextPrivate;
|
|
|
|
|
|
|
|
struct _GdkColorContextPrivate
|
|
|
|
{
|
|
|
|
GdkColorContext color_context;
|
|
|
|
Display *xdisplay;
|
|
|
|
XStandardColormap std_cmap;
|
|
|
|
};
|
1997-12-17 00:14:36 +00:00
|
|
|
|
|
|
|
static guint
|
1998-06-10 16:59:28 +00:00
|
|
|
hash_color (gconstpointer key)
|
1997-12-17 00:14:36 +00:00
|
|
|
{
|
1998-06-09 23:18:11 +00:00
|
|
|
const GdkColor *color = key;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
return (color->red * 33023 + color->green * 30013 + color->blue * 27011);
|
1997-12-17 00:14:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gint
|
1998-06-10 16:59:28 +00:00
|
|
|
compare_colors (gconstpointer a,
|
|
|
|
gconstpointer b)
|
1997-12-17 00:14:36 +00:00
|
|
|
{
|
1998-06-09 23:18:11 +00:00
|
|
|
const GdkColor *aa = a;
|
|
|
|
const GdkColor *bb = b;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
return ((aa->red == bb->red) && (aa->green == bb->green) && (aa->blue == bb->blue));
|
1997-12-17 00:14:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
1998-01-23 06:26:39 +00:00
|
|
|
free_hash_entry (gpointer key,
|
|
|
|
gpointer value,
|
|
|
|
gpointer user_data)
|
1997-12-17 00:14:36 +00:00
|
|
|
{
|
1998-01-23 06:26:39 +00:00
|
|
|
g_free (key); /* key and value are the same GdkColor */
|
1997-12-17 00:14:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
1998-01-23 06:26:39 +00:00
|
|
|
pixel_sort (const void *a, const void *b)
|
1997-12-17 00:14:36 +00:00
|
|
|
{
|
1998-01-23 06:26:39 +00:00
|
|
|
return ((GdkColor *) a)->pixel - ((GdkColor *) b)->pixel;
|
1997-12-17 00:14:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* XXX: This function does an XQueryColors() the hard way, because there is
|
|
|
|
* no corresponding function in Gdk.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static void
|
1998-01-23 06:26:39 +00:00
|
|
|
my_x_query_colors (GdkColormap *colormap,
|
|
|
|
GdkColor *colors,
|
|
|
|
gint ncolors)
|
1997-12-17 00:14:36 +00:00
|
|
|
{
|
1998-01-23 06:26:39 +00:00
|
|
|
XColor *xcolors;
|
|
|
|
gint i;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
xcolors = g_new (XColor, ncolors);
|
|
|
|
for (i = 0; i < ncolors; i++)
|
|
|
|
xcolors[i].pixel = colors[i].pixel;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
XQueryColors (gdk_display, GDK_COLORMAP_XCOLORMAP (colormap), xcolors, ncolors);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
for (i = 0; i < ncolors; i++)
|
|
|
|
{
|
|
|
|
colors[i].red = xcolors[i].red;
|
|
|
|
colors[i].green = xcolors[i].green;
|
|
|
|
colors[i].blue = xcolors[i].blue;
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
g_free (xcolors);
|
1997-12-17 00:14:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
1998-01-23 06:26:39 +00:00
|
|
|
query_colors (GdkColorContext *cc)
|
1997-12-17 00:14:36 +00:00
|
|
|
{
|
1998-01-23 06:26:39 +00:00
|
|
|
gint i;
|
|
|
|
GdkColorContextPrivate *ccp = (GdkColorContextPrivate *) cc;
|
|
|
|
cc->cmap = g_new (GdkColor, cc->num_colors);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
for (i = 0; i < cc->num_colors; i++)
|
|
|
|
cc->cmap[i].pixel = cc->clut ? cc->clut[i] : ccp->std_cmap.base_pixel + i;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
my_x_query_colors (cc->colormap, cc->cmap, cc->num_colors);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
qsort (cc->cmap, cc->num_colors, sizeof (GdkColor), pixel_sort);
|
1997-12-17 00:14:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
1998-01-23 06:26:39 +00:00
|
|
|
init_bw (GdkColorContext *cc)
|
1997-12-17 00:14:36 +00:00
|
|
|
{
|
1998-01-23 06:26:39 +00:00
|
|
|
GdkColor color;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
g_warning ("init_bw: failed to allocate colors, falling back to black and white");
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
cc->mode = GDK_CC_MODE_BW;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
color.red = color.green = color.blue = 0;
|
|
|
|
|
|
|
|
if (!gdk_color_alloc (cc->colormap, &color))
|
|
|
|
cc->black_pixel = 0;
|
|
|
|
else
|
|
|
|
cc->black_pixel = color.pixel;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
color.red = color.green = color.blue = 0xffff;
|
|
|
|
|
|
|
|
if (!gdk_color_alloc (cc->colormap, &color))
|
|
|
|
cc->white_pixel = cc->black_pixel ? 0 : 1;
|
|
|
|
else
|
|
|
|
cc->white_pixel = color.pixel;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
cc->num_colors = 2;
|
1997-12-17 00:14:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
1998-01-23 06:26:39 +00:00
|
|
|
init_gray (GdkColorContext *cc)
|
1997-12-17 00:14:36 +00:00
|
|
|
{
|
1998-01-23 06:26:39 +00:00
|
|
|
GdkColorContextPrivate *ccp = (GdkColorContextPrivate *) cc;
|
|
|
|
GdkColor *clrs, *cstart;
|
|
|
|
gint i;
|
|
|
|
gdouble dinc;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
cc->num_colors = GDK_VISUAL_XVISUAL (cc->visual)->map_entries;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
cc->clut = g_new (gulong, cc->num_colors);
|
|
|
|
cstart = g_new (GdkColor, cc->num_colors);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
|
|
|
retrygray:
|
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
dinc = 65535.0 / (cc->num_colors - 1);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
clrs = cstart;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
for (i = 0; i < cc->num_colors; i++)
|
|
|
|
{
|
|
|
|
clrs->red = clrs->green = clrs->blue = dinc * i;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
if (!gdk_color_alloc (cc->colormap, clrs))
|
|
|
|
{
|
|
|
|
gdk_colors_free (cc->colormap, cc->clut, i, 0);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
cc->num_colors /= 2;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
if (cc->num_colors > 1)
|
|
|
|
goto retrygray;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g_free (cc->clut);
|
|
|
|
cc->clut = NULL;
|
|
|
|
init_bw (cc);
|
|
|
|
g_free (cstart);
|
|
|
|
return;
|
|
|
|
}
|
1997-12-17 00:14:36 +00:00
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
cc->clut[i] = clrs++->pixel;
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
g_free (cstart);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* XXX: is this the right thing to do? */
|
|
|
|
ccp->std_cmap.colormap = GDK_COLORMAP_XCOLORMAP (cc->colormap);
|
|
|
|
ccp->std_cmap.base_pixel = 0;
|
|
|
|
ccp->std_cmap.red_max = cc->num_colors - 1;
|
|
|
|
ccp->std_cmap.green_max = 0;
|
|
|
|
ccp->std_cmap.blue_max = 0;
|
|
|
|
ccp->std_cmap.red_mult = 1;
|
|
|
|
ccp->std_cmap.green_mult = 0;
|
|
|
|
ccp->std_cmap.blue_mult = 0;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
cc->white_pixel = WhitePixel (ccp->xdisplay, gdk_screen);
|
|
|
|
cc->black_pixel = BlackPixel (ccp->xdisplay, gdk_screen);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
query_colors (cc);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
cc->mode = GDK_CC_MODE_MY_GRAY;
|
1997-12-17 00:14:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
1998-01-23 06:26:39 +00:00
|
|
|
init_color (GdkColorContext *cc)
|
1997-12-17 00:14:36 +00:00
|
|
|
{
|
1998-01-23 06:26:39 +00:00
|
|
|
GdkColorContextPrivate *ccp = (GdkColorContextPrivate *) cc;
|
|
|
|
gint cubeval;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
cubeval = 1;
|
|
|
|
while ((cubeval * cubeval * cubeval) < GDK_VISUAL_XVISUAL (cc->visual)->map_entries)
|
|
|
|
cubeval++;
|
|
|
|
cubeval--;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
cc->num_colors = cubeval * cubeval * cubeval;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
ccp->std_cmap.red_max = cubeval - 1;
|
|
|
|
ccp->std_cmap.green_max = cubeval - 1;
|
|
|
|
ccp->std_cmap.blue_max = cubeval - 1;
|
|
|
|
ccp->std_cmap.red_mult = cubeval * cubeval;
|
|
|
|
ccp->std_cmap.green_mult = cubeval;
|
|
|
|
ccp->std_cmap.blue_mult = 1;
|
|
|
|
ccp->std_cmap.base_pixel = 0;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
cc->white_pixel = WhitePixel (ccp->xdisplay, gdk_screen);
|
|
|
|
cc->black_pixel = BlackPixel (ccp->xdisplay, gdk_screen);
|
|
|
|
cc->num_colors = DisplayCells (ccp->xdisplay, gdk_screen);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* a CLUT for storing allocated pixel indices */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
cc->max_colors = cc->num_colors;
|
|
|
|
cc->clut = g_new (gulong, cc->max_colors);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
for (cubeval = 0; cubeval < cc->max_colors; cubeval++)
|
|
|
|
cc->clut[cubeval] = cubeval;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
query_colors (cc);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
cc->mode = GDK_CC_MODE_STD_CMAP;
|
1997-12-17 00:14:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
1998-01-23 06:26:39 +00:00
|
|
|
init_true_color (GdkColorContext *cc)
|
1997-12-17 00:14:36 +00:00
|
|
|
{
|
1998-01-23 06:26:39 +00:00
|
|
|
GdkColorContextPrivate *ccp = (GdkColorContextPrivate *) cc;
|
|
|
|
gulong rmask, gmask, bmask;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
cc->mode = GDK_CC_MODE_TRUE;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* Red */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
rmask = cc->masks.red = cc->visual->red_mask;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
cc->shifts.red = 0;
|
|
|
|
cc->bits.red = 0;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
while (!(rmask & 1))
|
|
|
|
{
|
|
|
|
rmask >>= 1;
|
|
|
|
cc->shifts.red++;
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
while (rmask & 1)
|
|
|
|
{
|
|
|
|
rmask >>= 1;
|
|
|
|
cc->bits.red++;
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* Green */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
gmask = cc->masks.green = cc->visual->green_mask;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
cc->shifts.green = 0;
|
|
|
|
cc->bits.green = 0;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
while (!(gmask & 1))
|
|
|
|
{
|
|
|
|
gmask >>= 1;
|
|
|
|
cc->shifts.green++;
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
while (gmask & 1)
|
|
|
|
{
|
|
|
|
gmask >>= 1;
|
|
|
|
cc->bits.green++;
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* Blue */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
bmask = cc->masks.blue = cc->visual->blue_mask;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
cc->shifts.blue = 0;
|
|
|
|
cc->bits.blue = 0;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
while (!(bmask & 1))
|
|
|
|
{
|
|
|
|
bmask >>= 1;
|
|
|
|
cc->shifts.blue++;
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
while (bmask & 1)
|
|
|
|
{
|
|
|
|
bmask >>= 1;
|
|
|
|
cc->bits.blue++;
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
cc->num_colors = (cc->visual->red_mask | cc->visual->green_mask | cc->visual->blue_mask) + 1;
|
|
|
|
cc->white_pixel = WhitePixel (ccp->xdisplay, gdk_screen);
|
|
|
|
cc->black_pixel = BlackPixel (ccp->xdisplay, gdk_screen);
|
1997-12-17 00:14:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
1998-01-23 06:26:39 +00:00
|
|
|
init_direct_color (GdkColorContext *cc)
|
1997-12-17 00:14:36 +00:00
|
|
|
{
|
1998-01-23 06:26:39 +00:00
|
|
|
gint n, count;
|
|
|
|
GdkColor *clrs, *cstart;
|
|
|
|
gulong rval, gval, bval;
|
|
|
|
gulong *rtable;
|
|
|
|
gulong *gtable;
|
|
|
|
gulong *btable;
|
|
|
|
gdouble dinc;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
init_true_color (cc); /* for shift stuff */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
rval = cc->visual->red_mask >> cc->shifts.red;
|
|
|
|
gval = cc->visual->green_mask >> cc->shifts.green;
|
|
|
|
bval = cc->visual->blue_mask >> cc->shifts.blue;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
rtable = g_new (gulong, rval + 1);
|
|
|
|
gtable = g_new (gulong, gval + 1);
|
|
|
|
btable = g_new (gulong, bval + 1);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
cc->max_entry = MAX (rval, gval);
|
|
|
|
cc->max_entry = MAX (cc->max_entry, bval);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
cstart = g_new (GdkColor, cc->max_entry + 1);
|
|
|
|
cc->clut = g_new (gulong, cc->max_entry + 1);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
|
|
|
retrydirect:
|
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
for (n = 0; n < rval; n++)
|
|
|
|
rtable[n] = rval ? (65535.0 / rval * n) : 0;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
for (n = 0; n < gval; n++)
|
|
|
|
gtable[n] = gval ? (65535.0 / gval * n) : 0;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
for (n = 0; n < bval; n++)
|
|
|
|
btable[n] = bval ? (65535.0 / bval * n) : 0;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
cc->max_entry = MAX (rval, gval);
|
|
|
|
cc->max_entry = MAX (cc->max_entry, bval);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
count = 0;
|
|
|
|
clrs = cstart;
|
|
|
|
cc->num_colors = (rval + 1) * (gval + 1) * (bval + 1);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
for (n = 0; n < cc->max_entry; n++)
|
|
|
|
{
|
|
|
|
dinc = (double) n / cc->max_entry;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
clrs->red = rtable[(int) (dinc * rval)];
|
|
|
|
clrs->green = gtable[(int) (dinc * gval)];
|
|
|
|
clrs->blue = btable[(int) (dinc * bval)];
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
if (gdk_color_alloc (cc->colormap, clrs))
|
|
|
|
{
|
|
|
|
cc->clut[count++] = clrs->pixel;
|
|
|
|
clrs++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gdk_colors_free (cc->colormap, cc->clut, count, 0);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
rval >>= 1;
|
|
|
|
gval >>= 1;
|
|
|
|
bval >>= 1;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
cc->masks.red = (cc->masks.red >> 1) & cc->visual->red_mask;
|
|
|
|
cc->masks.green = (cc->masks.green >> 1) & cc->visual->green_mask;
|
|
|
|
cc->masks.blue = (cc->masks.blue >> 1) & cc->visual->blue_mask;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
cc->shifts.red++;
|
|
|
|
cc->shifts.green++;
|
|
|
|
cc->shifts.blue++;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
cc->bits.red--;
|
|
|
|
cc->bits.green--;
|
|
|
|
cc->bits.blue--;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
cc->num_colors = (rval + 1) * (gval + 1) * (bval + 1);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
if (cc->num_colors >1)
|
|
|
|
goto retrydirect;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g_free (cc->clut);
|
|
|
|
cc->clut = NULL;
|
|
|
|
init_bw (cc);
|
|
|
|
break;
|
|
|
|
}
|
1997-12-17 00:14:36 +00:00
|
|
|
}
|
1998-01-23 06:26:39 +00:00
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* Update allocated color count; original num_colors is max_entry, which
|
|
|
|
* is not necessarily the same as the really allocated number of colors.
|
|
|
|
*/
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
cc->num_colors = count;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
g_free (rtable);
|
|
|
|
g_free (gtable);
|
|
|
|
g_free (btable);
|
|
|
|
g_free (cstart);
|
1997-12-17 00:14:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
1998-01-23 06:26:39 +00:00
|
|
|
init_palette (GdkColorContext *cc)
|
1997-12-17 00:14:36 +00:00
|
|
|
{
|
1998-01-23 06:26:39 +00:00
|
|
|
/* restore correct mode for this cc */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
switch (cc->visual->type)
|
|
|
|
{
|
|
|
|
case GDK_VISUAL_STATIC_GRAY:
|
|
|
|
case GDK_VISUAL_GRAYSCALE:
|
|
|
|
if (GDK_VISUAL_XVISUAL (cc->visual)->map_entries == 2)
|
|
|
|
cc->mode = GDK_CC_MODE_BW;
|
|
|
|
else
|
|
|
|
cc->mode = GDK_CC_MODE_MY_GRAY;
|
|
|
|
break;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
case GDK_VISUAL_TRUE_COLOR:
|
|
|
|
case GDK_VISUAL_DIRECT_COLOR:
|
|
|
|
cc->mode = GDK_CC_MODE_TRUE;
|
|
|
|
break;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
case GDK_VISUAL_STATIC_COLOR:
|
|
|
|
case GDK_VISUAL_PSEUDO_COLOR:
|
|
|
|
cc->mode = GDK_CC_MODE_STD_CMAP;
|
|
|
|
break;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
default:
|
|
|
|
cc->mode = GDK_CC_MODE_UNDEFINED;
|
|
|
|
break;
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* previous palette */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
if (cc->num_palette)
|
|
|
|
g_free (cc->palette);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
if (cc->fast_dither)
|
|
|
|
g_free (cc->fast_dither);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* clear hash table if present */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
if (cc->color_hash)
|
|
|
|
{
|
[ Merges from gtk-1-2 ]
Wed Sep 8 07:13:29 1999 Tim Janik <timj@gtk.org>
* configure.in: fixed "GNU Make" check to pass with new make version
3.77.95.
Fri Sep 3 16:04:41 1999 Tim Janik <timj@gtk.org>
* gtk-config.in (--version): don't echo @GTK_VERSION@, but
@GTK_MAJOR_VERSION@.@GTK_MINOR_VERSION@.@GTK_MICRO_VERSION@, so the
AM_PATH_GTK() macros don't get confused by the -pre1.
Thu Sep 2 19:02:37 1999 Owen Taylor <otaylor@redhat.com>
* configure.in (REBUILD): Change check for perl5
to check explicitely for v >= 5.002. (5.001
does not work with our scripts.)
Wed Aug 25 15:45:46 1999 Tim Janik <timj@gtk.org>
* configure.in: evaluate $PERL for the perl version check. added
--disable-rebuilds to give the user an option to completely disable
any source autogeneration rules.
Mon Aug 23 23:16:14 1999 Tim Janik <timj@gtk.org>
* configure.in: evaluate $ac_make when checking for GNU Make.
Mon Aug 23 19:11:17 1999 Tim Janik <timj@gtk.org>
* docs/Makefile.am: added generation.txt.
* Makefile.am: require automake 1.4, build README from README.in and
INSTALL from INSTALL.in in dist-hook.
* README.in:
* INSTALL.in: new files to autogenerate README and INSTALL from.
* configure.in: figure whether we have GNU Make
* docs/generation.txt: minor additions/corrections.
Wed Aug 11 13:38:26 BST 1999 Tony Gale <gale@gtk.org>
* docs/gtkfaq.sgml: FAQ Update
July 30, 1999 Elliot Lee <sopwith@redhat.com>
* configure.in: Fix autoconf warnings about cross compilation by
trying to provide sane defaults for AC_TRY_RUN.
Fri Jul 16 22:20:21 PDT 1999 Manish Singh <yosh@gimp.org>
* ltconfig
* ltmain.sh: upgrade to libtool 1.3.3
Thu Jul 8 11:30:18 1999 Owen Taylor <otaylor@redhat.com>
* INSTALL: Indicate that the --with-glib= configure
time flag is unsupported.
Mon Jul 5 20:36:03 1999 Owen Taylor <otaylor@redhat.com>
* docs/generation.txt: Added a file that gives
documenation about the autogeneration process for
various autogenerated files.
Tue Jun 29 15:59:25 1999 Owen Taylor <otaylor@redhat.com>
* configure.in (LIBS): Look for libgmodule in the
right location.
Thu Jun 17 13:57:31 1999 Owen Taylor <otaylor@redhat.com>
* docs/gtk_tut.sgml: Removed references to
code examples in my directory on gtk.org as
they should all be in the tutorial now.
* docs/gtk_tut.sgml: Added sources for dial-test
and scribble-xinput programs that were previously
missing.
Fri Jun 4 00:08:59 1999 Owen Taylor <otaylor@redhat.com>
* TODO: Added entry about menu keyboard navigation, removed
some finished items.
Mon May 31 00:11:24 1999 Owen Taylor <otaylor@redhat.com>
* acinclude.m4: Standardize on func_dgettext
not func_gettext, so that the checks for dgettext
actually are paid attention to.
Wed May 5 10:47:54 1999 Owen Taylor <otaylor@redhat.com>
* configure.in (LIBS): Add $INTLLIBS into $LIBS
directly, rather than repeating the checks for
gettext.
* INSTALL: Added information about gettext and
NLS support.
* acinclude.m4 (LIBM): Check for dgettext, not
just gettext. This should hopefully fix things wrt
systems with old versions of GNU gettext installed.
Tue Jun 29 15:59:25 1999 Owen Taylor <otaylor@redhat.com>
* configure.in (LIBS): Look for libgmodule in the
right location.
Thu Apr 1 16:58:10 PST 1999 Manish Singh <yosh@gimp.org>
* autogen.sh: add --enable-maintainer-mode
* configure.in: set ACLOCAL="$ACLOCAL $ACLOCAL_FLAGS"
Wed Mar 24 23:03:49 CST 1999 Shawn T. Amundson <amundson@gtk.org>
* docs/gtk-config.1.in:
docs/Makefile.am:
configure.in: gtk-config is now generated.
* docs/gtk-config.1: Removed, now generated.
Thu Sep 23 17:59:59 1999 Tim Janik <timj@gtk.org>
* gdk/gdkevents.c (gdk_event_translate): grr, even if Gdk doesn't
handle CreateNotify itself, still put out a debuging message for
--gdk-debug=events. made the ReparentNotify debugging message more
verbose.
wrap xcoords translation for ConfigureEvents into an error trap,
a destroy event may already be pending, and in that case, the
actuall coordinate values are not at all critical.
Sat Sep 18 22:24:15 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkcc.c: Stop leaking the color_hash all over
the place. Simplify and improve the logic.
Fri Sep 17 09:57:15 1999 Tim Janik <timj@gtk.org>
* gdk/gdk.h, gdk/gdkcolor.c: make return types (gint or gboolean)
for prototypes and function implementations consistent (reported
by Tomas Ogren).
Tue Sep 14 18:23:01 1999 Tim Janik <timj@gtk.org>
* gdk/gdkevents.c (gdk_event_translate): tell if expose events have
send_event set in debugging output.
(gdk_compress_exposures): default initialize the event so we don't
operate on bogus values (namely send_event).
Thu Sep 2 16:33:59 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkwindow.c: When we receive an unexpected
destroy notify on one of our windows, don't just
warn about it, also mark our windows as destroyed.
Sun Sep 5 08:10:53 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkfont.c (gdk_font_hash_insert): Add
name => font and name => fontset hashes. The
name => fontset hash is a _big_ win since we
weren't previously caching fontsets at all and loading
fontsets is expensive. The name => font hash
is less of a win, but it does save us from doing
repeated XQueryFont calls on the same font.
* gdk/gdkprivate.h (struct _GdkFontPrivate): Add a names
list so we can remove font/fontset from hash.
Thu Sep 2 19:02:37 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkproperty.c (gdk_atom_intern): Remove useless
and slightly confusing test. [ XInternAtom (,,TRUE)
will never return None ].
Sat Sep 4 08:39:26 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkwindow.c (gdk_window_set_geometry_hints)
gdk/gdkwindow.c (gdk_window_set_hints):
Don't omit setting the properties if flags == 0 -
there may be an existing set of properties there
already. (Very old bug. Would it be better to
delete the property instead?)
* gdk/gdkselection.c (gdk_selection_property_get): Fix
spelling error in comment.
Wed Sep 1 14:05:30 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkimage.c (gdk_image_new): Use gdk_error_trap_push()
to avoid stomping over gdk_error_warnings.
* gdk/gdkimage.c (gdk_image_new): compute image->bpp
as (bits_per_pixel + 7) / 8. This gives the same
result as before for multiples of 8, but actually
a "reasonable" value for 1bit or 4bit displays.
Mon Aug 23 19:11:17 1999 Tim Janik <timj@gtk.org>
* gdk/Makefile.am: minor cleanups, strip spaces on build rules for
GNU Make.
Tue Aug 17 07:43:04 1999 Tim Janik <timj@gtk.org>
* gdk/gdkevents.c (gdk_event_translate): give a debugging note when
discarding configure events.
1999-08-18 Federico Mena Quintero <federico@redhat.com>
* gdk/gdkpixmap.c (gdk_pixmap_unref): g_return_if_fail() the
refcount is greater than zero.
* gdk/gdkwindow.c (gdk_window_unref): Likewise.
* gdk/gdkfont.c (gdk_font_unref): Likewise.
* gdk/gdkgc.c (gdk_gc_unref): Likewise.
* gdk/gdkdnd.c (gdk_drag_context_unref): Likewise.
Wed Aug 11 01:04:57 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkproperty.c (gdk_property_get): Fix assumption
that format 32 => sizeof(item) == 4. It really is
sizeof(long).
Tue Jun 29 23:02:42 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.c (gdk_x_error / gdk_x_io_error): Don't
core dump at all on X IO errors, only core dump
if --enable-debug for X errors.
Thu Jun 24 17:06:23 1999 Tim Janik <timj@gtk.org>
* gdk/gdkevents.c (gdk_event_translate): removed old ""Got event for
unknown window:" message. disabled ConfigureNotify discarding code,
because it led to events being processed out of order.
Thu Jun 24 12:22:02 1999 Tim Janik <timj@gtk.org>
* gdk/gdkglobals.c: preinitialize gdk_error_code to 0.
* gdk/gdkevents.c (gdk_event_send_client_message_to_all_recurse): since
we export this function, supress error warnings and don't reset the
error code in the first half of this function.
* gdk/gdk.c (gdk_x_error): set gdk_error_code to the actuall X error
code (instead of just -1) so gdk_error_trap_pop() reveals something
actually informative about the error that happened.
* gdk/*.c:
don't rely on gdk_error_code being -1 if an error occoured, but just
gdk_error_code != 0.
Thu Jun 24 11:50:07 1999 Tim Janik <timj@gtk.org>
* gdk/gdkevents.c (gdk_event_apply_filters): advance the filter list
pointer *before* invoking the filter function, so we at least don't
crash if a filter is removed that is currently executed. window filters
*really* need to be made truely reentrant at some point.
Mon Jun 14 11:10:15 1999 Tim Janik <timj@gtk.org>
* gdk/gdkevents.c (gdk_event_translate): print the atom name in the
PropertyNotify debug messages.
Wed May 5 22:51:06 1999 Owen Taylor <otaylor@redhat.com>
Patch from Sung-Hyun Nam <namsh@lgic.co.kr>
* gdk/gdkim.c: Fix cut-and-paste errors for
x/y and PreeditAttributes/StatusAttributes.
Wed May 5 22:24:21 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkwindow.c (gdk_window_set_geometry_hints): Change
G_MAXINT to 2^16 to alleviate overflow problems in
various window managers.
Wed Apr 21 00:42:08 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkfont.c (gdk_text_measure): Fix the return value
for fontsets.
Wed May 5 12:42:01 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkwindow.c (gdk_window_set_geometry_hints):
Initialize size_hints.x and size_hints.y because kwm
brokenly pays attention to them.
(Bug #1181 - Lars Heete <hel@admin.de>)
Wed May 5 11:38:56 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkrgb.c (gdk_rgb_choose_visual): Free the
return value of gdk_list_visuals().
(Bug #1193 - Morten Welinder <terra@diku.dk>)
Tue May 4 11:12:56 PDT 1999 Manish Singh <yosh@gimp.org>
* gdk/gdkim.c (gdk_im_real_open): cast the return value of
XSetIMValues to (void *) when comparing to NULL, to workaround
the problem of some compilers barfing since older X headers don't
have the prototype for it.
Mon Apr 19 10:11:12 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkcolor.c (gdk_colormap_new): Fix memory leak
for pseudocolor where colormap->colors was double
allocated.
* gdk/gdkcolor.c (gdk_colormap_alloc1): Store the
color value in the hash table with the pixel filled
in so when we do later hash table lookups, the color
value is correct.
Sun May 2 15:29:45 PDT 1999 Manish Singh <yosh@gimp.org>
* gdk/gdkdraw.c (gdk_draw_lines): check private->destroyed before
making the call
Tue Apr 27 11:17:35 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkdnd.c (xdnd_set_{targets,actions}): Fix leak
pointed out by Morten Welinder <terra@diku.dk>.
Wed Apr 21 14:20:22 1999 George Lebl <jirka@5z.com>
* gdk/gdkwindow.c: (gdk_window_remove_filter) correctly remove the
default filter from the list
Wed Apr 21 14:20:22 1999 George Lebl <jirka@5z.com>
* gdk/gdkwindow.c: (gdk_window_remove_filter) correctly remove the
default filter from the list
Fri Apr 16 20:41:43 PDT 1999 Manish Singh <yosh@gimp.org>
* gdk/gdk.c: #include "gdkkeysyms.h" for gdk_XConvertCase #defines
* gtk/gtkfontsel.c (gtk_font_selection_create_xlfd): use
g_strdup_printf instead of calcing the length separately
Tue Apr 13 02:49:33 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkwindow.c: removed some silly #ifdef HAVE_CONFIG
that we don't do in many other places. (Fixing duplicate
#include of config.h)
* gdk/gdkevents.c: include gdkinput.h _after_ config.h.
Otherwise, #ifndef XINPUT_NONE check in the latter
doesn't work. (Bug #546)
Sun Apr 11 14:38:03 1999 Tim Janik <timj@gtk.org>
* gdk/gdkpixmap.c (_gdk_pixmap_create_from_xpm): check for color
"None" case insensitive.
Tue Apr 6 16:38:51 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkselection.c:
Add error traps so if the other end of the connection
dies, we survive.
Tue Apr 6 12:24:21 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkdnd.c (gdk_drag_motion): Separate out the
dest_xid field into two fields - one for the window
to send in messages, one to indicate the last looked
up window for caching purposes. This is needed, so
that Leave messages get the correct window.
Mon Apr 5 13:21:30 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkevents.c (gdk_event_check, gdk_event_prepare):
Fix warning created by people mucking around
with the gsource API.
* gdk/gdkevents.c (gdk_io_invoke, gdk_input_add_full):
Change mapping between GIOCondition and GdkInputCondition
to match the way the Linux kernel does it. This should
fix problems where closed pipes were no longer signalling
GDK_INPUT_READ on systems with a native poll().
Mon Apr 5 17:11:57 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkpixmap.c (_gdk_pixmap_create_from_xpm): Check
explicitly for the string "None" - it is in the XPM
spec and some servers treat unknown colors in odd ways
(like asking the user!)
Thu Apr 1 16:58:10 PST 1999 Manish Singh <yosh@gimp.org>
* gdk/gdkevents.c: made "->" into a "." of previous change so
it compiles
Thu Apr 1 18:41:25 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkevents.c (gdk_compress_exposures): Set the
window field of the event structure before calling
user filters.
1999-03-31 Federico Mena Quintero <federico@nuclecu.unam.mx>
* gdk/gdk.c (gdk_init_check): Use False as the last argument to
XInternAtom() here. This is a particularly Old And Nasty(tm) bug.
Mon Mar 29 17:31:52 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkim.c (gdk_mbstowcs): Free the value of the
intermediate text property - prevents major memory
leak when gdk_use_mb.
gtk-d3august-990311-0: Bj|rn Augustsson <d3august@dtek.chalmers.se>
Mon Mar 29 17:02:58 1999 Owen Taylor <otaylor@redhat.com>
Patches from Akira Higuchi <a-higuti@math.sci.hokudai.ac.jp>
gtk-a-higuti-990322-[0-3]
* gdk/gdkfont.c (gdk_text_extents_wc): Make work when
sizeof(wchar_t) != sizeof (GdkWChar)
* configure.in: Fix confusion between GTK_LOCALE_[C]FLAGS
that was causing -DX_LOCALE not to work.
* gtk/gtkrc.c (gtk_rc_init):
X_LOCALE will never have LC_MESSAGES defined
* gdk/gdk.c (gdk_init_check):
Remove --xim-preedit and --xim-status from argv properly.
* gdk/gdkim.c (gdk_ic_real_new): Add a gdk_flush() so
that the client window is present on the X server
before we pass it to the input method.
Tue Mar 9 10:46:49 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkdnd.c (motif_find_drag_window): Fix bug where
if --display is specified on the command line, than
the drag window will not be created on that display.
Tue Mar 9 10:38:24 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkproperty.c (gdk_atom_intern): Fixed bug where
lookups with only_if_exists == TRUE were inserting
bogus values into the atom cache.
Wed Mar 17 09:00:00 1999 Tim Janik <timj@gtk.org>
* gdk/gdkselection.c (gdk_selection_property_get): first XFree(t),
then reset it to NULL.
* gdk/gdkcolor.c:
(gdk_colors_free):
(gdk_colormap_free_colors): use colormap->colors[in_pixels[i]] as the
key for g_hash_table_remove() in both functions, this prevents us
from accessing possibly uninitialized portions of a GdkColor structure
where we are only interested in its pixel value.
Tue Mar 9 01:01:28 1999 Tim Janik <timj@gtk.org>
* gdk/gdkfont.c (gdk_font_load): first lookup the xfont ID in our
font hash table, if we have a GdkFontPrivate entry for this font
already, simply increment its reference count, provided by Olaf Dietsche
<olaf.dietsche+list.gtk@netcologne.de>.
1999-09-21 Tor Lillqvist <tml@iki.fi>
1999-09-28 20:19:13 +00:00
|
|
|
g_hash_table_foreach (cc->color_hash,
|
|
|
|
free_hash_entry,
|
|
|
|
NULL);
|
1998-01-23 06:26:39 +00:00
|
|
|
g_hash_table_destroy (cc->color_hash);
|
[ Merges from gtk-1-2 ]
Wed Sep 8 07:13:29 1999 Tim Janik <timj@gtk.org>
* configure.in: fixed "GNU Make" check to pass with new make version
3.77.95.
Fri Sep 3 16:04:41 1999 Tim Janik <timj@gtk.org>
* gtk-config.in (--version): don't echo @GTK_VERSION@, but
@GTK_MAJOR_VERSION@.@GTK_MINOR_VERSION@.@GTK_MICRO_VERSION@, so the
AM_PATH_GTK() macros don't get confused by the -pre1.
Thu Sep 2 19:02:37 1999 Owen Taylor <otaylor@redhat.com>
* configure.in (REBUILD): Change check for perl5
to check explicitely for v >= 5.002. (5.001
does not work with our scripts.)
Wed Aug 25 15:45:46 1999 Tim Janik <timj@gtk.org>
* configure.in: evaluate $PERL for the perl version check. added
--disable-rebuilds to give the user an option to completely disable
any source autogeneration rules.
Mon Aug 23 23:16:14 1999 Tim Janik <timj@gtk.org>
* configure.in: evaluate $ac_make when checking for GNU Make.
Mon Aug 23 19:11:17 1999 Tim Janik <timj@gtk.org>
* docs/Makefile.am: added generation.txt.
* Makefile.am: require automake 1.4, build README from README.in and
INSTALL from INSTALL.in in dist-hook.
* README.in:
* INSTALL.in: new files to autogenerate README and INSTALL from.
* configure.in: figure whether we have GNU Make
* docs/generation.txt: minor additions/corrections.
Wed Aug 11 13:38:26 BST 1999 Tony Gale <gale@gtk.org>
* docs/gtkfaq.sgml: FAQ Update
July 30, 1999 Elliot Lee <sopwith@redhat.com>
* configure.in: Fix autoconf warnings about cross compilation by
trying to provide sane defaults for AC_TRY_RUN.
Fri Jul 16 22:20:21 PDT 1999 Manish Singh <yosh@gimp.org>
* ltconfig
* ltmain.sh: upgrade to libtool 1.3.3
Thu Jul 8 11:30:18 1999 Owen Taylor <otaylor@redhat.com>
* INSTALL: Indicate that the --with-glib= configure
time flag is unsupported.
Mon Jul 5 20:36:03 1999 Owen Taylor <otaylor@redhat.com>
* docs/generation.txt: Added a file that gives
documenation about the autogeneration process for
various autogenerated files.
Tue Jun 29 15:59:25 1999 Owen Taylor <otaylor@redhat.com>
* configure.in (LIBS): Look for libgmodule in the
right location.
Thu Jun 17 13:57:31 1999 Owen Taylor <otaylor@redhat.com>
* docs/gtk_tut.sgml: Removed references to
code examples in my directory on gtk.org as
they should all be in the tutorial now.
* docs/gtk_tut.sgml: Added sources for dial-test
and scribble-xinput programs that were previously
missing.
Fri Jun 4 00:08:59 1999 Owen Taylor <otaylor@redhat.com>
* TODO: Added entry about menu keyboard navigation, removed
some finished items.
Mon May 31 00:11:24 1999 Owen Taylor <otaylor@redhat.com>
* acinclude.m4: Standardize on func_dgettext
not func_gettext, so that the checks for dgettext
actually are paid attention to.
Wed May 5 10:47:54 1999 Owen Taylor <otaylor@redhat.com>
* configure.in (LIBS): Add $INTLLIBS into $LIBS
directly, rather than repeating the checks for
gettext.
* INSTALL: Added information about gettext and
NLS support.
* acinclude.m4 (LIBM): Check for dgettext, not
just gettext. This should hopefully fix things wrt
systems with old versions of GNU gettext installed.
Tue Jun 29 15:59:25 1999 Owen Taylor <otaylor@redhat.com>
* configure.in (LIBS): Look for libgmodule in the
right location.
Thu Apr 1 16:58:10 PST 1999 Manish Singh <yosh@gimp.org>
* autogen.sh: add --enable-maintainer-mode
* configure.in: set ACLOCAL="$ACLOCAL $ACLOCAL_FLAGS"
Wed Mar 24 23:03:49 CST 1999 Shawn T. Amundson <amundson@gtk.org>
* docs/gtk-config.1.in:
docs/Makefile.am:
configure.in: gtk-config is now generated.
* docs/gtk-config.1: Removed, now generated.
Thu Sep 23 17:59:59 1999 Tim Janik <timj@gtk.org>
* gdk/gdkevents.c (gdk_event_translate): grr, even if Gdk doesn't
handle CreateNotify itself, still put out a debuging message for
--gdk-debug=events. made the ReparentNotify debugging message more
verbose.
wrap xcoords translation for ConfigureEvents into an error trap,
a destroy event may already be pending, and in that case, the
actuall coordinate values are not at all critical.
Sat Sep 18 22:24:15 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkcc.c: Stop leaking the color_hash all over
the place. Simplify and improve the logic.
Fri Sep 17 09:57:15 1999 Tim Janik <timj@gtk.org>
* gdk/gdk.h, gdk/gdkcolor.c: make return types (gint or gboolean)
for prototypes and function implementations consistent (reported
by Tomas Ogren).
Tue Sep 14 18:23:01 1999 Tim Janik <timj@gtk.org>
* gdk/gdkevents.c (gdk_event_translate): tell if expose events have
send_event set in debugging output.
(gdk_compress_exposures): default initialize the event so we don't
operate on bogus values (namely send_event).
Thu Sep 2 16:33:59 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkwindow.c: When we receive an unexpected
destroy notify on one of our windows, don't just
warn about it, also mark our windows as destroyed.
Sun Sep 5 08:10:53 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkfont.c (gdk_font_hash_insert): Add
name => font and name => fontset hashes. The
name => fontset hash is a _big_ win since we
weren't previously caching fontsets at all and loading
fontsets is expensive. The name => font hash
is less of a win, but it does save us from doing
repeated XQueryFont calls on the same font.
* gdk/gdkprivate.h (struct _GdkFontPrivate): Add a names
list so we can remove font/fontset from hash.
Thu Sep 2 19:02:37 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkproperty.c (gdk_atom_intern): Remove useless
and slightly confusing test. [ XInternAtom (,,TRUE)
will never return None ].
Sat Sep 4 08:39:26 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkwindow.c (gdk_window_set_geometry_hints)
gdk/gdkwindow.c (gdk_window_set_hints):
Don't omit setting the properties if flags == 0 -
there may be an existing set of properties there
already. (Very old bug. Would it be better to
delete the property instead?)
* gdk/gdkselection.c (gdk_selection_property_get): Fix
spelling error in comment.
Wed Sep 1 14:05:30 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkimage.c (gdk_image_new): Use gdk_error_trap_push()
to avoid stomping over gdk_error_warnings.
* gdk/gdkimage.c (gdk_image_new): compute image->bpp
as (bits_per_pixel + 7) / 8. This gives the same
result as before for multiples of 8, but actually
a "reasonable" value for 1bit or 4bit displays.
Mon Aug 23 19:11:17 1999 Tim Janik <timj@gtk.org>
* gdk/Makefile.am: minor cleanups, strip spaces on build rules for
GNU Make.
Tue Aug 17 07:43:04 1999 Tim Janik <timj@gtk.org>
* gdk/gdkevents.c (gdk_event_translate): give a debugging note when
discarding configure events.
1999-08-18 Federico Mena Quintero <federico@redhat.com>
* gdk/gdkpixmap.c (gdk_pixmap_unref): g_return_if_fail() the
refcount is greater than zero.
* gdk/gdkwindow.c (gdk_window_unref): Likewise.
* gdk/gdkfont.c (gdk_font_unref): Likewise.
* gdk/gdkgc.c (gdk_gc_unref): Likewise.
* gdk/gdkdnd.c (gdk_drag_context_unref): Likewise.
Wed Aug 11 01:04:57 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkproperty.c (gdk_property_get): Fix assumption
that format 32 => sizeof(item) == 4. It really is
sizeof(long).
Tue Jun 29 23:02:42 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.c (gdk_x_error / gdk_x_io_error): Don't
core dump at all on X IO errors, only core dump
if --enable-debug for X errors.
Thu Jun 24 17:06:23 1999 Tim Janik <timj@gtk.org>
* gdk/gdkevents.c (gdk_event_translate): removed old ""Got event for
unknown window:" message. disabled ConfigureNotify discarding code,
because it led to events being processed out of order.
Thu Jun 24 12:22:02 1999 Tim Janik <timj@gtk.org>
* gdk/gdkglobals.c: preinitialize gdk_error_code to 0.
* gdk/gdkevents.c (gdk_event_send_client_message_to_all_recurse): since
we export this function, supress error warnings and don't reset the
error code in the first half of this function.
* gdk/gdk.c (gdk_x_error): set gdk_error_code to the actuall X error
code (instead of just -1) so gdk_error_trap_pop() reveals something
actually informative about the error that happened.
* gdk/*.c:
don't rely on gdk_error_code being -1 if an error occoured, but just
gdk_error_code != 0.
Thu Jun 24 11:50:07 1999 Tim Janik <timj@gtk.org>
* gdk/gdkevents.c (gdk_event_apply_filters): advance the filter list
pointer *before* invoking the filter function, so we at least don't
crash if a filter is removed that is currently executed. window filters
*really* need to be made truely reentrant at some point.
Mon Jun 14 11:10:15 1999 Tim Janik <timj@gtk.org>
* gdk/gdkevents.c (gdk_event_translate): print the atom name in the
PropertyNotify debug messages.
Wed May 5 22:51:06 1999 Owen Taylor <otaylor@redhat.com>
Patch from Sung-Hyun Nam <namsh@lgic.co.kr>
* gdk/gdkim.c: Fix cut-and-paste errors for
x/y and PreeditAttributes/StatusAttributes.
Wed May 5 22:24:21 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkwindow.c (gdk_window_set_geometry_hints): Change
G_MAXINT to 2^16 to alleviate overflow problems in
various window managers.
Wed Apr 21 00:42:08 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkfont.c (gdk_text_measure): Fix the return value
for fontsets.
Wed May 5 12:42:01 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkwindow.c (gdk_window_set_geometry_hints):
Initialize size_hints.x and size_hints.y because kwm
brokenly pays attention to them.
(Bug #1181 - Lars Heete <hel@admin.de>)
Wed May 5 11:38:56 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkrgb.c (gdk_rgb_choose_visual): Free the
return value of gdk_list_visuals().
(Bug #1193 - Morten Welinder <terra@diku.dk>)
Tue May 4 11:12:56 PDT 1999 Manish Singh <yosh@gimp.org>
* gdk/gdkim.c (gdk_im_real_open): cast the return value of
XSetIMValues to (void *) when comparing to NULL, to workaround
the problem of some compilers barfing since older X headers don't
have the prototype for it.
Mon Apr 19 10:11:12 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkcolor.c (gdk_colormap_new): Fix memory leak
for pseudocolor where colormap->colors was double
allocated.
* gdk/gdkcolor.c (gdk_colormap_alloc1): Store the
color value in the hash table with the pixel filled
in so when we do later hash table lookups, the color
value is correct.
Sun May 2 15:29:45 PDT 1999 Manish Singh <yosh@gimp.org>
* gdk/gdkdraw.c (gdk_draw_lines): check private->destroyed before
making the call
Tue Apr 27 11:17:35 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkdnd.c (xdnd_set_{targets,actions}): Fix leak
pointed out by Morten Welinder <terra@diku.dk>.
Wed Apr 21 14:20:22 1999 George Lebl <jirka@5z.com>
* gdk/gdkwindow.c: (gdk_window_remove_filter) correctly remove the
default filter from the list
Wed Apr 21 14:20:22 1999 George Lebl <jirka@5z.com>
* gdk/gdkwindow.c: (gdk_window_remove_filter) correctly remove the
default filter from the list
Fri Apr 16 20:41:43 PDT 1999 Manish Singh <yosh@gimp.org>
* gdk/gdk.c: #include "gdkkeysyms.h" for gdk_XConvertCase #defines
* gtk/gtkfontsel.c (gtk_font_selection_create_xlfd): use
g_strdup_printf instead of calcing the length separately
Tue Apr 13 02:49:33 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkwindow.c: removed some silly #ifdef HAVE_CONFIG
that we don't do in many other places. (Fixing duplicate
#include of config.h)
* gdk/gdkevents.c: include gdkinput.h _after_ config.h.
Otherwise, #ifndef XINPUT_NONE check in the latter
doesn't work. (Bug #546)
Sun Apr 11 14:38:03 1999 Tim Janik <timj@gtk.org>
* gdk/gdkpixmap.c (_gdk_pixmap_create_from_xpm): check for color
"None" case insensitive.
Tue Apr 6 16:38:51 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkselection.c:
Add error traps so if the other end of the connection
dies, we survive.
Tue Apr 6 12:24:21 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkdnd.c (gdk_drag_motion): Separate out the
dest_xid field into two fields - one for the window
to send in messages, one to indicate the last looked
up window for caching purposes. This is needed, so
that Leave messages get the correct window.
Mon Apr 5 13:21:30 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkevents.c (gdk_event_check, gdk_event_prepare):
Fix warning created by people mucking around
with the gsource API.
* gdk/gdkevents.c (gdk_io_invoke, gdk_input_add_full):
Change mapping between GIOCondition and GdkInputCondition
to match the way the Linux kernel does it. This should
fix problems where closed pipes were no longer signalling
GDK_INPUT_READ on systems with a native poll().
Mon Apr 5 17:11:57 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkpixmap.c (_gdk_pixmap_create_from_xpm): Check
explicitly for the string "None" - it is in the XPM
spec and some servers treat unknown colors in odd ways
(like asking the user!)
Thu Apr 1 16:58:10 PST 1999 Manish Singh <yosh@gimp.org>
* gdk/gdkevents.c: made "->" into a "." of previous change so
it compiles
Thu Apr 1 18:41:25 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkevents.c (gdk_compress_exposures): Set the
window field of the event structure before calling
user filters.
1999-03-31 Federico Mena Quintero <federico@nuclecu.unam.mx>
* gdk/gdk.c (gdk_init_check): Use False as the last argument to
XInternAtom() here. This is a particularly Old And Nasty(tm) bug.
Mon Mar 29 17:31:52 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkim.c (gdk_mbstowcs): Free the value of the
intermediate text property - prevents major memory
leak when gdk_use_mb.
gtk-d3august-990311-0: Bj|rn Augustsson <d3august@dtek.chalmers.se>
Mon Mar 29 17:02:58 1999 Owen Taylor <otaylor@redhat.com>
Patches from Akira Higuchi <a-higuti@math.sci.hokudai.ac.jp>
gtk-a-higuti-990322-[0-3]
* gdk/gdkfont.c (gdk_text_extents_wc): Make work when
sizeof(wchar_t) != sizeof (GdkWChar)
* configure.in: Fix confusion between GTK_LOCALE_[C]FLAGS
that was causing -DX_LOCALE not to work.
* gtk/gtkrc.c (gtk_rc_init):
X_LOCALE will never have LC_MESSAGES defined
* gdk/gdk.c (gdk_init_check):
Remove --xim-preedit and --xim-status from argv properly.
* gdk/gdkim.c (gdk_ic_real_new): Add a gdk_flush() so
that the client window is present on the X server
before we pass it to the input method.
Tue Mar 9 10:46:49 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkdnd.c (motif_find_drag_window): Fix bug where
if --display is specified on the command line, than
the drag window will not be created on that display.
Tue Mar 9 10:38:24 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkproperty.c (gdk_atom_intern): Fixed bug where
lookups with only_if_exists == TRUE were inserting
bogus values into the atom cache.
Wed Mar 17 09:00:00 1999 Tim Janik <timj@gtk.org>
* gdk/gdkselection.c (gdk_selection_property_get): first XFree(t),
then reset it to NULL.
* gdk/gdkcolor.c:
(gdk_colors_free):
(gdk_colormap_free_colors): use colormap->colors[in_pixels[i]] as the
key for g_hash_table_remove() in both functions, this prevents us
from accessing possibly uninitialized portions of a GdkColor structure
where we are only interested in its pixel value.
Tue Mar 9 01:01:28 1999 Tim Janik <timj@gtk.org>
* gdk/gdkfont.c (gdk_font_load): first lookup the xfont ID in our
font hash table, if we have a GdkFontPrivate entry for this font
already, simply increment its reference count, provided by Olaf Dietsche
<olaf.dietsche+list.gtk@netcologne.de>.
1999-09-21 Tor Lillqvist <tml@iki.fi>
1999-09-28 20:19:13 +00:00
|
|
|
cc->color_hash = NULL;
|
1998-01-23 06:26:39 +00:00
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
cc->palette = NULL;
|
|
|
|
cc->num_palette = 0;
|
|
|
|
cc->fast_dither = NULL;
|
1997-12-17 00:14:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GdkColorContext *
|
1998-01-23 06:26:39 +00:00
|
|
|
gdk_color_context_new (GdkVisual *visual,
|
|
|
|
GdkColormap *colormap)
|
1997-12-17 00:14:36 +00:00
|
|
|
{
|
1998-01-23 06:26:39 +00:00
|
|
|
GdkColorContextPrivate *ccp;
|
|
|
|
gint use_private_colormap = FALSE; /* XXX: maybe restore full functionality later? */
|
|
|
|
GdkColorContext *cc;
|
|
|
|
gint retry_count;
|
|
|
|
GdkColormap *default_colormap;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
g_assert (visual != NULL);
|
|
|
|
g_assert (colormap != NULL);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-02-03 20:57:40 +00:00
|
|
|
ccp = g_new (GdkColorContextPrivate, 1);
|
|
|
|
cc = (GdkColorContext *) ccp;
|
1998-01-23 06:26:39 +00:00
|
|
|
ccp->xdisplay = gdk_display;
|
|
|
|
cc->visual = visual;
|
|
|
|
cc->colormap = colormap;
|
|
|
|
cc->clut = NULL;
|
|
|
|
cc->cmap = NULL;
|
|
|
|
cc->mode = GDK_CC_MODE_UNDEFINED;
|
|
|
|
cc->need_to_free_colormap = FALSE;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
cc->color_hash = NULL;
|
|
|
|
cc->palette = NULL;
|
|
|
|
cc->num_palette = 0;
|
|
|
|
cc->fast_dither = NULL;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
default_colormap = gdk_colormap_get_system ();
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
retry_count = 0;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
while (retry_count < 2)
|
|
|
|
{
|
|
|
|
/* Only create a private colormap if the visual found isn't equal
|
|
|
|
* to the default visual and we don't have a private colormap,
|
|
|
|
* -or- if we are instructed to create a private colormap (which
|
|
|
|
* never is the case for XmHTML).
|
|
|
|
*/
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
if (use_private_colormap
|
|
|
|
|| ((cc->visual != gdk_visual_get_system ()) /* default visual? */
|
|
|
|
&& (GDK_COLORMAP_XCOLORMAP (colormap) == GDK_COLORMAP_XCOLORMAP (default_colormap))))
|
|
|
|
{
|
|
|
|
g_warning ("gdk_color_context_new: non-default visual detected, "
|
|
|
|
"using private colormap");
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
cc->colormap = gdk_colormap_new (cc->visual, FALSE);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
cc->need_to_free_colormap = (GDK_COLORMAP_XCOLORMAP (colormap)
|
|
|
|
!= GDK_COLORMAP_XCOLORMAP (default_colormap));
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
switch (visual->type)
|
|
|
|
{
|
|
|
|
case GDK_VISUAL_STATIC_GRAY:
|
|
|
|
case GDK_VISUAL_GRAYSCALE:
|
1998-02-19 06:21:27 +00:00
|
|
|
GDK_NOTE (COLOR_CONTEXT,
|
1998-08-18 03:59:41 +00:00
|
|
|
g_message ("gdk_color_context_new: visual class is %s\n",
|
|
|
|
(visual->type == GDK_VISUAL_STATIC_GRAY) ?
|
|
|
|
"GDK_VISUAL_STATIC_GRAY" :
|
|
|
|
"GDK_VISUAL_GRAYSCALE"));
|
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
if (GDK_VISUAL_XVISUAL (cc->visual)->map_entries == 2)
|
|
|
|
init_bw (cc);
|
|
|
|
else
|
|
|
|
init_gray (cc);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
break;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
case GDK_VISUAL_TRUE_COLOR: /* shifts */
|
1998-02-19 06:21:27 +00:00
|
|
|
GDK_NOTE (COLOR_CONTEXT,
|
1998-08-18 03:59:41 +00:00
|
|
|
g_message ("gdk_color_context_new: visual class is GDK_VISUAL_TRUE_COLOR\n"));
|
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
init_true_color (cc);
|
|
|
|
break;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
case GDK_VISUAL_DIRECT_COLOR: /* shifts and fake CLUT */
|
1998-02-19 06:21:27 +00:00
|
|
|
GDK_NOTE (COLOR_CONTEXT,
|
1998-08-18 03:59:41 +00:00
|
|
|
g_message ("gdk_color_context_new: visual class is GDK_VISUAL_DIRECT_COLOR\n"));
|
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
init_direct_color (cc);
|
|
|
|
break;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
case GDK_VISUAL_STATIC_COLOR:
|
|
|
|
case GDK_VISUAL_PSEUDO_COLOR:
|
1998-02-19 06:21:27 +00:00
|
|
|
GDK_NOTE (COLOR_CONTEXT,
|
1998-08-18 03:59:41 +00:00
|
|
|
g_message ("gdk_color_context_new: visual class is %s\n",
|
|
|
|
(visual->type == GDK_VISUAL_STATIC_COLOR) ?
|
|
|
|
"GDK_VISUAL_STATIC_COLOR" :
|
|
|
|
"GDK_VISUAL_PSEUDO_COLOR"));
|
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
init_color (cc);
|
|
|
|
break;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
default:
|
|
|
|
g_assert_not_reached ();
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
if ((cc->mode == GDK_CC_MODE_BW) && (cc->visual->depth > 1))
|
|
|
|
{
|
|
|
|
use_private_colormap = TRUE;
|
|
|
|
retry_count++;
|
1997-12-17 00:14:36 +00:00
|
|
|
}
|
1998-01-23 06:26:39 +00:00
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* no. of colors allocated yet */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
cc->num_allocated = 0;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-02-19 06:21:27 +00:00
|
|
|
GDK_NOTE (COLOR_CONTEXT,
|
1998-08-18 03:59:41 +00:00
|
|
|
g_message ("gdk_color_context_new: screen depth is %i, no. of colors is %i\n",
|
|
|
|
cc->visual->depth, cc->num_colors));
|
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
return (GdkColorContext *) cc;
|
1997-12-17 00:14:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GdkColorContext *
|
1998-01-23 06:26:39 +00:00
|
|
|
gdk_color_context_new_mono (GdkVisual *visual,
|
|
|
|
GdkColormap *colormap)
|
1997-12-17 00:14:36 +00:00
|
|
|
{
|
1998-01-23 06:26:39 +00:00
|
|
|
GdkColorContextPrivate *ccp;
|
|
|
|
GdkColorContext *cc;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
g_assert (visual != NULL);
|
|
|
|
g_assert (colormap != NULL);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
cc = g_new (GdkColorContext, 1);
|
|
|
|
ccp = (GdkColorContextPrivate *) cc;
|
|
|
|
ccp->xdisplay = gdk_display;
|
|
|
|
cc->visual = visual;
|
|
|
|
cc->colormap = colormap;
|
|
|
|
cc->clut = NULL;
|
|
|
|
cc->cmap = NULL;
|
|
|
|
cc->mode = GDK_CC_MODE_UNDEFINED;
|
|
|
|
cc->need_to_free_colormap = FALSE;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
init_bw (cc);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
return (GdkColorContext *) cc;
|
1997-12-17 00:14:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* This doesn't currently free black/white, hmm... */
|
|
|
|
|
|
|
|
void
|
1998-01-23 06:26:39 +00:00
|
|
|
gdk_color_context_free (GdkColorContext *cc)
|
1997-12-17 00:14:36 +00:00
|
|
|
{
|
1998-01-23 06:26:39 +00:00
|
|
|
g_assert (cc != NULL);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
if ((cc->visual->type == GDK_VISUAL_STATIC_COLOR)
|
|
|
|
|| (cc->visual->type == GDK_VISUAL_PSEUDO_COLOR))
|
|
|
|
{
|
|
|
|
gdk_colors_free (cc->colormap, cc->clut, cc->num_allocated, 0);
|
|
|
|
g_free (cc->clut);
|
|
|
|
}
|
|
|
|
else if (cc->clut != NULL)
|
|
|
|
{
|
|
|
|
gdk_colors_free (cc->colormap, cc->clut, cc->num_colors, 0);
|
|
|
|
g_free (cc->clut);
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
if (cc->cmap != NULL)
|
|
|
|
g_free (cc->cmap);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
if (cc->need_to_free_colormap)
|
|
|
|
gdk_colormap_unref (cc->colormap);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* free any palette that has been associated with this GdkColorContext */
|
[ Merges from gtk-1-2 ]
Wed Sep 8 07:13:29 1999 Tim Janik <timj@gtk.org>
* configure.in: fixed "GNU Make" check to pass with new make version
3.77.95.
Fri Sep 3 16:04:41 1999 Tim Janik <timj@gtk.org>
* gtk-config.in (--version): don't echo @GTK_VERSION@, but
@GTK_MAJOR_VERSION@.@GTK_MINOR_VERSION@.@GTK_MICRO_VERSION@, so the
AM_PATH_GTK() macros don't get confused by the -pre1.
Thu Sep 2 19:02:37 1999 Owen Taylor <otaylor@redhat.com>
* configure.in (REBUILD): Change check for perl5
to check explicitely for v >= 5.002. (5.001
does not work with our scripts.)
Wed Aug 25 15:45:46 1999 Tim Janik <timj@gtk.org>
* configure.in: evaluate $PERL for the perl version check. added
--disable-rebuilds to give the user an option to completely disable
any source autogeneration rules.
Mon Aug 23 23:16:14 1999 Tim Janik <timj@gtk.org>
* configure.in: evaluate $ac_make when checking for GNU Make.
Mon Aug 23 19:11:17 1999 Tim Janik <timj@gtk.org>
* docs/Makefile.am: added generation.txt.
* Makefile.am: require automake 1.4, build README from README.in and
INSTALL from INSTALL.in in dist-hook.
* README.in:
* INSTALL.in: new files to autogenerate README and INSTALL from.
* configure.in: figure whether we have GNU Make
* docs/generation.txt: minor additions/corrections.
Wed Aug 11 13:38:26 BST 1999 Tony Gale <gale@gtk.org>
* docs/gtkfaq.sgml: FAQ Update
July 30, 1999 Elliot Lee <sopwith@redhat.com>
* configure.in: Fix autoconf warnings about cross compilation by
trying to provide sane defaults for AC_TRY_RUN.
Fri Jul 16 22:20:21 PDT 1999 Manish Singh <yosh@gimp.org>
* ltconfig
* ltmain.sh: upgrade to libtool 1.3.3
Thu Jul 8 11:30:18 1999 Owen Taylor <otaylor@redhat.com>
* INSTALL: Indicate that the --with-glib= configure
time flag is unsupported.
Mon Jul 5 20:36:03 1999 Owen Taylor <otaylor@redhat.com>
* docs/generation.txt: Added a file that gives
documenation about the autogeneration process for
various autogenerated files.
Tue Jun 29 15:59:25 1999 Owen Taylor <otaylor@redhat.com>
* configure.in (LIBS): Look for libgmodule in the
right location.
Thu Jun 17 13:57:31 1999 Owen Taylor <otaylor@redhat.com>
* docs/gtk_tut.sgml: Removed references to
code examples in my directory on gtk.org as
they should all be in the tutorial now.
* docs/gtk_tut.sgml: Added sources for dial-test
and scribble-xinput programs that were previously
missing.
Fri Jun 4 00:08:59 1999 Owen Taylor <otaylor@redhat.com>
* TODO: Added entry about menu keyboard navigation, removed
some finished items.
Mon May 31 00:11:24 1999 Owen Taylor <otaylor@redhat.com>
* acinclude.m4: Standardize on func_dgettext
not func_gettext, so that the checks for dgettext
actually are paid attention to.
Wed May 5 10:47:54 1999 Owen Taylor <otaylor@redhat.com>
* configure.in (LIBS): Add $INTLLIBS into $LIBS
directly, rather than repeating the checks for
gettext.
* INSTALL: Added information about gettext and
NLS support.
* acinclude.m4 (LIBM): Check for dgettext, not
just gettext. This should hopefully fix things wrt
systems with old versions of GNU gettext installed.
Tue Jun 29 15:59:25 1999 Owen Taylor <otaylor@redhat.com>
* configure.in (LIBS): Look for libgmodule in the
right location.
Thu Apr 1 16:58:10 PST 1999 Manish Singh <yosh@gimp.org>
* autogen.sh: add --enable-maintainer-mode
* configure.in: set ACLOCAL="$ACLOCAL $ACLOCAL_FLAGS"
Wed Mar 24 23:03:49 CST 1999 Shawn T. Amundson <amundson@gtk.org>
* docs/gtk-config.1.in:
docs/Makefile.am:
configure.in: gtk-config is now generated.
* docs/gtk-config.1: Removed, now generated.
Thu Sep 23 17:59:59 1999 Tim Janik <timj@gtk.org>
* gdk/gdkevents.c (gdk_event_translate): grr, even if Gdk doesn't
handle CreateNotify itself, still put out a debuging message for
--gdk-debug=events. made the ReparentNotify debugging message more
verbose.
wrap xcoords translation for ConfigureEvents into an error trap,
a destroy event may already be pending, and in that case, the
actuall coordinate values are not at all critical.
Sat Sep 18 22:24:15 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkcc.c: Stop leaking the color_hash all over
the place. Simplify and improve the logic.
Fri Sep 17 09:57:15 1999 Tim Janik <timj@gtk.org>
* gdk/gdk.h, gdk/gdkcolor.c: make return types (gint or gboolean)
for prototypes and function implementations consistent (reported
by Tomas Ogren).
Tue Sep 14 18:23:01 1999 Tim Janik <timj@gtk.org>
* gdk/gdkevents.c (gdk_event_translate): tell if expose events have
send_event set in debugging output.
(gdk_compress_exposures): default initialize the event so we don't
operate on bogus values (namely send_event).
Thu Sep 2 16:33:59 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkwindow.c: When we receive an unexpected
destroy notify on one of our windows, don't just
warn about it, also mark our windows as destroyed.
Sun Sep 5 08:10:53 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkfont.c (gdk_font_hash_insert): Add
name => font and name => fontset hashes. The
name => fontset hash is a _big_ win since we
weren't previously caching fontsets at all and loading
fontsets is expensive. The name => font hash
is less of a win, but it does save us from doing
repeated XQueryFont calls on the same font.
* gdk/gdkprivate.h (struct _GdkFontPrivate): Add a names
list so we can remove font/fontset from hash.
Thu Sep 2 19:02:37 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkproperty.c (gdk_atom_intern): Remove useless
and slightly confusing test. [ XInternAtom (,,TRUE)
will never return None ].
Sat Sep 4 08:39:26 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkwindow.c (gdk_window_set_geometry_hints)
gdk/gdkwindow.c (gdk_window_set_hints):
Don't omit setting the properties if flags == 0 -
there may be an existing set of properties there
already. (Very old bug. Would it be better to
delete the property instead?)
* gdk/gdkselection.c (gdk_selection_property_get): Fix
spelling error in comment.
Wed Sep 1 14:05:30 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkimage.c (gdk_image_new): Use gdk_error_trap_push()
to avoid stomping over gdk_error_warnings.
* gdk/gdkimage.c (gdk_image_new): compute image->bpp
as (bits_per_pixel + 7) / 8. This gives the same
result as before for multiples of 8, but actually
a "reasonable" value for 1bit or 4bit displays.
Mon Aug 23 19:11:17 1999 Tim Janik <timj@gtk.org>
* gdk/Makefile.am: minor cleanups, strip spaces on build rules for
GNU Make.
Tue Aug 17 07:43:04 1999 Tim Janik <timj@gtk.org>
* gdk/gdkevents.c (gdk_event_translate): give a debugging note when
discarding configure events.
1999-08-18 Federico Mena Quintero <federico@redhat.com>
* gdk/gdkpixmap.c (gdk_pixmap_unref): g_return_if_fail() the
refcount is greater than zero.
* gdk/gdkwindow.c (gdk_window_unref): Likewise.
* gdk/gdkfont.c (gdk_font_unref): Likewise.
* gdk/gdkgc.c (gdk_gc_unref): Likewise.
* gdk/gdkdnd.c (gdk_drag_context_unref): Likewise.
Wed Aug 11 01:04:57 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkproperty.c (gdk_property_get): Fix assumption
that format 32 => sizeof(item) == 4. It really is
sizeof(long).
Tue Jun 29 23:02:42 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.c (gdk_x_error / gdk_x_io_error): Don't
core dump at all on X IO errors, only core dump
if --enable-debug for X errors.
Thu Jun 24 17:06:23 1999 Tim Janik <timj@gtk.org>
* gdk/gdkevents.c (gdk_event_translate): removed old ""Got event for
unknown window:" message. disabled ConfigureNotify discarding code,
because it led to events being processed out of order.
Thu Jun 24 12:22:02 1999 Tim Janik <timj@gtk.org>
* gdk/gdkglobals.c: preinitialize gdk_error_code to 0.
* gdk/gdkevents.c (gdk_event_send_client_message_to_all_recurse): since
we export this function, supress error warnings and don't reset the
error code in the first half of this function.
* gdk/gdk.c (gdk_x_error): set gdk_error_code to the actuall X error
code (instead of just -1) so gdk_error_trap_pop() reveals something
actually informative about the error that happened.
* gdk/*.c:
don't rely on gdk_error_code being -1 if an error occoured, but just
gdk_error_code != 0.
Thu Jun 24 11:50:07 1999 Tim Janik <timj@gtk.org>
* gdk/gdkevents.c (gdk_event_apply_filters): advance the filter list
pointer *before* invoking the filter function, so we at least don't
crash if a filter is removed that is currently executed. window filters
*really* need to be made truely reentrant at some point.
Mon Jun 14 11:10:15 1999 Tim Janik <timj@gtk.org>
* gdk/gdkevents.c (gdk_event_translate): print the atom name in the
PropertyNotify debug messages.
Wed May 5 22:51:06 1999 Owen Taylor <otaylor@redhat.com>
Patch from Sung-Hyun Nam <namsh@lgic.co.kr>
* gdk/gdkim.c: Fix cut-and-paste errors for
x/y and PreeditAttributes/StatusAttributes.
Wed May 5 22:24:21 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkwindow.c (gdk_window_set_geometry_hints): Change
G_MAXINT to 2^16 to alleviate overflow problems in
various window managers.
Wed Apr 21 00:42:08 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkfont.c (gdk_text_measure): Fix the return value
for fontsets.
Wed May 5 12:42:01 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkwindow.c (gdk_window_set_geometry_hints):
Initialize size_hints.x and size_hints.y because kwm
brokenly pays attention to them.
(Bug #1181 - Lars Heete <hel@admin.de>)
Wed May 5 11:38:56 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkrgb.c (gdk_rgb_choose_visual): Free the
return value of gdk_list_visuals().
(Bug #1193 - Morten Welinder <terra@diku.dk>)
Tue May 4 11:12:56 PDT 1999 Manish Singh <yosh@gimp.org>
* gdk/gdkim.c (gdk_im_real_open): cast the return value of
XSetIMValues to (void *) when comparing to NULL, to workaround
the problem of some compilers barfing since older X headers don't
have the prototype for it.
Mon Apr 19 10:11:12 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkcolor.c (gdk_colormap_new): Fix memory leak
for pseudocolor where colormap->colors was double
allocated.
* gdk/gdkcolor.c (gdk_colormap_alloc1): Store the
color value in the hash table with the pixel filled
in so when we do later hash table lookups, the color
value is correct.
Sun May 2 15:29:45 PDT 1999 Manish Singh <yosh@gimp.org>
* gdk/gdkdraw.c (gdk_draw_lines): check private->destroyed before
making the call
Tue Apr 27 11:17:35 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkdnd.c (xdnd_set_{targets,actions}): Fix leak
pointed out by Morten Welinder <terra@diku.dk>.
Wed Apr 21 14:20:22 1999 George Lebl <jirka@5z.com>
* gdk/gdkwindow.c: (gdk_window_remove_filter) correctly remove the
default filter from the list
Wed Apr 21 14:20:22 1999 George Lebl <jirka@5z.com>
* gdk/gdkwindow.c: (gdk_window_remove_filter) correctly remove the
default filter from the list
Fri Apr 16 20:41:43 PDT 1999 Manish Singh <yosh@gimp.org>
* gdk/gdk.c: #include "gdkkeysyms.h" for gdk_XConvertCase #defines
* gtk/gtkfontsel.c (gtk_font_selection_create_xlfd): use
g_strdup_printf instead of calcing the length separately
Tue Apr 13 02:49:33 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkwindow.c: removed some silly #ifdef HAVE_CONFIG
that we don't do in many other places. (Fixing duplicate
#include of config.h)
* gdk/gdkevents.c: include gdkinput.h _after_ config.h.
Otherwise, #ifndef XINPUT_NONE check in the latter
doesn't work. (Bug #546)
Sun Apr 11 14:38:03 1999 Tim Janik <timj@gtk.org>
* gdk/gdkpixmap.c (_gdk_pixmap_create_from_xpm): check for color
"None" case insensitive.
Tue Apr 6 16:38:51 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkselection.c:
Add error traps so if the other end of the connection
dies, we survive.
Tue Apr 6 12:24:21 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkdnd.c (gdk_drag_motion): Separate out the
dest_xid field into two fields - one for the window
to send in messages, one to indicate the last looked
up window for caching purposes. This is needed, so
that Leave messages get the correct window.
Mon Apr 5 13:21:30 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkevents.c (gdk_event_check, gdk_event_prepare):
Fix warning created by people mucking around
with the gsource API.
* gdk/gdkevents.c (gdk_io_invoke, gdk_input_add_full):
Change mapping between GIOCondition and GdkInputCondition
to match the way the Linux kernel does it. This should
fix problems where closed pipes were no longer signalling
GDK_INPUT_READ on systems with a native poll().
Mon Apr 5 17:11:57 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkpixmap.c (_gdk_pixmap_create_from_xpm): Check
explicitly for the string "None" - it is in the XPM
spec and some servers treat unknown colors in odd ways
(like asking the user!)
Thu Apr 1 16:58:10 PST 1999 Manish Singh <yosh@gimp.org>
* gdk/gdkevents.c: made "->" into a "." of previous change so
it compiles
Thu Apr 1 18:41:25 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkevents.c (gdk_compress_exposures): Set the
window field of the event structure before calling
user filters.
1999-03-31 Federico Mena Quintero <federico@nuclecu.unam.mx>
* gdk/gdk.c (gdk_init_check): Use False as the last argument to
XInternAtom() here. This is a particularly Old And Nasty(tm) bug.
Mon Mar 29 17:31:52 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkim.c (gdk_mbstowcs): Free the value of the
intermediate text property - prevents major memory
leak when gdk_use_mb.
gtk-d3august-990311-0: Bj|rn Augustsson <d3august@dtek.chalmers.se>
Mon Mar 29 17:02:58 1999 Owen Taylor <otaylor@redhat.com>
Patches from Akira Higuchi <a-higuti@math.sci.hokudai.ac.jp>
gtk-a-higuti-990322-[0-3]
* gdk/gdkfont.c (gdk_text_extents_wc): Make work when
sizeof(wchar_t) != sizeof (GdkWChar)
* configure.in: Fix confusion between GTK_LOCALE_[C]FLAGS
that was causing -DX_LOCALE not to work.
* gtk/gtkrc.c (gtk_rc_init):
X_LOCALE will never have LC_MESSAGES defined
* gdk/gdk.c (gdk_init_check):
Remove --xim-preedit and --xim-status from argv properly.
* gdk/gdkim.c (gdk_ic_real_new): Add a gdk_flush() so
that the client window is present on the X server
before we pass it to the input method.
Tue Mar 9 10:46:49 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkdnd.c (motif_find_drag_window): Fix bug where
if --display is specified on the command line, than
the drag window will not be created on that display.
Tue Mar 9 10:38:24 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkproperty.c (gdk_atom_intern): Fixed bug where
lookups with only_if_exists == TRUE were inserting
bogus values into the atom cache.
Wed Mar 17 09:00:00 1999 Tim Janik <timj@gtk.org>
* gdk/gdkselection.c (gdk_selection_property_get): first XFree(t),
then reset it to NULL.
* gdk/gdkcolor.c:
(gdk_colors_free):
(gdk_colormap_free_colors): use colormap->colors[in_pixels[i]] as the
key for g_hash_table_remove() in both functions, this prevents us
from accessing possibly uninitialized portions of a GdkColor structure
where we are only interested in its pixel value.
Tue Mar 9 01:01:28 1999 Tim Janik <timj@gtk.org>
* gdk/gdkfont.c (gdk_font_load): first lookup the xfont ID in our
font hash table, if we have a GdkFontPrivate entry for this font
already, simply increment its reference count, provided by Olaf Dietsche
<olaf.dietsche+list.gtk@netcologne.de>.
1999-09-21 Tor Lillqvist <tml@iki.fi>
1999-09-28 20:19:13 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
init_palette (cc);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
g_free (cc);
|
1997-12-17 00:14:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gulong
|
1998-01-23 06:26:39 +00:00
|
|
|
gdk_color_context_get_pixel (GdkColorContext *cc,
|
|
|
|
gushort red,
|
|
|
|
gushort green,
|
|
|
|
gushort blue,
|
|
|
|
gint *failed)
|
1997-12-17 00:14:36 +00:00
|
|
|
{
|
1998-01-23 06:26:39 +00:00
|
|
|
GdkColorContextPrivate *ccp = (GdkColorContextPrivate *) cc;
|
|
|
|
g_assert (cc != NULL);
|
|
|
|
g_assert (failed != NULL);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
*failed = FALSE;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
switch (cc->mode)
|
|
|
|
{
|
|
|
|
case GDK_CC_MODE_BW:
|
1998-08-18 03:59:41 +00:00
|
|
|
{
|
|
|
|
gdouble value;
|
|
|
|
|
|
|
|
value = (red / 65535.0 * 0.30
|
|
|
|
+ green / 65535.0 * 0.59
|
|
|
|
+ blue / 65535.0 * 0.11);
|
|
|
|
|
|
|
|
if (value > 0.5)
|
|
|
|
return cc->white_pixel;
|
|
|
|
|
|
|
|
return cc->black_pixel;
|
|
|
|
}
|
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
case GDK_CC_MODE_MY_GRAY:
|
1998-08-18 03:59:41 +00:00
|
|
|
{
|
|
|
|
gulong ired, igreen, iblue;
|
|
|
|
|
|
|
|
red = red * 0.30 + green * 0.59 + blue * 0.11;
|
|
|
|
green = 0;
|
|
|
|
blue = 0;
|
|
|
|
|
|
|
|
if ((ired = red * (ccp->std_cmap.red_max + 1) / 0xffff) > ccp->std_cmap.red_max)
|
|
|
|
ired = ccp->std_cmap.red_max;
|
|
|
|
|
|
|
|
ired *= ccp->std_cmap.red_mult;
|
|
|
|
|
|
|
|
if ((igreen = green * (ccp->std_cmap.green_max + 1) / 0xffff) > ccp->std_cmap.green_max)
|
|
|
|
igreen = ccp->std_cmap.green_max;
|
|
|
|
|
|
|
|
igreen *= ccp->std_cmap.green_mult;
|
|
|
|
|
|
|
|
if ((iblue = blue * (ccp->std_cmap.blue_max + 1) / 0xffff) > ccp->std_cmap.blue_max)
|
|
|
|
iblue = ccp->std_cmap.blue_max;
|
|
|
|
|
|
|
|
iblue *= ccp->std_cmap.blue_mult;
|
|
|
|
|
|
|
|
if (cc->clut != NULL)
|
|
|
|
return cc->clut[ccp->std_cmap.base_pixel + ired + igreen + iblue];
|
|
|
|
|
|
|
|
return ccp->std_cmap.base_pixel + ired + igreen + iblue;
|
|
|
|
}
|
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
case GDK_CC_MODE_TRUE:
|
1998-08-18 03:59:41 +00:00
|
|
|
{
|
|
|
|
gulong ired, igreen, iblue;
|
|
|
|
|
|
|
|
if (cc->clut == NULL)
|
|
|
|
{
|
|
|
|
red >>= 16 - cc->bits.red;
|
|
|
|
green >>= 16 - cc->bits.green;
|
|
|
|
blue >>= 16 - cc->bits.blue;
|
|
|
|
|
|
|
|
ired = (red << cc->shifts.red) & cc->masks.red;
|
|
|
|
igreen = (green << cc->shifts.green) & cc->masks.green;
|
|
|
|
iblue = (blue << cc->shifts.blue) & cc->masks.blue;
|
|
|
|
|
|
|
|
return ired | igreen | iblue;
|
|
|
|
}
|
|
|
|
|
|
|
|
ired = cc->clut[red * cc->max_entry / 65535] & cc->masks.red;
|
|
|
|
igreen = cc->clut[green * cc->max_entry / 65535] & cc->masks.green;
|
|
|
|
iblue = cc->clut[blue * cc->max_entry / 65535] & cc->masks.blue;
|
|
|
|
|
|
|
|
return ired | igreen | iblue;
|
|
|
|
}
|
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
case GDK_CC_MODE_PALETTE:
|
|
|
|
return gdk_color_context_get_pixel_from_palette (cc, &red, &green, &blue, failed);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
case GDK_CC_MODE_STD_CMAP:
|
|
|
|
default:
|
1998-08-18 03:59:41 +00:00
|
|
|
{
|
|
|
|
GdkColor color;
|
[ Merges from gtk-1-2 ]
Wed Sep 8 07:13:29 1999 Tim Janik <timj@gtk.org>
* configure.in: fixed "GNU Make" check to pass with new make version
3.77.95.
Fri Sep 3 16:04:41 1999 Tim Janik <timj@gtk.org>
* gtk-config.in (--version): don't echo @GTK_VERSION@, but
@GTK_MAJOR_VERSION@.@GTK_MINOR_VERSION@.@GTK_MICRO_VERSION@, so the
AM_PATH_GTK() macros don't get confused by the -pre1.
Thu Sep 2 19:02:37 1999 Owen Taylor <otaylor@redhat.com>
* configure.in (REBUILD): Change check for perl5
to check explicitely for v >= 5.002. (5.001
does not work with our scripts.)
Wed Aug 25 15:45:46 1999 Tim Janik <timj@gtk.org>
* configure.in: evaluate $PERL for the perl version check. added
--disable-rebuilds to give the user an option to completely disable
any source autogeneration rules.
Mon Aug 23 23:16:14 1999 Tim Janik <timj@gtk.org>
* configure.in: evaluate $ac_make when checking for GNU Make.
Mon Aug 23 19:11:17 1999 Tim Janik <timj@gtk.org>
* docs/Makefile.am: added generation.txt.
* Makefile.am: require automake 1.4, build README from README.in and
INSTALL from INSTALL.in in dist-hook.
* README.in:
* INSTALL.in: new files to autogenerate README and INSTALL from.
* configure.in: figure whether we have GNU Make
* docs/generation.txt: minor additions/corrections.
Wed Aug 11 13:38:26 BST 1999 Tony Gale <gale@gtk.org>
* docs/gtkfaq.sgml: FAQ Update
July 30, 1999 Elliot Lee <sopwith@redhat.com>
* configure.in: Fix autoconf warnings about cross compilation by
trying to provide sane defaults for AC_TRY_RUN.
Fri Jul 16 22:20:21 PDT 1999 Manish Singh <yosh@gimp.org>
* ltconfig
* ltmain.sh: upgrade to libtool 1.3.3
Thu Jul 8 11:30:18 1999 Owen Taylor <otaylor@redhat.com>
* INSTALL: Indicate that the --with-glib= configure
time flag is unsupported.
Mon Jul 5 20:36:03 1999 Owen Taylor <otaylor@redhat.com>
* docs/generation.txt: Added a file that gives
documenation about the autogeneration process for
various autogenerated files.
Tue Jun 29 15:59:25 1999 Owen Taylor <otaylor@redhat.com>
* configure.in (LIBS): Look for libgmodule in the
right location.
Thu Jun 17 13:57:31 1999 Owen Taylor <otaylor@redhat.com>
* docs/gtk_tut.sgml: Removed references to
code examples in my directory on gtk.org as
they should all be in the tutorial now.
* docs/gtk_tut.sgml: Added sources for dial-test
and scribble-xinput programs that were previously
missing.
Fri Jun 4 00:08:59 1999 Owen Taylor <otaylor@redhat.com>
* TODO: Added entry about menu keyboard navigation, removed
some finished items.
Mon May 31 00:11:24 1999 Owen Taylor <otaylor@redhat.com>
* acinclude.m4: Standardize on func_dgettext
not func_gettext, so that the checks for dgettext
actually are paid attention to.
Wed May 5 10:47:54 1999 Owen Taylor <otaylor@redhat.com>
* configure.in (LIBS): Add $INTLLIBS into $LIBS
directly, rather than repeating the checks for
gettext.
* INSTALL: Added information about gettext and
NLS support.
* acinclude.m4 (LIBM): Check for dgettext, not
just gettext. This should hopefully fix things wrt
systems with old versions of GNU gettext installed.
Tue Jun 29 15:59:25 1999 Owen Taylor <otaylor@redhat.com>
* configure.in (LIBS): Look for libgmodule in the
right location.
Thu Apr 1 16:58:10 PST 1999 Manish Singh <yosh@gimp.org>
* autogen.sh: add --enable-maintainer-mode
* configure.in: set ACLOCAL="$ACLOCAL $ACLOCAL_FLAGS"
Wed Mar 24 23:03:49 CST 1999 Shawn T. Amundson <amundson@gtk.org>
* docs/gtk-config.1.in:
docs/Makefile.am:
configure.in: gtk-config is now generated.
* docs/gtk-config.1: Removed, now generated.
Thu Sep 23 17:59:59 1999 Tim Janik <timj@gtk.org>
* gdk/gdkevents.c (gdk_event_translate): grr, even if Gdk doesn't
handle CreateNotify itself, still put out a debuging message for
--gdk-debug=events. made the ReparentNotify debugging message more
verbose.
wrap xcoords translation for ConfigureEvents into an error trap,
a destroy event may already be pending, and in that case, the
actuall coordinate values are not at all critical.
Sat Sep 18 22:24:15 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkcc.c: Stop leaking the color_hash all over
the place. Simplify and improve the logic.
Fri Sep 17 09:57:15 1999 Tim Janik <timj@gtk.org>
* gdk/gdk.h, gdk/gdkcolor.c: make return types (gint or gboolean)
for prototypes and function implementations consistent (reported
by Tomas Ogren).
Tue Sep 14 18:23:01 1999 Tim Janik <timj@gtk.org>
* gdk/gdkevents.c (gdk_event_translate): tell if expose events have
send_event set in debugging output.
(gdk_compress_exposures): default initialize the event so we don't
operate on bogus values (namely send_event).
Thu Sep 2 16:33:59 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkwindow.c: When we receive an unexpected
destroy notify on one of our windows, don't just
warn about it, also mark our windows as destroyed.
Sun Sep 5 08:10:53 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkfont.c (gdk_font_hash_insert): Add
name => font and name => fontset hashes. The
name => fontset hash is a _big_ win since we
weren't previously caching fontsets at all and loading
fontsets is expensive. The name => font hash
is less of a win, but it does save us from doing
repeated XQueryFont calls on the same font.
* gdk/gdkprivate.h (struct _GdkFontPrivate): Add a names
list so we can remove font/fontset from hash.
Thu Sep 2 19:02:37 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkproperty.c (gdk_atom_intern): Remove useless
and slightly confusing test. [ XInternAtom (,,TRUE)
will never return None ].
Sat Sep 4 08:39:26 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkwindow.c (gdk_window_set_geometry_hints)
gdk/gdkwindow.c (gdk_window_set_hints):
Don't omit setting the properties if flags == 0 -
there may be an existing set of properties there
already. (Very old bug. Would it be better to
delete the property instead?)
* gdk/gdkselection.c (gdk_selection_property_get): Fix
spelling error in comment.
Wed Sep 1 14:05:30 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkimage.c (gdk_image_new): Use gdk_error_trap_push()
to avoid stomping over gdk_error_warnings.
* gdk/gdkimage.c (gdk_image_new): compute image->bpp
as (bits_per_pixel + 7) / 8. This gives the same
result as before for multiples of 8, but actually
a "reasonable" value for 1bit or 4bit displays.
Mon Aug 23 19:11:17 1999 Tim Janik <timj@gtk.org>
* gdk/Makefile.am: minor cleanups, strip spaces on build rules for
GNU Make.
Tue Aug 17 07:43:04 1999 Tim Janik <timj@gtk.org>
* gdk/gdkevents.c (gdk_event_translate): give a debugging note when
discarding configure events.
1999-08-18 Federico Mena Quintero <federico@redhat.com>
* gdk/gdkpixmap.c (gdk_pixmap_unref): g_return_if_fail() the
refcount is greater than zero.
* gdk/gdkwindow.c (gdk_window_unref): Likewise.
* gdk/gdkfont.c (gdk_font_unref): Likewise.
* gdk/gdkgc.c (gdk_gc_unref): Likewise.
* gdk/gdkdnd.c (gdk_drag_context_unref): Likewise.
Wed Aug 11 01:04:57 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkproperty.c (gdk_property_get): Fix assumption
that format 32 => sizeof(item) == 4. It really is
sizeof(long).
Tue Jun 29 23:02:42 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.c (gdk_x_error / gdk_x_io_error): Don't
core dump at all on X IO errors, only core dump
if --enable-debug for X errors.
Thu Jun 24 17:06:23 1999 Tim Janik <timj@gtk.org>
* gdk/gdkevents.c (gdk_event_translate): removed old ""Got event for
unknown window:" message. disabled ConfigureNotify discarding code,
because it led to events being processed out of order.
Thu Jun 24 12:22:02 1999 Tim Janik <timj@gtk.org>
* gdk/gdkglobals.c: preinitialize gdk_error_code to 0.
* gdk/gdkevents.c (gdk_event_send_client_message_to_all_recurse): since
we export this function, supress error warnings and don't reset the
error code in the first half of this function.
* gdk/gdk.c (gdk_x_error): set gdk_error_code to the actuall X error
code (instead of just -1) so gdk_error_trap_pop() reveals something
actually informative about the error that happened.
* gdk/*.c:
don't rely on gdk_error_code being -1 if an error occoured, but just
gdk_error_code != 0.
Thu Jun 24 11:50:07 1999 Tim Janik <timj@gtk.org>
* gdk/gdkevents.c (gdk_event_apply_filters): advance the filter list
pointer *before* invoking the filter function, so we at least don't
crash if a filter is removed that is currently executed. window filters
*really* need to be made truely reentrant at some point.
Mon Jun 14 11:10:15 1999 Tim Janik <timj@gtk.org>
* gdk/gdkevents.c (gdk_event_translate): print the atom name in the
PropertyNotify debug messages.
Wed May 5 22:51:06 1999 Owen Taylor <otaylor@redhat.com>
Patch from Sung-Hyun Nam <namsh@lgic.co.kr>
* gdk/gdkim.c: Fix cut-and-paste errors for
x/y and PreeditAttributes/StatusAttributes.
Wed May 5 22:24:21 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkwindow.c (gdk_window_set_geometry_hints): Change
G_MAXINT to 2^16 to alleviate overflow problems in
various window managers.
Wed Apr 21 00:42:08 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkfont.c (gdk_text_measure): Fix the return value
for fontsets.
Wed May 5 12:42:01 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkwindow.c (gdk_window_set_geometry_hints):
Initialize size_hints.x and size_hints.y because kwm
brokenly pays attention to them.
(Bug #1181 - Lars Heete <hel@admin.de>)
Wed May 5 11:38:56 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkrgb.c (gdk_rgb_choose_visual): Free the
return value of gdk_list_visuals().
(Bug #1193 - Morten Welinder <terra@diku.dk>)
Tue May 4 11:12:56 PDT 1999 Manish Singh <yosh@gimp.org>
* gdk/gdkim.c (gdk_im_real_open): cast the return value of
XSetIMValues to (void *) when comparing to NULL, to workaround
the problem of some compilers barfing since older X headers don't
have the prototype for it.
Mon Apr 19 10:11:12 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkcolor.c (gdk_colormap_new): Fix memory leak
for pseudocolor where colormap->colors was double
allocated.
* gdk/gdkcolor.c (gdk_colormap_alloc1): Store the
color value in the hash table with the pixel filled
in so when we do later hash table lookups, the color
value is correct.
Sun May 2 15:29:45 PDT 1999 Manish Singh <yosh@gimp.org>
* gdk/gdkdraw.c (gdk_draw_lines): check private->destroyed before
making the call
Tue Apr 27 11:17:35 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkdnd.c (xdnd_set_{targets,actions}): Fix leak
pointed out by Morten Welinder <terra@diku.dk>.
Wed Apr 21 14:20:22 1999 George Lebl <jirka@5z.com>
* gdk/gdkwindow.c: (gdk_window_remove_filter) correctly remove the
default filter from the list
Wed Apr 21 14:20:22 1999 George Lebl <jirka@5z.com>
* gdk/gdkwindow.c: (gdk_window_remove_filter) correctly remove the
default filter from the list
Fri Apr 16 20:41:43 PDT 1999 Manish Singh <yosh@gimp.org>
* gdk/gdk.c: #include "gdkkeysyms.h" for gdk_XConvertCase #defines
* gtk/gtkfontsel.c (gtk_font_selection_create_xlfd): use
g_strdup_printf instead of calcing the length separately
Tue Apr 13 02:49:33 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkwindow.c: removed some silly #ifdef HAVE_CONFIG
that we don't do in many other places. (Fixing duplicate
#include of config.h)
* gdk/gdkevents.c: include gdkinput.h _after_ config.h.
Otherwise, #ifndef XINPUT_NONE check in the latter
doesn't work. (Bug #546)
Sun Apr 11 14:38:03 1999 Tim Janik <timj@gtk.org>
* gdk/gdkpixmap.c (_gdk_pixmap_create_from_xpm): check for color
"None" case insensitive.
Tue Apr 6 16:38:51 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkselection.c:
Add error traps so if the other end of the connection
dies, we survive.
Tue Apr 6 12:24:21 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkdnd.c (gdk_drag_motion): Separate out the
dest_xid field into two fields - one for the window
to send in messages, one to indicate the last looked
up window for caching purposes. This is needed, so
that Leave messages get the correct window.
Mon Apr 5 13:21:30 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkevents.c (gdk_event_check, gdk_event_prepare):
Fix warning created by people mucking around
with the gsource API.
* gdk/gdkevents.c (gdk_io_invoke, gdk_input_add_full):
Change mapping between GIOCondition and GdkInputCondition
to match the way the Linux kernel does it. This should
fix problems where closed pipes were no longer signalling
GDK_INPUT_READ on systems with a native poll().
Mon Apr 5 17:11:57 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkpixmap.c (_gdk_pixmap_create_from_xpm): Check
explicitly for the string "None" - it is in the XPM
spec and some servers treat unknown colors in odd ways
(like asking the user!)
Thu Apr 1 16:58:10 PST 1999 Manish Singh <yosh@gimp.org>
* gdk/gdkevents.c: made "->" into a "." of previous change so
it compiles
Thu Apr 1 18:41:25 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkevents.c (gdk_compress_exposures): Set the
window field of the event structure before calling
user filters.
1999-03-31 Federico Mena Quintero <federico@nuclecu.unam.mx>
* gdk/gdk.c (gdk_init_check): Use False as the last argument to
XInternAtom() here. This is a particularly Old And Nasty(tm) bug.
Mon Mar 29 17:31:52 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkim.c (gdk_mbstowcs): Free the value of the
intermediate text property - prevents major memory
leak when gdk_use_mb.
gtk-d3august-990311-0: Bj|rn Augustsson <d3august@dtek.chalmers.se>
Mon Mar 29 17:02:58 1999 Owen Taylor <otaylor@redhat.com>
Patches from Akira Higuchi <a-higuti@math.sci.hokudai.ac.jp>
gtk-a-higuti-990322-[0-3]
* gdk/gdkfont.c (gdk_text_extents_wc): Make work when
sizeof(wchar_t) != sizeof (GdkWChar)
* configure.in: Fix confusion between GTK_LOCALE_[C]FLAGS
that was causing -DX_LOCALE not to work.
* gtk/gtkrc.c (gtk_rc_init):
X_LOCALE will never have LC_MESSAGES defined
* gdk/gdk.c (gdk_init_check):
Remove --xim-preedit and --xim-status from argv properly.
* gdk/gdkim.c (gdk_ic_real_new): Add a gdk_flush() so
that the client window is present on the X server
before we pass it to the input method.
Tue Mar 9 10:46:49 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkdnd.c (motif_find_drag_window): Fix bug where
if --display is specified on the command line, than
the drag window will not be created on that display.
Tue Mar 9 10:38:24 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkproperty.c (gdk_atom_intern): Fixed bug where
lookups with only_if_exists == TRUE were inserting
bogus values into the atom cache.
Wed Mar 17 09:00:00 1999 Tim Janik <timj@gtk.org>
* gdk/gdkselection.c (gdk_selection_property_get): first XFree(t),
then reset it to NULL.
* gdk/gdkcolor.c:
(gdk_colors_free):
(gdk_colormap_free_colors): use colormap->colors[in_pixels[i]] as the
key for g_hash_table_remove() in both functions, this prevents us
from accessing possibly uninitialized portions of a GdkColor structure
where we are only interested in its pixel value.
Tue Mar 9 01:01:28 1999 Tim Janik <timj@gtk.org>
* gdk/gdkfont.c (gdk_font_load): first lookup the xfont ID in our
font hash table, if we have a GdkFontPrivate entry for this font
already, simply increment its reference count, provided by Olaf Dietsche
<olaf.dietsche+list.gtk@netcologne.de>.
1999-09-21 Tor Lillqvist <tml@iki.fi>
1999-09-28 20:19:13 +00:00
|
|
|
GdkColor *result = NULL;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
|
|
|
color.red = red;
|
|
|
|
color.green = green;
|
|
|
|
color.blue = blue;
|
[ Merges from gtk-1-2 ]
Wed Sep 8 07:13:29 1999 Tim Janik <timj@gtk.org>
* configure.in: fixed "GNU Make" check to pass with new make version
3.77.95.
Fri Sep 3 16:04:41 1999 Tim Janik <timj@gtk.org>
* gtk-config.in (--version): don't echo @GTK_VERSION@, but
@GTK_MAJOR_VERSION@.@GTK_MINOR_VERSION@.@GTK_MICRO_VERSION@, so the
AM_PATH_GTK() macros don't get confused by the -pre1.
Thu Sep 2 19:02:37 1999 Owen Taylor <otaylor@redhat.com>
* configure.in (REBUILD): Change check for perl5
to check explicitely for v >= 5.002. (5.001
does not work with our scripts.)
Wed Aug 25 15:45:46 1999 Tim Janik <timj@gtk.org>
* configure.in: evaluate $PERL for the perl version check. added
--disable-rebuilds to give the user an option to completely disable
any source autogeneration rules.
Mon Aug 23 23:16:14 1999 Tim Janik <timj@gtk.org>
* configure.in: evaluate $ac_make when checking for GNU Make.
Mon Aug 23 19:11:17 1999 Tim Janik <timj@gtk.org>
* docs/Makefile.am: added generation.txt.
* Makefile.am: require automake 1.4, build README from README.in and
INSTALL from INSTALL.in in dist-hook.
* README.in:
* INSTALL.in: new files to autogenerate README and INSTALL from.
* configure.in: figure whether we have GNU Make
* docs/generation.txt: minor additions/corrections.
Wed Aug 11 13:38:26 BST 1999 Tony Gale <gale@gtk.org>
* docs/gtkfaq.sgml: FAQ Update
July 30, 1999 Elliot Lee <sopwith@redhat.com>
* configure.in: Fix autoconf warnings about cross compilation by
trying to provide sane defaults for AC_TRY_RUN.
Fri Jul 16 22:20:21 PDT 1999 Manish Singh <yosh@gimp.org>
* ltconfig
* ltmain.sh: upgrade to libtool 1.3.3
Thu Jul 8 11:30:18 1999 Owen Taylor <otaylor@redhat.com>
* INSTALL: Indicate that the --with-glib= configure
time flag is unsupported.
Mon Jul 5 20:36:03 1999 Owen Taylor <otaylor@redhat.com>
* docs/generation.txt: Added a file that gives
documenation about the autogeneration process for
various autogenerated files.
Tue Jun 29 15:59:25 1999 Owen Taylor <otaylor@redhat.com>
* configure.in (LIBS): Look for libgmodule in the
right location.
Thu Jun 17 13:57:31 1999 Owen Taylor <otaylor@redhat.com>
* docs/gtk_tut.sgml: Removed references to
code examples in my directory on gtk.org as
they should all be in the tutorial now.
* docs/gtk_tut.sgml: Added sources for dial-test
and scribble-xinput programs that were previously
missing.
Fri Jun 4 00:08:59 1999 Owen Taylor <otaylor@redhat.com>
* TODO: Added entry about menu keyboard navigation, removed
some finished items.
Mon May 31 00:11:24 1999 Owen Taylor <otaylor@redhat.com>
* acinclude.m4: Standardize on func_dgettext
not func_gettext, so that the checks for dgettext
actually are paid attention to.
Wed May 5 10:47:54 1999 Owen Taylor <otaylor@redhat.com>
* configure.in (LIBS): Add $INTLLIBS into $LIBS
directly, rather than repeating the checks for
gettext.
* INSTALL: Added information about gettext and
NLS support.
* acinclude.m4 (LIBM): Check for dgettext, not
just gettext. This should hopefully fix things wrt
systems with old versions of GNU gettext installed.
Tue Jun 29 15:59:25 1999 Owen Taylor <otaylor@redhat.com>
* configure.in (LIBS): Look for libgmodule in the
right location.
Thu Apr 1 16:58:10 PST 1999 Manish Singh <yosh@gimp.org>
* autogen.sh: add --enable-maintainer-mode
* configure.in: set ACLOCAL="$ACLOCAL $ACLOCAL_FLAGS"
Wed Mar 24 23:03:49 CST 1999 Shawn T. Amundson <amundson@gtk.org>
* docs/gtk-config.1.in:
docs/Makefile.am:
configure.in: gtk-config is now generated.
* docs/gtk-config.1: Removed, now generated.
Thu Sep 23 17:59:59 1999 Tim Janik <timj@gtk.org>
* gdk/gdkevents.c (gdk_event_translate): grr, even if Gdk doesn't
handle CreateNotify itself, still put out a debuging message for
--gdk-debug=events. made the ReparentNotify debugging message more
verbose.
wrap xcoords translation for ConfigureEvents into an error trap,
a destroy event may already be pending, and in that case, the
actuall coordinate values are not at all critical.
Sat Sep 18 22:24:15 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkcc.c: Stop leaking the color_hash all over
the place. Simplify and improve the logic.
Fri Sep 17 09:57:15 1999 Tim Janik <timj@gtk.org>
* gdk/gdk.h, gdk/gdkcolor.c: make return types (gint or gboolean)
for prototypes and function implementations consistent (reported
by Tomas Ogren).
Tue Sep 14 18:23:01 1999 Tim Janik <timj@gtk.org>
* gdk/gdkevents.c (gdk_event_translate): tell if expose events have
send_event set in debugging output.
(gdk_compress_exposures): default initialize the event so we don't
operate on bogus values (namely send_event).
Thu Sep 2 16:33:59 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkwindow.c: When we receive an unexpected
destroy notify on one of our windows, don't just
warn about it, also mark our windows as destroyed.
Sun Sep 5 08:10:53 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkfont.c (gdk_font_hash_insert): Add
name => font and name => fontset hashes. The
name => fontset hash is a _big_ win since we
weren't previously caching fontsets at all and loading
fontsets is expensive. The name => font hash
is less of a win, but it does save us from doing
repeated XQueryFont calls on the same font.
* gdk/gdkprivate.h (struct _GdkFontPrivate): Add a names
list so we can remove font/fontset from hash.
Thu Sep 2 19:02:37 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkproperty.c (gdk_atom_intern): Remove useless
and slightly confusing test. [ XInternAtom (,,TRUE)
will never return None ].
Sat Sep 4 08:39:26 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkwindow.c (gdk_window_set_geometry_hints)
gdk/gdkwindow.c (gdk_window_set_hints):
Don't omit setting the properties if flags == 0 -
there may be an existing set of properties there
already. (Very old bug. Would it be better to
delete the property instead?)
* gdk/gdkselection.c (gdk_selection_property_get): Fix
spelling error in comment.
Wed Sep 1 14:05:30 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkimage.c (gdk_image_new): Use gdk_error_trap_push()
to avoid stomping over gdk_error_warnings.
* gdk/gdkimage.c (gdk_image_new): compute image->bpp
as (bits_per_pixel + 7) / 8. This gives the same
result as before for multiples of 8, but actually
a "reasonable" value for 1bit or 4bit displays.
Mon Aug 23 19:11:17 1999 Tim Janik <timj@gtk.org>
* gdk/Makefile.am: minor cleanups, strip spaces on build rules for
GNU Make.
Tue Aug 17 07:43:04 1999 Tim Janik <timj@gtk.org>
* gdk/gdkevents.c (gdk_event_translate): give a debugging note when
discarding configure events.
1999-08-18 Federico Mena Quintero <federico@redhat.com>
* gdk/gdkpixmap.c (gdk_pixmap_unref): g_return_if_fail() the
refcount is greater than zero.
* gdk/gdkwindow.c (gdk_window_unref): Likewise.
* gdk/gdkfont.c (gdk_font_unref): Likewise.
* gdk/gdkgc.c (gdk_gc_unref): Likewise.
* gdk/gdkdnd.c (gdk_drag_context_unref): Likewise.
Wed Aug 11 01:04:57 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkproperty.c (gdk_property_get): Fix assumption
that format 32 => sizeof(item) == 4. It really is
sizeof(long).
Tue Jun 29 23:02:42 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.c (gdk_x_error / gdk_x_io_error): Don't
core dump at all on X IO errors, only core dump
if --enable-debug for X errors.
Thu Jun 24 17:06:23 1999 Tim Janik <timj@gtk.org>
* gdk/gdkevents.c (gdk_event_translate): removed old ""Got event for
unknown window:" message. disabled ConfigureNotify discarding code,
because it led to events being processed out of order.
Thu Jun 24 12:22:02 1999 Tim Janik <timj@gtk.org>
* gdk/gdkglobals.c: preinitialize gdk_error_code to 0.
* gdk/gdkevents.c (gdk_event_send_client_message_to_all_recurse): since
we export this function, supress error warnings and don't reset the
error code in the first half of this function.
* gdk/gdk.c (gdk_x_error): set gdk_error_code to the actuall X error
code (instead of just -1) so gdk_error_trap_pop() reveals something
actually informative about the error that happened.
* gdk/*.c:
don't rely on gdk_error_code being -1 if an error occoured, but just
gdk_error_code != 0.
Thu Jun 24 11:50:07 1999 Tim Janik <timj@gtk.org>
* gdk/gdkevents.c (gdk_event_apply_filters): advance the filter list
pointer *before* invoking the filter function, so we at least don't
crash if a filter is removed that is currently executed. window filters
*really* need to be made truely reentrant at some point.
Mon Jun 14 11:10:15 1999 Tim Janik <timj@gtk.org>
* gdk/gdkevents.c (gdk_event_translate): print the atom name in the
PropertyNotify debug messages.
Wed May 5 22:51:06 1999 Owen Taylor <otaylor@redhat.com>
Patch from Sung-Hyun Nam <namsh@lgic.co.kr>
* gdk/gdkim.c: Fix cut-and-paste errors for
x/y and PreeditAttributes/StatusAttributes.
Wed May 5 22:24:21 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkwindow.c (gdk_window_set_geometry_hints): Change
G_MAXINT to 2^16 to alleviate overflow problems in
various window managers.
Wed Apr 21 00:42:08 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkfont.c (gdk_text_measure): Fix the return value
for fontsets.
Wed May 5 12:42:01 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkwindow.c (gdk_window_set_geometry_hints):
Initialize size_hints.x and size_hints.y because kwm
brokenly pays attention to them.
(Bug #1181 - Lars Heete <hel@admin.de>)
Wed May 5 11:38:56 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkrgb.c (gdk_rgb_choose_visual): Free the
return value of gdk_list_visuals().
(Bug #1193 - Morten Welinder <terra@diku.dk>)
Tue May 4 11:12:56 PDT 1999 Manish Singh <yosh@gimp.org>
* gdk/gdkim.c (gdk_im_real_open): cast the return value of
XSetIMValues to (void *) when comparing to NULL, to workaround
the problem of some compilers barfing since older X headers don't
have the prototype for it.
Mon Apr 19 10:11:12 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkcolor.c (gdk_colormap_new): Fix memory leak
for pseudocolor where colormap->colors was double
allocated.
* gdk/gdkcolor.c (gdk_colormap_alloc1): Store the
color value in the hash table with the pixel filled
in so when we do later hash table lookups, the color
value is correct.
Sun May 2 15:29:45 PDT 1999 Manish Singh <yosh@gimp.org>
* gdk/gdkdraw.c (gdk_draw_lines): check private->destroyed before
making the call
Tue Apr 27 11:17:35 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkdnd.c (xdnd_set_{targets,actions}): Fix leak
pointed out by Morten Welinder <terra@diku.dk>.
Wed Apr 21 14:20:22 1999 George Lebl <jirka@5z.com>
* gdk/gdkwindow.c: (gdk_window_remove_filter) correctly remove the
default filter from the list
Wed Apr 21 14:20:22 1999 George Lebl <jirka@5z.com>
* gdk/gdkwindow.c: (gdk_window_remove_filter) correctly remove the
default filter from the list
Fri Apr 16 20:41:43 PDT 1999 Manish Singh <yosh@gimp.org>
* gdk/gdk.c: #include "gdkkeysyms.h" for gdk_XConvertCase #defines
* gtk/gtkfontsel.c (gtk_font_selection_create_xlfd): use
g_strdup_printf instead of calcing the length separately
Tue Apr 13 02:49:33 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkwindow.c: removed some silly #ifdef HAVE_CONFIG
that we don't do in many other places. (Fixing duplicate
#include of config.h)
* gdk/gdkevents.c: include gdkinput.h _after_ config.h.
Otherwise, #ifndef XINPUT_NONE check in the latter
doesn't work. (Bug #546)
Sun Apr 11 14:38:03 1999 Tim Janik <timj@gtk.org>
* gdk/gdkpixmap.c (_gdk_pixmap_create_from_xpm): check for color
"None" case insensitive.
Tue Apr 6 16:38:51 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkselection.c:
Add error traps so if the other end of the connection
dies, we survive.
Tue Apr 6 12:24:21 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkdnd.c (gdk_drag_motion): Separate out the
dest_xid field into two fields - one for the window
to send in messages, one to indicate the last looked
up window for caching purposes. This is needed, so
that Leave messages get the correct window.
Mon Apr 5 13:21:30 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkevents.c (gdk_event_check, gdk_event_prepare):
Fix warning created by people mucking around
with the gsource API.
* gdk/gdkevents.c (gdk_io_invoke, gdk_input_add_full):
Change mapping between GIOCondition and GdkInputCondition
to match the way the Linux kernel does it. This should
fix problems where closed pipes were no longer signalling
GDK_INPUT_READ on systems with a native poll().
Mon Apr 5 17:11:57 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkpixmap.c (_gdk_pixmap_create_from_xpm): Check
explicitly for the string "None" - it is in the XPM
spec and some servers treat unknown colors in odd ways
(like asking the user!)
Thu Apr 1 16:58:10 PST 1999 Manish Singh <yosh@gimp.org>
* gdk/gdkevents.c: made "->" into a "." of previous change so
it compiles
Thu Apr 1 18:41:25 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkevents.c (gdk_compress_exposures): Set the
window field of the event structure before calling
user filters.
1999-03-31 Federico Mena Quintero <federico@nuclecu.unam.mx>
* gdk/gdk.c (gdk_init_check): Use False as the last argument to
XInternAtom() here. This is a particularly Old And Nasty(tm) bug.
Mon Mar 29 17:31:52 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkim.c (gdk_mbstowcs): Free the value of the
intermediate text property - prevents major memory
leak when gdk_use_mb.
gtk-d3august-990311-0: Bj|rn Augustsson <d3august@dtek.chalmers.se>
Mon Mar 29 17:02:58 1999 Owen Taylor <otaylor@redhat.com>
Patches from Akira Higuchi <a-higuti@math.sci.hokudai.ac.jp>
gtk-a-higuti-990322-[0-3]
* gdk/gdkfont.c (gdk_text_extents_wc): Make work when
sizeof(wchar_t) != sizeof (GdkWChar)
* configure.in: Fix confusion between GTK_LOCALE_[C]FLAGS
that was causing -DX_LOCALE not to work.
* gtk/gtkrc.c (gtk_rc_init):
X_LOCALE will never have LC_MESSAGES defined
* gdk/gdk.c (gdk_init_check):
Remove --xim-preedit and --xim-status from argv properly.
* gdk/gdkim.c (gdk_ic_real_new): Add a gdk_flush() so
that the client window is present on the X server
before we pass it to the input method.
Tue Mar 9 10:46:49 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkdnd.c (motif_find_drag_window): Fix bug where
if --display is specified on the command line, than
the drag window will not be created on that display.
Tue Mar 9 10:38:24 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkproperty.c (gdk_atom_intern): Fixed bug where
lookups with only_if_exists == TRUE were inserting
bogus values into the atom cache.
Wed Mar 17 09:00:00 1999 Tim Janik <timj@gtk.org>
* gdk/gdkselection.c (gdk_selection_property_get): first XFree(t),
then reset it to NULL.
* gdk/gdkcolor.c:
(gdk_colors_free):
(gdk_colormap_free_colors): use colormap->colors[in_pixels[i]] as the
key for g_hash_table_remove() in both functions, this prevents us
from accessing possibly uninitialized portions of a GdkColor structure
where we are only interested in its pixel value.
Tue Mar 9 01:01:28 1999 Tim Janik <timj@gtk.org>
* gdk/gdkfont.c (gdk_font_load): first lookup the xfont ID in our
font hash table, if we have a GdkFontPrivate entry for this font
already, simply increment its reference count, provided by Olaf Dietsche
<olaf.dietsche+list.gtk@netcologne.de>.
1999-09-21 Tor Lillqvist <tml@iki.fi>
1999-09-28 20:19:13 +00:00
|
|
|
|
|
|
|
if (cc->color_hash)
|
|
|
|
result = g_hash_table_lookup (cc->color_hash, &color);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
|
|
|
if (!result)
|
|
|
|
{
|
|
|
|
color.red = red;
|
|
|
|
color.green = green;
|
|
|
|
color.blue = blue;
|
|
|
|
color.pixel = 0;
|
|
|
|
|
|
|
|
if (!gdk_color_alloc (cc->colormap, &color))
|
|
|
|
*failed = TRUE;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
GdkColor *cnew;
|
|
|
|
|
|
|
|
/* XXX: the following comment comes directly from
|
|
|
|
* XCC.c. I don't know if it is relevant for
|
|
|
|
* gdk_color_alloc() as it is for XAllocColor()
|
|
|
|
* - Federico
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
* I can't figure this out entirely, but it *is* possible
|
|
|
|
* that XAllocColor succeeds, even if the number of
|
|
|
|
* allocations we've made exceeds the number of available
|
|
|
|
* colors in the current colormap. And therefore it
|
|
|
|
* might be necessary for us to resize the CLUT.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (cc->num_allocated == cc->max_colors)
|
|
|
|
{
|
|
|
|
cc->max_colors *= 2;
|
|
|
|
|
|
|
|
GDK_NOTE (COLOR_CONTEXT,
|
|
|
|
g_message ("gdk_color_context_get_pixel: "
|
|
|
|
"resizing CLUT to %i entries\n",
|
|
|
|
cc->max_colors));
|
|
|
|
|
|
|
|
cc->clut = g_realloc (cc->clut,
|
|
|
|
cc->max_colors * sizeof (gulong));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Key and value are the same color structure */
|
|
|
|
|
|
|
|
cnew = g_new (GdkColor, 1);
|
|
|
|
*cnew = color;
|
[ Merges from gtk-1-2 ]
Wed Sep 8 07:13:29 1999 Tim Janik <timj@gtk.org>
* configure.in: fixed "GNU Make" check to pass with new make version
3.77.95.
Fri Sep 3 16:04:41 1999 Tim Janik <timj@gtk.org>
* gtk-config.in (--version): don't echo @GTK_VERSION@, but
@GTK_MAJOR_VERSION@.@GTK_MINOR_VERSION@.@GTK_MICRO_VERSION@, so the
AM_PATH_GTK() macros don't get confused by the -pre1.
Thu Sep 2 19:02:37 1999 Owen Taylor <otaylor@redhat.com>
* configure.in (REBUILD): Change check for perl5
to check explicitely for v >= 5.002. (5.001
does not work with our scripts.)
Wed Aug 25 15:45:46 1999 Tim Janik <timj@gtk.org>
* configure.in: evaluate $PERL for the perl version check. added
--disable-rebuilds to give the user an option to completely disable
any source autogeneration rules.
Mon Aug 23 23:16:14 1999 Tim Janik <timj@gtk.org>
* configure.in: evaluate $ac_make when checking for GNU Make.
Mon Aug 23 19:11:17 1999 Tim Janik <timj@gtk.org>
* docs/Makefile.am: added generation.txt.
* Makefile.am: require automake 1.4, build README from README.in and
INSTALL from INSTALL.in in dist-hook.
* README.in:
* INSTALL.in: new files to autogenerate README and INSTALL from.
* configure.in: figure whether we have GNU Make
* docs/generation.txt: minor additions/corrections.
Wed Aug 11 13:38:26 BST 1999 Tony Gale <gale@gtk.org>
* docs/gtkfaq.sgml: FAQ Update
July 30, 1999 Elliot Lee <sopwith@redhat.com>
* configure.in: Fix autoconf warnings about cross compilation by
trying to provide sane defaults for AC_TRY_RUN.
Fri Jul 16 22:20:21 PDT 1999 Manish Singh <yosh@gimp.org>
* ltconfig
* ltmain.sh: upgrade to libtool 1.3.3
Thu Jul 8 11:30:18 1999 Owen Taylor <otaylor@redhat.com>
* INSTALL: Indicate that the --with-glib= configure
time flag is unsupported.
Mon Jul 5 20:36:03 1999 Owen Taylor <otaylor@redhat.com>
* docs/generation.txt: Added a file that gives
documenation about the autogeneration process for
various autogenerated files.
Tue Jun 29 15:59:25 1999 Owen Taylor <otaylor@redhat.com>
* configure.in (LIBS): Look for libgmodule in the
right location.
Thu Jun 17 13:57:31 1999 Owen Taylor <otaylor@redhat.com>
* docs/gtk_tut.sgml: Removed references to
code examples in my directory on gtk.org as
they should all be in the tutorial now.
* docs/gtk_tut.sgml: Added sources for dial-test
and scribble-xinput programs that were previously
missing.
Fri Jun 4 00:08:59 1999 Owen Taylor <otaylor@redhat.com>
* TODO: Added entry about menu keyboard navigation, removed
some finished items.
Mon May 31 00:11:24 1999 Owen Taylor <otaylor@redhat.com>
* acinclude.m4: Standardize on func_dgettext
not func_gettext, so that the checks for dgettext
actually are paid attention to.
Wed May 5 10:47:54 1999 Owen Taylor <otaylor@redhat.com>
* configure.in (LIBS): Add $INTLLIBS into $LIBS
directly, rather than repeating the checks for
gettext.
* INSTALL: Added information about gettext and
NLS support.
* acinclude.m4 (LIBM): Check for dgettext, not
just gettext. This should hopefully fix things wrt
systems with old versions of GNU gettext installed.
Tue Jun 29 15:59:25 1999 Owen Taylor <otaylor@redhat.com>
* configure.in (LIBS): Look for libgmodule in the
right location.
Thu Apr 1 16:58:10 PST 1999 Manish Singh <yosh@gimp.org>
* autogen.sh: add --enable-maintainer-mode
* configure.in: set ACLOCAL="$ACLOCAL $ACLOCAL_FLAGS"
Wed Mar 24 23:03:49 CST 1999 Shawn T. Amundson <amundson@gtk.org>
* docs/gtk-config.1.in:
docs/Makefile.am:
configure.in: gtk-config is now generated.
* docs/gtk-config.1: Removed, now generated.
Thu Sep 23 17:59:59 1999 Tim Janik <timj@gtk.org>
* gdk/gdkevents.c (gdk_event_translate): grr, even if Gdk doesn't
handle CreateNotify itself, still put out a debuging message for
--gdk-debug=events. made the ReparentNotify debugging message more
verbose.
wrap xcoords translation for ConfigureEvents into an error trap,
a destroy event may already be pending, and in that case, the
actuall coordinate values are not at all critical.
Sat Sep 18 22:24:15 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkcc.c: Stop leaking the color_hash all over
the place. Simplify and improve the logic.
Fri Sep 17 09:57:15 1999 Tim Janik <timj@gtk.org>
* gdk/gdk.h, gdk/gdkcolor.c: make return types (gint or gboolean)
for prototypes and function implementations consistent (reported
by Tomas Ogren).
Tue Sep 14 18:23:01 1999 Tim Janik <timj@gtk.org>
* gdk/gdkevents.c (gdk_event_translate): tell if expose events have
send_event set in debugging output.
(gdk_compress_exposures): default initialize the event so we don't
operate on bogus values (namely send_event).
Thu Sep 2 16:33:59 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkwindow.c: When we receive an unexpected
destroy notify on one of our windows, don't just
warn about it, also mark our windows as destroyed.
Sun Sep 5 08:10:53 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkfont.c (gdk_font_hash_insert): Add
name => font and name => fontset hashes. The
name => fontset hash is a _big_ win since we
weren't previously caching fontsets at all and loading
fontsets is expensive. The name => font hash
is less of a win, but it does save us from doing
repeated XQueryFont calls on the same font.
* gdk/gdkprivate.h (struct _GdkFontPrivate): Add a names
list so we can remove font/fontset from hash.
Thu Sep 2 19:02:37 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkproperty.c (gdk_atom_intern): Remove useless
and slightly confusing test. [ XInternAtom (,,TRUE)
will never return None ].
Sat Sep 4 08:39:26 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkwindow.c (gdk_window_set_geometry_hints)
gdk/gdkwindow.c (gdk_window_set_hints):
Don't omit setting the properties if flags == 0 -
there may be an existing set of properties there
already. (Very old bug. Would it be better to
delete the property instead?)
* gdk/gdkselection.c (gdk_selection_property_get): Fix
spelling error in comment.
Wed Sep 1 14:05:30 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkimage.c (gdk_image_new): Use gdk_error_trap_push()
to avoid stomping over gdk_error_warnings.
* gdk/gdkimage.c (gdk_image_new): compute image->bpp
as (bits_per_pixel + 7) / 8. This gives the same
result as before for multiples of 8, but actually
a "reasonable" value for 1bit or 4bit displays.
Mon Aug 23 19:11:17 1999 Tim Janik <timj@gtk.org>
* gdk/Makefile.am: minor cleanups, strip spaces on build rules for
GNU Make.
Tue Aug 17 07:43:04 1999 Tim Janik <timj@gtk.org>
* gdk/gdkevents.c (gdk_event_translate): give a debugging note when
discarding configure events.
1999-08-18 Federico Mena Quintero <federico@redhat.com>
* gdk/gdkpixmap.c (gdk_pixmap_unref): g_return_if_fail() the
refcount is greater than zero.
* gdk/gdkwindow.c (gdk_window_unref): Likewise.
* gdk/gdkfont.c (gdk_font_unref): Likewise.
* gdk/gdkgc.c (gdk_gc_unref): Likewise.
* gdk/gdkdnd.c (gdk_drag_context_unref): Likewise.
Wed Aug 11 01:04:57 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkproperty.c (gdk_property_get): Fix assumption
that format 32 => sizeof(item) == 4. It really is
sizeof(long).
Tue Jun 29 23:02:42 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.c (gdk_x_error / gdk_x_io_error): Don't
core dump at all on X IO errors, only core dump
if --enable-debug for X errors.
Thu Jun 24 17:06:23 1999 Tim Janik <timj@gtk.org>
* gdk/gdkevents.c (gdk_event_translate): removed old ""Got event for
unknown window:" message. disabled ConfigureNotify discarding code,
because it led to events being processed out of order.
Thu Jun 24 12:22:02 1999 Tim Janik <timj@gtk.org>
* gdk/gdkglobals.c: preinitialize gdk_error_code to 0.
* gdk/gdkevents.c (gdk_event_send_client_message_to_all_recurse): since
we export this function, supress error warnings and don't reset the
error code in the first half of this function.
* gdk/gdk.c (gdk_x_error): set gdk_error_code to the actuall X error
code (instead of just -1) so gdk_error_trap_pop() reveals something
actually informative about the error that happened.
* gdk/*.c:
don't rely on gdk_error_code being -1 if an error occoured, but just
gdk_error_code != 0.
Thu Jun 24 11:50:07 1999 Tim Janik <timj@gtk.org>
* gdk/gdkevents.c (gdk_event_apply_filters): advance the filter list
pointer *before* invoking the filter function, so we at least don't
crash if a filter is removed that is currently executed. window filters
*really* need to be made truely reentrant at some point.
Mon Jun 14 11:10:15 1999 Tim Janik <timj@gtk.org>
* gdk/gdkevents.c (gdk_event_translate): print the atom name in the
PropertyNotify debug messages.
Wed May 5 22:51:06 1999 Owen Taylor <otaylor@redhat.com>
Patch from Sung-Hyun Nam <namsh@lgic.co.kr>
* gdk/gdkim.c: Fix cut-and-paste errors for
x/y and PreeditAttributes/StatusAttributes.
Wed May 5 22:24:21 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkwindow.c (gdk_window_set_geometry_hints): Change
G_MAXINT to 2^16 to alleviate overflow problems in
various window managers.
Wed Apr 21 00:42:08 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkfont.c (gdk_text_measure): Fix the return value
for fontsets.
Wed May 5 12:42:01 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkwindow.c (gdk_window_set_geometry_hints):
Initialize size_hints.x and size_hints.y because kwm
brokenly pays attention to them.
(Bug #1181 - Lars Heete <hel@admin.de>)
Wed May 5 11:38:56 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkrgb.c (gdk_rgb_choose_visual): Free the
return value of gdk_list_visuals().
(Bug #1193 - Morten Welinder <terra@diku.dk>)
Tue May 4 11:12:56 PDT 1999 Manish Singh <yosh@gimp.org>
* gdk/gdkim.c (gdk_im_real_open): cast the return value of
XSetIMValues to (void *) when comparing to NULL, to workaround
the problem of some compilers barfing since older X headers don't
have the prototype for it.
Mon Apr 19 10:11:12 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkcolor.c (gdk_colormap_new): Fix memory leak
for pseudocolor where colormap->colors was double
allocated.
* gdk/gdkcolor.c (gdk_colormap_alloc1): Store the
color value in the hash table with the pixel filled
in so when we do later hash table lookups, the color
value is correct.
Sun May 2 15:29:45 PDT 1999 Manish Singh <yosh@gimp.org>
* gdk/gdkdraw.c (gdk_draw_lines): check private->destroyed before
making the call
Tue Apr 27 11:17:35 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkdnd.c (xdnd_set_{targets,actions}): Fix leak
pointed out by Morten Welinder <terra@diku.dk>.
Wed Apr 21 14:20:22 1999 George Lebl <jirka@5z.com>
* gdk/gdkwindow.c: (gdk_window_remove_filter) correctly remove the
default filter from the list
Wed Apr 21 14:20:22 1999 George Lebl <jirka@5z.com>
* gdk/gdkwindow.c: (gdk_window_remove_filter) correctly remove the
default filter from the list
Fri Apr 16 20:41:43 PDT 1999 Manish Singh <yosh@gimp.org>
* gdk/gdk.c: #include "gdkkeysyms.h" for gdk_XConvertCase #defines
* gtk/gtkfontsel.c (gtk_font_selection_create_xlfd): use
g_strdup_printf instead of calcing the length separately
Tue Apr 13 02:49:33 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkwindow.c: removed some silly #ifdef HAVE_CONFIG
that we don't do in many other places. (Fixing duplicate
#include of config.h)
* gdk/gdkevents.c: include gdkinput.h _after_ config.h.
Otherwise, #ifndef XINPUT_NONE check in the latter
doesn't work. (Bug #546)
Sun Apr 11 14:38:03 1999 Tim Janik <timj@gtk.org>
* gdk/gdkpixmap.c (_gdk_pixmap_create_from_xpm): check for color
"None" case insensitive.
Tue Apr 6 16:38:51 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkselection.c:
Add error traps so if the other end of the connection
dies, we survive.
Tue Apr 6 12:24:21 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkdnd.c (gdk_drag_motion): Separate out the
dest_xid field into two fields - one for the window
to send in messages, one to indicate the last looked
up window for caching purposes. This is needed, so
that Leave messages get the correct window.
Mon Apr 5 13:21:30 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkevents.c (gdk_event_check, gdk_event_prepare):
Fix warning created by people mucking around
with the gsource API.
* gdk/gdkevents.c (gdk_io_invoke, gdk_input_add_full):
Change mapping between GIOCondition and GdkInputCondition
to match the way the Linux kernel does it. This should
fix problems where closed pipes were no longer signalling
GDK_INPUT_READ on systems with a native poll().
Mon Apr 5 17:11:57 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkpixmap.c (_gdk_pixmap_create_from_xpm): Check
explicitly for the string "None" - it is in the XPM
spec and some servers treat unknown colors in odd ways
(like asking the user!)
Thu Apr 1 16:58:10 PST 1999 Manish Singh <yosh@gimp.org>
* gdk/gdkevents.c: made "->" into a "." of previous change so
it compiles
Thu Apr 1 18:41:25 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkevents.c (gdk_compress_exposures): Set the
window field of the event structure before calling
user filters.
1999-03-31 Federico Mena Quintero <federico@nuclecu.unam.mx>
* gdk/gdk.c (gdk_init_check): Use False as the last argument to
XInternAtom() here. This is a particularly Old And Nasty(tm) bug.
Mon Mar 29 17:31:52 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkim.c (gdk_mbstowcs): Free the value of the
intermediate text property - prevents major memory
leak when gdk_use_mb.
gtk-d3august-990311-0: Bj|rn Augustsson <d3august@dtek.chalmers.se>
Mon Mar 29 17:02:58 1999 Owen Taylor <otaylor@redhat.com>
Patches from Akira Higuchi <a-higuti@math.sci.hokudai.ac.jp>
gtk-a-higuti-990322-[0-3]
* gdk/gdkfont.c (gdk_text_extents_wc): Make work when
sizeof(wchar_t) != sizeof (GdkWChar)
* configure.in: Fix confusion between GTK_LOCALE_[C]FLAGS
that was causing -DX_LOCALE not to work.
* gtk/gtkrc.c (gtk_rc_init):
X_LOCALE will never have LC_MESSAGES defined
* gdk/gdk.c (gdk_init_check):
Remove --xim-preedit and --xim-status from argv properly.
* gdk/gdkim.c (gdk_ic_real_new): Add a gdk_flush() so
that the client window is present on the X server
before we pass it to the input method.
Tue Mar 9 10:46:49 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkdnd.c (motif_find_drag_window): Fix bug where
if --display is specified on the command line, than
the drag window will not be created on that display.
Tue Mar 9 10:38:24 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkproperty.c (gdk_atom_intern): Fixed bug where
lookups with only_if_exists == TRUE were inserting
bogus values into the atom cache.
Wed Mar 17 09:00:00 1999 Tim Janik <timj@gtk.org>
* gdk/gdkselection.c (gdk_selection_property_get): first XFree(t),
then reset it to NULL.
* gdk/gdkcolor.c:
(gdk_colors_free):
(gdk_colormap_free_colors): use colormap->colors[in_pixels[i]] as the
key for g_hash_table_remove() in both functions, this prevents us
from accessing possibly uninitialized portions of a GdkColor structure
where we are only interested in its pixel value.
Tue Mar 9 01:01:28 1999 Tim Janik <timj@gtk.org>
* gdk/gdkfont.c (gdk_font_load): first lookup the xfont ID in our
font hash table, if we have a GdkFontPrivate entry for this font
already, simply increment its reference count, provided by Olaf Dietsche
<olaf.dietsche+list.gtk@netcologne.de>.
1999-09-21 Tor Lillqvist <tml@iki.fi>
1999-09-28 20:19:13 +00:00
|
|
|
|
|
|
|
if (!cc->color_hash)
|
|
|
|
cc->color_hash = g_hash_table_new (hash_color, compare_colors);
|
1998-08-18 03:59:41 +00:00
|
|
|
g_hash_table_insert (cc->color_hash, cnew, cnew);
|
|
|
|
|
|
|
|
cc->clut[cc->num_allocated] = color.pixel;
|
|
|
|
cc->num_allocated++;
|
|
|
|
return color.pixel;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result->pixel;
|
|
|
|
}
|
1998-01-23 06:26:39 +00:00
|
|
|
}
|
1997-12-17 00:14:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1998-01-23 06:26:39 +00:00
|
|
|
gdk_color_context_get_pixels (GdkColorContext *cc,
|
|
|
|
gushort *reds,
|
|
|
|
gushort *greens,
|
|
|
|
gushort *blues,
|
|
|
|
gint ncolors,
|
|
|
|
gulong *colors,
|
|
|
|
gint *nallocated)
|
1997-12-17 00:14:36 +00:00
|
|
|
{
|
1998-01-23 06:26:39 +00:00
|
|
|
gint i, k, idx;
|
|
|
|
gint cmapsize, ncols = 0, nopen = 0, counter = 0;
|
|
|
|
gint bad_alloc = FALSE;
|
|
|
|
gint failed[MAX_IMAGE_COLORS], allocated[MAX_IMAGE_COLORS];
|
|
|
|
GdkColor defs[MAX_IMAGE_COLORS], cmap[MAX_IMAGE_COLORS];
|
1998-03-17 19:03:52 +00:00
|
|
|
#ifdef G_ENABLE_DEBUG
|
1998-01-23 06:26:39 +00:00
|
|
|
gint exact_col = 0, subst_col = 0, close_col = 0, black_col = 0;
|
1998-03-17 19:03:52 +00:00
|
|
|
#endif
|
1998-01-23 06:26:39 +00:00
|
|
|
g_assert (cc != NULL);
|
|
|
|
g_assert (reds != NULL);
|
|
|
|
g_assert (greens != NULL);
|
|
|
|
g_assert (blues != NULL);
|
|
|
|
g_assert (colors != NULL);
|
|
|
|
g_assert (nallocated != NULL);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
memset (defs, 0, MAX_IMAGE_COLORS * sizeof (GdkColor));
|
|
|
|
memset (failed, 0, MAX_IMAGE_COLORS * sizeof (gint));
|
|
|
|
memset (allocated, 0, MAX_IMAGE_COLORS * sizeof (gint));
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* Will only have a value if used by the progressive image loader */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
ncols = *nallocated;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
*nallocated = 0;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* First allocate all pixels */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
for (i = 0; i < ncolors; i++)
|
|
|
|
{
|
|
|
|
/* colors[i] is only zero if the pixel at that location hasn't
|
|
|
|
* been allocated yet. This is a sanity check required for proper
|
|
|
|
* color allocation by the progressive image loader
|
|
|
|
*/
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
if (colors[i] == 0)
|
|
|
|
{
|
|
|
|
defs[i].red = reds[i];
|
|
|
|
defs[i].green = greens[i];
|
|
|
|
defs[i].blue = blues[i];
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
colors[i] = gdk_color_context_get_pixel (cc, reds[i], greens[i], blues[i],
|
|
|
|
&bad_alloc);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* successfully allocated, store it */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
if (!bad_alloc)
|
|
|
|
{
|
|
|
|
defs[i].pixel = colors[i];
|
|
|
|
allocated[ncols++] = colors[i];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
failed[nopen++] = i;
|
1997-12-17 00:14:36 +00:00
|
|
|
}
|
1998-01-23 06:26:39 +00:00
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
*nallocated = ncols;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* all colors available, all done */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
if ((ncols == ncolors) || (nopen == 0))
|
|
|
|
{
|
1998-02-19 06:21:27 +00:00
|
|
|
GDK_NOTE (COLOR_CONTEXT,
|
1998-08-18 03:59:41 +00:00
|
|
|
g_message ("gdk_color_context_get_pixels: got all %i colors; "
|
|
|
|
"(%i colors allocated so far)\n", ncolors, cc->num_allocated));
|
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
return;
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* The fun part. We now try to allocate the colors we couldn't allocate
|
|
|
|
* directly. The first step will map a color onto its nearest color
|
|
|
|
* that has been allocated (either by us or someone else). If any colors
|
|
|
|
* remain unallocated, we map these onto the colors that we have allocated
|
|
|
|
* ourselves.
|
|
|
|
*/
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* read up to MAX_IMAGE_COLORS colors of the current colormap */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
cmapsize = MIN (cc->num_colors, MAX_IMAGE_COLORS);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* see if the colormap has any colors to read */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
if (cmapsize < 0)
|
|
|
|
{
|
|
|
|
g_warning ("gdk_color_context_get_pixels: oops! no colors available, "
|
|
|
|
"your images will look *really* ugly.");
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
return;
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-03-17 19:03:52 +00:00
|
|
|
#ifdef G_ENABLE_DEBUG
|
1998-01-23 06:26:39 +00:00
|
|
|
exact_col = ncols;
|
1997-12-17 00:14:36 +00:00
|
|
|
#endif
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* initialize pixels */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
for (i = 0; i < cmapsize; i++)
|
|
|
|
{
|
|
|
|
cmap[i].pixel = i;
|
|
|
|
cmap[i].red = cmap[i].green = cmap[i].blue = 0;
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* read the colormap */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
my_x_query_colors (cc->colormap, cmap, cmapsize);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* get a close match for any unallocated colors */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
counter = nopen;
|
|
|
|
nopen = 0;
|
|
|
|
idx = 0;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
do
|
|
|
|
{
|
|
|
|
gint d, j, mdist, close, ri, gi, bi;
|
|
|
|
gint rd, gd, bd;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
i = failed[idx];
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-31 00:09:58 +00:00
|
|
|
mdist = 0x1000000;
|
1998-01-23 06:26:39 +00:00
|
|
|
close = -1;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* Store these vals. Small performance increase as this skips three
|
|
|
|
* indexing operations in the loop code.
|
|
|
|
*/
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
ri = reds[i];
|
|
|
|
gi = greens[i];
|
|
|
|
bi = blues[i];
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* Walk all colors in the colormap and see which one is the
|
|
|
|
* closest. Uses plain least squares.
|
|
|
|
*/
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
for (j = 0; (j < cmapsize) && (mdist != 0); j++)
|
|
|
|
{
|
1998-01-31 00:09:58 +00:00
|
|
|
/* Don't replace these by shifts; the sign may get clobbered */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-31 00:09:58 +00:00
|
|
|
rd = (ri - cmap[j].red) / 256;
|
|
|
|
gd = (gi - cmap[j].green) / 256;
|
|
|
|
bd = (bi - cmap[j].blue) / 256;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
d = rd * rd + gd * gd + bd * bd;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
if (d < mdist)
|
|
|
|
{
|
|
|
|
close = j;
|
|
|
|
mdist = d;
|
|
|
|
}
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
if (close != -1)
|
|
|
|
{
|
|
|
|
rd = cmap[close].red;
|
|
|
|
gd = cmap[close].green;
|
|
|
|
bd = cmap[close].blue;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* allocate */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
colors[i] = gdk_color_context_get_pixel (cc, rd, gd, bd, &bad_alloc);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* store */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
if (!bad_alloc)
|
|
|
|
{
|
|
|
|
defs[i] = cmap[close];
|
|
|
|
defs[i].pixel = colors[i];
|
|
|
|
allocated[ncols++] = colors[i];
|
1998-03-17 19:03:52 +00:00
|
|
|
#ifdef G_ENABLE_DEBUG
|
1998-01-23 06:26:39 +00:00
|
|
|
close_col++;
|
1997-12-17 00:14:36 +00:00
|
|
|
#endif
|
1998-01-23 06:26:39 +00:00
|
|
|
} else
|
|
|
|
failed[nopen++] = i;
|
|
|
|
} else
|
|
|
|
failed[nopen++] = i;
|
|
|
|
/* deal with in next stage if allocation failed */
|
|
|
|
}
|
|
|
|
while (++idx < counter);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
*nallocated = ncols;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* This is the maximum no. of allocated colors. See also the nopen == 0
|
|
|
|
* note above.
|
|
|
|
*/
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
if ((ncols == ncolors) || (nopen == 0))
|
|
|
|
{
|
1998-02-19 06:21:27 +00:00
|
|
|
GDK_NOTE (COLOR_CONTEXT,
|
1998-08-18 03:59:41 +00:00
|
|
|
g_message ("gdk_color_context_get_pixels: got %i colors, %i exact and "
|
|
|
|
"%i close (%i colors allocated so far)\n",
|
|
|
|
ncolors, exact_col, close_col, cc->num_allocated));
|
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
return;
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* Now map any remaining unallocated pixels into the colors we did get */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
idx = 0;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
do
|
|
|
|
{
|
|
|
|
gint d, mdist, close, ri, gi, bi;
|
|
|
|
gint j, rd, gd, bd;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
i = failed[idx];
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-31 00:09:58 +00:00
|
|
|
mdist = 0x1000000;
|
1998-01-23 06:26:39 +00:00
|
|
|
close = -1;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* store */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
ri = reds[i];
|
|
|
|
gi = greens[i];
|
|
|
|
bi = blues[i];
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* search allocated colors */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
for (j = 0; (j < ncols) && (mdist != 0); j++)
|
|
|
|
{
|
|
|
|
k = allocated[j];
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-31 00:09:58 +00:00
|
|
|
/* Don't replace these by shifts; the sign may get clobbered */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-31 00:09:58 +00:00
|
|
|
rd = (ri - defs[k].red) / 256;
|
|
|
|
gd = (gi - defs[k].green) / 256;
|
|
|
|
bd = (bi - defs[k].blue) / 256;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
d = rd * rd + gd * gd + bd * bd;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
if (d < mdist)
|
|
|
|
{
|
|
|
|
close = k;
|
|
|
|
mdist = d;
|
|
|
|
}
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
if (close < 0)
|
|
|
|
{
|
|
|
|
/* too bad, map to black */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
defs[i].pixel = cc->black_pixel;
|
|
|
|
defs[i].red = defs[i].green = defs[i].blue = 0;
|
1998-03-17 19:03:52 +00:00
|
|
|
#ifdef G_ENABLE_DEBUG
|
1998-01-23 06:26:39 +00:00
|
|
|
black_col++;
|
1997-12-17 00:14:36 +00:00
|
|
|
#endif
|
1998-01-23 06:26:39 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
defs[i] = defs[close];
|
1998-03-17 19:03:52 +00:00
|
|
|
#ifdef G_ENABLE_DEBUG
|
1998-01-23 06:26:39 +00:00
|
|
|
subst_col++;
|
1997-12-17 00:14:36 +00:00
|
|
|
#endif
|
1998-01-23 06:26:39 +00:00
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
colors[i] = defs[i].pixel;
|
|
|
|
}
|
|
|
|
while (++idx < nopen);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-02-19 06:21:27 +00:00
|
|
|
GDK_NOTE (COLOR_CONTEXT,
|
1998-08-18 03:59:41 +00:00
|
|
|
g_message ("gdk_color_context_get_pixels: got %i colors, %i exact, %i close, "
|
|
|
|
"%i substituted, %i to black (%i colors allocated so far)\n",
|
|
|
|
ncolors, exact_col, close_col, subst_col, black_col, cc->num_allocated));
|
1997-12-17 00:14:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1998-01-23 06:26:39 +00:00
|
|
|
gdk_color_context_get_pixels_incremental (GdkColorContext *cc,
|
|
|
|
gushort *reds,
|
|
|
|
gushort *greens,
|
|
|
|
gushort *blues,
|
|
|
|
gint ncolors,
|
|
|
|
gint *used,
|
|
|
|
gulong *colors,
|
|
|
|
gint *nallocated)
|
1997-12-17 00:14:36 +00:00
|
|
|
{
|
1998-01-23 06:26:39 +00:00
|
|
|
gint i, k, idx;
|
|
|
|
gint cmapsize, ncols = 0, nopen = 0, counter = 0;
|
|
|
|
gint bad_alloc = FALSE;
|
|
|
|
gint failed[MAX_IMAGE_COLORS], allocated[MAX_IMAGE_COLORS];
|
|
|
|
GdkColor defs[MAX_IMAGE_COLORS], cmap[MAX_IMAGE_COLORS];
|
1998-03-17 19:03:52 +00:00
|
|
|
#ifdef G_ENABLE_DEBUG
|
1998-01-23 06:26:39 +00:00
|
|
|
gint exact_col = 0, subst_col = 0, close_col = 0, black_col = 0;
|
1998-03-17 19:03:52 +00:00
|
|
|
#endif
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
g_assert (cc != NULL);
|
|
|
|
g_assert (reds != NULL);
|
|
|
|
g_assert (greens != NULL);
|
|
|
|
g_assert (blues != NULL);
|
|
|
|
g_assert (used != NULL);
|
|
|
|
g_assert (colors != NULL);
|
|
|
|
g_assert (nallocated != NULL);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
memset (defs, 0, MAX_IMAGE_COLORS * sizeof (GdkColor));
|
|
|
|
memset (failed, 0, MAX_IMAGE_COLORS * sizeof (gint));
|
|
|
|
memset (allocated, 0, MAX_IMAGE_COLORS * sizeof (gint));
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* Will only have a value if used by the progressive image loader */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
ncols = *nallocated;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
*nallocated = 0;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* First allocate all pixels */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
for (i = 0; i < ncolors; i++)
|
|
|
|
{
|
|
|
|
/* used[i] is only -1 if the pixel at that location hasn't
|
|
|
|
* been allocated yet. This is a sanity check required for proper
|
|
|
|
* color allocation by the progressive image loader.
|
|
|
|
* When colors[i] == 0 it indicates the slot is available for
|
|
|
|
* allocation.
|
|
|
|
*/
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
if (used[i] != FALSE)
|
|
|
|
{
|
|
|
|
if (colors[i] == 0)
|
|
|
|
{
|
|
|
|
defs[i].red = reds[i];
|
|
|
|
defs[i].green = greens[i];
|
|
|
|
defs[i].blue = blues[i];
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
colors[i] = gdk_color_context_get_pixel (cc, reds[i], greens[i], blues[i], &bad_alloc);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* successfully allocated, store it */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
if (!bad_alloc)
|
|
|
|
{
|
|
|
|
defs[i].pixel = colors[i];
|
|
|
|
allocated[ncols++] = colors[i];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
failed[nopen++] = i;
|
|
|
|
}
|
1997-12-17 00:14:36 +00:00
|
|
|
#ifdef DEBUG
|
1998-01-23 06:26:39 +00:00
|
|
|
else
|
1998-02-19 06:21:27 +00:00
|
|
|
GDK_NOTE (COLOR_CONTEXT,
|
1998-08-18 03:59:41 +00:00
|
|
|
g_message ("gdk_color_context_get_pixels_incremental: "
|
|
|
|
"pixel at slot %i already allocated, skipping\n", i));
|
1997-12-17 00:14:36 +00:00
|
|
|
#endif
|
|
|
|
}
|
1998-01-23 06:26:39 +00:00
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
*nallocated = ncols;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
if ((ncols == ncolors) || (nopen == 0))
|
|
|
|
{
|
1998-02-19 06:21:27 +00:00
|
|
|
GDK_NOTE (COLOR_CONTEXT,
|
1998-08-18 03:59:41 +00:00
|
|
|
g_message ("gdk_color_context_get_pixels_incremental: got all %i colors "
|
|
|
|
"(%i colors allocated so far)\n",
|
|
|
|
ncolors, cc->num_allocated));
|
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
return;
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
cmapsize = MIN (cc->num_colors, MAX_IMAGE_COLORS);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
if (cmapsize < 0)
|
|
|
|
{
|
|
|
|
g_warning ("gdk_color_context_get_pixels_incremental: oops! "
|
|
|
|
"No colors available images will look *really* ugly.");
|
|
|
|
return;
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-03-17 19:03:52 +00:00
|
|
|
#ifdef G_ENABLE_DEBUG
|
1998-01-23 06:26:39 +00:00
|
|
|
exact_col = ncols;
|
1997-12-17 00:14:36 +00:00
|
|
|
#endif
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* initialize pixels */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
for (i = 0; i < cmapsize; i++)
|
|
|
|
{
|
|
|
|
cmap[i].pixel = i;
|
|
|
|
cmap[i].red = cmap[i].green = cmap[i].blue = 0;
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-31 00:09:58 +00:00
|
|
|
/* read */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
my_x_query_colors (cc->colormap, cmap, cmapsize);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* now match any unallocated colors */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
counter = nopen;
|
|
|
|
nopen = 0;
|
|
|
|
idx = 0;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
do
|
|
|
|
{
|
|
|
|
gint d, j, mdist, close, ri, gi, bi;
|
|
|
|
gint rd, gd, bd;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
i = failed[idx];
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-31 00:09:58 +00:00
|
|
|
mdist = 0x1000000;
|
1998-01-23 06:26:39 +00:00
|
|
|
close = -1;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* store */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
ri = reds[i];
|
|
|
|
gi = greens[i];
|
|
|
|
bi = blues[i];
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
for (j = 0; (j < cmapsize) && (mdist != 0); j++)
|
|
|
|
{
|
1998-01-31 00:09:58 +00:00
|
|
|
/* Don't replace these by shifts; the sign may get clobbered */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-31 00:09:58 +00:00
|
|
|
rd = (ri - cmap[j].red) / 256;
|
|
|
|
gd = (gi - cmap[j].green) / 256;
|
|
|
|
bd = (bi - cmap[j].blue) / 256;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
d = rd * rd + gd * gd + bd * bd;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
if (d < mdist)
|
|
|
|
{
|
|
|
|
close = j;
|
|
|
|
mdist = d;
|
|
|
|
}
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
if (close != -1)
|
|
|
|
{
|
|
|
|
rd = cmap[close].red;
|
|
|
|
gd = cmap[close].green;
|
|
|
|
bd = cmap[close].blue;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* allocate */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
colors[i] = gdk_color_context_get_pixel (cc, rd, gd, bd, &bad_alloc);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* store */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
if (!bad_alloc)
|
|
|
|
{
|
|
|
|
defs[i] = cmap[close];
|
|
|
|
defs[i].pixel = colors[i];
|
|
|
|
allocated[ncols++] = colors[i];
|
1998-03-17 19:03:52 +00:00
|
|
|
#ifdef G_ENABLE_DEBUG
|
1998-01-23 06:26:39 +00:00
|
|
|
close_col++;
|
1997-12-17 00:14:36 +00:00
|
|
|
#endif
|
1998-01-23 06:26:39 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
failed[nopen++] = i;
|
1997-12-17 00:14:36 +00:00
|
|
|
}
|
1998-01-23 06:26:39 +00:00
|
|
|
else
|
|
|
|
failed[nopen++] = i;
|
|
|
|
/* deal with in next stage if allocation failed */
|
|
|
|
}
|
|
|
|
while (++idx < counter);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
*nallocated = ncols;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
if ((ncols == ncolors) || (nopen == 0))
|
|
|
|
{
|
1998-02-19 06:21:27 +00:00
|
|
|
GDK_NOTE (COLOR_CONTEXT,
|
1998-08-18 03:59:41 +00:00
|
|
|
g_message ("gdk_color_context_get_pixels_incremental: "
|
|
|
|
"got %i colors, %i exact and %i close "
|
|
|
|
"(%i colors allocated so far)\n",
|
|
|
|
ncolors, exact_col, close_col, cc->num_allocated));
|
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
return;
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* map remaining unallocated pixels into colors we did get */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
idx = 0;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
do
|
|
|
|
{
|
|
|
|
gint d, mdist, close, ri, gi, bi;
|
|
|
|
gint j, rd, gd, bd;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
i = failed[idx];
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-31 00:09:58 +00:00
|
|
|
mdist = 0x1000000;
|
1998-01-23 06:26:39 +00:00
|
|
|
close = -1;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
ri = reds[i];
|
|
|
|
gi = greens[i];
|
|
|
|
bi = blues[i];
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* search allocated colors */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
for (j = 0; (j < ncols) && (mdist != 0); j++)
|
|
|
|
{
|
|
|
|
k = allocated[j];
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* downscale */
|
1998-01-31 00:09:58 +00:00
|
|
|
/* Don't replace these by shifts; the sign may get clobbered */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-31 00:09:58 +00:00
|
|
|
rd = (ri - defs[k].red) / 256;
|
|
|
|
gd = (gi - defs[k].green) / 256;
|
|
|
|
bd = (bi - defs[k].blue) / 256;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
d = rd * rd + gd * gd + bd * bd;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
if (d < mdist)
|
|
|
|
{
|
|
|
|
close = k;
|
|
|
|
mdist = d;
|
|
|
|
}
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
if (close < 0)
|
|
|
|
{
|
|
|
|
/* too bad, map to black */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
defs[i].pixel = cc->black_pixel;
|
|
|
|
defs[i].red = defs[i].green = defs[i].blue = 0;
|
1998-03-17 19:03:52 +00:00
|
|
|
#ifdef G_ENABLE_DEBUG
|
1998-01-23 06:26:39 +00:00
|
|
|
black_col++;
|
1997-12-17 00:14:36 +00:00
|
|
|
#endif
|
1998-01-23 06:26:39 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
defs[i] = defs[close];
|
1998-03-17 19:03:52 +00:00
|
|
|
#ifdef G_ENABLE_DEBUG
|
1998-01-23 06:26:39 +00:00
|
|
|
subst_col++;
|
1997-12-17 00:14:36 +00:00
|
|
|
#endif
|
1998-01-23 06:26:39 +00:00
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
colors[i] = defs[i].pixel;
|
|
|
|
}
|
|
|
|
while (++idx < nopen);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-02-19 06:21:27 +00:00
|
|
|
GDK_NOTE (COLOR_CONTEXT,
|
1998-08-18 03:59:41 +00:00
|
|
|
g_message ("gdk_color_context_get_pixels_incremental: "
|
|
|
|
"got %i colors, %i exact, %i close, %i substituted, %i to black "
|
|
|
|
"(%i colors allocated so far)\n",
|
|
|
|
ncolors, exact_col, close_col, subst_col, black_col, cc->num_allocated));
|
1997-12-17 22:08:48 +00:00
|
|
|
}
|
|
|
|
|
1997-12-17 00:14:36 +00:00
|
|
|
gint
|
1998-01-23 06:26:39 +00:00
|
|
|
gdk_color_context_query_color (GdkColorContext *cc,
|
|
|
|
GdkColor *color)
|
1997-12-17 00:14:36 +00:00
|
|
|
{
|
1998-01-23 06:26:39 +00:00
|
|
|
return gdk_color_context_query_colors (cc, color, 1);
|
1997-12-17 00:14:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gint
|
1998-01-23 06:26:39 +00:00
|
|
|
gdk_color_context_query_colors (GdkColorContext *cc,
|
|
|
|
GdkColor *colors,
|
|
|
|
gint num_colors)
|
1997-12-17 00:14:36 +00:00
|
|
|
{
|
1998-01-23 06:26:39 +00:00
|
|
|
gint i;
|
|
|
|
GdkColor *tc;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
g_assert (cc != NULL);
|
|
|
|
g_assert (colors != NULL);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
switch (cc->mode)
|
|
|
|
{
|
|
|
|
case GDK_CC_MODE_BW:
|
|
|
|
for (i = 0, tc = colors; i < num_colors; i++, tc++)
|
|
|
|
{
|
|
|
|
if (tc->pixel == cc->white_pixel)
|
|
|
|
tc->red = tc->green = tc->blue = 65535;
|
|
|
|
else
|
|
|
|
tc->red = tc->green = tc->blue = 0;
|
|
|
|
}
|
|
|
|
break;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
case GDK_CC_MODE_TRUE:
|
|
|
|
if (cc->clut == NULL)
|
|
|
|
for (i = 0, tc = colors; i < num_colors; i++, tc++)
|
|
|
|
{
|
1998-02-21 23:25:34 +00:00
|
|
|
tc->red = ((tc->pixel & cc->masks.red) >> cc->shifts.red) << (16 - cc->bits.red);
|
|
|
|
tc->green = ((tc->pixel & cc->masks.green) >> cc->shifts.green) << (16 - cc->bits.green);
|
|
|
|
tc->blue = ((tc->pixel & cc->masks.blue) >> cc->shifts.blue) << (16 - cc->bits.blue);
|
1998-01-23 06:26:39 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
my_x_query_colors (cc->colormap, colors, num_colors);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
break;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
case GDK_CC_MODE_STD_CMAP:
|
|
|
|
default:
|
|
|
|
if (cc->cmap == NULL)
|
|
|
|
{
|
|
|
|
my_x_query_colors (cc->colormap, colors, num_colors);
|
|
|
|
return 1;
|
1997-12-17 00:14:36 +00:00
|
|
|
}
|
1998-01-23 06:26:39 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
gint first, last, half;
|
|
|
|
gulong half_pixel;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
for (i = 0, tc = colors; i < num_colors; i++)
|
|
|
|
{
|
|
|
|
first = 0;
|
|
|
|
last = cc->num_colors - 1;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
while (first <= last)
|
|
|
|
{
|
|
|
|
half = (first + last) / 2;
|
|
|
|
half_pixel = cc->cmap[half].pixel;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
if (tc->pixel == half_pixel)
|
|
|
|
{
|
|
|
|
tc->red = cc->cmap[half].red;
|
|
|
|
tc->green = cc->cmap[half].green;
|
|
|
|
tc->blue = cc->cmap[half].blue;
|
|
|
|
first = last + 1; /* false break */
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (tc->pixel > half_pixel)
|
|
|
|
first = half + 1;
|
|
|
|
else
|
|
|
|
last = half - 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return 1;
|
1997-12-17 00:14:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gint
|
1998-01-23 06:26:39 +00:00
|
|
|
gdk_color_context_add_palette (GdkColorContext *cc,
|
|
|
|
GdkColor *palette,
|
|
|
|
gint num_palette)
|
1997-12-17 00:14:36 +00:00
|
|
|
{
|
1998-01-23 06:26:39 +00:00
|
|
|
gint i, j, erg;
|
|
|
|
gushort r, g, b;
|
|
|
|
gulong pixel[1];
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
g_assert (cc != NULL);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* initialize this palette (will also erase previous palette as well) */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
init_palette (cc);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* restore previous mode if we aren't adding a new palette */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
if (num_palette == 0)
|
[ Merges from gtk-1-2 ]
Wed Sep 8 07:13:29 1999 Tim Janik <timj@gtk.org>
* configure.in: fixed "GNU Make" check to pass with new make version
3.77.95.
Fri Sep 3 16:04:41 1999 Tim Janik <timj@gtk.org>
* gtk-config.in (--version): don't echo @GTK_VERSION@, but
@GTK_MAJOR_VERSION@.@GTK_MINOR_VERSION@.@GTK_MICRO_VERSION@, so the
AM_PATH_GTK() macros don't get confused by the -pre1.
Thu Sep 2 19:02:37 1999 Owen Taylor <otaylor@redhat.com>
* configure.in (REBUILD): Change check for perl5
to check explicitely for v >= 5.002. (5.001
does not work with our scripts.)
Wed Aug 25 15:45:46 1999 Tim Janik <timj@gtk.org>
* configure.in: evaluate $PERL for the perl version check. added
--disable-rebuilds to give the user an option to completely disable
any source autogeneration rules.
Mon Aug 23 23:16:14 1999 Tim Janik <timj@gtk.org>
* configure.in: evaluate $ac_make when checking for GNU Make.
Mon Aug 23 19:11:17 1999 Tim Janik <timj@gtk.org>
* docs/Makefile.am: added generation.txt.
* Makefile.am: require automake 1.4, build README from README.in and
INSTALL from INSTALL.in in dist-hook.
* README.in:
* INSTALL.in: new files to autogenerate README and INSTALL from.
* configure.in: figure whether we have GNU Make
* docs/generation.txt: minor additions/corrections.
Wed Aug 11 13:38:26 BST 1999 Tony Gale <gale@gtk.org>
* docs/gtkfaq.sgml: FAQ Update
July 30, 1999 Elliot Lee <sopwith@redhat.com>
* configure.in: Fix autoconf warnings about cross compilation by
trying to provide sane defaults for AC_TRY_RUN.
Fri Jul 16 22:20:21 PDT 1999 Manish Singh <yosh@gimp.org>
* ltconfig
* ltmain.sh: upgrade to libtool 1.3.3
Thu Jul 8 11:30:18 1999 Owen Taylor <otaylor@redhat.com>
* INSTALL: Indicate that the --with-glib= configure
time flag is unsupported.
Mon Jul 5 20:36:03 1999 Owen Taylor <otaylor@redhat.com>
* docs/generation.txt: Added a file that gives
documenation about the autogeneration process for
various autogenerated files.
Tue Jun 29 15:59:25 1999 Owen Taylor <otaylor@redhat.com>
* configure.in (LIBS): Look for libgmodule in the
right location.
Thu Jun 17 13:57:31 1999 Owen Taylor <otaylor@redhat.com>
* docs/gtk_tut.sgml: Removed references to
code examples in my directory on gtk.org as
they should all be in the tutorial now.
* docs/gtk_tut.sgml: Added sources for dial-test
and scribble-xinput programs that were previously
missing.
Fri Jun 4 00:08:59 1999 Owen Taylor <otaylor@redhat.com>
* TODO: Added entry about menu keyboard navigation, removed
some finished items.
Mon May 31 00:11:24 1999 Owen Taylor <otaylor@redhat.com>
* acinclude.m4: Standardize on func_dgettext
not func_gettext, so that the checks for dgettext
actually are paid attention to.
Wed May 5 10:47:54 1999 Owen Taylor <otaylor@redhat.com>
* configure.in (LIBS): Add $INTLLIBS into $LIBS
directly, rather than repeating the checks for
gettext.
* INSTALL: Added information about gettext and
NLS support.
* acinclude.m4 (LIBM): Check for dgettext, not
just gettext. This should hopefully fix things wrt
systems with old versions of GNU gettext installed.
Tue Jun 29 15:59:25 1999 Owen Taylor <otaylor@redhat.com>
* configure.in (LIBS): Look for libgmodule in the
right location.
Thu Apr 1 16:58:10 PST 1999 Manish Singh <yosh@gimp.org>
* autogen.sh: add --enable-maintainer-mode
* configure.in: set ACLOCAL="$ACLOCAL $ACLOCAL_FLAGS"
Wed Mar 24 23:03:49 CST 1999 Shawn T. Amundson <amundson@gtk.org>
* docs/gtk-config.1.in:
docs/Makefile.am:
configure.in: gtk-config is now generated.
* docs/gtk-config.1: Removed, now generated.
Thu Sep 23 17:59:59 1999 Tim Janik <timj@gtk.org>
* gdk/gdkevents.c (gdk_event_translate): grr, even if Gdk doesn't
handle CreateNotify itself, still put out a debuging message for
--gdk-debug=events. made the ReparentNotify debugging message more
verbose.
wrap xcoords translation for ConfigureEvents into an error trap,
a destroy event may already be pending, and in that case, the
actuall coordinate values are not at all critical.
Sat Sep 18 22:24:15 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkcc.c: Stop leaking the color_hash all over
the place. Simplify and improve the logic.
Fri Sep 17 09:57:15 1999 Tim Janik <timj@gtk.org>
* gdk/gdk.h, gdk/gdkcolor.c: make return types (gint or gboolean)
for prototypes and function implementations consistent (reported
by Tomas Ogren).
Tue Sep 14 18:23:01 1999 Tim Janik <timj@gtk.org>
* gdk/gdkevents.c (gdk_event_translate): tell if expose events have
send_event set in debugging output.
(gdk_compress_exposures): default initialize the event so we don't
operate on bogus values (namely send_event).
Thu Sep 2 16:33:59 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkwindow.c: When we receive an unexpected
destroy notify on one of our windows, don't just
warn about it, also mark our windows as destroyed.
Sun Sep 5 08:10:53 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkfont.c (gdk_font_hash_insert): Add
name => font and name => fontset hashes. The
name => fontset hash is a _big_ win since we
weren't previously caching fontsets at all and loading
fontsets is expensive. The name => font hash
is less of a win, but it does save us from doing
repeated XQueryFont calls on the same font.
* gdk/gdkprivate.h (struct _GdkFontPrivate): Add a names
list so we can remove font/fontset from hash.
Thu Sep 2 19:02:37 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkproperty.c (gdk_atom_intern): Remove useless
and slightly confusing test. [ XInternAtom (,,TRUE)
will never return None ].
Sat Sep 4 08:39:26 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkwindow.c (gdk_window_set_geometry_hints)
gdk/gdkwindow.c (gdk_window_set_hints):
Don't omit setting the properties if flags == 0 -
there may be an existing set of properties there
already. (Very old bug. Would it be better to
delete the property instead?)
* gdk/gdkselection.c (gdk_selection_property_get): Fix
spelling error in comment.
Wed Sep 1 14:05:30 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkimage.c (gdk_image_new): Use gdk_error_trap_push()
to avoid stomping over gdk_error_warnings.
* gdk/gdkimage.c (gdk_image_new): compute image->bpp
as (bits_per_pixel + 7) / 8. This gives the same
result as before for multiples of 8, but actually
a "reasonable" value for 1bit or 4bit displays.
Mon Aug 23 19:11:17 1999 Tim Janik <timj@gtk.org>
* gdk/Makefile.am: minor cleanups, strip spaces on build rules for
GNU Make.
Tue Aug 17 07:43:04 1999 Tim Janik <timj@gtk.org>
* gdk/gdkevents.c (gdk_event_translate): give a debugging note when
discarding configure events.
1999-08-18 Federico Mena Quintero <federico@redhat.com>
* gdk/gdkpixmap.c (gdk_pixmap_unref): g_return_if_fail() the
refcount is greater than zero.
* gdk/gdkwindow.c (gdk_window_unref): Likewise.
* gdk/gdkfont.c (gdk_font_unref): Likewise.
* gdk/gdkgc.c (gdk_gc_unref): Likewise.
* gdk/gdkdnd.c (gdk_drag_context_unref): Likewise.
Wed Aug 11 01:04:57 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkproperty.c (gdk_property_get): Fix assumption
that format 32 => sizeof(item) == 4. It really is
sizeof(long).
Tue Jun 29 23:02:42 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.c (gdk_x_error / gdk_x_io_error): Don't
core dump at all on X IO errors, only core dump
if --enable-debug for X errors.
Thu Jun 24 17:06:23 1999 Tim Janik <timj@gtk.org>
* gdk/gdkevents.c (gdk_event_translate): removed old ""Got event for
unknown window:" message. disabled ConfigureNotify discarding code,
because it led to events being processed out of order.
Thu Jun 24 12:22:02 1999 Tim Janik <timj@gtk.org>
* gdk/gdkglobals.c: preinitialize gdk_error_code to 0.
* gdk/gdkevents.c (gdk_event_send_client_message_to_all_recurse): since
we export this function, supress error warnings and don't reset the
error code in the first half of this function.
* gdk/gdk.c (gdk_x_error): set gdk_error_code to the actuall X error
code (instead of just -1) so gdk_error_trap_pop() reveals something
actually informative about the error that happened.
* gdk/*.c:
don't rely on gdk_error_code being -1 if an error occoured, but just
gdk_error_code != 0.
Thu Jun 24 11:50:07 1999 Tim Janik <timj@gtk.org>
* gdk/gdkevents.c (gdk_event_apply_filters): advance the filter list
pointer *before* invoking the filter function, so we at least don't
crash if a filter is removed that is currently executed. window filters
*really* need to be made truely reentrant at some point.
Mon Jun 14 11:10:15 1999 Tim Janik <timj@gtk.org>
* gdk/gdkevents.c (gdk_event_translate): print the atom name in the
PropertyNotify debug messages.
Wed May 5 22:51:06 1999 Owen Taylor <otaylor@redhat.com>
Patch from Sung-Hyun Nam <namsh@lgic.co.kr>
* gdk/gdkim.c: Fix cut-and-paste errors for
x/y and PreeditAttributes/StatusAttributes.
Wed May 5 22:24:21 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkwindow.c (gdk_window_set_geometry_hints): Change
G_MAXINT to 2^16 to alleviate overflow problems in
various window managers.
Wed Apr 21 00:42:08 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkfont.c (gdk_text_measure): Fix the return value
for fontsets.
Wed May 5 12:42:01 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkwindow.c (gdk_window_set_geometry_hints):
Initialize size_hints.x and size_hints.y because kwm
brokenly pays attention to them.
(Bug #1181 - Lars Heete <hel@admin.de>)
Wed May 5 11:38:56 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkrgb.c (gdk_rgb_choose_visual): Free the
return value of gdk_list_visuals().
(Bug #1193 - Morten Welinder <terra@diku.dk>)
Tue May 4 11:12:56 PDT 1999 Manish Singh <yosh@gimp.org>
* gdk/gdkim.c (gdk_im_real_open): cast the return value of
XSetIMValues to (void *) when comparing to NULL, to workaround
the problem of some compilers barfing since older X headers don't
have the prototype for it.
Mon Apr 19 10:11:12 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkcolor.c (gdk_colormap_new): Fix memory leak
for pseudocolor where colormap->colors was double
allocated.
* gdk/gdkcolor.c (gdk_colormap_alloc1): Store the
color value in the hash table with the pixel filled
in so when we do later hash table lookups, the color
value is correct.
Sun May 2 15:29:45 PDT 1999 Manish Singh <yosh@gimp.org>
* gdk/gdkdraw.c (gdk_draw_lines): check private->destroyed before
making the call
Tue Apr 27 11:17:35 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkdnd.c (xdnd_set_{targets,actions}): Fix leak
pointed out by Morten Welinder <terra@diku.dk>.
Wed Apr 21 14:20:22 1999 George Lebl <jirka@5z.com>
* gdk/gdkwindow.c: (gdk_window_remove_filter) correctly remove the
default filter from the list
Wed Apr 21 14:20:22 1999 George Lebl <jirka@5z.com>
* gdk/gdkwindow.c: (gdk_window_remove_filter) correctly remove the
default filter from the list
Fri Apr 16 20:41:43 PDT 1999 Manish Singh <yosh@gimp.org>
* gdk/gdk.c: #include "gdkkeysyms.h" for gdk_XConvertCase #defines
* gtk/gtkfontsel.c (gtk_font_selection_create_xlfd): use
g_strdup_printf instead of calcing the length separately
Tue Apr 13 02:49:33 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkwindow.c: removed some silly #ifdef HAVE_CONFIG
that we don't do in many other places. (Fixing duplicate
#include of config.h)
* gdk/gdkevents.c: include gdkinput.h _after_ config.h.
Otherwise, #ifndef XINPUT_NONE check in the latter
doesn't work. (Bug #546)
Sun Apr 11 14:38:03 1999 Tim Janik <timj@gtk.org>
* gdk/gdkpixmap.c (_gdk_pixmap_create_from_xpm): check for color
"None" case insensitive.
Tue Apr 6 16:38:51 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkselection.c:
Add error traps so if the other end of the connection
dies, we survive.
Tue Apr 6 12:24:21 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkdnd.c (gdk_drag_motion): Separate out the
dest_xid field into two fields - one for the window
to send in messages, one to indicate the last looked
up window for caching purposes. This is needed, so
that Leave messages get the correct window.
Mon Apr 5 13:21:30 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkevents.c (gdk_event_check, gdk_event_prepare):
Fix warning created by people mucking around
with the gsource API.
* gdk/gdkevents.c (gdk_io_invoke, gdk_input_add_full):
Change mapping between GIOCondition and GdkInputCondition
to match the way the Linux kernel does it. This should
fix problems where closed pipes were no longer signalling
GDK_INPUT_READ on systems with a native poll().
Mon Apr 5 17:11:57 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkpixmap.c (_gdk_pixmap_create_from_xpm): Check
explicitly for the string "None" - it is in the XPM
spec and some servers treat unknown colors in odd ways
(like asking the user!)
Thu Apr 1 16:58:10 PST 1999 Manish Singh <yosh@gimp.org>
* gdk/gdkevents.c: made "->" into a "." of previous change so
it compiles
Thu Apr 1 18:41:25 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkevents.c (gdk_compress_exposures): Set the
window field of the event structure before calling
user filters.
1999-03-31 Federico Mena Quintero <federico@nuclecu.unam.mx>
* gdk/gdk.c (gdk_init_check): Use False as the last argument to
XInternAtom() here. This is a particularly Old And Nasty(tm) bug.
Mon Mar 29 17:31:52 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkim.c (gdk_mbstowcs): Free the value of the
intermediate text property - prevents major memory
leak when gdk_use_mb.
gtk-d3august-990311-0: Bj|rn Augustsson <d3august@dtek.chalmers.se>
Mon Mar 29 17:02:58 1999 Owen Taylor <otaylor@redhat.com>
Patches from Akira Higuchi <a-higuti@math.sci.hokudai.ac.jp>
gtk-a-higuti-990322-[0-3]
* gdk/gdkfont.c (gdk_text_extents_wc): Make work when
sizeof(wchar_t) != sizeof (GdkWChar)
* configure.in: Fix confusion between GTK_LOCALE_[C]FLAGS
that was causing -DX_LOCALE not to work.
* gtk/gtkrc.c (gtk_rc_init):
X_LOCALE will never have LC_MESSAGES defined
* gdk/gdk.c (gdk_init_check):
Remove --xim-preedit and --xim-status from argv properly.
* gdk/gdkim.c (gdk_ic_real_new): Add a gdk_flush() so
that the client window is present on the X server
before we pass it to the input method.
Tue Mar 9 10:46:49 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkdnd.c (motif_find_drag_window): Fix bug where
if --display is specified on the command line, than
the drag window will not be created on that display.
Tue Mar 9 10:38:24 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkproperty.c (gdk_atom_intern): Fixed bug where
lookups with only_if_exists == TRUE were inserting
bogus values into the atom cache.
Wed Mar 17 09:00:00 1999 Tim Janik <timj@gtk.org>
* gdk/gdkselection.c (gdk_selection_property_get): first XFree(t),
then reset it to NULL.
* gdk/gdkcolor.c:
(gdk_colors_free):
(gdk_colormap_free_colors): use colormap->colors[in_pixels[i]] as the
key for g_hash_table_remove() in both functions, this prevents us
from accessing possibly uninitialized portions of a GdkColor structure
where we are only interested in its pixel value.
Tue Mar 9 01:01:28 1999 Tim Janik <timj@gtk.org>
* gdk/gdkfont.c (gdk_font_load): first lookup the xfont ID in our
font hash table, if we have a GdkFontPrivate entry for this font
already, simply increment its reference count, provided by Olaf Dietsche
<olaf.dietsche+list.gtk@netcologne.de>.
1999-09-21 Tor Lillqvist <tml@iki.fi>
1999-09-28 20:19:13 +00:00
|
|
|
return 0;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* copy incoming palette */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
cc->palette = g_new0(GdkColor, num_palette);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
j = 0;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
for (i = 0; i < num_palette; i++)
|
|
|
|
{
|
|
|
|
erg = 0;
|
|
|
|
pixel[0] = 0;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* try to allocate this color */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
r = palette[i].red;
|
|
|
|
g = palette[i].green;
|
|
|
|
b = palette[i].blue;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
gdk_color_context_get_pixels (cc, &r, &g, &b, 1, pixel, &erg);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* only store if we succeed */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
if (erg)
|
|
|
|
{
|
|
|
|
/* store in palette */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
cc->palette[j].red = r;
|
|
|
|
cc->palette[j].green = g;
|
|
|
|
cc->palette[j].blue = b;
|
|
|
|
cc->palette[j].pixel = pixel[0];
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* move to next slot */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
j++;
|
1997-12-17 00:14:36 +00:00
|
|
|
}
|
1998-01-23 06:26:39 +00:00
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* resize to fit */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
if (j != num_palette)
|
|
|
|
cc->palette = g_realloc (cc->palette, j * sizeof (GdkColor));
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* clear the hash table, we don't use it when dithering */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
if (cc->color_hash)
|
|
|
|
{
|
[ Merges from gtk-1-2 ]
Wed Sep 8 07:13:29 1999 Tim Janik <timj@gtk.org>
* configure.in: fixed "GNU Make" check to pass with new make version
3.77.95.
Fri Sep 3 16:04:41 1999 Tim Janik <timj@gtk.org>
* gtk-config.in (--version): don't echo @GTK_VERSION@, but
@GTK_MAJOR_VERSION@.@GTK_MINOR_VERSION@.@GTK_MICRO_VERSION@, so the
AM_PATH_GTK() macros don't get confused by the -pre1.
Thu Sep 2 19:02:37 1999 Owen Taylor <otaylor@redhat.com>
* configure.in (REBUILD): Change check for perl5
to check explicitely for v >= 5.002. (5.001
does not work with our scripts.)
Wed Aug 25 15:45:46 1999 Tim Janik <timj@gtk.org>
* configure.in: evaluate $PERL for the perl version check. added
--disable-rebuilds to give the user an option to completely disable
any source autogeneration rules.
Mon Aug 23 23:16:14 1999 Tim Janik <timj@gtk.org>
* configure.in: evaluate $ac_make when checking for GNU Make.
Mon Aug 23 19:11:17 1999 Tim Janik <timj@gtk.org>
* docs/Makefile.am: added generation.txt.
* Makefile.am: require automake 1.4, build README from README.in and
INSTALL from INSTALL.in in dist-hook.
* README.in:
* INSTALL.in: new files to autogenerate README and INSTALL from.
* configure.in: figure whether we have GNU Make
* docs/generation.txt: minor additions/corrections.
Wed Aug 11 13:38:26 BST 1999 Tony Gale <gale@gtk.org>
* docs/gtkfaq.sgml: FAQ Update
July 30, 1999 Elliot Lee <sopwith@redhat.com>
* configure.in: Fix autoconf warnings about cross compilation by
trying to provide sane defaults for AC_TRY_RUN.
Fri Jul 16 22:20:21 PDT 1999 Manish Singh <yosh@gimp.org>
* ltconfig
* ltmain.sh: upgrade to libtool 1.3.3
Thu Jul 8 11:30:18 1999 Owen Taylor <otaylor@redhat.com>
* INSTALL: Indicate that the --with-glib= configure
time flag is unsupported.
Mon Jul 5 20:36:03 1999 Owen Taylor <otaylor@redhat.com>
* docs/generation.txt: Added a file that gives
documenation about the autogeneration process for
various autogenerated files.
Tue Jun 29 15:59:25 1999 Owen Taylor <otaylor@redhat.com>
* configure.in (LIBS): Look for libgmodule in the
right location.
Thu Jun 17 13:57:31 1999 Owen Taylor <otaylor@redhat.com>
* docs/gtk_tut.sgml: Removed references to
code examples in my directory on gtk.org as
they should all be in the tutorial now.
* docs/gtk_tut.sgml: Added sources for dial-test
and scribble-xinput programs that were previously
missing.
Fri Jun 4 00:08:59 1999 Owen Taylor <otaylor@redhat.com>
* TODO: Added entry about menu keyboard navigation, removed
some finished items.
Mon May 31 00:11:24 1999 Owen Taylor <otaylor@redhat.com>
* acinclude.m4: Standardize on func_dgettext
not func_gettext, so that the checks for dgettext
actually are paid attention to.
Wed May 5 10:47:54 1999 Owen Taylor <otaylor@redhat.com>
* configure.in (LIBS): Add $INTLLIBS into $LIBS
directly, rather than repeating the checks for
gettext.
* INSTALL: Added information about gettext and
NLS support.
* acinclude.m4 (LIBM): Check for dgettext, not
just gettext. This should hopefully fix things wrt
systems with old versions of GNU gettext installed.
Tue Jun 29 15:59:25 1999 Owen Taylor <otaylor@redhat.com>
* configure.in (LIBS): Look for libgmodule in the
right location.
Thu Apr 1 16:58:10 PST 1999 Manish Singh <yosh@gimp.org>
* autogen.sh: add --enable-maintainer-mode
* configure.in: set ACLOCAL="$ACLOCAL $ACLOCAL_FLAGS"
Wed Mar 24 23:03:49 CST 1999 Shawn T. Amundson <amundson@gtk.org>
* docs/gtk-config.1.in:
docs/Makefile.am:
configure.in: gtk-config is now generated.
* docs/gtk-config.1: Removed, now generated.
Thu Sep 23 17:59:59 1999 Tim Janik <timj@gtk.org>
* gdk/gdkevents.c (gdk_event_translate): grr, even if Gdk doesn't
handle CreateNotify itself, still put out a debuging message for
--gdk-debug=events. made the ReparentNotify debugging message more
verbose.
wrap xcoords translation for ConfigureEvents into an error trap,
a destroy event may already be pending, and in that case, the
actuall coordinate values are not at all critical.
Sat Sep 18 22:24:15 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkcc.c: Stop leaking the color_hash all over
the place. Simplify and improve the logic.
Fri Sep 17 09:57:15 1999 Tim Janik <timj@gtk.org>
* gdk/gdk.h, gdk/gdkcolor.c: make return types (gint or gboolean)
for prototypes and function implementations consistent (reported
by Tomas Ogren).
Tue Sep 14 18:23:01 1999 Tim Janik <timj@gtk.org>
* gdk/gdkevents.c (gdk_event_translate): tell if expose events have
send_event set in debugging output.
(gdk_compress_exposures): default initialize the event so we don't
operate on bogus values (namely send_event).
Thu Sep 2 16:33:59 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkwindow.c: When we receive an unexpected
destroy notify on one of our windows, don't just
warn about it, also mark our windows as destroyed.
Sun Sep 5 08:10:53 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkfont.c (gdk_font_hash_insert): Add
name => font and name => fontset hashes. The
name => fontset hash is a _big_ win since we
weren't previously caching fontsets at all and loading
fontsets is expensive. The name => font hash
is less of a win, but it does save us from doing
repeated XQueryFont calls on the same font.
* gdk/gdkprivate.h (struct _GdkFontPrivate): Add a names
list so we can remove font/fontset from hash.
Thu Sep 2 19:02:37 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkproperty.c (gdk_atom_intern): Remove useless
and slightly confusing test. [ XInternAtom (,,TRUE)
will never return None ].
Sat Sep 4 08:39:26 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkwindow.c (gdk_window_set_geometry_hints)
gdk/gdkwindow.c (gdk_window_set_hints):
Don't omit setting the properties if flags == 0 -
there may be an existing set of properties there
already. (Very old bug. Would it be better to
delete the property instead?)
* gdk/gdkselection.c (gdk_selection_property_get): Fix
spelling error in comment.
Wed Sep 1 14:05:30 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkimage.c (gdk_image_new): Use gdk_error_trap_push()
to avoid stomping over gdk_error_warnings.
* gdk/gdkimage.c (gdk_image_new): compute image->bpp
as (bits_per_pixel + 7) / 8. This gives the same
result as before for multiples of 8, but actually
a "reasonable" value for 1bit or 4bit displays.
Mon Aug 23 19:11:17 1999 Tim Janik <timj@gtk.org>
* gdk/Makefile.am: minor cleanups, strip spaces on build rules for
GNU Make.
Tue Aug 17 07:43:04 1999 Tim Janik <timj@gtk.org>
* gdk/gdkevents.c (gdk_event_translate): give a debugging note when
discarding configure events.
1999-08-18 Federico Mena Quintero <federico@redhat.com>
* gdk/gdkpixmap.c (gdk_pixmap_unref): g_return_if_fail() the
refcount is greater than zero.
* gdk/gdkwindow.c (gdk_window_unref): Likewise.
* gdk/gdkfont.c (gdk_font_unref): Likewise.
* gdk/gdkgc.c (gdk_gc_unref): Likewise.
* gdk/gdkdnd.c (gdk_drag_context_unref): Likewise.
Wed Aug 11 01:04:57 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkproperty.c (gdk_property_get): Fix assumption
that format 32 => sizeof(item) == 4. It really is
sizeof(long).
Tue Jun 29 23:02:42 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.c (gdk_x_error / gdk_x_io_error): Don't
core dump at all on X IO errors, only core dump
if --enable-debug for X errors.
Thu Jun 24 17:06:23 1999 Tim Janik <timj@gtk.org>
* gdk/gdkevents.c (gdk_event_translate): removed old ""Got event for
unknown window:" message. disabled ConfigureNotify discarding code,
because it led to events being processed out of order.
Thu Jun 24 12:22:02 1999 Tim Janik <timj@gtk.org>
* gdk/gdkglobals.c: preinitialize gdk_error_code to 0.
* gdk/gdkevents.c (gdk_event_send_client_message_to_all_recurse): since
we export this function, supress error warnings and don't reset the
error code in the first half of this function.
* gdk/gdk.c (gdk_x_error): set gdk_error_code to the actuall X error
code (instead of just -1) so gdk_error_trap_pop() reveals something
actually informative about the error that happened.
* gdk/*.c:
don't rely on gdk_error_code being -1 if an error occoured, but just
gdk_error_code != 0.
Thu Jun 24 11:50:07 1999 Tim Janik <timj@gtk.org>
* gdk/gdkevents.c (gdk_event_apply_filters): advance the filter list
pointer *before* invoking the filter function, so we at least don't
crash if a filter is removed that is currently executed. window filters
*really* need to be made truely reentrant at some point.
Mon Jun 14 11:10:15 1999 Tim Janik <timj@gtk.org>
* gdk/gdkevents.c (gdk_event_translate): print the atom name in the
PropertyNotify debug messages.
Wed May 5 22:51:06 1999 Owen Taylor <otaylor@redhat.com>
Patch from Sung-Hyun Nam <namsh@lgic.co.kr>
* gdk/gdkim.c: Fix cut-and-paste errors for
x/y and PreeditAttributes/StatusAttributes.
Wed May 5 22:24:21 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkwindow.c (gdk_window_set_geometry_hints): Change
G_MAXINT to 2^16 to alleviate overflow problems in
various window managers.
Wed Apr 21 00:42:08 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkfont.c (gdk_text_measure): Fix the return value
for fontsets.
Wed May 5 12:42:01 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkwindow.c (gdk_window_set_geometry_hints):
Initialize size_hints.x and size_hints.y because kwm
brokenly pays attention to them.
(Bug #1181 - Lars Heete <hel@admin.de>)
Wed May 5 11:38:56 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkrgb.c (gdk_rgb_choose_visual): Free the
return value of gdk_list_visuals().
(Bug #1193 - Morten Welinder <terra@diku.dk>)
Tue May 4 11:12:56 PDT 1999 Manish Singh <yosh@gimp.org>
* gdk/gdkim.c (gdk_im_real_open): cast the return value of
XSetIMValues to (void *) when comparing to NULL, to workaround
the problem of some compilers barfing since older X headers don't
have the prototype for it.
Mon Apr 19 10:11:12 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkcolor.c (gdk_colormap_new): Fix memory leak
for pseudocolor where colormap->colors was double
allocated.
* gdk/gdkcolor.c (gdk_colormap_alloc1): Store the
color value in the hash table with the pixel filled
in so when we do later hash table lookups, the color
value is correct.
Sun May 2 15:29:45 PDT 1999 Manish Singh <yosh@gimp.org>
* gdk/gdkdraw.c (gdk_draw_lines): check private->destroyed before
making the call
Tue Apr 27 11:17:35 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkdnd.c (xdnd_set_{targets,actions}): Fix leak
pointed out by Morten Welinder <terra@diku.dk>.
Wed Apr 21 14:20:22 1999 George Lebl <jirka@5z.com>
* gdk/gdkwindow.c: (gdk_window_remove_filter) correctly remove the
default filter from the list
Wed Apr 21 14:20:22 1999 George Lebl <jirka@5z.com>
* gdk/gdkwindow.c: (gdk_window_remove_filter) correctly remove the
default filter from the list
Fri Apr 16 20:41:43 PDT 1999 Manish Singh <yosh@gimp.org>
* gdk/gdk.c: #include "gdkkeysyms.h" for gdk_XConvertCase #defines
* gtk/gtkfontsel.c (gtk_font_selection_create_xlfd): use
g_strdup_printf instead of calcing the length separately
Tue Apr 13 02:49:33 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkwindow.c: removed some silly #ifdef HAVE_CONFIG
that we don't do in many other places. (Fixing duplicate
#include of config.h)
* gdk/gdkevents.c: include gdkinput.h _after_ config.h.
Otherwise, #ifndef XINPUT_NONE check in the latter
doesn't work. (Bug #546)
Sun Apr 11 14:38:03 1999 Tim Janik <timj@gtk.org>
* gdk/gdkpixmap.c (_gdk_pixmap_create_from_xpm): check for color
"None" case insensitive.
Tue Apr 6 16:38:51 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkselection.c:
Add error traps so if the other end of the connection
dies, we survive.
Tue Apr 6 12:24:21 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkdnd.c (gdk_drag_motion): Separate out the
dest_xid field into two fields - one for the window
to send in messages, one to indicate the last looked
up window for caching purposes. This is needed, so
that Leave messages get the correct window.
Mon Apr 5 13:21:30 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkevents.c (gdk_event_check, gdk_event_prepare):
Fix warning created by people mucking around
with the gsource API.
* gdk/gdkevents.c (gdk_io_invoke, gdk_input_add_full):
Change mapping between GIOCondition and GdkInputCondition
to match the way the Linux kernel does it. This should
fix problems where closed pipes were no longer signalling
GDK_INPUT_READ on systems with a native poll().
Mon Apr 5 17:11:57 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkpixmap.c (_gdk_pixmap_create_from_xpm): Check
explicitly for the string "None" - it is in the XPM
spec and some servers treat unknown colors in odd ways
(like asking the user!)
Thu Apr 1 16:58:10 PST 1999 Manish Singh <yosh@gimp.org>
* gdk/gdkevents.c: made "->" into a "." of previous change so
it compiles
Thu Apr 1 18:41:25 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkevents.c (gdk_compress_exposures): Set the
window field of the event structure before calling
user filters.
1999-03-31 Federico Mena Quintero <federico@nuclecu.unam.mx>
* gdk/gdk.c (gdk_init_check): Use False as the last argument to
XInternAtom() here. This is a particularly Old And Nasty(tm) bug.
Mon Mar 29 17:31:52 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkim.c (gdk_mbstowcs): Free the value of the
intermediate text property - prevents major memory
leak when gdk_use_mb.
gtk-d3august-990311-0: Bj|rn Augustsson <d3august@dtek.chalmers.se>
Mon Mar 29 17:02:58 1999 Owen Taylor <otaylor@redhat.com>
Patches from Akira Higuchi <a-higuti@math.sci.hokudai.ac.jp>
gtk-a-higuti-990322-[0-3]
* gdk/gdkfont.c (gdk_text_extents_wc): Make work when
sizeof(wchar_t) != sizeof (GdkWChar)
* configure.in: Fix confusion between GTK_LOCALE_[C]FLAGS
that was causing -DX_LOCALE not to work.
* gtk/gtkrc.c (gtk_rc_init):
X_LOCALE will never have LC_MESSAGES defined
* gdk/gdk.c (gdk_init_check):
Remove --xim-preedit and --xim-status from argv properly.
* gdk/gdkim.c (gdk_ic_real_new): Add a gdk_flush() so
that the client window is present on the X server
before we pass it to the input method.
Tue Mar 9 10:46:49 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkdnd.c (motif_find_drag_window): Fix bug where
if --display is specified on the command line, than
the drag window will not be created on that display.
Tue Mar 9 10:38:24 1999 Owen Taylor <otaylor@redhat.com>
* gdk/gdkproperty.c (gdk_atom_intern): Fixed bug where
lookups with only_if_exists == TRUE were inserting
bogus values into the atom cache.
Wed Mar 17 09:00:00 1999 Tim Janik <timj@gtk.org>
* gdk/gdkselection.c (gdk_selection_property_get): first XFree(t),
then reset it to NULL.
* gdk/gdkcolor.c:
(gdk_colors_free):
(gdk_colormap_free_colors): use colormap->colors[in_pixels[i]] as the
key for g_hash_table_remove() in both functions, this prevents us
from accessing possibly uninitialized portions of a GdkColor structure
where we are only interested in its pixel value.
Tue Mar 9 01:01:28 1999 Tim Janik <timj@gtk.org>
* gdk/gdkfont.c (gdk_font_load): first lookup the xfont ID in our
font hash table, if we have a GdkFontPrivate entry for this font
already, simply increment its reference count, provided by Olaf Dietsche
<olaf.dietsche+list.gtk@netcologne.de>.
1999-09-21 Tor Lillqvist <tml@iki.fi>
1999-09-28 20:19:13 +00:00
|
|
|
g_hash_table_foreach (cc->color_hash,
|
|
|
|
free_hash_entry,
|
|
|
|
NULL);
|
1998-01-23 06:26:39 +00:00
|
|
|
g_hash_table_destroy (cc->color_hash);
|
|
|
|
cc->color_hash = NULL;
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* store real palette size */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
cc->num_palette = j;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* switch to palette mode */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
cc->mode = GDK_CC_MODE_PALETTE;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* sort palette */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
qsort (cc->palette, cc->num_palette, sizeof (GdkColor), pixel_sort);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
cc->fast_dither = NULL;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
return j;
|
1997-12-17 00:14:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1998-01-23 06:26:39 +00:00
|
|
|
gdk_color_context_init_dither (GdkColorContext *cc)
|
1997-12-17 00:14:36 +00:00
|
|
|
{
|
1998-01-23 06:26:39 +00:00
|
|
|
gint rr, gg, bb, err, erg, erb;
|
|
|
|
gint success = FALSE;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
g_assert (cc != NULL);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* now we can initialize the fast dither matrix */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
if (cc->fast_dither == NULL)
|
|
|
|
cc->fast_dither = g_new (GdkColorContextDither, 1);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* Fill it. We ignore unsuccessful allocations, they are just mapped
|
|
|
|
* to black instead */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
for (rr = 0; rr < 32; rr++)
|
|
|
|
for (gg = 0; gg < 32; gg++)
|
|
|
|
for (bb = 0; bb < 32; bb++)
|
|
|
|
{
|
|
|
|
err = (rr << 3) | (rr >> 2);
|
|
|
|
erg = (gg << 3) | (gg >> 2);
|
|
|
|
erb = (bb << 3) | (bb >> 2);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
cc->fast_dither->fast_rgb[rr][gg][bb] =
|
|
|
|
gdk_color_context_get_index_from_palette (cc, &err, &erg, &erb, &success);
|
|
|
|
cc->fast_dither->fast_err[rr][gg][bb] = err;
|
|
|
|
cc->fast_dither->fast_erg[rr][gg][bb] = erg;
|
|
|
|
cc->fast_dither->fast_erb[rr][gg][bb] = erb;
|
|
|
|
}
|
1997-12-17 00:14:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1998-01-23 06:26:39 +00:00
|
|
|
gdk_color_context_free_dither (GdkColorContext *cc)
|
1997-12-17 00:14:36 +00:00
|
|
|
{
|
1998-01-23 06:26:39 +00:00
|
|
|
g_assert (cc != NULL);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
if (cc->fast_dither)
|
|
|
|
g_free (cc->fast_dither);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
cc->fast_dither = NULL;
|
1997-12-17 00:14:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gulong
|
1998-01-23 06:26:39 +00:00
|
|
|
gdk_color_context_get_pixel_from_palette (GdkColorContext *cc,
|
|
|
|
gushort *red,
|
|
|
|
gushort *green,
|
|
|
|
gushort *blue,
|
|
|
|
gint *failed)
|
1997-12-17 00:14:36 +00:00
|
|
|
{
|
1998-01-23 06:26:39 +00:00
|
|
|
gulong pixel = 0;
|
|
|
|
gint dif, dr, dg, db, j = -1;
|
|
|
|
gint mindif = 0x7fffffff;
|
|
|
|
gint err = 0, erg = 0, erb = 0;
|
|
|
|
gint i;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
g_assert (cc != NULL);
|
|
|
|
g_assert (red != NULL);
|
|
|
|
g_assert (green != NULL);
|
|
|
|
g_assert (blue != NULL);
|
|
|
|
g_assert (failed != NULL);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
*failed = FALSE;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
for (i = 0; i < cc->num_palette; i++)
|
|
|
|
{
|
|
|
|
dr = *red - cc->palette[i].red;
|
|
|
|
dg = *green - cc->palette[i].green;
|
|
|
|
db = *blue - cc->palette[i].blue;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
dif = dr * dr + dg * dg + db * db;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
if (dif < mindif)
|
|
|
|
{
|
|
|
|
mindif = dif;
|
|
|
|
j = i;
|
|
|
|
pixel = cc->palette[i].pixel;
|
|
|
|
err = dr;
|
|
|
|
erg = dg;
|
|
|
|
erb = db;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
if (mindif == 0)
|
|
|
|
break;
|
1997-12-17 00:14:36 +00:00
|
|
|
}
|
1998-01-23 06:26:39 +00:00
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* we failed to map onto a color */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
if (j == -1)
|
|
|
|
*failed = TRUE;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*red = ABS (err);
|
|
|
|
*green = ABS (erg);
|
|
|
|
*blue = ABS (erb);
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
return pixel;
|
1997-12-17 00:14:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
guchar
|
1998-01-23 06:26:39 +00:00
|
|
|
gdk_color_context_get_index_from_palette (GdkColorContext *cc,
|
|
|
|
gint *red,
|
|
|
|
gint *green,
|
|
|
|
gint *blue,
|
|
|
|
gint *failed)
|
1997-12-17 00:14:36 +00:00
|
|
|
{
|
1998-01-23 06:26:39 +00:00
|
|
|
gint dif, dr, dg, db, j = -1;
|
|
|
|
gint mindif = 0x7fffffff;
|
|
|
|
gint err = 0, erg = 0, erb = 0;
|
|
|
|
gint i;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
g_assert (cc != NULL);
|
|
|
|
g_assert (red != NULL);
|
|
|
|
g_assert (green != NULL);
|
|
|
|
g_assert (blue != NULL);
|
|
|
|
g_assert (failed != NULL);
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
*failed = FALSE;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
for (i = 0; i < cc->num_palette; i++)
|
|
|
|
{
|
|
|
|
dr = *red - cc->palette[i].red;
|
|
|
|
dg = *green - cc->palette[i].green;
|
|
|
|
db = *blue - cc->palette[i].blue;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
dif = dr * dr + dg * dg + db * db;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
if (dif < mindif)
|
|
|
|
{
|
|
|
|
mindif = dif;
|
|
|
|
j = i;
|
|
|
|
err = dr;
|
|
|
|
erg = dg;
|
|
|
|
erb = db;
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
if (mindif == 0)
|
|
|
|
break;
|
1997-12-17 00:14:36 +00:00
|
|
|
}
|
1998-01-23 06:26:39 +00:00
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
/* we failed to map onto a color */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
if (j == -1)
|
|
|
|
{
|
|
|
|
*failed = TRUE;
|
|
|
|
j = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* return error fractions */
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
*red = err;
|
|
|
|
*green = erg;
|
|
|
|
*blue = erb;
|
|
|
|
}
|
1998-08-18 03:59:41 +00:00
|
|
|
|
1998-01-23 06:26:39 +00:00
|
|
|
return j;
|
1997-12-17 00:14:36 +00:00
|
|
|
}
|