f65184802d
* NEW: Update copyright and license string in all source files. git-svn-id: svn://localhost/gambas/trunk@2241 867c0c6c-44f3-4631-809d-bfa615b0a4ec
51 lines
1.8 KiB
C
51 lines
1.8 KiB
C
/***************************************************************************
|
|
|
|
gcolor.h
|
|
|
|
(c) 2000-2009 Benoît Minisini <gambas@users.sourceforge.net>
|
|
|
|
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, or (at your option)
|
|
any later version.
|
|
|
|
This program 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 General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
***************************************************************************/
|
|
#ifndef __GCOLOR_H
|
|
#define __GCOLOR_H
|
|
|
|
#include "gb.image.h"
|
|
|
|
typedef
|
|
int gColor;
|
|
|
|
/* Functions implemented in gtools.cpp */
|
|
|
|
gColor get_gdk_color(GdkColor *gcol);
|
|
void fill_gdk_color(GdkColor *gcol,gColor color, GdkColormap *cmap = NULL);
|
|
gColor get_gdk_text_color(GtkWidget *wid);
|
|
void set_gdk_text_color(GtkWidget *wid,gColor color);
|
|
gColor get_gdk_base_color(GtkWidget *wid);
|
|
void set_gdk_base_color(GtkWidget *wid,gColor color);
|
|
gColor get_gdk_fg_color(GtkWidget *wid);
|
|
void set_gdk_fg_color(GtkWidget *wid,gColor color);
|
|
gColor get_gdk_bg_color(GtkWidget *wid);
|
|
void set_gdk_bg_color(GtkWidget *wid,gColor color);
|
|
|
|
void gt_color_to_rgb(gColor color, int *r, int *g, int *b);
|
|
gColor gt_rgb_to_color(int r, int g, int b);
|
|
void gt_color_to_rgba(gColor color, int *r, int *g, int *b, int *a);
|
|
gColor gt_rgba_to_color(int r, int g, int b, int a);
|
|
void gt_rgb_to_hsv(int r, int g, int b, int *h, int *s, int *v);
|
|
void gt_hsv_to_rgb(int h, int s, int v, int *r, int *g, int *b);
|
|
|
|
#endif
|