Blame src/ibusaccelgroup.h

Packit Service 1d8f1c
/* GTK - The GIMP Toolkit
Packit Service 1d8f1c
 * Copyright (C) 1998, 2001 Tim Janik
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 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, see <http://www.gnu.org/licenses/>.
Packit Service 1d8f1c
 */
Packit Service 1d8f1c
Packit Service 1d8f1c
/*
Packit Service 1d8f1c
 * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
Packit Service 1d8f1c
 * file for a list of people on the GTK+ Team.  See the ChangeLog
Packit Service 1d8f1c
 * files for a list of changes.  These files are distributed with
Packit Service 1d8f1c
 * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
Packit Service 1d8f1c
 */
Packit Service 1d8f1c
Packit Service 1d8f1c
#ifndef __IBUS_ACCEL_GROUP_H_
Packit Service 1d8f1c
#define __IBUS_ACCEL_GROUP_H_
Packit Service 1d8f1c
Packit Service 1d8f1c
Packit Service 1d8f1c
#if !defined (__IBUS_H_INSIDE__) && !defined (IBUS_COMPILATION)
Packit Service 1d8f1c
#error "Only <ibus.h> can be included directly"
Packit Service 1d8f1c
#endif
Packit Service 1d8f1c
Packit Service 1d8f1c
#include <glib.h>
Packit Service 1d8f1c
#include <ibustypes.h>
Packit Service 1d8f1c
Packit Service 1d8f1c
G_BEGIN_DECLS
Packit Service 1d8f1c
Packit Service 1d8f1c
Packit Service 1d8f1c
/* --- Accelerators--- */
Packit Service 1d8f1c
gboolean ibus_accelerator_valid               (guint            keyval,
Packit Service 1d8f1c
                                               IBusModifierType modifiers)
Packit Service 1d8f1c
                                               G_GNUC_CONST;
Packit Service 1d8f1c
void     ibus_accelerator_parse               (const gchar      *accelerator,
Packit Service 1d8f1c
                                               guint            *accelerator_key,
Packit Service 1d8f1c
                                               IBusModifierType *accelerator_mods);
Packit Service 1d8f1c
gchar*   ibus_accelerator_name                (guint            accelerator_key,
Packit Service 1d8f1c
                                               IBusModifierType accelerator_mods);
Packit Service 1d8f1c
Packit Service 1d8f1c
G_END_DECLS
Packit Service 1d8f1c
Packit Service 1d8f1c
#endif /* __IBUS_ACCEL_GROUP_H_ */