mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-05 16:20:10 +00:00
f527b8909f
1999-11-04 Tor Lillqvist <tml@iki.fi> * config.h.win32: Don't define HAVE_DIMM_H if MSC, as you have to get the Platform SDK to get <dimm.h>. * gdk/win32/gdkevents.c: More event handling fixes and simplification. Never generate motion events with is_hint true. We used to do that on bogus grounds earlier. Windows sends WM_MOUSEMOVE messages on button events even if the mouse hasn't moved, ignore these. * gdk/win32/gdkfont.c: Load all fonts as (pretended) fontsets. * gdk/win32/gdkglobals.c * gdk/win32/gdkprivate.h: Define a typedef for the pointer to the TrackMouseEvent function, and use it. * gdk/win32/gdkwindow.c: Terminate widechar string with a zero char before calling WideCharToMultiByte in order to get a string for the window title. * gdk/win32/gdkdnd.c: Some more random hacking, ifdeffed out. * gdk/win32/gdk.def: Remove obsolete functions. * gdk/win32/makefile.{cygwin,msc}: Remove gdkcompat.{o,obj}. Add /nodefaultlib and /defaultlib switches. * gtk/gtkrc.c: s/gwin_getlocale/g_win32_getlocale/.
52 lines
1.9 KiB
C
52 lines
1.9 KiB
C
/* GDK - The GIMP Drawing Kit
|
|
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Library General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Library General Public
|
|
* License along with this library; if not, write to the
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
* Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
/*
|
|
* Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
|
|
* file for a list of people on the GTK+ Team. See the ChangeLog
|
|
* files for a list of changes. These files are distributed with
|
|
* GTK+ at ftp://ftp.gtk.org/pub/gtk/.
|
|
*/
|
|
|
|
#include "gdktypes.h"
|
|
#include "gdkprivate.h"
|
|
|
|
guint gdk_debug_flags = 0;
|
|
HWND gdk_root_window = NULL;
|
|
HWND gdk_leader_window;
|
|
GDKVAR GdkWindowPrivate *gdk_root_parent = NULL;
|
|
HDC gdk_DC;
|
|
HINSTANCE gdk_DLLInstance;
|
|
HINSTANCE gdk_ProgInstance;
|
|
UINT gdk_selection_notify_msg;
|
|
UINT gdk_selection_request_msg;
|
|
UINT gdk_selection_clear_msg;
|
|
GdkAtom gdk_clipboard_atom;
|
|
GdkAtom gdk_win32_dropfiles_atom;
|
|
GdkAtom gdk_ole2_dnd_atom;
|
|
Atom gdk_selection_property;
|
|
gchar *gdk_progclass = NULL;
|
|
gint gdk_error_code;
|
|
gint gdk_error_warnings = TRUE;
|
|
gint gdk_null_window_warnings = TRUE;
|
|
|
|
GMutex *gdk_threads_mutex = NULL; /* Global GDK lock */
|
|
|
|
PFN_TrackMouseEvent p_TrackMouseEvent = NULL;
|