]> Pileus Git - ~andy/gtk/blob - gdk/win32/gdkwin32.h
API: remove begin/end_direct_draw functions
[~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 #define GDK_WINDOW_HWND(win)          (GDK_DRAWABLE_IMPL_WIN32(((GdkWindowObject *)win)->impl)->handle)
45 #define GDK_PIXMAP_HBITMAP(pixmap)    (GDK_DRAWABLE_IMPL_WIN32(((GdkPixmapObject *)pixmap)->impl)->handle)
46 #define GDK_DRAWABLE_IMPL_WIN32_HANDLE(d) (((GdkDrawableImplWin32 *) d)->handle)
47 #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)))
48 #else
49 /* definition for exported 'internals' go here */
50 #define GDK_WINDOW_HWND(d) (gdk_win32_drawable_get_handle (d))
51
52 #endif
53
54 #define GDK_ROOT_WINDOW()             ((guint32) HWND_DESKTOP)
55 #define GDK_DISPLAY()                 NULL
56
57
58 /* These need to be here so gtkstatusicon.c can pick them up if needed. */
59 #ifndef WM_XBUTTONDOWN
60 #define WM_XBUTTONDOWN 0x020B
61 #endif
62 #ifndef WM_XBUTTONUP
63 #define WM_XBUTTONUP 0x020C
64 #endif
65 #ifndef GET_XBUTTON_WPARAM
66 #define GET_XBUTTON_WPARAM(w) (HIWORD(w))
67 #endif
68 #ifndef XBUTTON1
69 #define XBUTTON1 1
70 #endif
71 #ifndef XBUTTON2
72 #define XBUTTON2 2
73 #endif
74
75
76 /* Return true if the GdkWindow is a win32 implemented window */
77 gboolean      gdk_win32_window_is_win32 (GdkWindow *window);
78
79 /* Return the Gdk* for a particular HANDLE */
80 gpointer      gdk_win32_handle_table_lookup (GdkNativeWindow handle);
81
82 /* Translate from drawable to Windows handle */
83 HGDIOBJ       gdk_win32_drawable_get_handle (GdkDrawable *drawable);
84
85 /* Return a device context to draw in a drawable, given a GDK GC,
86  * and a mask indicating which GC values might be used (for efficiency,
87  * no need to muck around with text-related stuff if we aren't going
88  * to output text, for instance).
89  */
90 HDC           gdk_win32_hdc_get      (GdkDrawable    *drawable,
91                                       GdkGC          *gc,
92                                       GdkGCValuesMask usage);
93
94 /* Each HDC returned from gdk_win32_hdc_get must be released with
95  * this function
96  */
97 void          gdk_win32_hdc_release  (GdkDrawable    *drawable,
98                                       GdkGC          *gc,
99                                       GdkGCValuesMask usage);
100
101 void          gdk_win32_selection_add_targets (GdkWindow  *owner,
102                                                GdkAtom     selection,
103                                                gint        n_targets,
104                                                GdkAtom    *targets);
105
106 /* For internal GTK use only */
107 GdkPixbuf    *gdk_win32_icon_to_pixbuf_libgtk_only (HICON hicon);
108 HICON         gdk_win32_pixbuf_to_hicon_libgtk_only (GdkPixbuf *pixbuf);
109 void          gdk_win32_set_modal_dialog_libgtk_only (HWND window);
110
111
112 G_END_DECLS
113
114 #endif /* __GDK_WIN32_H__ */