]> www.fi.muni.cz Git - evince.git/blob - libdocument/ev-debug.h
Merge branch 'ev-debug' into work
[evince.git] / libdocument / ev-debug.h
1 /*
2  * ev-debug.h
3  * This file is part of Evince
4  *
5  * Copyright (C) 1998, 1999 Alex Roberts, Evan Lawrence
6  * Copyright (C) 2000, 2001 Chema Celorio, Paolo Maggi
7  * Copyright (C) 2002 - 2005 Paolo Maggi  
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place, Suite 330, 
22  * Boston, MA 02111-1307, USA.
23  */
24  
25 /*
26  * Modified by the gedit Team, 1998-2005. See the AUTHORS file for a 
27  * list of people on the gedit Team.  
28  * See the ChangeLog files for a list of changes.
29  *
30  * $Id: gedit-debug.h 4809 2006-04-08 14:46:31Z pborelli $
31  */
32
33 /* Modified by Evince Team */
34
35 #ifndef __EV_DEBUG_H__
36 #define __EV_DEBUG_H__
37
38 #include <glib.h>
39
40 #ifndef EV_ENABLE_DEBUG
41 #define ev_debug_init()
42 #define ev_debug_message(...)
43 #else
44
45 G_BEGIN_DECLS
46
47 /*
48  * Set an environmental var of the same name to turn on
49  * debugging output. Setting EV_DEBUG will turn on all
50  * sections.
51  */
52 typedef enum {
53         EV_NO_DEBUG          = 0,
54         EV_DEBUG_JOBS        = 1 << 0
55 } EvDebugSection;
56
57
58 #define DEBUG_JOBS      EV_DEBUG_JOBS,    __FILE__, __LINE__, G_STRFUNC
59
60 void ev_debug_init (void);
61
62 void ev_debug_message (EvDebugSection  section,
63                        const gchar    *file,
64                        gint            line,
65                        const gchar    *function,
66                        const gchar    *format, ...) G_GNUC_PRINTF(5, 6);
67
68
69 G_END_DECLS
70
71 #endif /* EV_ENABLE_DEBUG */
72 #endif /* __EV_DEBUG_H__ */