Codebase list gtkwave / upstream/1.3.34 src / color.c
upstream/1.3.34

Tree @upstream/1.3.34 (Download .tar.gz)

color.c @upstream/1.3.34raw · history · blame

/* 
 * Copyright (c) Tony Bybell 1999.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 */

#include "color.h"
#include "debug.h"

int color_back=-1;
int color_grid=-1;
int color_high=-1;
int color_low=-1;
int color_mark=-1;
int color_mid=-1;
int color_time=-1;
int color_timeb=-1;
int color_trans=-1;
int color_umark=-1;
int color_value=-1;
int color_vbox=-1;
int color_vtrans=-1;
int color_x=-1;
int color_xfill=-1;


/* 
 * return graphics context with tuple's color or
 * a fallback context.  Note that if tuple<0,
 * the fallback will be used!
 */
GdkGC *alloc_color(GtkWidget *widget, int tuple, GdkGC *fallback)
{
GdkColor *color;
GdkGC    *gc;
int red, green, blue;

red=  (tuple>>16)&0x000000ff;
green=(tuple>>8) &0x000000ff;
blue= (tuple)    &0x000000ff;

if(tuple>=0)
if((gc=gdk_gc_new(widget->window)))
	{
	if((color=(GdkColor *)malloc_2(sizeof(GdkColor))))
		{
		color->red=red*(65535/255);
		color->blue=blue*(65535/255);  
		color->green=green*(65535/255);
		color->pixel=(gulong)(tuple&0x00ffffff);
		gdk_color_alloc(gtk_widget_get_colormap(widget),color);
		gdk_gc_set_foreground(gc,color);
		return(gc);
		}
	}

return(fallback);
}