aboutsummaryrefslogtreecommitdiffstats
path: root/src/libmatchbox-keyboard.h
blob: 45ce74b685614bde2924bfd595b7797389d2aa4b (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
/* -*- 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
 *
 *  SPDX-License-Identifier: LGPL-2.1
 *
 */

#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