]> Pileus Git - ~andy/gtk/blob - gdk/win32/gdkglobals-win32.c
3215877286a8f8bcc0dc5c57b3e4b6689d41b2a1
[~andy/gtk] / gdk / win32 / gdkglobals-win32.c
1 /* GDK - The GIMP Drawing Kit
2  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3  * Copyright (C) 1998-2002 Tor Lillqvist
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20
21 /*
22  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
23  * file for a list of people on the GTK+ Team.  See the ChangeLog
24  * files for a list of changes.  These files are distributed with
25  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
26  */
27
28 #include <config.h>
29 #include "gdktypes.h"
30 #include "gdkprivate-win32.h"
31
32 GdkDisplay       *_gdk_display = NULL;
33 GdkScreen        *_gdk_screen = NULL;
34 GdkWindow        *_gdk_parent_root = NULL;
35
36 gint              _gdk_num_monitors;
37 GdkRectangle     *_gdk_monitors;
38
39 gint             _gdk_offset_x, _gdk_offset_y;
40
41 HWND              _gdk_root_window = NULL;
42 HDC               _gdk_display_hdc;
43 HINSTANCE         _gdk_dll_hinstance;
44 HINSTANCE         _gdk_app_hmodule;
45
46 HKL               _gdk_input_locale;
47 gboolean          _gdk_input_locale_is_ime;
48 UINT              _gdk_input_codepage;
49
50 WORD              _cf_rtf;
51 WORD              _cf_utf8_string;
52
53 GdkAtom           _utf8_string;
54 GdkAtom           _compound_text;
55 GdkAtom           _text_uri_list;
56
57 GdkAtom           _local_dnd;
58 GdkAtom           _gdk_win32_dropfiles;
59 GdkAtom           _gdk_ole2_dnd;
60
61 GdkAtom           _gdk_selection_property;
62
63 GdkAtom           _wm_transient_for;
64
65 DWORD             _windows_version;
66
67 gint              _gdk_input_ignore_wintab = FALSE;
68 gint              _gdk_max_colors = 0;