]> Pileus Git - ~andy/gtk/blob - gdk/win32/gdkwin32.h
define __GDK_H_INSIDE__ around including all other headers.
[~andy/gtk] / gdk / win32 / gdkwin32.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_WIN32_H__
28 #define __GDK_WIN32_H__
29
30 #include <gdk/gdkprivate.h>
31
32 #ifndef STRICT
33 #define STRICT                  /* We want strict type checks */
34 #endif
35 #include <windows.h>
36 #include <commctrl.h>
37
38 G_BEGIN_DECLS
39
40 #ifdef INSIDE_GDK_WIN32
41
42 #include "gdkprivate-win32.h"
43
44 #undef GDK_ROOT_PARENT /* internal access is direct */
45 #define GDK_ROOT_PARENT()             ((GdkWindow *) _gdk_parent_root)
46 #define GDK_WINDOW_HWND(win)          (GDK_DRAWABLE_IMPL_WIN32(((GdkWindowObject *)win)->impl)->handle)
47 #define GDK_PIXMAP_HBITMAP(pixmap)    (GDK_DRAWABLE_IMPL_WIN32(((GdkPixmapObject *)pixmap)->impl)->handle)
48 #define GDK_DRAWABLE_IMPL_WIN32_HANDLE(d) (((GdkDrawableImplWin32 *) d)->handle)
49 #define GDK_DRAWABLE_HANDLE(win)      (GDK_IS_WINDOW (win) ? GDK_WINDOW_HWND (win) : (GDK_IS_PIXMAP (win) ? GDK_PIXMAP_HBITMAP (win) : (GDK_IS_DRAWABLE_IMPL_WIN32 (win) ? GDK_DRAWABLE_IMPL_WIN32_HANDLE (win) : 0)))
50 #else
51 /* definition for exported 'internals' go here */
52 #define GDK_WINDOW_HWND(d) (gdk_win32_drawable_get_handle (d))
53
54 #endif
55
56 #define GDK_ROOT_WINDOW()             ((guint32) HWND_DESKTOP)
57 #define GDK_DISPLAY()                 NULL
58
59 /* Return the Gdk* for a particular HANDLE */
60 gpointer      gdk_win32_handle_table_lookup (GdkNativeWindow handle);
61
62 /* Translate from drawable to Windows handle */
63 HGDIOBJ       gdk_win32_drawable_get_handle (GdkDrawable *drawable);
64
65 /* Return a device context to draw in a drawable, given a GDK GC,
66  * and a mask indicating which GC values might be used (for efficiency,
67  * no need to muck around with text-related stuff if we aren't going
68  * to output text, for instance).
69  */
70 HDC           gdk_win32_hdc_get      (GdkDrawable    *drawable,
71                                       GdkGC          *gc,
72                                       GdkGCValuesMask usage);
73
74 /* Each HDC returned from gdk_win32_hdc_get must be released with
75  * this function
76  */
77 void          gdk_win32_hdc_release  (GdkDrawable    *drawable,
78                                       GdkGC          *gc,
79                                       GdkGCValuesMask usage);
80
81 void          gdk_win32_selection_add_targets (GdkWindow  *owner,
82                                                GdkAtom     selection,
83                                                gint        n_targets,
84                                                GdkAtom    *targets);
85
86 /* For internal GTK use only */
87 GdkPixbuf    *gdk_win32_icon_to_pixbuf_libgtk_only (HICON hicon);
88 HICON         gdk_win32_pixbuf_to_hicon_libgtk_only (GdkPixbuf *pixbuf);
89 void          gdk_win32_set_modal_dialog_libgtk_only (HWND window);
90
91 G_END_DECLS
92
93 #endif /* __GDK_WIN32_H__ */