]> Pileus Git - ~andy/gtk/blob - gdk/gdkprivate.h
applied patch from Andreas Persenius <ndap@swipnet.se> that updates the
[~andy/gtk] / gdk / gdkprivate.h
1 /* GDK - The GIMP Drawing Kit
2  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
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, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 /*
21  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
22  * file for a list of people on the GTK+ Team.  See the ChangeLog
23  * files for a list of changes.  These files are distributed with
24  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
25  */
26
27 #ifndef __GDK_PRIVATE_H__
28 #define __GDK_PRIVATE_H__
29
30 #include <gdk/gdktypes.h>
31 #include <gdk/gdkevents.h>
32 #include <gdk/gdkfont.h>
33 #include <gdk/gdkgc.h>
34 #include <gdk/gdkim.h>
35 #include <gdk/gdkimage.h>
36 #include <gdk/gdkregion.h>
37 #include <gdk/gdkvisual.h>
38 #include <gdk/gdkwindow.h>
39
40 #ifdef __cplusplus
41 extern "C" {
42 #endif /* __cplusplus */
43
44 #define GDK_PARENT_RELATIVE_BG ((GdkPixmap *)1L)
45 #define GDK_NO_BG ((GdkPixmap *)2L)
46
47 #define GDK_WINDOW_TYPE(d) (((GdkWindowObject*)(GDK_WINDOW (d)))->window_type)
48 #define GDK_WINDOW_DESTROYED(d) (((GdkWindowObject*)(GDK_WINDOW (d)))->destroyed)
49
50 typedef struct _GdkColorInfo           GdkColorInfo;
51 typedef struct _GdkFontPrivate         GdkFontPrivate;
52 typedef struct _GdkEventFilter         GdkEventFilter;
53 typedef struct _GdkClientFilter        GdkClientFilter;
54
55 struct _GdkFontPrivate
56 {
57   GdkFont font;
58   guint ref_count;
59 };
60
61 typedef enum {
62   GDK_COLOR_WRITEABLE = 1 << 0
63 } GdkColorInfoFlags;
64
65 struct _GdkColorInfo
66 {
67   GdkColorInfoFlags flags;
68   guint ref_count;
69 };
70
71 struct _GdkEventFilter {
72   GdkFilterFunc function;
73   gpointer data;
74 };
75
76 struct _GdkClientFilter {
77   GdkAtom       type;
78   GdkFilterFunc function;
79   gpointer      data;
80 };
81
82 void gdk_window_destroy_notify       (GdkWindow *window);
83
84 GDKVAR GdkWindow        *gdk_parent_root;
85 GDKVAR gint              gdk_error_code;
86 GDKVAR gint              gdk_error_warnings;
87
88 #ifdef __cplusplus
89 }
90 #endif /* __cplusplus */
91
92
93 #endif /* __GDK_PRIVATE_H__ */
94
95
96
97
98