]> Pileus Git - ~andy/gtk/blob - docs/reference/gdk/tmpl/rgb.sgml
new section from Lee Mallabone.
[~andy/gtk] / docs / reference / gdk / tmpl / rgb.sgml
1 <!-- ##### SECTION Title ##### -->
2 GdkRGB
3
4 <!-- ##### SECTION Short_Description ##### -->
5 displays RGB images (as well as grayscale and colormapped) to
6 the native window.
7
8 <!-- ##### SECTION Long_Description ##### -->
9 <para>
10
11 GdkRgb converts RGB, grayscale, and colormapped images into the native
12 window pixel format and displays them. It takes care of colormaps,
13 visuals, dithering, and management of the temporary buffers.
14
15 </para>
16
17 <para>
18 You must call gdk_rgb_init() before using any GdkRgb functionality. If
19 you fail to do so, expect coredumps. All Gtk+ widgets that use GdkRgb
20 (including #GtkPreview) call gdk_rgb_init() in their class_init method.
21 Thus, if you use GdkRgb only indirectly, you don't need to worry
22 about it.
23 </para>
24
25 <para>
26 GdkRgb tries to use the system default visual and colormap, but
27 doesn't always succeed. Thus, you have to be prepared to install the
28 visual and colormap generated by GdkRgb. The following code sequence
29 (before any widgets are created) should work in most applications:
30 </para>
31
32 <informalexample>
33 <programlisting>
34   gdk_rgb_init ();
35
36   gtk_widget_set_default_colormap (gdk_rgb_get_cmap ());
37   gtk_widget_set_default_visual (gdk_rgb_get_visual ());
38 </programlisting>
39 </informalexample>
40
41 <para>
42 You can also push the colormap and visual, but in general it doesn't
43 work unless the push wraps the window creation call. If you wrap the
44 push around a widget which is embedded in a window without the GdkRgb
45 colormap and visual, it probably won't work, and is likely to cause
46 colormap flashing, as well.
47 </para>
48
49 <para>
50 On 8-bit systems, the colormaps used by Imlib and GdkRgb may
51 conflict. There is no good general solution to this other than phasing
52 out the dependence on Imlib.
53 </para>
54
55 <para>
56 You can set the threshold for installing colormaps with
57 gdk_rgb_set_min_colors (). The default is 5x5x5 (125). If a colorcube
58 of this size or larger can be allocated in the default colormap, then
59 that's done. Otherwise, GdkRgb creates its own private colormap.
60 Setting it to 0 means that it always tries to use the default
61 colormap, and setting it to 256 means that it always creates a private
62 one. Note, however, that setting it to 0 doesn't let you get away with
63 ignoring the colormap and visual - a colormap is always created in
64 grayscale and direct color modes, and the visual is changed in cases
65 where a "better" visual than the default is available.
66 </para>
67
68 <example>
69 <title>A simple example program using GdkRGB.</title>
70 <programlisting>
71 #include &lt;gtk/gtk.h&gt;
72
73 #define IMAGE_WIDTH     256
74 #define IMAGE_HEIGHT    256
75
76 guchar rgbbuf[IMAGE_WIDTH * IMAGE_HEIGHT * 3];
77
78 gboolean on_darea_expose (GtkWidget *widget,
79                           GdkEventExpose *event,
80                           gpointer user_data);
81
82 int
83 main (int argc, char *argv[])
84 {
85   GtkWidget *window, *darea;
86   gint x, y;
87   guchar *pos;
88
89   gtk_init (&amp;argc, &amp;argv);
90   gdk_rgb_init ();
91   window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
92   darea = gtk_drawing_area_new ();
93   gtk_drawing_area_size (GTK_DRAWING_AREA (darea), IMAGE_WIDTH, IMAGE_HEIGHT);
94   gtk_container_add (GTK_CONTAINER (window), darea);
95   gtk_signal_connect (GTK_OBJECT (darea), "expose-event",
96                       GTK_SIGNAL_FUNC (on_darea_expose), NULL);
97   gtk_widget_show_all (window);
98
99   /* Set up the RGB buffer. */
100   pos = rgbbuf;
101   for (y = 0; y < IMAGE_HEIGHT; y++)
102     {
103       for (x = 0; x < IMAGE_WIDTH; x++)
104         {
105           *pos++ = x - x % 32;                  /* Red. */
106           *pos++ = (x / 32) * 4 + y - y % 32;   /* Green. */
107           *pos++ = y - y % 32;                  /* Blue. */
108         }
109     }
110
111   gtk_main ();
112   return 0;
113 }
114
115
116 gboolean
117 on_darea_expose (GtkWidget *widget,
118                  GdkEventExpose *event,
119                  gpointer user_data)
120 {
121   gdk_draw_rgb_image (widget->window, widget->style->fg_gc[GTK_STATE_NORMAL],
122                       0, 0, IMAGE_WIDTH, IMAGE_HEIGHT,
123                       GDK_RGB_DITHER_MAX, rgbbuf, IMAGE_WIDTH * 3);
124 }
125 </programlisting>
126 </example>
127
128
129 <!-- ##### SECTION See_Also ##### -->
130 <para>
131 <variablelist>
132
133 <varlistentry>
134 <term>#GdkColor</term>
135 <listitem><para>The underlying Gdk mechanism for allocating
136 colors.</para></listitem>
137 </varlistentry>
138
139 </variablelist>
140
141 </para>
142
143 <!-- ##### STRUCT GdkRgbCmap ##### -->
144 <para>
145 A private data structure which maps color indices to actual RGB
146 colors. This is used only for gdk_draw_indexed_image().
147 </para>
148
149
150 <!-- ##### ENUM GdkRgbDither ##### -->
151 <para>
152
153 Selects whether or not GdkRgb applies dithering
154 to the image on display. There are three values:
155 </para>
156
157 <itemizedlist>
158
159 <listitem>
160 <para>
161 %GDK_RGB_DITHER_NONE: Never use dithering.
162 </para>
163 </listitem>
164
165 <listitem>
166 <para>
167 %GDK_RGB_DITHER_NORMAL: Use dithering in 8 bits per pixel (and below)
168 only.
169 </para>
170 </listitem>
171
172 <listitem>
173 <para>
174 %GDK_RGB_DITHER_MAX: Use dithering in 16 bits per pixel and below.
175 </para>
176 </listitem>
177
178 </itemizedlist>
179
180 <para>
181 Since GdkRgb currently only handles images with 8 bits per component,
182 dithering on 24 bit per pixel displays is a moot point.
183 </para>
184
185
186 <!-- ##### FUNCTION gdk_rgb_init ##### -->
187 <para>
188 Initializes GdkRgb statically. It may be called more than once with no
189 ill effects. It must, however, be called before any other GdkRgb
190 operations are performed.
191 </para>
192
193 <para>
194 The GdkRgb "context" is allocated statically. Thus, GdkRgb may be used
195 to drive only one visual in any given application. GdkRgb
196 automatically selects a best visual and sets its own colormap, if
197 necessary. gdk_rgb_get_visual() and gdk_rgb_get_cmap () retrieve
198 the chosen visual and colormap, respectively.
199 </para>
200
201
202 <!-- ##### FUNCTION gdk_rgb_cmap_new ##### -->
203 <para>
204 Creates a new #GdkRgbCmap structure. The cmap maps color indexes to
205 RGB colors. If @n_colors is less than 256, then images containing
206 color values greater than or equal to @n_colors will produce undefined
207 results, including possibly segfaults.
208 </para>
209
210 @colors: The colors, represented as 0xRRGGBB integer values.
211 @n_colors: The number of colors in the cmap.
212 @Returns: The newly created #GdkRgbCmap
213
214
215 <!-- ##### FUNCTION gdk_rgb_cmap_free ##### -->
216 <para>
217 Frees the memory associated with a #GdkRgbCmap created by gdk_rgb_cmap_new().
218 </para>
219
220 @cmap: The #GdkRgbCmap to free.
221
222
223 <!-- ##### FUNCTION gdk_rgb_gc_set_foreground ##### -->
224 <para>
225 Sets the foreground color in @gc to the specified color (or the
226 closest approximation, in the case of limited visuals).
227 </para>
228
229 @gc: The @GdkGC to modify.
230 @rgb: The color, represented as a 0xRRGGBB integer value.
231
232
233 <!-- ##### FUNCTION gdk_rgb_gc_set_background ##### -->
234 <para>
235 Sets the background color in @gc to the specified color (or the
236 closest approximation, in the case of limited visuals).
237 </para>
238
239 @gc: The @GdkGC to modify.
240 @rgb: The color, represented as a 0xRRGGBB integer value.
241
242
243 <!-- ##### FUNCTION gdk_draw_rgb_image ##### -->
244 <para>
245 Draws an RGB image in the drawable. This is the core GdkRgb
246 function, and likely the only one you will need to use other than the
247 initialization stuff.
248 </para>
249
250 <para>
251 The @rowstride parameter allows for lines to be aligned more flexibly.
252 For example, lines may be allocated to begin on 32-bit boundaries,
253 even if the width of the rectangle is odd. Rowstride is also useful
254 when drawing a subrectangle of a larger image in memory. Finally, to
255 replicate the same line a number of times, the trick of setting
256 @rowstride to 0 is allowed.
257 </para>
258
259 <para>
260 In general, for 0 &lt;= i &lt; @width and 0 &lt;= j &lt; height,
261 the pixel (x + i, y + j) is colored with red value @rgb_buf[@j *
262 @rowstride + @i * 3], green value @rgb_buf[@j * @rowstride + @i * 3 +
263 1], and blue value @rgb_buf[@j * @rowstride + @i * 3 + 2].
264 </para>
265
266 @drawable: The #GdkDrawable to draw in (usually a #GdkWindow).
267 @gc: The graphics context (all Gdk drawing operations require one; its
268 contents are ignored).
269 @x: The x coordinate of the top-left corner in the drawable.
270 @y: The y coordinate of the top-left corner in the drawable.
271 @width: The width of the rectangle to be drawn.
272 @height: The height of the rectangle to be drawn.
273 @dith: A #GdkRgbDither value, selecting the desired dither mode. 
274 @rgb_buf: The pixel data, represented as packed 24-bit data.
275 @rowstride: The number of bytes from the start of one row in @rgb_buf to the
276 start of the next.
277
278
279 <!-- ##### FUNCTION gdk_draw_indexed_image ##### -->
280 <para>
281 Draws an indexed image in the drawable, using a #GdkRgbCmap to assign
282 actual colors to the color indices.
283 </para>
284
285 @drawable: The #GdkDrawable to draw in (usually a #GdkWindow).
286 @gc: The graphics context.
287 @x: The x coordinate of the top-left corner in the drawable.
288 @y: The y coordinate of the top-left corner in the drawable.
289 @width: The width of the rectangle to be drawn.
290 @height: The height of the rectangle to be drawn.
291 @dith: A #GdkRgbDither value, selecting the desired dither mode. 
292 @buf: The pixel data, represented as 8-bit color indices.
293 @rowstride: The number of bytes from the start of one row in @buf to the
294 start of the next.
295 @cmap: The #GdkRgbCmap used to assign colors to the color indices.
296
297
298 <!-- ##### FUNCTION gdk_draw_gray_image ##### -->
299 <para>
300 Draws a grayscale image in the drawable.
301
302 </para>
303
304
305 @drawable: The #GdkDrawable to draw in (usually a #GdkWindow).
306 @gc: The graphics context.
307 @x: The x coordinate of the top-left corner in the drawable.
308 @y: The y coordinate of the top-left corner in the drawable.
309 @width: The width of the rectangle to be drawn.
310 @height: The height of the rectangle to be drawn.
311 @dith: A #GdkRgbDither value, selecting the desired dither mode. 
312 @buf: The pixel data, represented as 8-bit gray values.
313 @rowstride: The number of bytes from the start of one row in @buf to the
314 start of the next.
315
316
317 <!-- ##### FUNCTION gdk_draw_rgb_32_image ##### -->
318 <para>
319 Draws a padded RGB image in the drawable. The image is stored as one
320 pixel per 32-bit word. It is laid out as a red byte, a green byte, a
321 blue byte, and a padding byte.
322 </para>
323
324 <para>
325 It's unlikely that this function will give significant performance
326 gains in practice. In my experience, the performance gain from having
327 pixels aligned to 32-bit boundaries is cancelled out by the increased
328 memory bandwidth.
329 </para>
330
331 @drawable: The #GdkDrawable to draw in (usually a #GdkWindow).
332 @gc: The graphics context.
333 @x: The x coordinate of the top-left corner in the drawable.
334 @y: The y coordinate of the top-left corner in the drawable.
335 @width: The width of the rectangle to be drawn.
336 @height: The height of the rectangle to be drawn.
337 @dith: A #GdkRgbDither value, selecting the desired dither mode. 
338 @buf: The pixel data, represented as padded 32-bit data.
339 @rowstride: The number of bytes from the start of one row in @buf to the
340 start of the next.
341
342
343 <!-- ##### FUNCTION gdk_draw_rgb_image_dithalign ##### -->
344 <para>
345 Draws an RGB image in the drawable, with an adjustment for dither alignment.
346 </para>
347
348 <para>
349 This function is useful when drawing dithered images into a window
350 that may be scrolled. Pixel (x, y) will be drawn dithered as if its
351 actual location is (x + @xdith, y + @ydith). Thus, if you draw an
352 image into a window using zero dither alignment, then scroll up one
353 pixel, subsequent draws to the window should have @ydith = 1.
354 </para>
355
356 <para>
357 Setting the dither alignment correctly allows updating of small parts
358 of the screen while avoiding visible "seams" between the different
359 dither textures.
360 </para>
361
362 @drawable: The #GdkDrawable to draw in (usually a #GdkWindow).
363 @gc: The graphics context.
364 @x: The x coordinate of the top-left corner in the drawable.
365 @y: The y coordinate of the top-left corner in the drawable.
366 @width: The width of the rectangle to be drawn.
367 @height: The height of the rectangle to be drawn.
368 @dith: A #GdkRgbDither value, selecting the desired dither mode. 
369 @rgb_buf: The pixel data, represented as packed 24-bit data.
370 @rowstride: The number of bytes from the start of one row in @rgb_buf to the
371 start of the next.
372 @xdith: An x offset for dither alignment.
373 @ydith: A y offset for dither alignment.
374
375
376 <!-- ##### FUNCTION gdk_rgb_xpixel_from_rgb ##### -->
377 <para>
378 Finds the X pixel closest in color to the @rgb color specified. This
379 value may be used to set the <structfield>pixel</structfield> field of
380 a #GdkColor struct.
381 </para>
382
383 @rgb: The color, represented as a 0xRRGGBB integer value.
384 @Returns: The X pixel value.
385
386
387 <!-- ##### FUNCTION gdk_rgb_set_verbose ##### -->
388 <para>
389 Sets the "verbose" flag. This is generally only useful for debugging.
390 </para>
391
392 @verbose: TRUE if verbose messages are desired.
393
394
395 <!-- ##### FUNCTION gdk_rgb_ditherable ##### -->
396 <para>
397 Determine whether the visual is ditherable. This function may be
398 useful for presenting a user interface choice to the user about which
399 dither mode is desired; if the display is not ditherable, it may make
400 sense to gray out or hide the corresponding UI widget.
401 </para>
402
403 @Returns: TRUE if the visual is ditherable.
404
405
406 <!-- ##### FUNCTION gdk_rgb_set_install ##### -->
407 <para>
408 If @install is TRUE, directs GdkRgb to always install a new "private"
409 colormap rather than trying to find a best fit with the colors already
410 allocated. Ordinarily, GdkRgb will install a colormap only if a
411 sufficient cube cannot be allocated.
412 </para>
413
414 <para>
415 A private colormap has more colors, leading to better quality display,
416 but also leads to the dreaded "colormap flashing" effect.
417 </para>
418
419 @install: TRUE to set install mode.
420
421
422 <!-- ##### FUNCTION gdk_rgb_set_min_colors ##### -->
423 <para>
424 Sets the minimum number of colors for the color cube. Generally,
425 GdkRgb tries to allocate the largest color cube it can. If it can't
426 allocate a color cube at least as large as @min_colors, it installs a
427 private colormap.
428 </para>
429
430 @min_colors: The minimum number of colors accepted.
431
432
433 <!-- ##### FUNCTION gdk_rgb_get_visual ##### -->
434 <para>
435 Gets the visual chosen by GdkRgb. This visual and the corresponding
436 colormap should be used when creating windows that will be drawn in by GdkRgb.
437 </para>
438
439 @Returns: The @GdkVisual chosen by GdkRgb.
440
441
442 <!-- ##### FUNCTION gdk_rgb_get_cmap ##### -->
443 <para>
444 Gets the colormap set by GdkRgb. This colormap and the corresponding
445 visual should be used when creating windows that will be drawn in by GdkRgb.
446 </para>
447
448 @Returns: The @GdkColormap set by GdkRgb.
449
450