Blame src/ibusaccelgroup.h

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