]> Pileus Git - ~andy/gtk/blob - gdk/gdkrgb.h
[ Patch from Sebastian Wilhelmi, 52790 ]
[~andy/gtk] / gdk / gdkrgb.h
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 /*
21  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
22  * file for a list of people on the GTK+ Team.  See the ChangeLog
23  * files for a list of changes.  These files are distributed with
24  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
25  */
26
27 #ifndef __GDK_RGB_H__
28 #define __GDK_RGB_H__
29
30 #include <gdk/gdktypes.h>
31
32 #ifdef __cplusplus
33 extern "C" {
34 #endif /* __cplusplus */
35
36 typedef struct _GdkRgbCmap GdkRgbCmap;
37
38 struct _GdkRgbCmap {
39   guint32 colors[256];
40   gint n_colors;
41
42   /*< private >*/
43   GSList *info_list;
44 };
45
46 #ifndef GDK_DISABLE_DEPRECATED
47 void gdk_rgb_init (void);
48
49 gulong gdk_rgb_xpixel_from_rgb   (guint32      rgb) G_GNUC_CONST;
50 void   gdk_rgb_gc_set_foreground (GdkGC       *gc,
51                                   guint32      rgb);
52 void   gdk_rgb_gc_set_background (GdkGC       *gc,
53                                   guint32      rgb);
54 #define gdk_rgb_get_cmap               gdk_rgb_get_colormap
55 #endif /* GDK_DISABLE_DEPRECATED */
56
57 void   gdk_rgb_find_color        (GdkColormap *colormap,
58                                   GdkColor    *color);
59
60 typedef enum
61 {
62   GDK_RGB_DITHER_NONE,
63   GDK_RGB_DITHER_NORMAL,
64   GDK_RGB_DITHER_MAX
65 } GdkRgbDither;
66
67 void        gdk_draw_rgb_image              (GdkDrawable  *drawable,
68                                              GdkGC        *gc,
69                                              gint          x,
70                                              gint          y,
71                                              gint          width,
72                                              gint          height,
73                                              GdkRgbDither  dith,
74                                              guchar       *rgb_buf,
75                                              gint          rowstride);
76 void        gdk_draw_rgb_image_dithalign    (GdkDrawable  *drawable,
77                                              GdkGC        *gc,
78                                              gint          x,
79                                              gint          y,
80                                              gint          width,
81                                              gint          height,
82                                              GdkRgbDither  dith,
83                                              guchar       *rgb_buf,
84                                              gint          rowstride,
85                                              gint          xdith,
86                                              gint          ydith);
87 void        gdk_draw_rgb_32_image           (GdkDrawable  *drawable,
88                                              GdkGC        *gc,
89                                              gint          x,
90                                              gint          y,
91                                              gint          width,
92                                              gint          height,
93                                              GdkRgbDither  dith,
94                                              guchar       *buf,
95                                              gint          rowstride);
96 void        gdk_draw_rgb_32_image_dithalign (GdkDrawable  *drawable,
97                                              GdkGC        *gc,
98                                              gint          x,
99                                              gint          y,
100                                              gint          width,
101                                              gint          height,
102                                              GdkRgbDither  dith,
103                                              guchar       *buf,
104                                              gint          rowstride,
105                                              gint          xdith,
106                                              gint          ydith);
107 void        gdk_draw_gray_image             (GdkDrawable  *drawable,
108                                              GdkGC        *gc,
109                                              gint          x,
110                                              gint          y,
111                                              gint          width,
112                                              gint          height,
113                                              GdkRgbDither  dith,
114                                              guchar       *buf,
115                                              gint          rowstride);
116 void        gdk_draw_indexed_image          (GdkDrawable  *drawable,
117                                              GdkGC        *gc,
118                                              gint          x,
119                                              gint          y,
120                                              gint          width,
121                                              gint          height,
122                                              GdkRgbDither  dith,
123                                              guchar       *buf,
124                                              gint          rowstride,
125                                              GdkRgbCmap   *cmap);
126 GdkRgbCmap *gdk_rgb_cmap_new                (guint32      *colors,
127                                              gint          n_colors);
128 void        gdk_rgb_cmap_free               (GdkRgbCmap   *cmap);
129
130 /* Below are some functions which are primarily useful for debugging
131    and experimentation. */
132 gboolean gdk_rgb_ditherable  (void);
133 void     gdk_rgb_set_verbose (gboolean verbose);
134
135 /* experimental colormap stuff */
136 void gdk_rgb_set_install    (gboolean install);
137 void gdk_rgb_set_min_colors (gint     min_colors);
138
139 GdkColormap *gdk_rgb_get_colormap (void);
140 GdkVisual *  gdk_rgb_get_visual   (void);
141
142 #ifdef __cplusplus
143 }
144 #endif /* __cplusplus */
145
146
147 #endif /* __GDK_RGB_H__ */