summaryrefslogtreecommitdiff
path: root/clutter/evdev/clutter-xkb-utils.h
blob: f732f5b86484d67d018f1811aff491e96d0a3e09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*
 * Clutter.
 *
 * An OpenGL based 'interactive canvas' library.
 *
 * Copyright (C) 2010  Intel Corporation.
 *
 * 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, see <http://www.gnu.org/licenses/>.

 * Authors:
 *  Damien Lespiau <damien.lespiau@intel.com>
 */

#ifndef __CLUTTER_XKB_UTILS_H__
#define __CLUTTER_XKB_UTILS_H__

#include <xkbcommon/xkbcommon.h>

#include "clutter-stage.h"
#include "clutter-event.h"
#include "clutter-input-device.h"

ClutterEvent *    _clutter_key_event_new_from_evdev (ClutterInputDevice *device,
                                                     ClutterStage       *stage,
                                                     struct xkb_state   *xkb_state,
                                                     uint32_t            _time,
                                                     uint32_t            key,
                                                     uint32_t            state);
struct xkb_state * _clutter_xkb_state_new           (const gchar *model,
                                                     const gchar *layout,
                                                     const gchar *variant,
                                                     const gchar *options);

#endif /* __CLUTTER_XKB_UTILS_H__ */