2008-07-01 22:57:50 +00:00
|
|
|
/* GDK - The GIMP Drawing Kit
|
2005-07-12 05:09:13 +00:00
|
|
|
* 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 Lesser 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser 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-2000. 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
|
2008-05-28 14:01:57 +00:00
|
|
|
* GTK+ at ftp://ftp.gtk.org/pub/gtk/.
|
2005-07-12 05:09:13 +00:00
|
|
|
*/
|
|
|
|
|
2009-10-21 18:30:04 +00:00
|
|
|
#if !defined (__GDK_H_INSIDE__) && !defined (GDK_COMPILATION)
|
2008-05-28 14:01:57 +00:00
|
|
|
#error "Only <gdk/gdk.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
#ifndef __GDK_INPUT_H__
|
|
|
|
#define __GDK_INPUT_H__
|
|
|
|
|
1999-10-01 23:18:30 +00:00
|
|
|
#include <gdk/gdktypes.h>
|
2010-05-25 22:38:44 +00:00
|
|
|
#include <gdk/gdkdevice.h>
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2005-06-12 05:32:25 +00:00
|
|
|
G_BEGIN_DECLS
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2010-05-25 22:38:44 +00:00
|
|
|
#if !defined (GDK_MULTIDEVICE_SAFE) && !defined (GDK_DISABLE_DEPRECATED)
|
2001-06-28 16:35:38 +00:00
|
|
|
|
2002-04-25 22:29:14 +00:00
|
|
|
#ifndef GDK_MULTIHEAD_SAFE
|
2009-08-18 18:35:10 +00:00
|
|
|
|
2010-05-25 22:38:44 +00:00
|
|
|
/* Returns a list of GdkDevice * */
|
|
|
|
GList * gdk_devices_list (void);
|
2009-08-18 18:35:10 +00:00
|
|
|
|
2010-09-22 01:53:23 +00:00
|
|
|
#ifndef GTK_DISABLE_DEPRECATED
|
2010-05-25 22:38:44 +00:00
|
|
|
GdkDevice *gdk_device_get_core_pointer (void);
|
2010-09-22 01:53:23 +00:00
|
|
|
#endif
|
2009-08-18 18:35:10 +00:00
|
|
|
|
2010-05-25 22:38:44 +00:00
|
|
|
#endif /* GDK_MULTIHEAD_SAFE */
|
2000-07-03 19:00:23 +00:00
|
|
|
|
|
|
|
void gdk_input_set_extension_events (GdkWindow *window,
|
|
|
|
gint mask,
|
|
|
|
GdkExtensionMode mode);
|
1999-10-01 23:18:30 +00:00
|
|
|
|
2010-05-25 22:38:44 +00:00
|
|
|
#endif /* !GDK_MULTIDEVICE_SAFE && GDK_DISABLE_DEPRECATED */
|
|
|
|
|
2005-06-12 05:32:25 +00:00
|
|
|
G_END_DECLS
|
1997-11-24 22:37:52 +00:00
|
|
|
|
1997-12-02 19:41:19 +00:00
|
|
|
#endif /* __GDK_INPUT_H__ */
|