1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
/*
* Copyright (c) 2011 Nick Schermer <nick@xfce.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Library General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef __DEBUG_H__
#define __DEBUG_H__
#include <glib.h>
G_BEGIN_DECLS
typedef enum
{
XFSD_DEBUG_YES = 1 << 0,
/* filter levels */
XFSD_DEBUG_XSETTINGS = 1 << 1,
XFSD_DEBUG_FONTCONFIG = 1 << 2,
XFSD_DEBUG_KEYBOARD_LAYOUT = 1 << 3,
XFSD_DEBUG_KEYBOARDS = 1 << 4,
XFSD_DEBUG_KEYBOARD_SHORTCUTS = 1 << 5,
XFSD_DEBUG_WORKSPACES = 1 << 6,
XFSD_DEBUG_ACCESSIBILITY = 1 << 7,
XFSD_DEBUG_POINTERS = 1 << 8,
XFSD_DEBUG_DISPLAYS = 1 << 9,
} XfsdDebugDomain;
void
xfsettings_dbg (XfsdDebugDomain domain,
const gchar *message,
...) G_GNUC_PRINTF (2, 3);
void
xfsettings_dbg_filtered (XfsdDebugDomain domain,
const gchar *message,
...) G_GNUC_PRINTF (2, 3);
G_END_DECLS
#endif /* !__DEBUG_H__ */
|