]> Pileus Git - ~andy/gtk/blob - docs/debugging.txt
gtk/docs/debugging.txt, gdk/gdk.c, gdk/gdkinternals.h,
[~andy/gtk] / docs / debugging.txt
1 The GLIB, GDK, and GTK libraries have extensive support for
2 debugging the library and your programs.
3
4 The amount of debugging being done can be determined both
5 at run time and compile time.
6
7 COMPILE TIME OPTIONS
8 --------------------
9
10 At compile time, the amount of debugging support included is
11 determined by four macros:
12
13 G_ENABLE_DEBUG
14   If set, enable support for runtime checking.
15
16 G_DISABLE_ASSERT
17   If set, disable g_assert macros
18
19 G_DISABLE_CHECKS
20   If set, disable the g_return_if_fail and g_return_val_if_fail macros
21
22 GTK_NO_CHECK_CASTS
23   If set, don't check casts between different object types
24
25
26 Whether these macros are defined is controlled at configuration
27 time by the --enable-debug option.
28
29 --enable-debug=minimum [default]
30   Enable only inexpensive sanity checking 
31     sets GTK_NO_CHECK_CASTS
32
33 --enable-debug=yes
34   Enable all debugging support
35     sets G_ENABLE_DEBUG
36
37 --enable-debug=no (or --disable-debug)
38   Disable all debugging support (fastest)
39     sets G_DISABLE_ASSERT, G_DISABLE_CHECKS, and GTK_NO_CHECK_CASTS
40
41
42 RUN TIME OPTIONS
43 ----------------
44
45 At run time, if GTK+ was compiled with debugging enabled, different
46 types of debugging information can be printed out. This is controlled
47 by the:
48  
49   GTK_DEBUG and GDK_DEBUG environment variables
50   --gtk-debug and --gdk-debug command line options
51   --gtk-no-debug and --gdk-no-debug command line options
52
53 First the environment variables are applied, then the command line
54 options are applied in the order given on the command line.
55
56 Each of these can either be the special value 'all', or a sequence of
57 ':' separated options. (case is ignored). The environment variables
58 and the --gtk-debug and --gdk-debug options add debugging options and
59 the --gtk-no-debug and --gdk-no-debug options remove them.
60
61 As noted below, some of these are useful in application debugging, but
62 most are only interested to those debugging the libraries
63
64 For instance:
65
66   GDK_DEBUG_FLAGS=misc:dnd testgtk --gdk-no-debug dnd --gdk-debug events
67
68 runs testgtk with the 'misc' and 'events' debugging options.
69
70 See glib/docs/debugging.txt for information about debugging signal emission 
71 and the object system.
72
73
74  GDK_DEBUG
75  ---------
76
77  Application relevant options:
78
79  'events' - Show all events received by GTK
80
81  Options only interesting to library maintainers:
82
83  'misc'          - Miscellaneous information
84  'dnd'           - Information about drag-and-drop
85  'xim'           - Information about X Input Method support
86
87
88  GTK_DEBUG
89  ---------
90
91  Options only interesting to library maintainers:
92
93  'misc'          - Miscellaneous information
94  'text'          - Information about text widget internals
95  'tree'          - Information about tree widget internals
96  'updates'       - Visual feedback about window updates
97
98
99                                     - Owen Taylor <owt1@cornell.edu>
100                                       98/02/19