1 /* GDK - The GIMP Drawing Kit
2  * Copyright (C) 2010 Red Hat, Inc
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, see <http://www.gnu.org/licenses/>.
16  */
17 
18 #ifndef __GDK_VISUAL_PRIVATE_H__
19 #define __GDK_VISUAL_PRIVATE_H__
20 
21 #include "gdkvisual.h"
22 
23 G_BEGIN_DECLS
24 
25 #define GDK_VISUAL_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), GDK_TYPE_VISUAL, GdkVisualClass))
26 #define GDK_IS_VISUAL_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), GDK_TYPE_VISUAL))
27 #define GDK_VISUAL_GET_CLASS(obj)    (G_TYPE_INSTANCE_GET_CLASS ((obj), GDK_TYPE_VISUAL, GdkVisualClass))
28 
29 typedef struct _GdkVisualClass    GdkVisualClass;
30 
31 struct _GdkVisual
32 {
33   GObject parent_instance;
34 
35   /*< private >*/
36   GdkVisualType type;
37   gint depth;
38   GdkByteOrder byte_order;
39   gint colormap_size;
40   gint bits_per_rgb;
41 
42   guint32 red_mask;
43   guint32 green_mask;
44   guint32 blue_mask;
45 
46   GdkScreen *screen;
47 };
48 
49 struct _GdkVisualClass
50 {
51   GObjectClass parent_class;
52 };
53 
54 G_END_DECLS
55 
56 #endif
57