/* vi:set et ai sw=2 sts=2 ts=2: */ /*- * Copyright (c) 2006 Benedikt Meurer * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * 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 * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ #ifndef __THUNAR_PRIVATE_H__ #define __THUNAR_PRIVATE_H__ #include G_BEGIN_DECLS; /* support macros for debugging */ #ifndef NDEBUG #define _thunar_assert(expr) g_assert (expr) #define _thunar_assert_not_reached() g_assert_not_reached () #define _thunar_return_if_fail(expr) g_return_if_fail (expr) #define _thunar_return_val_if_fail(expr, val) g_return_val_if_fail (expr, (val)) #else #define _thunar_assert(expr) G_STMT_START{ (void)0; }G_STMT_END #define _thunar_assert_not_reached() G_STMT_START{ (void)0; }G_STMT_END #define _thunar_return_if_fail(expr) G_STMT_START{ (void)0; }G_STMT_END #define _thunar_return_val_if_fail(expr, val) G_STMT_START{ (void)0; }G_STMT_END #endif /* avoid trivial g_value_get_*() function calls */ #ifdef NDEBUG #define g_value_get_boolean(v) (((const GValue *) (v))->data[0].v_int) #define g_value_get_char(v) (((const GValue *) (v))->data[0].v_int) #define g_value_get_uchar(v) (((const GValue *) (v))->data[0].v_uint) #define g_value_get_int(v) (((const GValue *) (v))->data[0].v_int) #define g_value_get_uint(v) (((const GValue *) (v))->data[0].v_uint) #define g_value_get_long(v) (((const GValue *) (v))->data[0].v_long) #define g_value_get_ulong(v) (((const GValue *) (v))->data[0].v_ulong) #define g_value_get_int64(v) (((const GValue *) (v))->data[0].v_int64) #define g_value_get_uint64(v) (((const GValue *) (v))->data[0].v_uint64) #define g_value_get_enum(v) (((const GValue *) (v))->data[0].v_long) #define g_value_get_flags(v) (((const GValue *) (v))->data[0].v_ulong) #define g_value_get_float(v) (((const GValue *) (v))->data[0].v_float) #define g_value_get_double(v) (((const GValue *) (v))->data[0].v_double) #define g_value_get_string(v) (((const GValue *) (v))->data[0].v_pointer) #define g_value_get_param(v) (((const GValue *) (v))->data[0].v_pointer) #define g_value_get_boxed(v) (((const GValue *) (v))->data[0].v_pointer) #define g_value_get_pointer(v) (((const GValue *) (v))->data[0].v_pointer) #define g_value_get_object(v) (((const GValue *) (v))->data[0].v_pointer) #endif /* support macros for the GtkTreeModel implementations */ #ifndef NDEBUG #define GTK_TREE_ITER_INIT(iter, iter_stamp, iter_user_data) \ G_STMT_START{ \ (iter).stamp = iter_stamp; \ (iter).user_data = iter_user_data; \ }G_STMT_END #else #define GTK_TREE_ITER_INIT(iter, iter_stamp, iter_user_data) \ G_STMT_START{ \ (iter).user_data = iter_user_data; \ }G_STMT_END #endif G_END_DECLS; #endif /* !__THUNAR_PRIVATE_H__ */