Add gdk_keymap_map_virtual_modifiers() to Quartz backend

This commit is contained in:
Kristian Rietveld 2009-12-28 21:18:06 +01:00 committed by Tristan Van Berkom
parent f7daeec10f
commit 0d51400b29

View File

@ -652,6 +652,14 @@ gdk_keymap_translate_keyboard_state (GdkKeymap *keymap,
return TRUE;
}
gboolean
gdk_keymap_map_virtual_modifiers (GdkKeymap *keymap,
GdkModifierType *state)
{
/* FIXME: For now, we've mimiced the Windows backend. */
return TRUE;
}
/* What sort of key event is this? Returns one of
* GDK_KEY_PRESS, GDK_KEY_RELEASE, GDK_NOTHING (should be ignored)
*/