]> Pileus Git - ~andy/gtk/blob - gdk/win32/gdkwindow-win32.h
Massive changes. Too many to list here, but I'll try a summary:
[~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, 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-1999.  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_WINDOW_WIN32_H__
28 #define __GDK_WINDOW_WIN32_H__
29
30 #include <gdk/win32/gdkdrawable-win32.h>
31
32 #ifdef __cplusplus
33 extern "C" {
34 #endif /* __cplusplus */
35
36 typedef struct _GdkWin32PositionInfo    GdkWin32PositionInfo;
37
38 struct _GdkWin32PositionInfo
39 {
40   gint x;
41   gint y;
42   gint width;
43   gint height;
44   gint x_offset;                /* Offsets to add to Win32 coordinates */
45   gint y_offset;                /* within window to get GDK coodinates */
46   gboolean big : 1;
47   gboolean mapped : 1;
48   gboolean no_bg : 1;           /* Set when the window background
49                                  * is temporarily unset during resizing
50                                  * and scaling
51                                  */
52   GdkRectangle clip_rect;       /* visible rectangle of window */
53 };
54
55
56 /* Window implementation for Win32
57  */
58
59 typedef struct _GdkWindowImplWin32 GdkWindowImplWin32;
60 typedef struct _GdkWindowImplWin32Class GdkWindowImplWin32Class;
61
62 #define GDK_TYPE_WINDOW_IMPL_WIN32              (_gdk_window_impl_win32_get_type ())
63 #define GDK_WINDOW_IMPL_WIN32(object)           (G_TYPE_CHECK_INSTANCE_CAST ((object), GDK_TYPE_WINDOW_IMPL_WIN32, GdkWindowImplWin32))
64 #define GDK_WINDOW_IMPL_WIN32_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), GDK_TYPE_WINDOW_IMPL_WIN32, GdkWindowImplWin32Class))
65 #define GDK_IS_WINDOW_IMPL_WIN32(object)        (G_TYPE_CHECK_INSTANCE_TYPE ((object), GDK_TYPE_WINDOW_IMPL_WIN32))
66 #define GDK_IS_WINDOW_IMPL_WIN32_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), GDK_TYPE_WINDOW_IMPL_WIN32))
67 #define GDK_WINDOW_IMPL_WIN32_GET_CLASS(obj)    (G_TYPE_INSTANCE_GET_CLASS ((obj), GDK_TYPE_WINDOW_IMPL_WIN32, GdkWindowImplWin32Class))
68
69 struct _GdkWindowImplWin32
70 {
71   GdkDrawableImplWin32 parent_instance;
72
73   gint width;
74   gint height;
75   
76   GdkWin32PositionInfo position_info;
77
78   /* We must keep the event mask here to filter them ourselves */
79   gint event_mask;
80
81   HCURSOR hcursor;
82
83   /* Window size hints */
84   gint hint_flags;
85   gint hint_x, hint_y;
86   gint hint_min_width, hint_min_height;
87   gint hint_max_width, hint_max_height;
88
89   gboolean extension_events_selected;
90
91   HKL input_locale;
92   CHARSETINFO charset_info;
93 };
94  
95 struct _GdkWindowImplWin32Class 
96 {
97   GdkDrawableImplWin32Class parent_class;
98
99 };
100
101 GType _gdk_window_impl_win32_get_type (void);
102
103 #ifdef __cplusplus
104 }
105 #endif /* __cplusplus */
106
107 #endif /* __GDK_WINDOW_WIN32_H__ */