Blame client/gtk3/ibusimcontext.h

Packit Service 1d8f1c
/* -*- mode: C; c-basic-offset: 4; indent-tabs-mode: nil; -*- */
Packit Service 1d8f1c
/* vim:set et ts=4: */
Packit Service 1d8f1c
/* ibus - The Input Bus
Packit Service 1d8f1c
 * Copyright (C) 2008-2010 Peng Huang <shawn.p.huang@gmail.com>
Packit Service 1d8f1c
 * Copyright (C) 2008-2010 Red Hat, Inc.
Packit Service 1d8f1c
 *
Packit Service 1d8f1c
 * This library is free software; you can redistribute it and/or
Packit Service 1d8f1c
 * modify it under the terms of the GNU Lesser General Public
Packit Service 1d8f1c
 * License as published by the Free Software Foundation; either
Packit Service 1d8f1c
 * version 2.1 of the License, or (at your option) any later version.
Packit Service 1d8f1c
 *
Packit Service 1d8f1c
 * This library is distributed in the hope that it will be useful,
Packit Service 1d8f1c
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 1d8f1c
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 1d8f1c
 * Lesser General Public License for more details.
Packit Service 1d8f1c
 *
Packit Service 1d8f1c
 * You should have received a copy of the GNU Lesser General Public
Packit Service 1d8f1c
 * License along with this library; if not, write to the Free Software
Packit Service 1d8f1c
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301
Packit Service 1d8f1c
 * USA
Packit Service 1d8f1c
 */
Packit Service 1d8f1c
#ifndef __IBUS_IM_CONTEXT_H_
Packit Service 1d8f1c
#define __IBUS_IM_CONTEXT_H_
Packit Service 1d8f1c
Packit Service 1d8f1c
#include <gtk/gtk.h>
Packit Service 1d8f1c
Packit Service 1d8f1c
/*
Packit Service 1d8f1c
 * Type macros.
Packit Service 1d8f1c
 */
Packit Service 1d8f1c
#define IBUS_TYPE_IM_CONTEXT             \
Packit Service 1d8f1c
    (ibus_im_context_get_type ())
Packit Service 1d8f1c
#define IBUS_IM_CONTEXT(obj)             \
Packit Service 1d8f1c
    (G_TYPE_CHECK_INSTANCE_CAST ((obj), IBUS_TYPE_IM_CONTEXT, IBusIMContext))
Packit Service 1d8f1c
#define IBUS_IM_CONTEXT_CLASS(klass)     \
Packit Service 1d8f1c
    (G_TYPE_CHECK_CLASS_CAST ((klass), IBUS_TYPE_IM_CONTEXT, IBusIMContextClass))
Packit Service 1d8f1c
#define IBUS_IS_IM_CONTEXT(obj)          \
Packit Service 1d8f1c
    (G_TYPE_CHECK_INSTANCE_TYPE ((obj), IBUS_TYPE_IM_CONTEXT))
Packit Service 1d8f1c
#define IBUS_IS_IM_CONTEXT_CLASS(klass)  \
Packit Service 1d8f1c
    (G_TYPE_CHECK_CLASS_TYPE ((klass), IBUS_TYPE_IM_CONTEXT))
Packit Service 1d8f1c
#define IBUS_IM_CONTEXT_GET_CLASS(obj)   \
Packit Service 1d8f1c
    (G_TYPE_CHECK_GET_CLASS ((obj), IBUS_TYPE_IM_CONTEXT, IBusIMContextClass))
Packit Service 1d8f1c
Packit Service 1d8f1c
G_BEGIN_DECLS
Packit Service 1d8f1c
typedef struct _IBusIMContext IBusIMContext;
Packit Service 1d8f1c
typedef struct _IBusIMContextClass IBusIMContextClass;
Packit Service 1d8f1c
typedef struct _IBusIMContextPrivate IBusIMContextPrivate;
Packit Service 1d8f1c
Packit Service 1d8f1c
Packit Service 1d8f1c
GType    ibus_im_context_get_type (void);
Packit Service 1d8f1c
IBusIMContext
Packit Service 1d8f1c
        *ibus_im_context_new      (void);
Packit Service 1d8f1c
void     ibus_im_context_register_type
Packit Service 1d8f1c
                                  (GTypeModule    *type_module);
Packit Service 1d8f1c
void     ibus_im_context_shutdown
Packit Service 1d8f1c
                                  (void);
Packit Service 1d8f1c
const gchar
Packit Service 1d8f1c
        *ibus_im_context_get_ic   (IBusIMContext  *context);
Packit Service 1d8f1c
void     ibus_im_context_set_ic   (IBusIMContext  *context,
Packit Service 1d8f1c
                                   const gchar    *ic);
Packit Service 1d8f1c
void     ibus_im_context_enable   (IBusIMContext  *context);
Packit Service 1d8f1c
void     ibus_im_context_disable  (IBusIMContext  *context);
Packit Service 1d8f1c
void     ibus_im_context_commit_string
Packit Service 1d8f1c
                                  (IBusIMContext  *context,
Packit Service 1d8f1c
                                   const gchar    *string);
Packit Service 1d8f1c
void     ibus_im_context_update_preedit
Packit Service 1d8f1c
                                  (IBusIMContext  *context,
Packit Service 1d8f1c
                                   const gchar    *string,
Packit Service 1d8f1c
                                   PangoAttrList  *attrs,
Packit Service 1d8f1c
                                   gint            cursor_pos,
Packit Service 1d8f1c
                                   gboolean        visible);
Packit Service 1d8f1c
void     ibus_im_context_show_preedit
Packit Service 1d8f1c
                                  (IBusIMContext *context);
Packit Service 1d8f1c
void     ibus_im_context_hide_preedit
Packit Service 1d8f1c
                                  (IBusIMContext *context);
Packit Service 1d8f1c
G_END_DECLS
Packit Service 1d8f1c
#endif
Packit Service 1d8f1c