1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
/*
* This file is part of the XForms library package.
*
* XForms is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1, or
* (at your option) any later version.
*
* XForms 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with XForms. If not, see <http://www.gnu.org/licenses/>.
*/
/*
* This file is part of the XForms library package.
* Copyright (c) 1997-2002 T.C. Zhao
* All rights reserved.
*
* search the rgb.txt database for a specific color
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "include/forms.h"
#include "flimage.h"
/***************************************
* This function is retained for compatibility reasons only.
* It returns 1 always.
***************************************/
int
fl_init_RGBdatabase( const char * f FL_UNUSED_ARG )
{
return 1;
}
/***************************************
* A new implementation from Rouben Rostamian
* Changed to make it work with machines that a color depth of 32 bit
* but only 24 planes. It's a bit slow because each time the two colors
* are queried but I did have any better idea at the moment how to figure
* out how many bits the red, green and blue members of the XColor
* structure have in every possible case and this looked like the
* safest method... JTT
***************************************/
int fl_lookup_RGBcolor( const char * colname,
int * r,
int * g,
int * b )
{
XColor xc;
XColor w;
if ( XParseColor( fl_display, fl_state[ fl_vmode ].colormap,
"rgb:ffff/ffff/ffff", &w ) == 0
|| XParseColor( fl_display, fl_state[ fl_vmode ].colormap,
colname, &xc ) == 0 )
return -1;
*r = ( ( xc.red << 8 ) - 1 ) / w.red;
*g = ( ( xc.green << 8 ) - 1 ) / w.green;
*b = ( ( xc.blue << 8 ) - 1 ) / w.blue;
return 0;
}
/*
* Local variables:
* tab-width: 4
* indent-tabs-mode: nil
* End:
*/
|