comparison src/gaimrc.c @ 8458:9773e3f3ec7a

[gaim-migrate @ 9188] who in their right mind would use strike through as a default font option? and it didn't work right anyway. committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Tue, 16 Mar 2004 20:24:37 +0000
parents 35f69749b226
children 56360561af5e
comparison
equal deleted inserted replaced
8457:daeeb96cdf8f 8458:9773e3f3ec7a
47 #define MAX_VALUES 10 47 #define MAX_VALUES 10
48 48
49 #define OPT_FONT_BOLD 0x00000001 49 #define OPT_FONT_BOLD 0x00000001
50 #define OPT_FONT_ITALIC 0x00000002 50 #define OPT_FONT_ITALIC 0x00000002
51 #define OPT_FONT_UNDERLINE 0x00000008 51 #define OPT_FONT_UNDERLINE 0x00000008
52 #define OPT_FONT_STRIKE 0x00000010 52 /* We're going to ignore strikethough */
53 #define OPT_FONT_FACE 0x00000020 53 #define OPT_FONT_FACE 0x00000020
54 #define OPT_FONT_FGCOL 0x00000040 54 #define OPT_FONT_FGCOL 0x00000040
55 #define OPT_FONT_BGCOL 0x00000080 55 #define OPT_FONT_BGCOL 0x00000080
56 #define OPT_FONT_SIZE 0x00000100 56 #define OPT_FONT_SIZE 0x00000100
57 57
1100 font_options & OPT_FONT_BOLD); 1100 font_options & OPT_FONT_BOLD);
1101 gaim_prefs_set_bool("/gaim/gtk/conversations/send_italic", 1101 gaim_prefs_set_bool("/gaim/gtk/conversations/send_italic",
1102 font_options & OPT_FONT_ITALIC); 1102 font_options & OPT_FONT_ITALIC);
1103 gaim_prefs_set_bool("/gaim/gtk/conversations/send_underline", 1103 gaim_prefs_set_bool("/gaim/gtk/conversations/send_underline",
1104 font_options & OPT_FONT_UNDERLINE); 1104 font_options & OPT_FONT_UNDERLINE);
1105 gaim_prefs_set_bool("/gaim/gtk/conversations/send_strikethrough",
1106 font_options & OPT_FONT_STRIKE);
1107 gaim_prefs_set_bool("/gaim/gtk/conversations/use_custom_font", 1105 gaim_prefs_set_bool("/gaim/gtk/conversations/use_custom_font",
1108 font_options & OPT_FONT_FACE); 1106 font_options & OPT_FONT_FACE);
1109 gaim_prefs_set_bool("/gaim/gtk/conversations/use_custom_size", 1107 gaim_prefs_set_bool("/gaim/gtk/conversations/use_custom_size",
1110 font_options & OPT_FONT_SIZE); 1108 font_options & OPT_FONT_SIZE);
1111 gaim_prefs_set_bool("/gaim/gtk/conversations/use_custom_fgcolor", 1109 gaim_prefs_set_bool("/gaim/gtk/conversations/use_custom_fgcolor",