Mercurial > pidgin
annotate src/debug.c @ 6648:adf49a9bb9a0
[gaim-migrate @ 7173]
dnsands@sandia.gov noticed that:
"With AIM and custom font faces, the attributes (bold,
italics) will not be rendered in the conversation
window. This is because gtk's "font" attribute wants
the Pango font name for its selection, which goes in
the form of:
Font_Name attribs size
The attribs are the bold, italic, or bold italic
modifiers. Without these there will be no bold or italics.
Using the "family" attribute instead will allow the
bold and italic modifiers to change the text style.
With the "font" attribute, it seems these aspects of
the style are specified there and immutable."
committer: Tailor Script <tailor@pidgin.im>
| author | Luke Schierer <lschiere@pidgin.im> |
|---|---|
| date | Fri, 29 Aug 2003 23:59:11 +0000 |
| parents | 565339a6eb86 |
| children | acc4376ce062 |
| rev | line source |
|---|---|
| 5212 | 1 /** |
| 2 * @file debug.c Debug API | |
| 3 * @ingroup core | |
| 4 * | |
| 5 * gaim | |
| 6 * | |
| 7 * Copyright (C) 2002-2003, Christian Hammond <chipx86@gnupdate.org> | |
|
6483
565339a6eb86
[gaim-migrate @ 6997]
Christian Hammond <chipx86@chipx86.com>
parents:
5212
diff
changeset
|
8 * |
| 5212 | 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, Boston, MA 02111-1307 USA | |
| 22 */ | |
| 23 #include "debug.h" | |
| 24 #include <stdlib.h> | |
| 25 #include <glib.h> | |
| 26 | |
| 27 static GaimDebugUiOps *debug_ui_ops = NULL; | |
| 28 | |
| 29 void | |
| 30 gaim_debug_vargs(GaimDebugLevel level, const char *category, | |
| 31 const char *format, va_list args) | |
| 32 { | |
| 33 GaimDebugUiOps *ops; | |
| 34 | |
| 35 g_return_if_fail(level != GAIM_DEBUG_ALL); | |
| 36 g_return_if_fail(format != NULL); | |
| 37 | |
| 38 ops = gaim_get_debug_ui_ops(); | |
| 39 | |
| 40 if (ops != NULL && ops->print != NULL) | |
| 41 ops->print(level, category, format, args); | |
| 42 } | |
| 43 | |
| 44 void | |
| 45 gaim_debug(GaimDebugLevel level, const char *category, | |
| 46 const char *format, ...) | |
| 47 { | |
| 48 va_list args; | |
| 49 | |
| 50 g_return_if_fail(level != GAIM_DEBUG_ALL); | |
| 51 g_return_if_fail(format != NULL); | |
| 52 | |
| 53 va_start(args, format); | |
| 54 gaim_debug_vargs(level, category, format, args); | |
| 55 va_end(args); | |
| 56 } | |
| 57 | |
| 58 void | |
| 59 gaim_set_debug_ui_ops(GaimDebugUiOps *ops) | |
| 60 { | |
| 61 debug_ui_ops = ops; | |
| 62 } | |
| 63 | |
| 64 GaimDebugUiOps * | |
| 65 gaim_get_debug_ui_ops(void) | |
| 66 { | |
| 67 return debug_ui_ops; | |
| 68 } |
