| 20 * |
20 * |
| 21 * You should have received a copy of the GNU General Public License |
21 * You should have received a copy of the GNU General Public License |
| 22 * along with this program; if not, write to the Free Software |
22 * along with this program; if not, write to the Free Software |
| 23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 24 */ |
24 */ |
| 25 #ifndef _GAIM_GTKDEBUG_H_ |
25 #ifndef _PIDGINDEBUG_H_ |
| 26 #define _GAIM_GTKDEBUG_H_ |
26 #define _PIDGINDEBUG_H_ |
| 27 |
27 |
| 28 #include "debug.h" |
28 #include "debug.h" |
| 29 |
29 |
| 30 /** |
30 /** |
| 31 * Initializes the GTK+ debug system. |
31 * Initializes the GTK+ debug system. |
| 32 */ |
32 */ |
| 33 void gaim_gtk_debug_init(void); |
33 void pidgin_debug_init(void); |
| 34 |
34 |
| 35 /** |
35 /** |
| 36 * Uninitialized the GTK+ debug system. |
36 * Uninitialized the GTK+ debug system. |
| 37 */ |
37 */ |
| 38 void gaim_gtk_debug_uninit(void); |
38 void pidgin_debug_uninit(void); |
| 39 |
39 |
| 40 /** |
40 /** |
| 41 * Get the handle for the GTK+ debug system. |
41 * Get the handle for the GTK+ debug system. |
| 42 * |
42 * |
| 43 * @return the handle to the debug system |
43 * @return the handle to the debug system |
| 44 */ |
44 */ |
| 45 void *gaim_gtk_debug_get_handle(void); |
45 void *pidgin_debug_get_handle(void); |
| 46 |
46 |
| 47 /** |
47 /** |
| 48 * Shows the debug window. |
48 * Shows the debug window. |
| 49 */ |
49 */ |
| 50 void gaim_gtk_debug_window_show(void); |
50 void pidgin_debug_window_show(void); |
| 51 |
51 |
| 52 /** |
52 /** |
| 53 * Hides the debug window. |
53 * Hides the debug window. |
| 54 */ |
54 */ |
| 55 void gaim_gtk_debug_window_hide(void); |
55 void pidgin_debug_window_hide(void); |
| 56 |
56 |
| 57 /** |
57 /** |
| 58 * Returns the UI operations structure for GTK+ debug output. |
58 * Returns the UI operations structure for GTK+ debug output. |
| 59 * |
59 * |
| 60 * @return The GTK+ UI debug operations structure. |
60 * @return The GTK+ UI debug operations structure. |
| 61 */ |
61 */ |
| 62 GaimDebugUiOps *gaim_gtk_debug_get_ui_ops(void); |
62 GaimDebugUiOps *pidgin_debug_get_ui_ops(void); |
| 63 |
63 |
| 64 #endif /* _GAIM_GTKDEBUG_H_ */ |
64 #endif /* _PIDGINDEBUG_H_ */ |