Patches from Carlo E. Prelz <fluido@fluido.as> Now gtkfb at least compiles

2002-03-20  Alex Larsson  <alexl@redhat.com>

	Patches from Carlo E. Prelz <fluido@fluido.as>
	Now gtkfb at least compiles and mostly works. The keyboard
	stuff needs more loving.

	* gdk/linux-fb/gdkkeyboard-fb.c (xlate_get_for_keyval,
	xlate_get_for_keycode, raw_get_for_keyval, raw_get_for_keycode):
	At least set the out parameters for these calls.

	* gdk/linux-fb/gdkmain-fb.c:
	(gdk_pointer_grab_info_libgtk_only, gdk_keyboard_grab_info_libgtk_only):
	Implement new functions.
This commit is contained in:
Alex Larsson
2002-03-21 00:41:43 +00:00
committed by Alexander Larsson
parent 3b7193dd8b
commit 2d6e58ada6
8 changed files with 127 additions and 0 deletions

View File

@ -947,6 +947,8 @@ xlate_get_for_keyval (GdkFBKeyboard *kb,
gint *n_keys)
{
g_warning ("xlate_get_for_keyval() NIY");
*keys=NULL;
*n_keys=0;
return FALSE;
}
@ -958,6 +960,8 @@ xlate_get_for_keycode (GdkFBKeyboard *kb,
gint *n_entries)
{
g_warning ("xlate_get_for_keycode() NIY");
*keys=NULL;
*n_entries=0;
return FALSE;
}
@ -1458,6 +1462,8 @@ raw_get_for_keyval (GdkFBKeyboard *kb,
gint *n_keys)
{
g_warning ("raw_get_for_keyval() NIY");
*keys=NULL;
*n_keys=0;
return FALSE;
}
@ -1469,5 +1475,7 @@ raw_get_for_keycode (GdkFBKeyboard *kb,
gint *n_entries)
{
g_warning ("raw_get_for_keycode() NIY");
*keys=NULL;
*n_entries=0;
return FALSE;
}