/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */ /* * Matchbox Keyboard - A lightweight software keyboard. * * Authored By Tomas Frydrych * * Copyright (c) 2012 Vernier Software and Technology * * SPDX-License-Identifier: LGPL-2.1 * */ #ifndef _LIBMATCHBOX_KEYBOARD_H #define _LIBMATCHBOX_KEYBOARD_H #include #ifdef HAVE_CONFIG_H #include "config.h" #endif #if WANT_GTK_WIDGET #include #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