]> Pileus Git - ~andy/gtk/blob - gdk/win32/gdkwindow-win32.h
Change FSF Address
[~andy/gtk] / gdk / win32 / gdkwindow-win32.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 Library 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  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library. If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 /*
19  * Modified by the GTK+ Team and others 1997-1999.  See the AUTHORS
20  * file for a list of people on the GTK+ Team.  See the ChangeLog
21  * files for a list of changes.  These files are distributed with
22  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
23  */
24
25 #ifndef __GDK_WINDOW_WIN32_H__
26 #define __GDK_WINDOW_WIN32_H__
27
28 #include "gdk/win32/gdkprivate-win32.h"
29 #include "gdk/gdkwindowimpl.h"
30 #include "gdk/gdkcursor.h"
31
32 #include <windows.h>
33
34 G_BEGIN_DECLS
35
36 /* Window implementation for Win32
37  */
38
39 typedef struct _GdkWindowImplWin32 GdkWindowImplWin32;
40 typedef struct _GdkWindowImplWin32Class GdkWindowImplWin32Class;
41
42 #define GDK_TYPE_WINDOW_IMPL_WIN32              (_gdk_window_impl_win32_get_type ())
43 #define GDK_WINDOW_IMPL_WIN32(object)           (G_TYPE_CHECK_INSTANCE_CAST ((object), GDK_TYPE_WINDOW_IMPL_WIN32, GdkWindowImplWin32))
44 #define GDK_WINDOW_IMPL_WIN32_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), GDK_TYPE_WINDOW_IMPL_WIN32, GdkWindowImplWin32Class))
45 #define GDK_IS_WINDOW_IMPL_WIN32(object)        (G_TYPE_CHECK_INSTANCE_TYPE ((object), GDK_TYPE_WINDOW_IMPL_WIN32))
46 #define GDK_IS_WINDOW_IMPL_WIN32_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), GDK_TYPE_WINDOW_IMPL_WIN32))
47 #define GDK_WINDOW_IMPL_WIN32_GET_CLASS(obj)    (G_TYPE_INSTANCE_GET_CLASS ((obj), GDK_TYPE_WINDOW_IMPL_WIN32, GdkWindowImplWin32Class))
48
49 struct _GdkWindowImplWin32
50 {
51   GdkWindowImpl parent_instance;
52
53   GdkWindow *wrapper;
54   HANDLE handle;
55
56   gint8 toplevel_window_type;
57
58   HCURSOR hcursor;
59   HICON   hicon_big;
60   HICON   hicon_small;
61
62   /* Window size hints */
63   gint hint_flags;
64   GdkGeometry hints;
65
66   GdkEventMask native_event_mask;
67
68   GdkWindowTypeHint type_hint;
69
70   gboolean extension_events_selected;
71
72   GdkWindow *transient_owner;
73   GSList    *transient_children;
74   gint       num_transients;
75   gboolean   changing_state;
76
77   gint initial_x;
78   gint initial_y;
79
80   guint no_bg : 1;
81   guint inhibit_configure : 1;
82   guint override_redirect : 1;
83
84   cairo_surface_t *cairo_surface;
85   HDC              hdc;
86   int              hdc_count;
87   HBITMAP          saved_dc_bitmap; /* Original bitmap for dc */
88 };
89  
90 struct _GdkWindowImplWin32Class 
91 {
92   GdkWindowImplClass parent_class;
93 };
94
95 GType _gdk_window_impl_win32_get_type (void);
96
97 void  _gdk_win32_window_tmp_unset_bg  (GdkWindow *window,
98                                        gboolean   recurse);
99 void  _gdk_win32_window_tmp_reset_bg  (GdkWindow *window,
100                                        gboolean   recurse);
101
102 void  _gdk_win32_window_tmp_unset_parent_bg (GdkWindow *window);
103 void  _gdk_win32_window_tmp_reset_parent_bg (GdkWindow *window);
104
105 G_END_DECLS
106
107 #endif /* __GDK_WINDOW_WIN32_H__ */