Add Ctrl+space customization.
[platform/upstream/ibus.git] / src / ibusdebug.h
1 /* -*- mode: C; c-basic-offset: 4; indent-tabs-mode: nil; -*- */
2 /* vim:set et sts=4: */
3 /* ibus - The Input Bus
4  * Copyright (C) 2008-2010 Peng Huang <shawn.p.huang@gmail.com>
5  * Copyright (C) 2008-2010 Red Hat, Inc.
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23 #if !defined (__IBUS_H_INSIDE__) && !defined (IBUS_COMPILATION)
24 #error "Only <ibus.h> can be included directly"
25 #endif
26
27 /**
28  * SECTION: ibusdebug
29  * @short_description: Debug message output.
30  * @stability: Stable
31  *
32  * This section lists functions that generate debug and warning messages.
33  */
34 #ifndef __IBUS_DEBUG_H_
35 #define __IBUS_DEBUG_H_
36
37 /**
38  * ibus_warning:
39  * @msg: A printf formatted message to be print.
40  * @args...: Necessary arguments for @msg.
41  *
42  * A convenient wrapper for g_warning.
43  * The output format will be
44  * <programlisting>
45  *     source_file:line, message...
46  * </programlisting>
47  */
48 #define ibus_warning(msg, args...) \
49     g_warning("%s:%d, " msg, __FILE__, __LINE__, ##args)
50
51 #endif
52