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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
/* Eye Of Mate - Debugging
*
* Copyright (C) 2007 The Free Software Foundation
*
* Author: Lucas Rocha <lucasr@gnome.org>
*
* Based on gedit code (gedit/gedit-debug.h) by:
* - Alex Roberts <bse@error.fsnet.co.uk>
* - Evan Lawrence <evan@worldpath.net>
* - Chema Celorio <chema@celorio.com>
* - Paolo Maggi <paolo@gnome.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 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 St, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifndef __EOM_DEBUG_H__
#define __EOM_DEBUG_H__
#include <glib.h>
typedef enum {
EOM_NO_DEBUG = 0,
EOM_DEBUG_WINDOW = 1 << 0,
EOM_DEBUG_VIEW = 1 << 1,
EOM_DEBUG_JOBS = 1 << 2,
EOM_DEBUG_THUMBNAIL = 1 << 3,
EOM_DEBUG_IMAGE_DATA = 1 << 4,
EOM_DEBUG_IMAGE_LOAD = 1 << 5,
EOM_DEBUG_IMAGE_SAVE = 1 << 6,
EOM_DEBUG_LIST_STORE = 1 << 7,
EOM_DEBUG_PREFERENCES = 1 << 8,
EOM_DEBUG_PRINTING = 1 << 9,
EOM_DEBUG_LCMS = 1 << 10,
EOM_DEBUG_PLUGINS = 1 << 11
} EomDebugSection;
#define DEBUG_WINDOW EOM_DEBUG_WINDOW, __FILE__, __LINE__, G_STRFUNC
#define DEBUG_VIEW EOM_DEBUG_VIEW, __FILE__, __LINE__, G_STRFUNC
#define DEBUG_JOBS EOM_DEBUG_JOBS, __FILE__, __LINE__, G_STRFUNC
#define DEBUG_THUMBNAIL EOM_DEBUG_THUMBNAIL, __FILE__, __LINE__, G_STRFUNC
#define DEBUG_IMAGE_DATA EOM_DEBUG_IMAGE_DATA, __FILE__, __LINE__, G_STRFUNC
#define DEBUG_IMAGE_LOAD EOM_DEBUG_IMAGE_LOAD, __FILE__, __LINE__, G_STRFUNC
#define DEBUG_IMAGE_SAVE EOM_DEBUG_IMAGE_SAVE, __FILE__, __LINE__, G_STRFUNC
#define DEBUG_LIST_STORE EOM_DEBUG_LIST_STORE, __FILE__, __LINE__, G_STRFUNC
#define DEBUG_PREFERENCES EOM_DEBUG_PREFERENCES, __FILE__, __LINE__, G_STRFUNC
#define DEBUG_PRINTING EOM_DEBUG_PRINTING, __FILE__, __LINE__, G_STRFUNC
#define DEBUG_LCMS EOM_DEBUG_LCMS, __FILE__, __LINE__, G_STRFUNC
#define DEBUG_PLUGINS EOM_DEBUG_PLUGINS, __FILE__, __LINE__, G_STRFUNC
void eom_debug_init (void);
void eom_debug (EomDebugSection section,
const gchar *file,
gint line,
const gchar *function);
void eom_debug_message (EomDebugSection section,
const gchar *file,
gint line,
const gchar *function,
const gchar *format, ...) G_GNUC_PRINTF(5, 6);
#endif /* __EOM_DEBUG_H__ */
|