2008-07-01 22:57:50 +00:00
|
|
|
/* GDK - The GIMP Drawing Kit
|
2005-07-12 05:09:13 +00:00
|
|
|
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2012-02-27 13:01:10 +00:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2005-07-12 05:09:13 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Modified by the GTK+ Team and others 1997-2000. See the AUTHORS
|
|
|
|
* file for a list of people on the GTK+ Team. See the ChangeLog
|
|
|
|
* files for a list of changes. These files are distributed with
|
2008-05-28 14:01:57 +00:00
|
|
|
* GTK+ at ftp://ftp.gtk.org/pub/gtk/.
|
2005-07-12 05:09:13 +00:00
|
|
|
*/
|
|
|
|
|
2012-12-28 14:57:34 +00:00
|
|
|
#ifndef __GDK_VISUAL_H__
|
|
|
|
#define __GDK_VISUAL_H__
|
|
|
|
|
2009-10-21 18:30:04 +00:00
|
|
|
#if !defined (__GDK_H_INSIDE__) && !defined (GDK_COMPILATION)
|
2008-05-28 14:01:57 +00:00
|
|
|
#error "Only <gdk/gdk.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
1999-10-01 23:18:30 +00:00
|
|
|
#include <gdk/gdktypes.h>
|
2013-03-15 09:58:39 +00:00
|
|
|
#include <gdk/gdkversionmacros.h>
|
1999-10-01 23:18:30 +00:00
|
|
|
|
2002-04-25 22:29:14 +00:00
|
|
|
G_BEGIN_DECLS
|
1999-10-01 23:18:30 +00:00
|
|
|
|
2001-06-30 02:56:50 +00:00
|
|
|
#define GDK_TYPE_VISUAL (gdk_visual_get_type ())
|
|
|
|
#define GDK_VISUAL(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), GDK_TYPE_VISUAL, GdkVisual))
|
|
|
|
#define GDK_IS_VISUAL(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), GDK_TYPE_VISUAL))
|
2001-04-02 23:33:47 +00:00
|
|
|
|
2010-10-12 13:45:11 +00:00
|
|
|
/**
|
|
|
|
* GdkVisualType:
|
|
|
|
* @GDK_VISUAL_STATIC_GRAY: Each pixel value indexes a grayscale value
|
|
|
|
* directly.
|
|
|
|
* @GDK_VISUAL_GRAYSCALE: Each pixel is an index into a color map that
|
|
|
|
* maps pixel values into grayscale values. The color map can be
|
|
|
|
* changed by an application.
|
|
|
|
* @GDK_VISUAL_STATIC_COLOR: Each pixel value is an index into a predefined,
|
|
|
|
* unmodifiable color map that maps pixel values into RGB values.
|
|
|
|
* @GDK_VISUAL_PSEUDO_COLOR: Each pixel is an index into a color map that
|
|
|
|
* maps pixel values into rgb values. The color map can be changed by
|
|
|
|
* an application.
|
|
|
|
* @GDK_VISUAL_TRUE_COLOR: Each pixel value directly contains red, green,
|
|
|
|
* and blue components. Use gdk_visual_get_red_pixel_details(), etc,
|
|
|
|
* to obtain information about how the components are assembled into
|
|
|
|
* a pixel value.
|
|
|
|
* @GDK_VISUAL_DIRECT_COLOR: Each pixel value contains red, green, and blue
|
|
|
|
* components as for %GDK_VISUAL_TRUE_COLOR, but the components are
|
|
|
|
* mapped via a color table into the final output table instead of
|
|
|
|
* being converted directly.
|
|
|
|
*
|
|
|
|
* A set of values that describe the manner in which the pixel values
|
|
|
|
* for a visual are converted into RGB values for display.
|
1999-10-01 23:18:30 +00:00
|
|
|
*/
|
|
|
|
typedef 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;
|
|
|
|
|
2010-11-15 16:05:05 +00:00
|
|
|
/**
|
|
|
|
* GdkVisual:
|
|
|
|
*
|
|
|
|
* The #GdkVisual structure contains information about
|
|
|
|
* a particular visual.
|
1999-10-01 23:18:30 +00:00
|
|
|
*/
|
|
|
|
|
2013-03-15 09:58:39 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2004-11-28 06:45:52 +00:00
|
|
|
GType gdk_visual_get_type (void) G_GNUC_CONST;
|
2001-04-02 23:33:47 +00:00
|
|
|
|
2002-04-25 22:29:14 +00:00
|
|
|
#ifndef GDK_MULTIHEAD_SAFE
|
2013-03-15 09:58:39 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-12-24 20:54:12 +00:00
|
|
|
gint gdk_visual_get_best_depth (void);
|
2013-03-15 09:58:39 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-12-24 20:54:12 +00:00
|
|
|
GdkVisualType gdk_visual_get_best_type (void);
|
2013-03-15 09:58:39 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-12-24 20:54:12 +00:00
|
|
|
GdkVisual* gdk_visual_get_system (void);
|
2013-03-15 09:58:39 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-12-24 20:54:12 +00:00
|
|
|
GdkVisual* gdk_visual_get_best (void);
|
2013-03-15 09:58:39 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-12-24 20:54:12 +00:00
|
|
|
GdkVisual* gdk_visual_get_best_with_depth (gint depth);
|
2013-03-15 09:58:39 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
1999-10-01 23:18:30 +00:00
|
|
|
GdkVisual* gdk_visual_get_best_with_type (GdkVisualType visual_type);
|
2013-03-15 09:58:39 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-12-24 20:54:12 +00:00
|
|
|
GdkVisual* gdk_visual_get_best_with_both (gint depth,
|
|
|
|
GdkVisualType visual_type);
|
1999-10-01 23:18:30 +00:00
|
|
|
|
2013-03-15 09:58:39 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-12-24 20:54:12 +00:00
|
|
|
void gdk_query_depths (gint **depths,
|
|
|
|
gint *count);
|
2013-03-15 09:58:39 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
1999-10-01 23:18:30 +00:00
|
|
|
void gdk_query_visual_types (GdkVisualType **visual_types,
|
2010-12-24 20:54:12 +00:00
|
|
|
gint *count);
|
1999-10-01 23:18:30 +00:00
|
|
|
|
2013-03-15 09:58:39 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
1999-10-01 23:18:30 +00:00
|
|
|
GList* gdk_list_visuals (void);
|
2002-04-25 22:29:14 +00:00
|
|
|
#endif
|
|
|
|
|
2013-03-15 09:58:39 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-12-10 14:06:52 +00:00
|
|
|
GdkScreen *gdk_visual_get_screen (GdkVisual *visual);
|
Changes multihead reorganizing code for win32 support, mostly from a patch
Wed Jun 5 18:34:47 2002 Owen Taylor <otaylor@redhat.com>
Changes multihead reorganizing code for win32 support,
mostly from a patch by Hans Breuer.
* gdk/gdkcolor.c gdk/x11/gdkcolor-x11.c gdk/gdkcursor.c
gdk/x11/gdkcursor-x11.c gdk/gdkevents.c gdk/x11/gdkevents-x11.c
gdk/gdkfont.c gdk/x11/gdkfont-x11.c gdk/gdkkeys.c
gdk/x11/gdkkeys-x11.c gdk/gdkimage.c gdk/x11/gdkimage-x11.c
gdk/gdkscreen.c gdk/x11/gdkmain-x11.c
gdk/gdkdisplay.c gdk/gdkevents-x11.c gdk/gdkpango.c
gdk/x11/gdkpango-x11.c gdk/gdkselection.c
gdk/x11/gdkselection-x11.c gdk/gdkwindow.c
gdk/x11/gdkwindow-x11.c gdk/gdkvisual.c gdk/x11/gdkvisual-x11.c:
Move port-independent singlehead wrapper functions into
port-independent part of GDK. (#80009)
* gdk/win32/gdkcolor-win32.c gdk/win32/gdkcursor-win32.c
gdk/win32/gdkevents-win32.c gdk/win32/gdkfont-win32.c
gdk/win32/gdkimage-win32.c gdk/win32/gdkkeys-win32.c
gdk/win32/gdkmain-win32.c gdk/win32/gdkproperty-win32.c
gdk/win32/gdkselection-win32.c gdk/win32/gkwindow-win32.c:
Turn singlehead functions into "multihead" functions that ignore
their GdkDisplay or GdkScreen arguments.
* gdk/win32/gdkdrawable-win32.c gdk/win32/gdkevents-win32.c
gdk/win32/gdkinput-win32.c gdk/win32/gdkprivate-win32.h:
Misc multihead-compatibility changes.
* gtk/gtk.def gdk/gdk.def: Update for multihead functions.
* gdk/gdkcolormap.h gdk/gdkvisual.h gdk/x11/gdkcolormap-x11.c
gdk/x11/gdkvisual-x11.c: Remove the screen fields
from the public parts of the colormap/visual structures, add accessors
instead.
* gdk/gdkpixbuf-render.c gdk/gdkpixmap.c gdk/gdkrgb.c
gdk/x11/gdkcolormap-x11.c gdk/x11/gdkimage-x11.c
gdk/x11/gdkimage-x11.c gdk/x11/gdkprivate-x11.h gtk/gtkgc.c
gtk/gtkstyle.c gtk/gtkwidget.c: Use accessors to get the screen
for colormaps, visuals; move the fields into the private
structures for the x11 backend.
* gdk/gdkdisplay.[ch] gdk/x11/gdkdisplay-x11.[ch]
gdk/gdkscreen.[ch] gdk/x11/gdkscreen-x11.c:
Remove virtualization of screen and display functions.
(#79990, patch from Erwann Chenede)
* gdk/win32/gdkdisplay-x11.c gdk/win32/gdkscreen-win32.c
gdk/win32/{Makefile.am, makefile.msc, makefile.mingw}:
New files containing stub implementations of Display,
Screen functions.
* gdk/x11/gdkscreen-x11.[ch] gdk/x11/gdkdisplay-x11.[ch]
gdk/x11/gdkx.h: Clean up function exports and what
headers they are in. (#79954)
* gdk/x11/gdkx.h: Fix macro that was referring to a non-existant
screen->screen_num. (In the patch for #79972, Erwann Chenede)
* gdk/gdkscreen.c gdk/gdkwindow.c gdk/x11/gdkinternals.h
gdk/x11/gdkscreen-x11.c: Fix gdk_screen_get_window_at_pointer()
to use window hooks. (#79972, patch partly from Erwann Chenede)
* gdk/x11/gdkdisplay-x11.c gdk/x11/gdkevents-x11.c: Fix
some warnings.
2002-06-06 00:26:42 +00:00
|
|
|
|
2013-03-15 09:58:39 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-05-25 15:54:16 +00:00
|
|
|
GdkVisualType gdk_visual_get_visual_type (GdkVisual *visual);
|
2013-03-15 09:58:39 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-05-25 15:54:16 +00:00
|
|
|
gint gdk_visual_get_depth (GdkVisual *visual);
|
2013-03-15 09:58:39 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-05-25 15:54:16 +00:00
|
|
|
GdkByteOrder gdk_visual_get_byte_order (GdkVisual *visual);
|
2013-03-15 09:58:39 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-05-25 15:54:16 +00:00
|
|
|
gint gdk_visual_get_colormap_size (GdkVisual *visual);
|
2013-03-15 09:58:39 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-05-25 15:54:16 +00:00
|
|
|
gint gdk_visual_get_bits_per_rgb (GdkVisual *visual);
|
2013-03-15 09:58:39 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-05-25 15:54:16 +00:00
|
|
|
void gdk_visual_get_red_pixel_details (GdkVisual *visual,
|
|
|
|
guint32 *mask,
|
|
|
|
gint *shift,
|
|
|
|
gint *precision);
|
2013-03-15 09:58:39 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-05-25 15:54:16 +00:00
|
|
|
void gdk_visual_get_green_pixel_details (GdkVisual *visual,
|
|
|
|
guint32 *mask,
|
|
|
|
gint *shift,
|
|
|
|
gint *precision);
|
2013-03-15 09:58:39 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-05-25 15:54:16 +00:00
|
|
|
void gdk_visual_get_blue_pixel_details (GdkVisual *visual,
|
|
|
|
guint32 *mask,
|
|
|
|
gint *shift,
|
|
|
|
gint *precision);
|
1999-10-01 23:18:30 +00:00
|
|
|
|
2002-04-25 22:29:14 +00:00
|
|
|
G_END_DECLS
|
1999-10-01 23:18:30 +00:00
|
|
|
|
|
|
|
#endif /* __GDK_VISUAL_H__ */
|