Blame conf/memconf/config.h

Packit 3ff832
/* -*- mode: C; c-basic-offset: 4; indent-tabs-mode: nil; -*- */
Packit 3ff832
/* vim:set et sts=4: */
Packit 3ff832
/* ibus - The Input Bus
Packit 3ff832
 * Copyright (c) 2010, Google Inc. All rights reserved.
Packit 3ff832
 * Copyright (C) 2010 Peng Huang <shawn.p.huang@gmail.com>
Packit 3ff832
 *
Packit 3ff832
 * This library is free software; you can redistribute it and/or
Packit 3ff832
 * modify it under the terms of the GNU Lesser General Public
Packit 3ff832
 * License as published by the Free Software Foundation; either
Packit 3ff832
 * version 2.1 of the License, or (at your option) any later version.
Packit 3ff832
 *
Packit 3ff832
 * This library is distributed in the hope that it will be useful,
Packit 3ff832
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 3ff832
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 3ff832
 * Lesser General Public License for more details.
Packit 3ff832
 *
Packit 3ff832
 * You should have received a copy of the GNU Lesser General Public
Packit 3ff832
 * License along with this library; if not, write to the Free Software
Packit 3ff832
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301
Packit 3ff832
 * USA
Packit 3ff832
 */
Packit 3ff832
#ifndef __CONFIG_MEMCONF_H__
Packit 3ff832
#define __CONFIG_MEMCONF_H__
Packit 3ff832
Packit 3ff832
#include <ibus.h>
Packit 3ff832
Packit 3ff832
#define IBUS_TYPE_CONFIG_MEMCONF	    \
Packit 3ff832
	(ibus_config_memconf_get_type ())
Packit 3ff832
#define IBUS_CONFIG_MEMCONF(obj)            \
Packit 3ff832
    (G_TYPE_CHECK_INSTANCE_CAST ((obj), IBUS_TYPE_CONFIG_MEMCONF, IBusConfigMemconf))
Packit 3ff832
#define IBUS_CONFIG_MEMCONF_CLASS(klass)     \
Packit 3ff832
    (G_TYPE_CHECK_CLASS_CAST ((klass), IBUS_TYPE_CONFIG_MEMCONF, IBusConfigMemconfClass))
Packit 3ff832
#define IBUS_IS_CONFIG_MEMCONF(obj)          \
Packit 3ff832
    (G_TYPE_CHECK_INSTANCE_TYPE ((obj), IBUS_TYPE_CONFIG_MEMCONF))
Packit 3ff832
#define IBUS_IS_CONFIG_MEMCONF_CLASS(klass)  \
Packit 3ff832
    (G_TYPE_CHECK_CLASS_TYPE ((klass), IBUS_TYPE_CONFIG_MEMCONF))
Packit 3ff832
#define IBUS_CONFIG_MEMCONF_GET_CLASS(obj)   \
Packit 3ff832
    (G_TYPE_INSTANCE_GET_CLASS ((obj), IBUS_TYPE_CONFIG_MEMCONF, IBusConfigMemconfClass))
Packit 3ff832
Packit 3ff832
typedef struct _IBusConfigMemconf IBusConfigMemconf;
Packit 3ff832
Packit 3ff832
GType                ibus_config_memconf_get_type   (void);
Packit 3ff832
IBusConfigMemconf   *ibus_config_memconf_new        (GDBusConnection    *connection);
Packit 3ff832
Packit 3ff832
#endif