]> Pileus Git - ~andy/gtk/blob - gdk/win32/gdkwindow-win32.h
bf0f15b247c88230d55ec6bf7a534de14c2b9a76
[~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   GdkRectangle clip_rect;       /* visible rectangle of window */
52 };
53
54
55 /* Window implementation for Win32
56  */
57
58 typedef struct _GdkWindowImplWin32 GdkWindowImplWin32;
59 typedef struct _GdkWindowImplWin32Class GdkWindowImplWin32Class;
60
61 #define GDK_TYPE_WINDOW_IMPL_WIN32              (gdk_window_impl_win32_get_type ())
62 #define GDK_WINDOW_IMPL_WIN32(object)           (G_TYPE_CHECK_INSTANCE_CAST ((object), GDK_TYPE_WINDOW_IMPL_WIN32, GdkWindowImplWin32))
63 #define GDK_WINDOW_IMPL_WIN32_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), GDK_TYPE_WINDOW_IMPL_WIN32, GdkWindowImplWin32Class))
64 #define GDK_IS_WINDOW_IMPL_WIN32(object)        (G_TYPE_CHECK_INSTANCE_TYPE ((object), GDK_TYPE_WINDOW_IMPL_WIN32))
65 #define GDK_IS_WINDOW_IMPL_WIN32_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), GDK_TYPE_WINDOW_IMPL_WIN32))
66 #define GDK_WINDOW_IMPL_WIN32_GET_CLASS(obj)    (G_TYPE_INSTANCE_GET_CLASS ((obj), GDK_TYPE_WINDOW_IMPL_WIN32, GdkWindowImplWin32Class))
67
68 struct _GdkWindowImplWin32
69 {
70   GdkDrawableImplWin32 parent_instance;
71
72   gint width;
73   gint height;
74   
75   GdkWin32PositionInfo position_info;
76
77   /* We must keep the event mask here to filter them ourselves */
78   gint event_mask;
79
80   /* Values for bg_type */
81 #define GDK_WIN32_BG_NORMAL 0
82 #define GDK_WIN32_BG_PIXEL 1
83 #define GDK_WIN32_BG_PIXMAP 2
84 #define GDK_WIN32_BG_PARENT_RELATIVE 3
85 #define GDK_WIN32_BG_TRANSPARENT 4
86
87   /* We draw the background ourselves at WM_ERASEBKGND  */
88   guchar bg_type;
89   gulong bg_pixel;
90   GdkPixmap *bg_pixmap;
91
92   HCURSOR hcursor;
93
94   /* Window size hints */
95   gint hint_flags;
96   gint hint_x, hint_y;
97   gint hint_min_width, hint_min_height;
98   gint hint_max_width, hint_max_height;
99
100   gboolean extension_events_selected;
101
102   HKL input_locale;
103   CHARSETINFO charset_info;
104 };
105  
106 struct _GdkWindowImplWin32Class 
107 {
108   GdkDrawableImplWin32Class parent_class;
109
110 };
111
112 GType gdk_window_impl_win32_get_type (void);
113
114 #ifdef __cplusplus
115 }
116 #endif /* __cplusplus */
117
118 #endif /* __GDK_WINDOW_WIN32_H__ */