aboutsummaryrefslogtreecommitdiffstats
path: root/src/libmatchbox-keyboard.h
blob: 7cbd4f8001664bd9772fa78c5d88064841d063b6 (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */

/*
 *  Matchbox Keyboard - A lightweight software keyboard.
 *
 *  Authored By Tomas Frydrych <tomas@sleepfive.com>
 *
 *  Copyright (c) 2012 Vernier Software and Technology
 *
 *  This program is free software; you can redistribute it and/or modify it
 *  under the terms and conditions of the GNU Lesser General Public License,
 *  version 2.1, as published by the Free Software Foundation.
 *
 *  This program is distributed in the hope 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.
 *
 */

#ifndef _LIBMATCHBOX_KEYBOARD_H
#define _LIBMATCHBOX_KEYBOARD_H

#include <X11/Xlib.h>

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#if WANT_GTK_WIDGET
#include <gdk/gdkx.h>
#endif

#ifdef __cplusplus
extern "C" {
#endif

typedef struct MBKeyboard MBKeyboard;


#if WANT_GTK_WIDGET
MBKeyboard *mb_keyboard_new (Display *xdpy, GdkWindow *parent,
                             int x, int y,
                             int width, int height,
                             int argc, char **argv);
#else
MBKeyboard *mb_keyboard_new (Display *xdpy, Window parent,
                             int x, int y,
                             int width, int height,
                             int argc, char **argv);
#endif

void        mb_keyboard_destroy (MBKeyboard *kb);
Window      mb_keyboard_get_xwindow (MBKeyboard *kb);
void        mb_keyboard_handle_xevent (MBKeyboard *kb, XEvent *xev);

#ifdef __cplusplus
}
#endif

#endif