Sat, 29 Dec 2007 06:34:59 +0000
propagate from branch 'im.pidgin.pidgin' (head 5157ec7a2b6f7025fc0f6ed1f1093a725cfcf6f3)
to branch 'im.pidgin.pidgin.vv' (head defa6a4f45cc62c068c5225768278fcf586ac32c)
| 15231 | 1 | /* |
| 2 | * Conversation Colors | |
| 3 | * Copyright (C) 2006 | |
| 4 | * | |
| 5 | * This program is free software; you can redistribute it and/or | |
| 6 | * modify it under the terms of the GNU General Public License as | |
| 7 | * published by the Free Software Foundation; either version 2 of the | |
| 8 | * License, or (at your option) any later version. | |
| 9 | * | |
| 10 | * This program is distributed in the hope that it will be useful, but | |
| 11 | * WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
| 13 | * General Public License for more details. | |
| 14 | * | |
| 15 | * You should have received a copy of the GNU General Public License | |
| 16 | * along with this program; if not, write to the Free Software | |
|
19859
71d37b57eff2
The FSF changed its address a while ago; our files were out of date.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
16749
diff
changeset
|
17 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
|
71d37b57eff2
The FSF changed its address a while ago; our files were out of date.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
16749
diff
changeset
|
18 | * 02111-1301, USA. |
| 15231 | 19 | */ |
| 20 | #include "internal.h" | |
| 21 | ||
| 22 | #define PLUGIN_ID "gtk-plugin_pack-convcolors" | |
|
15418
bf287f742a5a
[gaim-migrate @ 18149]
Luke Schierer <lschiere@pidgin.im>
parents:
15231
diff
changeset
|
23 | #define PLUGIN_NAME N_("Conversation Colors") |
| 15231 | 24 | #define PLUGIN_STATIC_NAME "Conversation Colors" |
|
15418
bf287f742a5a
[gaim-migrate @ 18149]
Luke Schierer <lschiere@pidgin.im>
parents:
15231
diff
changeset
|
25 | #define PLUGIN_SUMMARY N_("Customize colors in the conversation window") |
|
bf287f742a5a
[gaim-migrate @ 18149]
Luke Schierer <lschiere@pidgin.im>
parents:
15231
diff
changeset
|
26 | #define PLUGIN_DESCRIPTION N_("Customize colors in the conversation window") |
| 15231 | 27 | #define PLUGIN_AUTHOR "Sadrul H Chowdhury <sadrul@users.sourceforge.net>" |
| 28 | ||
| 29 | /* System headers */ | |
| 30 | #include <gdk/gdk.h> | |
| 31 | #include <glib.h> | |
| 32 | #include <gtk/gtk.h> | |
| 33 | ||
| 15884 | 34 | /* Purple headers */ |
| 15231 | 35 | #include <gtkplugin.h> |
| 36 | #include <version.h> | |
| 37 | ||
| 38 | #include <conversation.h> | |
| 39 | #include <gtkconv.h> | |
| 40 | #include <gtkprefs.h> | |
| 41 | #include <gtkutils.h> | |
| 42 | ||
| 43 | #define PREF_PREFIX "/plugins/gtk/" PLUGIN_ID | |
| 44 | #define PREF_IGNORE PREF_PREFIX "/ignore_incoming" | |
| 45 | #define PREF_CHATS PREF_PREFIX "/chats" | |
| 46 | #define PREF_IMS PREF_PREFIX "/ims" | |
| 47 | ||
| 48 | #define PREF_SEND PREF_PREFIX "/send" | |
| 49 | #define PREF_SEND_C PREF_SEND "/color" | |
| 50 | #define PREF_SEND_F PREF_SEND "/format" | |
|
21789
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
51 | #define PREF_SEND_E PREF_SEND "/enabled" |
| 15231 | 52 | |
| 53 | #define PREF_RECV PREF_PREFIX "/recv" | |
| 54 | #define PREF_RECV_C PREF_RECV "/color" | |
| 55 | #define PREF_RECV_F PREF_RECV "/format" | |
|
21789
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
56 | #define PREF_RECV_E PREF_RECV "/enabled" |
| 15231 | 57 | |
| 58 | #define PREF_SYSTEM PREF_PREFIX "/system" | |
| 59 | #define PREF_SYSTEM_C PREF_SYSTEM "/color" | |
| 60 | #define PREF_SYSTEM_F PREF_SYSTEM "/format" | |
|
21789
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
61 | #define PREF_SYSTEM_E PREF_SYSTEM "/enabled" |
| 15231 | 62 | |
| 63 | #define PREF_ERROR PREF_PREFIX "/error" | |
| 64 | #define PREF_ERROR_C PREF_ERROR "/color" | |
| 65 | #define PREF_ERROR_F PREF_ERROR "/format" | |
|
21789
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
66 | #define PREF_ERROR_E PREF_ERROR "/enabled" |
| 15231 | 67 | |
| 68 | #define PREF_NICK PREF_PREFIX "/nick" | |
| 69 | #define PREF_NICK_C PREF_NICK "/color" | |
| 70 | #define PREF_NICK_F PREF_NICK "/format" | |
|
21789
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
71 | #define PREF_NICK_E PREF_NICK "/enabled" |
| 15231 | 72 | |
| 73 | enum | |
| 74 | { | |
| 75 | FONT_BOLD = 1 << 0, | |
| 76 | FONT_ITALIC = 1 << 1, | |
| 77 | FONT_UNDERLINE = 1 << 2 | |
| 78 | }; | |
| 79 | ||
| 80 | struct | |
| 81 | { | |
| 15884 | 82 | PurpleMessageFlags flag; |
| 15231 | 83 | char *prefix; |
| 84 | const char *text; | |
| 85 | } formats[] = | |
| 86 | { | |
| 15884 | 87 | {PURPLE_MESSAGE_ERROR, PREF_ERROR, N_("Error Messages")}, |
| 88 | {PURPLE_MESSAGE_NICK, PREF_NICK, N_("Highlighted Messages")}, | |
| 89 | {PURPLE_MESSAGE_SYSTEM, PREF_SYSTEM, N_("System Messages")}, | |
| 90 | {PURPLE_MESSAGE_SEND, PREF_SEND, N_("Sent Messages")}, | |
| 91 | {PURPLE_MESSAGE_RECV, PREF_RECV, N_("Received Messages")}, | |
| 15231 | 92 | {0, NULL, NULL} |
| 93 | }; | |
| 94 | ||
| 95 | static gboolean | |
| 15884 | 96 | displaying_msg(PurpleAccount *account, const char *who, char **displaying, |
| 97 | PurpleConversation *conv, PurpleMessageFlags flags) | |
| 15231 | 98 | { |
| 99 | int i; | |
| 100 | char tmp[128], *t; | |
| 101 | gboolean bold, italic, underline; | |
| 102 | int f; | |
| 103 | const char *color; | |
| 104 | ||
| 105 | for (i = 0; formats[i].prefix; i++) | |
| 106 | if (flags & formats[i].flag) | |
| 107 | break; | |
| 108 | ||
| 109 | if (!formats[i].prefix) | |
| 110 | return FALSE; | |
| 111 | ||
|
21789
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
112 | g_snprintf(tmp, sizeof(tmp), "%s/enabled", formats[i].prefix); |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
113 | |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
114 | if (!purple_prefs_get_bool(tmp) || |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
115 | (purple_conversation_get_type(conv) == PURPLE_CONV_TYPE_IM && |
| 15884 | 116 | !purple_prefs_get_bool(PREF_IMS)) || |
| 117 | (purple_conversation_get_type(conv) == PURPLE_CONV_TYPE_CHAT && | |
| 118 | !purple_prefs_get_bool(PREF_CHATS))) | |
| 15231 | 119 | return FALSE; |
| 120 | ||
| 121 | g_snprintf(tmp, sizeof(tmp), "%s/color", formats[i].prefix); | |
| 15884 | 122 | color = purple_prefs_get_string(tmp); |
| 15231 | 123 | |
| 124 | g_snprintf(tmp, sizeof(tmp), "%s/format", formats[i].prefix); | |
| 15884 | 125 | f = purple_prefs_get_int(tmp); |
| 15231 | 126 | bold = (f & FONT_BOLD); |
| 127 | italic = (f & FONT_ITALIC); | |
| 128 | underline = (f & FONT_UNDERLINE); | |
| 129 | ||
| 15884 | 130 | if (purple_prefs_get_bool(PREF_IGNORE)) |
| 15231 | 131 | { |
| 132 | t = *displaying; | |
| 15884 | 133 | *displaying = purple_markup_strip_html(t); |
| 15231 | 134 | g_free(t); |
|
15488
d3de0d1f569d
Fix bug #1645435. Thanks to Dennis Ristuccia (more commonly known as EvilDennisR) for helping me find the bug.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
15481
diff
changeset
|
135 | |
|
d3de0d1f569d
Fix bug #1645435. Thanks to Dennis Ristuccia (more commonly known as EvilDennisR) for helping me find the bug.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
15481
diff
changeset
|
136 | t = *displaying; |
|
d3de0d1f569d
Fix bug #1645435. Thanks to Dennis Ristuccia (more commonly known as EvilDennisR) for helping me find the bug.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
15481
diff
changeset
|
137 | *displaying = g_markup_escape_text(t, -1); |
|
d3de0d1f569d
Fix bug #1645435. Thanks to Dennis Ristuccia (more commonly known as EvilDennisR) for helping me find the bug.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
15481
diff
changeset
|
138 | g_free(t); |
|
d3de0d1f569d
Fix bug #1645435. Thanks to Dennis Ristuccia (more commonly known as EvilDennisR) for helping me find the bug.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
15481
diff
changeset
|
139 | |
|
15481
6e9da7b5bd5c
Fix convcolors to not unlinkify the links.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
15435
diff
changeset
|
140 | /* Restore the links */ |
|
6e9da7b5bd5c
Fix convcolors to not unlinkify the links.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
15435
diff
changeset
|
141 | t = *displaying; |
| 15884 | 142 | *displaying = purple_markup_linkify(t); |
|
15481
6e9da7b5bd5c
Fix convcolors to not unlinkify the links.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
15435
diff
changeset
|
143 | g_free(t); |
| 15231 | 144 | } |
| 145 | ||
| 146 | if (color && *color) | |
| 147 | { | |
| 148 | t = *displaying; | |
| 149 | *displaying = g_strdup_printf("<FONT COLOR=\"%s\">%s</FONT>", color, t); | |
| 150 | g_free(t); | |
| 151 | } | |
| 152 | ||
| 153 | t = *displaying; | |
| 154 | *displaying = g_strdup_printf("%s%s%s%s%s%s%s", | |
| 155 | bold ? "<B>" : "</B>", | |
| 156 | italic ? "<I>" : "</I>", | |
| 157 | underline ? "<U>" : "</U>", | |
| 158 | t, | |
| 159 | bold ? "</B>" : "<B>", | |
| 160 | italic ? "</I>" : "<I>", | |
| 161 | underline ? "</U>" : "<U>" | |
| 162 | ); | |
| 163 | g_free(t); | |
| 164 | ||
| 165 | return FALSE; | |
| 166 | } | |
| 167 | ||
| 168 | static gboolean | |
| 15884 | 169 | plugin_load(PurplePlugin *plugin) |
| 15231 | 170 | { |
| 15884 | 171 | purple_signal_connect(pidgin_conversations_get_handle(), |
| 15231 | 172 | "displaying-im-msg", plugin, |
| 15884 | 173 | PURPLE_CALLBACK(displaying_msg), NULL); |
| 174 | purple_signal_connect(pidgin_conversations_get_handle(), | |
| 15231 | 175 | "displaying-chat-msg", plugin, |
| 15884 | 176 | PURPLE_CALLBACK(displaying_msg), NULL); |
| 15231 | 177 | return TRUE; |
| 178 | } | |
| 179 | ||
| 180 | static gboolean | |
| 15884 | 181 | plugin_unload(PurplePlugin *plugin) |
| 15231 | 182 | { |
| 183 | return TRUE; | |
| 184 | } | |
| 185 | ||
| 15884 | 186 | /* Ripped from PurpleRC */ |
| 15231 | 187 | static void |
| 188 | color_response(GtkDialog *color_dialog, gint response, const char *data) | |
| 189 | { | |
| 190 | if (response == GTK_RESPONSE_OK) | |
| 191 | { | |
| 192 | GtkWidget *colorsel = GTK_COLOR_SELECTION_DIALOG(color_dialog)->colorsel; | |
| 193 | GdkColor color; | |
| 194 | char colorstr[8]; | |
| 195 | char tmp[128]; | |
| 196 | ||
| 197 | gtk_color_selection_get_current_color(GTK_COLOR_SELECTION(colorsel), &color); | |
| 198 | ||
| 199 | g_snprintf(colorstr, sizeof(colorstr), "#%02X%02X%02X", | |
| 200 | color.red/256, color.green/256, color.blue/256); | |
| 201 | ||
| 202 | g_snprintf(tmp, sizeof(tmp), "%s/color", data); | |
| 203 | ||
| 15884 | 204 | purple_prefs_set_string(tmp, colorstr); |
| 15231 | 205 | } |
| 206 | ||
| 207 | gtk_widget_destroy(GTK_WIDGET(color_dialog)); | |
| 208 | } | |
| 209 | ||
| 210 | static void | |
| 211 | set_color(GtkWidget *widget, const char *data) | |
| 212 | { | |
| 213 | GtkWidget *color_dialog = NULL; | |
| 214 | GdkColor color; | |
| 215 | char title[128]; | |
| 216 | char tmp[128]; | |
| 217 | ||
| 218 | g_snprintf(title, sizeof(title), _("Select Color for %s"), _(data)); | |
| 219 | color_dialog = gtk_color_selection_dialog_new(title); | |
| 220 | g_signal_connect(G_OBJECT(color_dialog), "response", | |
| 221 | G_CALLBACK(color_response), (gpointer)data); | |
| 222 | ||
| 223 | g_snprintf(tmp, sizeof(tmp), "%s/color", data); | |
| 15884 | 224 | if (gdk_color_parse(purple_prefs_get_string(tmp), &color)) |
| 15231 | 225 | { |
| 226 | gtk_color_selection_set_current_color( | |
| 227 | GTK_COLOR_SELECTION(GTK_COLOR_SELECTION_DIALOG(color_dialog)->colorsel), &color); | |
| 228 | } | |
| 229 | ||
| 230 | gtk_window_present(GTK_WINDOW(color_dialog)); | |
| 231 | } | |
| 232 | ||
| 233 | static void | |
|
21789
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
234 | toggle_enabled(GtkWidget *widget, gpointer data) |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
235 | { |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
236 | const char *prefix = (char *)data; |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
237 | gboolean e; |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
238 | char tmp[128]; |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
239 | |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
240 | g_snprintf(tmp, sizeof(tmp), "%s/enabled", prefix); |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
241 | e = purple_prefs_get_bool(tmp); |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
242 | purple_prefs_set_bool(tmp, !e); |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
243 | } |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
244 | |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
245 | static void |
| 15231 | 246 | toggle_something(const char *prefix, int format) |
| 247 | { | |
| 248 | int f; | |
| 249 | char tmp[128]; | |
|
21789
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
250 | |
| 15231 | 251 | g_snprintf(tmp, sizeof(tmp), "%s/format", prefix); |
| 15884 | 252 | f = purple_prefs_get_int(tmp); |
| 15231 | 253 | f ^= format; |
| 15884 | 254 | purple_prefs_set_int(tmp, f); |
| 15231 | 255 | } |
|
21789
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
256 | |
| 15231 | 257 | static void |
| 258 | toggle_bold(GtkWidget *widget, gpointer data) | |
| 259 | { | |
| 260 | toggle_something(data, FONT_BOLD); | |
| 261 | } | |
| 262 | ||
| 263 | static void | |
| 264 | toggle_italic(GtkWidget *widget, gpointer data) | |
| 265 | { | |
| 266 | toggle_something(data, FONT_ITALIC); | |
| 267 | } | |
| 268 | ||
| 269 | static void | |
| 270 | toggle_underline(GtkWidget *widget, gpointer data) | |
| 271 | { | |
| 272 | toggle_something(data, FONT_UNDERLINE); | |
| 273 | } | |
| 274 | ||
|
21789
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
275 | static void |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
276 | enable_toggled(const char *name, PurplePrefType type, gconstpointer val, gpointer data) |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
277 | { |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
278 | GtkWidget *widget = (GtkWidget *)data; |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
279 | |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
280 | gtk_widget_set_sensitive(widget, GPOINTER_TO_INT(val)); |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
281 | } |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
282 | |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
283 | static void |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
284 | disconnect_prefs_callbacks(GtkObject *object, gpointer data) |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
285 | { |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
286 | PurplePlugin *plugin = (PurplePlugin *)data; |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
287 | |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
288 | purple_prefs_disconnect_by_handle(plugin); |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
289 | } |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
290 | |
| 15231 | 291 | static GtkWidget * |
| 15884 | 292 | get_config_frame(PurplePlugin *plugin) |
| 15231 | 293 | { |
| 294 | GtkWidget *ret; | |
| 295 | GtkWidget *frame; | |
| 296 | int i; | |
| 297 | ||
| 15882 | 298 | ret = gtk_vbox_new(FALSE, PIDGIN_HIG_CAT_SPACE); |
| 299 | gtk_container_set_border_width(GTK_CONTAINER(ret), PIDGIN_HIG_BORDER); | |
| 15231 | 300 | |
| 301 | for (i = 0; formats[i].prefix; i++) | |
| 302 | { | |
| 303 | char tmp[128]; | |
|
21789
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
304 | char tmp2[128]; |
| 15231 | 305 | int f; |
|
21789
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
306 | gboolean e; |
| 15231 | 307 | GtkWidget *vbox, *hbox, *button; |
| 308 | ||
|
21789
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
309 | g_snprintf(tmp2, sizeof(tmp2), "%s/enabled", formats[i].prefix); |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
310 | e = purple_prefs_get_bool(tmp2); |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
311 | |
| 15231 | 312 | g_snprintf(tmp, sizeof(tmp), "%s/format", formats[i].prefix); |
| 15884 | 313 | f = purple_prefs_get_int(tmp); |
| 15231 | 314 | |
|
15562
8c8249fe5e3c
gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents:
15488
diff
changeset
|
315 | frame = pidgin_make_frame(ret, _(formats[i].text)); |
| 15882 | 316 | vbox = gtk_vbox_new(FALSE, PIDGIN_HIG_BOX_SPACE); |
| 15231 | 317 | gtk_box_pack_start(GTK_BOX(frame), vbox, FALSE, FALSE, 0); |
| 318 | ||
| 15882 | 319 | hbox = gtk_hbox_new(FALSE, PIDGIN_HIG_BOX_SPACE); |
| 15231 | 320 | gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0); |
| 321 | ||
|
21789
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
322 | button = gtk_check_button_new_with_label(_("Enabled")); |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
323 | gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0); |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
324 | if (e) |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
325 | gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(button), TRUE); |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
326 | g_signal_connect(G_OBJECT(button), "clicked", G_CALLBACK(toggle_enabled), |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
327 | formats[i].prefix); |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
328 | |
| 15568 | 329 | button = pidgin_pixbuf_button_from_stock(" Color", GTK_STOCK_SELECT_COLOR, |
| 330 | PIDGIN_BUTTON_HORIZONTAL); | |
| 15231 | 331 | gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0); |
| 332 | g_signal_connect(G_OBJECT(button), "clicked", G_CALLBACK(set_color), | |
| 333 | formats[i].prefix); | |
|
21789
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
334 | gtk_widget_set_sensitive(button, e); |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
335 | purple_prefs_connect_callback(plugin, tmp2, enable_toggled, button); |
| 15231 | 336 | |
| 337 | button = gtk_check_button_new_with_label(_("Bold")); | |
| 338 | gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
| 339 | if (f & FONT_BOLD) | |
| 340 | gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(button), TRUE); | |
| 341 | g_signal_connect(G_OBJECT(button), "clicked", G_CALLBACK(toggle_bold), | |
| 342 | formats[i].prefix); | |
|
21789
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
343 | gtk_widget_set_sensitive(button, e); |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
344 | purple_prefs_connect_callback(plugin, tmp2, enable_toggled, button); |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
345 | |
| 15231 | 346 | button = gtk_check_button_new_with_label(_("Italic")); |
| 347 | gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
| 348 | if (f & FONT_ITALIC) | |
| 349 | gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(button), TRUE); | |
| 350 | g_signal_connect(G_OBJECT(button), "clicked", G_CALLBACK(toggle_italic), | |
| 351 | formats[i].prefix); | |
|
21789
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
352 | gtk_widget_set_sensitive(button, e); |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
353 | purple_prefs_connect_callback(plugin, tmp2, enable_toggled, button); |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
354 | |
| 15231 | 355 | button = gtk_check_button_new_with_label(_("Underline")); |
| 356 | gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
| 357 | if (f & FONT_UNDERLINE) | |
| 358 | gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(button), TRUE); | |
| 359 | g_signal_connect(G_OBJECT(button), "clicked", | |
| 360 | G_CALLBACK(toggle_underline), formats[i].prefix); | |
|
21789
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
361 | gtk_widget_set_sensitive(button, e); |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
362 | purple_prefs_connect_callback(plugin, tmp2, enable_toggled, button); |
| 15231 | 363 | } |
| 364 | ||
|
21789
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
365 | g_signal_connect(GTK_OBJECT(ret), "destroy", G_CALLBACK(disconnect_prefs_callbacks), plugin); |
|
15562
8c8249fe5e3c
gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents:
15488
diff
changeset
|
366 | frame = pidgin_make_frame(ret, _("General")); |
|
8c8249fe5e3c
gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents:
15488
diff
changeset
|
367 | pidgin_prefs_checkbox(_("Ignore incoming format"), PREF_IGNORE, frame); |
|
8c8249fe5e3c
gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents:
15488
diff
changeset
|
368 | pidgin_prefs_checkbox(_("Apply in Chats"), PREF_CHATS, frame); |
|
8c8249fe5e3c
gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents:
15488
diff
changeset
|
369 | pidgin_prefs_checkbox(_("Apply in IMs"), PREF_IMS, frame); |
| 15231 | 370 | |
| 371 | gtk_widget_show_all(ret); | |
| 372 | return ret; | |
| 373 | } | |
| 374 | ||
|
15562
8c8249fe5e3c
gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents:
15488
diff
changeset
|
375 | static PidginPluginUiInfo ui_info = |
| 15231 | 376 | { |
| 377 | get_config_frame, | |
| 378 | 0, | |
|
16749
14a3fdc0aed7
Default plugins are done, for the release i'm not that concerned about plugins that do _NOT_ compile by default
Gary Kramlich <grim@reaperworld.com>
parents:
15884
diff
changeset
|
379 | |
|
14a3fdc0aed7
Default plugins are done, for the release i'm not that concerned about plugins that do _NOT_ compile by default
Gary Kramlich <grim@reaperworld.com>
parents:
15884
diff
changeset
|
380 | /* padding */ |
|
14a3fdc0aed7
Default plugins are done, for the release i'm not that concerned about plugins that do _NOT_ compile by default
Gary Kramlich <grim@reaperworld.com>
parents:
15884
diff
changeset
|
381 | NULL, |
|
14a3fdc0aed7
Default plugins are done, for the release i'm not that concerned about plugins that do _NOT_ compile by default
Gary Kramlich <grim@reaperworld.com>
parents:
15884
diff
changeset
|
382 | NULL, |
|
14a3fdc0aed7
Default plugins are done, for the release i'm not that concerned about plugins that do _NOT_ compile by default
Gary Kramlich <grim@reaperworld.com>
parents:
15884
diff
changeset
|
383 | NULL, |
|
14a3fdc0aed7
Default plugins are done, for the release i'm not that concerned about plugins that do _NOT_ compile by default
Gary Kramlich <grim@reaperworld.com>
parents:
15884
diff
changeset
|
384 | NULL |
| 15231 | 385 | }; |
| 386 | ||
| 15884 | 387 | static PurplePluginInfo info = |
| 15231 | 388 | { |
| 15884 | 389 | PURPLE_PLUGIN_MAGIC, /* Magic */ |
| 390 | PURPLE_MAJOR_VERSION, /* Purple Major Version */ | |
| 391 | PURPLE_MINOR_VERSION, /* Purple Minor Version */ | |
| 392 | PURPLE_PLUGIN_STANDARD, /* plugin type */ | |
|
15562
8c8249fe5e3c
gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents:
15488
diff
changeset
|
393 | PIDGIN_PLUGIN_TYPE, /* ui requirement */ |
| 15231 | 394 | 0, /* flags */ |
| 395 | NULL, /* dependencies */ | |
| 15884 | 396 | PURPLE_PRIORITY_DEFAULT, /* priority */ |
| 15231 | 397 | |
| 398 | PLUGIN_ID, /* plugin id */ | |
|
15418
bf287f742a5a
[gaim-migrate @ 18149]
Luke Schierer <lschiere@pidgin.im>
parents:
15231
diff
changeset
|
399 | PLUGIN_NAME, /* name */ |
|
20288
5ca925a094e2
applied changes from 03b709ec2a153e7e82719df0ba4635108bb1d3c6
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
19859
diff
changeset
|
400 | DISPLAY_VERSION, /* version */ |
|
15418
bf287f742a5a
[gaim-migrate @ 18149]
Luke Schierer <lschiere@pidgin.im>
parents:
15231
diff
changeset
|
401 | PLUGIN_SUMMARY, /* summary */ |
|
bf287f742a5a
[gaim-migrate @ 18149]
Luke Schierer <lschiere@pidgin.im>
parents:
15231
diff
changeset
|
402 | PLUGIN_DESCRIPTION, /* description */ |
| 15231 | 403 | PLUGIN_AUTHOR, /* author */ |
| 15884 | 404 | PURPLE_WEBSITE, /* website */ |
| 15231 | 405 | |
| 406 | plugin_load, /* load */ | |
| 407 | plugin_unload, /* unload */ | |
| 408 | NULL, /* destroy */ | |
| 409 | ||
| 410 | &ui_info, /* ui_info */ | |
| 411 | NULL, /* extra_info */ | |
| 412 | NULL, /* prefs_info */ | |
|
16749
14a3fdc0aed7
Default plugins are done, for the release i'm not that concerned about plugins that do _NOT_ compile by default
Gary Kramlich <grim@reaperworld.com>
parents:
15884
diff
changeset
|
413 | NULL, /* actions */ |
|
14a3fdc0aed7
Default plugins are done, for the release i'm not that concerned about plugins that do _NOT_ compile by default
Gary Kramlich <grim@reaperworld.com>
parents:
15884
diff
changeset
|
414 | |
|
14a3fdc0aed7
Default plugins are done, for the release i'm not that concerned about plugins that do _NOT_ compile by default
Gary Kramlich <grim@reaperworld.com>
parents:
15884
diff
changeset
|
415 | /* padding */ |
|
14a3fdc0aed7
Default plugins are done, for the release i'm not that concerned about plugins that do _NOT_ compile by default
Gary Kramlich <grim@reaperworld.com>
parents:
15884
diff
changeset
|
416 | NULL, |
|
14a3fdc0aed7
Default plugins are done, for the release i'm not that concerned about plugins that do _NOT_ compile by default
Gary Kramlich <grim@reaperworld.com>
parents:
15884
diff
changeset
|
417 | NULL, |
|
14a3fdc0aed7
Default plugins are done, for the release i'm not that concerned about plugins that do _NOT_ compile by default
Gary Kramlich <grim@reaperworld.com>
parents:
15884
diff
changeset
|
418 | NULL, |
|
14a3fdc0aed7
Default plugins are done, for the release i'm not that concerned about plugins that do _NOT_ compile by default
Gary Kramlich <grim@reaperworld.com>
parents:
15884
diff
changeset
|
419 | NULL |
| 15231 | 420 | }; |
| 421 | ||
| 422 | static void | |
| 15884 | 423 | init_plugin(PurplePlugin *plugin) |
| 15231 | 424 | { |
| 15884 | 425 | purple_prefs_add_none(PREF_PREFIX); |
| 15231 | 426 | |
| 15884 | 427 | purple_prefs_add_bool(PREF_IGNORE, TRUE); |
| 428 | purple_prefs_add_bool(PREF_CHATS, TRUE); | |
| 429 | purple_prefs_add_bool(PREF_IMS, TRUE); | |
| 15231 | 430 | |
| 15884 | 431 | purple_prefs_add_none(PREF_SEND); |
| 432 | purple_prefs_add_none(PREF_RECV); | |
| 433 | purple_prefs_add_none(PREF_SYSTEM); | |
| 434 | purple_prefs_add_none(PREF_ERROR); | |
| 435 | purple_prefs_add_none(PREF_NICK); | |
| 15231 | 436 | |
| 15884 | 437 | purple_prefs_add_string(PREF_SEND_C, "#909090"); |
| 438 | purple_prefs_add_string(PREF_RECV_C, "#000000"); | |
| 439 | purple_prefs_add_string(PREF_SYSTEM_C, "#50a050"); | |
| 440 | purple_prefs_add_string(PREF_ERROR_C, "#ff0000"); | |
| 441 | purple_prefs_add_string(PREF_NICK_C, "#0000dd"); | |
| 15231 | 442 | |
| 15884 | 443 | purple_prefs_add_int(PREF_SEND_F, 0); |
| 444 | purple_prefs_add_int(PREF_RECV_F, 0); | |
| 445 | purple_prefs_add_int(PREF_SYSTEM_F, FONT_ITALIC); | |
| 446 | purple_prefs_add_int(PREF_ERROR_F, FONT_BOLD | FONT_UNDERLINE); | |
| 447 | purple_prefs_add_int(PREF_NICK_F, FONT_BOLD); | |
|
21789
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
448 | |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
449 | purple_prefs_add_bool(PREF_SEND_E, TRUE); |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
450 | purple_prefs_add_bool(PREF_RECV_E, TRUE); |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
451 | purple_prefs_add_bool(PREF_SYSTEM_E, TRUE); |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
452 | purple_prefs_add_bool(PREF_ERROR_E, TRUE); |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
453 | purple_prefs_add_bool(PREF_NICK_E, TRUE); |
| 15231 | 454 | } |
| 455 | ||
| 15884 | 456 | PURPLE_INIT_PLUGIN(PLUGIN_STATIC_NAME, init_plugin, info) |