]> Pileus Git - ~andy/gtk/blob - gdk/gdkvisual.c
Renames:
[~andy/gtk] / gdk / gdkvisual.c
1 /* GDK - The GIMP Drawing Kit
2  * gdkvisual.c
3  * 
4  * Copyright 2001 Sun Microsystems Inc. 
5  *
6  * Erwann Chenede <erwann.chenede@sun.com>
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Library General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Library General Public License for more details.
17  *
18  * You should have received a copy of the GNU Library General Public
19  * License along with this library; if not, write to the
20  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21  * Boston, MA 02111-1307, USA.
22  */
23
24 #include "gdkvisual.h"
25 #include "gdkscreen.h"
26
27 /**
28  * gdk_list_visuals:
29  * 
30  * Lists the available visuals for the default screen.
31  * (See gdk_screen_list_visuals())
32  * A visual describes a hardware image data format.
33  * For example, a visual might support 24-bit color, or 8-bit color,
34  * and might expect pixels to be in a certain format.
35  *
36  * Call g_list_free() on the return value when you're finished with it.
37  * 
38  * Return value: a list of visuals; the list must be freed, but not its contents
39  **/
40 GList*
41 gdk_list_visuals (void)
42 {
43   return gdk_screen_list_visuals (gdk_screen_get_default ());
44 }
45
46 /**
47  * gdk_visual_get_system:
48  * 
49  * Get the system'sdefault visual for the default GDK screen.
50  * This is the visual for the root window of the display.
51  * The return value should not be freed.
52  * 
53  * Return value: system visual
54  **/
55 GdkVisual*
56 gdk_visual_get_system (void)
57 {
58   return gdk_screen_get_system_visual (gdk_screen_get_default());
59 }