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