Synopsis#include <gdk/gdk.h> GdkVisual; enum GdkVisualType; enum GdkByteOrder; void gdk_query_depths (gint **depths, gint *count); void gdk_query_visual_types (GdkVisualType **visual_types, gint *count); GList* gdk_list_visuals (void); gint gdk_visual_get_best_depth (void); GdkVisualType gdk_visual_get_best_type (void); GdkVisual* gdk_visual_get_system (void); GdkVisual* gdk_visual_get_best (void); GdkVisual* gdk_visual_get_best_with_depth (gint depth); GdkVisual* gdk_visual_get_best_with_type (GdkVisualType visual_type); GdkVisual* gdk_visual_get_best_with_both (gint depth, GdkVisualType visual_type); #define gdk_visual_ref (v) #define gdk_visual_unref (v) GdkScreen* gdk_visual_get_screen (GdkVisual *visual); DescriptionA GdkVisual describes a particular video hardware display format. It includes information about the number of bits used for each color, the way the bits are translated into an RGB value for display, and the way the bits are stored in memory. For example, a piece of display hardware might support 24-bit color, 16-bit color, or 8-bit color; meaning 24/16/8-bit pixel sizes. For a given pixel size, pixels can be in different formats; for example the "red" element of an RGB pixel may be in the top 8 bits of the pixel, or may be in the lower 4 bits.
Usually you can avoid thinking about visuals in GTK+. Visuals are useful to
interpret the contents of a GdkImage, but you should avoid GdkImage precisely
because its contents depend on the display hardware; use GdkPixbuf instead, for
all but the most low-level purposes. Also, anytime you provide a GdkColormap,
the visual is implied as part of the colormap (
There are several standard visuals. The visual returned
by
A number of functions are provided for determining
the "best" available visual. For the purposes of
making this determination, higher bit depths are
considered better, and for visuals of the same
bit depth, DetailsGdkVisualtypedef struct { GObject parent_instance; GdkVisualType type; gint depth; GdkByteOrder byte_order; gint colormap_size; gint bits_per_rgb; guint32 red_mask; gint red_shift; gint red_prec; guint32 green_mask; gint green_shift; gint green_prec; guint32 blue_mask; gint blue_shift; gint blue_prec; } GdkVisual; The GdkVisual structure contains information about a particular visual. Example 5. Constructing a pixel value from components guint pixel_from_rgb (GdkVisual *visual, guchar r, guchar b, guchar g) { return ((r >> (16 - visual->red_prec)) << visual->red_shift) | ((g >> (16 - visual->green_prec)) << visual->green_shift) | ((r >> (16 - visual->blue_prec)) << visual->blue_shift); }
enum GdkVisualTypetypedef enum { GDK_VISUAL_STATIC_GRAY, GDK_VISUAL_GRAYSCALE, GDK_VISUAL_STATIC_COLOR, GDK_VISUAL_PSEUDO_COLOR, GDK_VISUAL_TRUE_COLOR, GDK_VISUAL_DIRECT_COLOR } GdkVisualType; A set of values that describe the manner in which the pixel values for a visual are converted into RGB values for display.
enum GdkByteOrdertypedef enum { GDK_LSB_FIRST, GDK_MSB_FIRST } GdkByteOrder; A set of values describing the possible byte-orders for storing pixel values in memory.
gdk_query_depths ()void gdk_query_depths (gint **depths, gint *count);
This function returns the available bit depths for the default
screen. It's equivalent to listing the visuals
( The array returned by this function should not be freed.
gdk_query_visual_types ()void gdk_query_visual_types (GdkVisualType **visual_types, gint *count);
This function returns the available visual types for the default
screen. It's equivalent to listing the visuals
( The array returned by this function should not be freed.
gdk_list_visuals ()GList* gdk_list_visuals (void);
Lists the available visuals for the default screen.
(See
Call
gdk_visual_get_best_depth ()gint gdk_visual_get_best_depth (void); Get the best available depth for the default GDK screen. "Best" means "largest," i.e. 32 preferred over 24 preferred over 8 bits per pixel.
gdk_visual_get_best_type ()GdkVisualType gdk_visual_get_best_type (void); Return the best available visual type for the default GDK screen.
gdk_visual_get_system ()GdkVisual* gdk_visual_get_system (void); Get the system'sdefault visual for the default GDK screen. This is the visual for the root window of the display. The return value should not be freed.
gdk_visual_get_best ()GdkVisual* gdk_visual_get_best (void); Get the visual with the most available colors for the default GDK screen. The return value should not be freed.
gdk_visual_get_best_with_depth ()GdkVisual* gdk_visual_get_best_with_depth (gint depth);
Get the best visual with depth
gdk_visual_get_best_with_type ()GdkVisual* gdk_visual_get_best_with_type (GdkVisualType visual_type);
Get the best visual of the given
gdk_visual_get_best_with_both ()GdkVisual* gdk_visual_get_best_with_both (gint depth, GdkVisualType visual_type);
Combines
gdk_visual_ref()#define gdk_visual_ref(v) g_object_ref(v) Warning
Deprecated equivalent of
gdk_visual_unref()#define gdk_visual_unref(v) g_object_unref(v) Warning
Deprecated equivalent of
|