120 lines
5.5 KiB
C
120 lines
5.5 KiB
C
/*
|
|
* Copyright (C) 2010-2011 Daiki Ueno <ueno@unixuser.org>
|
|
* Copyright (C) 2010-2011 Red Hat, Inc.
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#if !defined(__EEKBOARD_H_INSIDE__) && !defined(EEKBOARD_COMPILATION)
|
|
#error "Only <eekboard/eekboard.h> can be included directly."
|
|
#endif
|
|
|
|
#ifndef EEKBOARD_CONTEXT_H
|
|
#define EEKBOARD_CONTEXT_H 1
|
|
|
|
#include <gio/gio.h>
|
|
#include "eek/eek.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define EEKBOARD_TYPE_CONTEXT (eekboard_context_get_type())
|
|
#define EEKBOARD_CONTEXT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), EEKBOARD_TYPE_CONTEXT, EekboardContext))
|
|
#define EEKBOARD_CONTEXT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), EEKBOARD_TYPE_CONTEXT, EekboardContextClass))
|
|
#define EEKBOARD_IS_CONTEXT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EEKBOARD_TYPE_CONTEXT))
|
|
#define EEKBOARD_IS_CONTEXT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), EEKBOARD_TYPE_CONTEXT))
|
|
#define EEKBOARD_CONTEXT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), EEKBOARD_TYPE_CONTEXT, EekboardContextClass))
|
|
|
|
typedef struct _EekboardContext EekboardContext;
|
|
typedef struct _EekboardContextClass EekboardContextClass;
|
|
typedef struct _EekboardContextPrivate EekboardContextPrivate;
|
|
|
|
/**
|
|
* EekboardContext:
|
|
*
|
|
* The #EekboardContext structure contains only private data and
|
|
* should only be accessed using the provided API.
|
|
*/
|
|
struct _EekboardContext {
|
|
/*< private >*/
|
|
GDBusProxy parent;
|
|
|
|
EekboardContextPrivate *priv;
|
|
};
|
|
|
|
/**
|
|
* EekboardContextClass:
|
|
* @enabled: class handler for #EekboardContext::enabled signal
|
|
* @disabled: class handler for #EekboardContext::disabled signal
|
|
* @key_pressed: class handler for #EekboardContext::key-pressed signal
|
|
*/
|
|
struct _EekboardContextClass {
|
|
/*< private >*/
|
|
GDBusProxyClass parent_class;
|
|
|
|
/*< public >*/
|
|
/* signals */
|
|
void (*enabled) (EekboardContext *self);
|
|
void (*disabled) (EekboardContext *self);
|
|
void (*key_pressed) (EekboardContext *self,
|
|
guint keycode,
|
|
EekSymbol *symbol,
|
|
guint modifiers);
|
|
void (*destroyed) (EekboardContext *self);
|
|
|
|
/*< private >*/
|
|
/* padding */
|
|
gpointer pdummy[24];
|
|
};
|
|
|
|
GType eekboard_context_get_type (void) G_GNUC_CONST;
|
|
|
|
EekboardContext *eekboard_context_new (GDBusConnection *connection,
|
|
const gchar *object_path,
|
|
GCancellable *cancellable);
|
|
guint eekboard_context_add_keyboard (EekboardContext *context,
|
|
const gchar *keyboard,
|
|
GCancellable *cancellable);
|
|
void eekboard_context_remove_keyboard (EekboardContext *context,
|
|
guint keyboard_id,
|
|
GCancellable *cancellable);
|
|
void eekboard_context_set_keyboard (EekboardContext *context,
|
|
guint keyboard_id,
|
|
GCancellable *cancellable);
|
|
void eekboard_context_show_keyboard (EekboardContext *context,
|
|
GCancellable *cancellable);
|
|
void eekboard_context_hide_keyboard (EekboardContext *context,
|
|
GCancellable *cancellable);
|
|
void eekboard_context_set_group (EekboardContext *context,
|
|
gint group,
|
|
GCancellable *cancellable);
|
|
gint eekboard_context_get_group (EekboardContext *context,
|
|
GCancellable *cancellable);
|
|
void eekboard_context_press_key (EekboardContext *context,
|
|
guint keycode,
|
|
GCancellable *cancellable);
|
|
void eekboard_context_release_key (EekboardContext *context,
|
|
guint keycode,
|
|
GCancellable *cancellable);
|
|
gboolean eekboard_context_is_keyboard_visible
|
|
(EekboardContext *context);
|
|
void eekboard_context_set_enabled (EekboardContext *context,
|
|
gboolean enabled);
|
|
gboolean eekboard_context_is_enabled (EekboardContext *context);
|
|
void eekboard_context_set_fullscreen (EekboardContext *context,
|
|
gboolean fullscreen,
|
|
GCancellable *cancellable);
|
|
|
|
G_END_DECLS
|
|
#endif /* EEKBOARD_CONTEXT_H */
|