]> Pileus Git - ~andy/gtk/blob - gdk/x11/gdkdevicemanagerprivate-core.h
428b34fdd1c56d0c6ae5d2d2f02b69c581b624dc
[~andy/gtk] / gdk / x11 / gdkdevicemanagerprivate-core.h
1 /* GDK - The GIMP Drawing Kit
2  * Copyright (C) 2009 Carlos Garnacho <carlosg@gnome.org>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #ifndef __GDK_DEVICE_MANAGER_PRIVATE_CORE_H__
21 #define __GDK_DEVICE_MANAGER_PRIVATE_CORE_H__
22
23 #include "gdkx11devicemanager-core.h"
24 #include "gdkdevicemanagerprivate.h"
25
26 G_BEGIN_DECLS
27
28 struct _GdkX11DeviceManagerCore
29 {
30   GdkDeviceManager parent_object;
31   GdkDevice *core_pointer;
32   GdkDevice *core_keyboard;
33 };
34
35 struct _GdkX11DeviceManagerCoreClass
36 {
37   GdkDeviceManagerClass parent_class;
38 };
39
40 void            _gdk_device_manager_core_handle_focus           (GdkWindow   *window,
41                                                                  GdkDevice   *device,
42                                                                  GdkDevice   *source_device,
43                                                                  gboolean     focus_in,
44                                                                  int          detail,
45                                                                  gboolean     in);
46
47 G_END_DECLS
48
49 #endif /* __GDK_DEVICE_MANAGER_PRIVATE_CORE_H__ */