2017-03-20 12:03:45 +00:00
|
|
|
gdk_win32_sources = files([
|
2018-04-12 14:48:31 +00:00
|
|
|
'gdkcairocontext-win32.c',
|
2017-03-20 12:03:45 +00:00
|
|
|
'gdkcursor-win32.c',
|
2018-03-24 16:27:11 +00:00
|
|
|
'gdkclipboard-win32.c',
|
|
|
|
'gdkclipdrop-win32.c',
|
2017-03-20 12:03:45 +00:00
|
|
|
'gdkdevicemanager-win32.c',
|
|
|
|
'gdkdevice-virtual.c',
|
|
|
|
'gdkdevice-win32.c',
|
|
|
|
'gdkdevice-wintab.c',
|
|
|
|
'gdkdisplay-win32.c',
|
|
|
|
'gdkdisplaymanager-win32.c',
|
2018-03-24 16:27:11 +00:00
|
|
|
'gdkdrag-win32.c',
|
|
|
|
'gdkdrop-win32.c',
|
2017-03-20 12:03:45 +00:00
|
|
|
'gdkevents-win32.c',
|
|
|
|
'gdkgeometry-win32.c',
|
|
|
|
'gdkglcontext-win32.c',
|
|
|
|
'gdkglobals-win32.c',
|
2018-03-24 16:27:11 +00:00
|
|
|
'gdkhdataoutputstream-win32.c',
|
2017-03-20 12:03:45 +00:00
|
|
|
'gdkkeys-win32.c',
|
GDK W32: Test for IME correctly
ImmIsIME() doesn't work (always returns TRUE) since Vista.
Use ITfActiveLanguageProfileNotifySink to detect TSF changes,
which are equal to IME changes for us.
Also make sure that IMMultiContext re-loads the IM when keyboard layout
changes, otherwise there's a subtle bug that could happen:
* Run GTK application with non-IME layout (US, for example)
* Focus on an editable widget (GtkEntry, for example)
* IM Context is initialized to use the simple IM
* Switch to an IME layout (such as Korean)
* Start typing
* Since IME module is not loaded yet, keypresses are handled
by a default MS IME handler
* Once IME commits a character, GDK will get a WM_KEYDOWN,
which will trigger a GdkKeyEvent, which will be handled by
an event filter in IM Context, which will finally re-evaluate
its status and load IME, and only after that GTK will get
to handle IME by itself - but by that point input would
already be broken.
To avoid this we can emit a dummy event (with Void keyval),
which will cause IM Context to load the appropriate module
immediately.
2019-03-22 15:10:02 +00:00
|
|
|
'gdkwin32langnotification.c',
|
2017-03-20 12:03:45 +00:00
|
|
|
'gdkmain-win32.c',
|
|
|
|
'gdkmonitor-win32.c',
|
|
|
|
'gdkproperty-win32.c',
|
|
|
|
'gdkscreen-win32.c',
|
|
|
|
'gdkvulkancontext-win32.c',
|
|
|
|
'gdkwin32cursor.h',
|
|
|
|
'gdkwin32display.h',
|
|
|
|
'gdkwin32id.c',
|
2018-03-20 10:46:11 +00:00
|
|
|
'gdksurface-win32.c',
|
2017-03-20 12:03:45 +00:00
|
|
|
])
|
|
|
|
|
|
|
|
gdk_win32_public_headers = files([
|
|
|
|
'gdkwin32cursor.h',
|
|
|
|
'gdkwin32display.h',
|
|
|
|
'gdkwin32displaymanager.h',
|
|
|
|
'gdkwin32dnd.h',
|
|
|
|
'gdkwin32glcontext.h',
|
|
|
|
'gdkwin32keys.h',
|
|
|
|
'gdkwin32misc.h',
|
|
|
|
'gdkwin32monitor.h',
|
|
|
|
'gdkwin32screen.h',
|
2018-03-20 10:46:11 +00:00
|
|
|
'gdkwin32surface.h',
|
2017-03-20 12:03:45 +00:00
|
|
|
])
|
|
|
|
|
|
|
|
install_headers(gdk_win32_public_headers, subdir: 'gtk-4.0/gdk/win32/')
|
|
|
|
install_headers('gdkwin32.h', subdir: 'gtk-4.0/gdk/')
|
|
|
|
|
|
|
|
gdk_win32_deps = [ # FIXME
|
2018-11-29 22:19:38 +00:00
|
|
|
pangowin32_dep
|
2017-03-20 12:03:45 +00:00
|
|
|
]
|
|
|
|
|
2017-03-30 23:15:08 +00:00
|
|
|
libgdk_win32 = static_library('gdk-win32',
|
2017-03-20 12:03:45 +00:00
|
|
|
gdk_win32_sources, gdkconfig, gdkenum_h,
|
|
|
|
include_directories: [confinc, gdkinc],
|
|
|
|
c_args: ['-DGDK_COMPILATION', '-DG_LOG_DOMAIN="Gdk"', '-DINSIDE_GDK_WIN32'],
|
|
|
|
dependencies: [gdk_deps, gdk_win32_deps])
|