2008-07-01 22:57:50 +00:00
|
|
|
/* GTK - The GIMP Toolkit
|
1998-02-19 06:21:49 +00:00
|
|
|
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
2000-07-26 11:33:08 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
1998-02-19 06:21:49 +00:00
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
2000-07-26 11:33:08 +00:00
|
|
|
* Lesser General Public License for more details.
|
1998-02-19 06:21:49 +00:00
|
|
|
*
|
2000-07-26 11:33:08 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2012-02-27 13:01:10 +00:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
1998-02-19 06:21:49 +00:00
|
|
|
*/
|
1999-02-24 07:37:18 +00:00
|
|
|
|
|
|
|
/*
|
2000-07-26 11:33:08 +00:00
|
|
|
* Modified by the GTK+ Team and others 1997-2000. See the AUTHORS
|
1999-02-24 07:37:18 +00:00
|
|
|
* file for a list of people on the GTK+ Team. See the ChangeLog
|
|
|
|
* files for a list of changes. These files are distributed with
|
2008-05-28 15:35:43 +00:00
|
|
|
* GTK+ at ftp://ftp.gtk.org/pub/gtk/.
|
1999-02-24 07:37:18 +00:00
|
|
|
*/
|
|
|
|
|
2012-12-28 14:57:34 +00:00
|
|
|
#ifndef __GTK_DEBUG_H__
|
|
|
|
#define __GTK_DEBUG_H__
|
|
|
|
|
2009-10-21 18:30:04 +00:00
|
|
|
#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
|
2008-05-28 15:07:04 +00:00
|
|
|
#error "Only <gtk/gtk.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
2002-02-21 17:14:10 +00:00
|
|
|
#include <glib.h>
|
2013-03-20 22:17:32 +00:00
|
|
|
#include <gdk/gdk.h>
|
2002-02-21 17:14:10 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
1998-02-19 06:21:49 +00:00
|
|
|
|
|
|
|
typedef enum {
|
2018-01-10 04:07:08 +00:00
|
|
|
GTK_DEBUG_TEXT = 1 << 0,
|
|
|
|
GTK_DEBUG_TREE = 1 << 1,
|
2018-03-28 14:06:32 +00:00
|
|
|
GTK_DEBUG_KEYBINDINGS = 1 << 2,
|
|
|
|
GTK_DEBUG_MODULES = 1 << 3,
|
|
|
|
GTK_DEBUG_GEOMETRY = 1 << 4,
|
|
|
|
GTK_DEBUG_ICONTHEME = 1 << 5,
|
|
|
|
GTK_DEBUG_PRINTING = 1 << 6,
|
|
|
|
GTK_DEBUG_BUILDER = 1 << 7,
|
|
|
|
GTK_DEBUG_SIZE_REQUEST = 1 << 8,
|
|
|
|
GTK_DEBUG_NO_CSS_CACHE = 1 << 9,
|
2020-06-28 03:19:12 +00:00
|
|
|
GTK_DEBUG_INTERACTIVE = 1 << 10,
|
|
|
|
GTK_DEBUG_TOUCHSCREEN = 1 << 11,
|
|
|
|
GTK_DEBUG_ACTIONS = 1 << 12,
|
2020-07-12 09:20:31 +00:00
|
|
|
GTK_DEBUG_LAYOUT = 1 << 13,
|
|
|
|
GTK_DEBUG_SNAPSHOT = 1 << 14,
|
|
|
|
GTK_DEBUG_CONSTRAINTS = 1 << 15,
|
|
|
|
GTK_DEBUG_BUILDER_OBJECTS = 1 << 16,
|
2020-07-17 14:36:20 +00:00
|
|
|
GTK_DEBUG_A11Y = 1 << 17,
|
1998-06-15 21:27:17 +00:00
|
|
|
} GtkDebugFlag;
|
1998-02-19 06:21:49 +00:00
|
|
|
|
|
|
|
#ifdef G_ENABLE_DEBUG
|
|
|
|
|
2015-09-09 02:48:44 +00:00
|
|
|
#define GTK_DEBUG_CHECK(type) G_UNLIKELY (gtk_get_debug_flags () & GTK_DEBUG_##type)
|
|
|
|
|
|
|
|
#define GTK_NOTE(type,action) G_STMT_START { \
|
|
|
|
if (GTK_DEBUG_CHECK (type)) \
|
1998-02-19 08:14:03 +00:00
|
|
|
{ action; }; } G_STMT_END
|
1998-02-19 06:21:49 +00:00
|
|
|
|
|
|
|
#else /* !G_ENABLE_DEBUG */
|
|
|
|
|
2015-09-09 02:48:44 +00:00
|
|
|
#define GTK_DEBUG_CHECK(type) 0
|
1998-03-17 19:55:33 +00:00
|
|
|
#define GTK_NOTE(type, action)
|
2008-05-28 15:35:43 +00:00
|
|
|
|
1998-02-19 06:21:49 +00:00
|
|
|
#endif /* G_ENABLE_DEBUG */
|
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-09-08 15:17:57 +00:00
|
|
|
guint gtk_get_debug_flags (void);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-09-08 15:17:57 +00:00
|
|
|
void gtk_set_debug_flags (guint flags);
|
1998-02-19 06:21:49 +00:00
|
|
|
|
2002-02-21 17:14:10 +00:00
|
|
|
G_END_DECLS
|
1998-02-19 06:21:49 +00:00
|
|
|
|
|
|
|
#endif /* __GTK_DEBUG_H__ */
|