Sun, 08 Mar 2009 06:24:15 +0000
propagate from branch 'im.pidgin.pidgin' (head 168b66075e088f3baaa85ebba520e37d42aa3d0c)
to branch 'im.pidgin.soc.2008.yahoo' (head 9124a345ed3a0154f0c4f10fe2b2c67e9b49215f)
| 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") |
|
25633
feee0c7e503f
Fix some more mis-identified plugins, like 3b3526a0...
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
22178
diff
changeset
|
24 | #define PLUGIN_STATIC_NAME ConversationColors |
|
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 | ||
|
22178
02521e1b838e
Prpls seem to be sending '\n' (or '\r\n') for newlines, instead of '<br>' to the core. Fixes #4545.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
21789
diff
changeset
|
80 | static struct |
| 15231 | 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 | { |
|
22178
02521e1b838e
Prpls seem to be sending '\n' (or '\r\n') for newlines, instead of '<br>' to the core. Fixes #4545.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
21789
diff
changeset
|
132 | /* This seems to be necessary, especially for received messages. */ |
|
02521e1b838e
Prpls seem to be sending '\n' (or '\r\n') for newlines, instead of '<br>' to the core. Fixes #4545.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
21789
diff
changeset
|
133 | t = *displaying; |
|
02521e1b838e
Prpls seem to be sending '\n' (or '\r\n') for newlines, instead of '<br>' to the core. Fixes #4545.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
21789
diff
changeset
|
134 | *displaying = purple_strreplace(t, "\n", "<br>"); |
|
02521e1b838e
Prpls seem to be sending '\n' (or '\r\n') for newlines, instead of '<br>' to the core. Fixes #4545.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
21789
diff
changeset
|
135 | g_free(t); |
|
02521e1b838e
Prpls seem to be sending '\n' (or '\r\n') for newlines, instead of '<br>' to the core. Fixes #4545.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
21789
diff
changeset
|
136 | |
| 15231 | 137 | t = *displaying; |
| 15884 | 138 | *displaying = purple_markup_strip_html(t); |
| 15231 | 139 | 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
|
140 | |
|
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
|
141 | 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
|
142 | *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
|
143 | 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
|
144 | |
|
15481
6e9da7b5bd5c
Fix convcolors to not unlinkify the links.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
15435
diff
changeset
|
145 | /* Restore the links */ |
|
6e9da7b5bd5c
Fix convcolors to not unlinkify the links.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
15435
diff
changeset
|
146 | t = *displaying; |
| 15884 | 147 | *displaying = purple_markup_linkify(t); |
|
15481
6e9da7b5bd5c
Fix convcolors to not unlinkify the links.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
15435
diff
changeset
|
148 | g_free(t); |
| 15231 | 149 | } |
| 150 | ||
| 151 | if (color && *color) | |
| 152 | { | |
| 153 | t = *displaying; | |
| 154 | *displaying = g_strdup_printf("<FONT COLOR=\"%s\">%s</FONT>", color, t); | |
| 155 | g_free(t); | |
| 156 | } | |
| 157 | ||
| 158 | t = *displaying; | |
| 159 | *displaying = g_strdup_printf("%s%s%s%s%s%s%s", | |
| 160 | bold ? "<B>" : "</B>", | |
| 161 | italic ? "<I>" : "</I>", | |
| 162 | underline ? "<U>" : "</U>", | |
| 163 | t, | |
| 164 | bold ? "</B>" : "<B>", | |
| 165 | italic ? "</I>" : "<I>", | |
| 166 | underline ? "</U>" : "<U>" | |
| 167 | ); | |
| 168 | g_free(t); | |
| 169 | ||
| 170 | return FALSE; | |
| 171 | } | |
| 172 | ||
| 173 | static gboolean | |
| 15884 | 174 | plugin_load(PurplePlugin *plugin) |
| 15231 | 175 | { |
| 15884 | 176 | purple_signal_connect(pidgin_conversations_get_handle(), |
| 15231 | 177 | "displaying-im-msg", plugin, |
| 15884 | 178 | PURPLE_CALLBACK(displaying_msg), NULL); |
| 179 | purple_signal_connect(pidgin_conversations_get_handle(), | |
| 15231 | 180 | "displaying-chat-msg", plugin, |
| 15884 | 181 | PURPLE_CALLBACK(displaying_msg), NULL); |
| 15231 | 182 | return TRUE; |
| 183 | } | |
| 184 | ||
| 185 | static gboolean | |
| 15884 | 186 | plugin_unload(PurplePlugin *plugin) |
| 15231 | 187 | { |
| 188 | return TRUE; | |
| 189 | } | |
| 190 | ||
| 15884 | 191 | /* Ripped from PurpleRC */ |
| 15231 | 192 | static void |
| 193 | color_response(GtkDialog *color_dialog, gint response, const char *data) | |
| 194 | { | |
| 195 | if (response == GTK_RESPONSE_OK) | |
| 196 | { | |
| 197 | GtkWidget *colorsel = GTK_COLOR_SELECTION_DIALOG(color_dialog)->colorsel; | |
| 198 | GdkColor color; | |
| 199 | char colorstr[8]; | |
| 200 | char tmp[128]; | |
| 201 | ||
| 202 | gtk_color_selection_get_current_color(GTK_COLOR_SELECTION(colorsel), &color); | |
| 203 | ||
| 204 | g_snprintf(colorstr, sizeof(colorstr), "#%02X%02X%02X", | |
| 205 | color.red/256, color.green/256, color.blue/256); | |
| 206 | ||
| 207 | g_snprintf(tmp, sizeof(tmp), "%s/color", data); | |
| 208 | ||
| 15884 | 209 | purple_prefs_set_string(tmp, colorstr); |
| 15231 | 210 | } |
| 211 | ||
| 212 | gtk_widget_destroy(GTK_WIDGET(color_dialog)); | |
| 213 | } | |
| 214 | ||
| 215 | static void | |
| 216 | set_color(GtkWidget *widget, const char *data) | |
| 217 | { | |
| 218 | GtkWidget *color_dialog = NULL; | |
| 219 | GdkColor color; | |
| 220 | char title[128]; | |
| 221 | char tmp[128]; | |
| 222 | ||
| 223 | g_snprintf(title, sizeof(title), _("Select Color for %s"), _(data)); | |
| 224 | color_dialog = gtk_color_selection_dialog_new(title); | |
| 225 | g_signal_connect(G_OBJECT(color_dialog), "response", | |
| 226 | G_CALLBACK(color_response), (gpointer)data); | |
| 227 | ||
| 228 | g_snprintf(tmp, sizeof(tmp), "%s/color", data); | |
| 15884 | 229 | if (gdk_color_parse(purple_prefs_get_string(tmp), &color)) |
| 15231 | 230 | { |
| 231 | gtk_color_selection_set_current_color( | |
| 232 | GTK_COLOR_SELECTION(GTK_COLOR_SELECTION_DIALOG(color_dialog)->colorsel), &color); | |
| 233 | } | |
| 234 | ||
| 235 | gtk_window_present(GTK_WINDOW(color_dialog)); | |
| 236 | } | |
| 237 | ||
| 238 | 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
|
239 | 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
|
240 | { |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
241 | 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
|
242 | gboolean e; |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
243 | 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
|
244 | |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
245 | 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
|
246 | 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
|
247 | 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
|
248 | } |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
249 | |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
250 | static void |
| 15231 | 251 | toggle_something(const char *prefix, int format) |
| 252 | { | |
| 253 | int f; | |
| 254 | 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
|
255 | |
| 15231 | 256 | g_snprintf(tmp, sizeof(tmp), "%s/format", prefix); |
| 15884 | 257 | f = purple_prefs_get_int(tmp); |
| 15231 | 258 | f ^= format; |
| 15884 | 259 | purple_prefs_set_int(tmp, f); |
| 15231 | 260 | } |
|
21789
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
261 | |
| 15231 | 262 | static void |
| 263 | toggle_bold(GtkWidget *widget, gpointer data) | |
| 264 | { | |
| 265 | toggle_something(data, FONT_BOLD); | |
| 266 | } | |
| 267 | ||
| 268 | static void | |
| 269 | toggle_italic(GtkWidget *widget, gpointer data) | |
| 270 | { | |
| 271 | toggle_something(data, FONT_ITALIC); | |
| 272 | } | |
| 273 | ||
| 274 | static void | |
| 275 | toggle_underline(GtkWidget *widget, gpointer data) | |
| 276 | { | |
| 277 | toggle_something(data, FONT_UNDERLINE); | |
| 278 | } | |
| 279 | ||
|
21789
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
280 | static void |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
281 | 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
|
282 | { |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
283 | 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
|
284 | |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
285 | 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
|
286 | } |
|
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 | static void |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
289 | 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
|
290 | { |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
291 | 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
|
292 | |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
293 | 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
|
294 | } |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
295 | |
| 15231 | 296 | static GtkWidget * |
| 15884 | 297 | get_config_frame(PurplePlugin *plugin) |
| 15231 | 298 | { |
| 299 | GtkWidget *ret; | |
| 300 | GtkWidget *frame; | |
| 301 | int i; | |
| 302 | ||
| 15882 | 303 | ret = gtk_vbox_new(FALSE, PIDGIN_HIG_CAT_SPACE); |
| 304 | gtk_container_set_border_width(GTK_CONTAINER(ret), PIDGIN_HIG_BORDER); | |
| 15231 | 305 | |
| 306 | for (i = 0; formats[i].prefix; i++) | |
| 307 | { | |
| 308 | 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
|
309 | char tmp2[128]; |
| 15231 | 310 | 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
|
311 | gboolean e; |
| 15231 | 312 | GtkWidget *vbox, *hbox, *button; |
| 313 | ||
|
21789
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
314 | 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
|
315 | 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
|
316 | |
| 15231 | 317 | g_snprintf(tmp, sizeof(tmp), "%s/format", formats[i].prefix); |
| 15884 | 318 | f = purple_prefs_get_int(tmp); |
| 15231 | 319 | |
|
15562
8c8249fe5e3c
gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents:
15488
diff
changeset
|
320 | frame = pidgin_make_frame(ret, _(formats[i].text)); |
| 15882 | 321 | vbox = gtk_vbox_new(FALSE, PIDGIN_HIG_BOX_SPACE); |
| 15231 | 322 | gtk_box_pack_start(GTK_BOX(frame), vbox, FALSE, FALSE, 0); |
| 323 | ||
| 15882 | 324 | hbox = gtk_hbox_new(FALSE, PIDGIN_HIG_BOX_SPACE); |
| 15231 | 325 | gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0); |
| 326 | ||
|
21789
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
327 | 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
|
328 | 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
|
329 | if (e) |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
330 | 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
|
331 | 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
|
332 | 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
|
333 | |
| 15568 | 334 | button = pidgin_pixbuf_button_from_stock(" Color", GTK_STOCK_SELECT_COLOR, |
| 335 | PIDGIN_BUTTON_HORIZONTAL); | |
| 15231 | 336 | gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0); |
| 337 | g_signal_connect(G_OBJECT(button), "clicked", G_CALLBACK(set_color), | |
| 338 | 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
|
339 | 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
|
340 | purple_prefs_connect_callback(plugin, tmp2, enable_toggled, button); |
| 15231 | 341 | |
| 342 | button = gtk_check_button_new_with_label(_("Bold")); | |
| 343 | gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
| 344 | if (f & FONT_BOLD) | |
| 345 | gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(button), TRUE); | |
| 346 | g_signal_connect(G_OBJECT(button), "clicked", G_CALLBACK(toggle_bold), | |
| 347 | 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
|
348 | 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
|
349 | 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
|
350 | |
| 15231 | 351 | button = gtk_check_button_new_with_label(_("Italic")); |
| 352 | gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
| 353 | if (f & FONT_ITALIC) | |
| 354 | gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(button), TRUE); | |
| 355 | g_signal_connect(G_OBJECT(button), "clicked", G_CALLBACK(toggle_italic), | |
| 356 | 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
|
357 | 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
|
358 | 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
|
359 | |
| 15231 | 360 | button = gtk_check_button_new_with_label(_("Underline")); |
| 361 | gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
| 362 | if (f & FONT_UNDERLINE) | |
| 363 | gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(button), TRUE); | |
| 364 | g_signal_connect(G_OBJECT(button), "clicked", | |
| 365 | 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
|
366 | 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
|
367 | purple_prefs_connect_callback(plugin, tmp2, enable_toggled, button); |
| 15231 | 368 | } |
| 369 | ||
|
21789
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
370 | 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
|
371 | frame = pidgin_make_frame(ret, _("General")); |
|
8c8249fe5e3c
gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents:
15488
diff
changeset
|
372 | 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
|
373 | 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
|
374 | pidgin_prefs_checkbox(_("Apply in IMs"), PREF_IMS, frame); |
| 15231 | 375 | |
| 376 | gtk_widget_show_all(ret); | |
| 377 | return ret; | |
| 378 | } | |
| 379 | ||
|
15562
8c8249fe5e3c
gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents:
15488
diff
changeset
|
380 | static PidginPluginUiInfo ui_info = |
| 15231 | 381 | { |
| 382 | get_config_frame, | |
| 383 | 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
|
384 | |
|
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
|
385 | /* 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
|
386 | 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
|
387 | 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
|
388 | 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
|
389 | NULL |
| 15231 | 390 | }; |
| 391 | ||
| 15884 | 392 | static PurplePluginInfo info = |
| 15231 | 393 | { |
| 15884 | 394 | PURPLE_PLUGIN_MAGIC, /* Magic */ |
| 395 | PURPLE_MAJOR_VERSION, /* Purple Major Version */ | |
| 396 | PURPLE_MINOR_VERSION, /* Purple Minor Version */ | |
| 397 | PURPLE_PLUGIN_STANDARD, /* plugin type */ | |
|
15562
8c8249fe5e3c
gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents:
15488
diff
changeset
|
398 | PIDGIN_PLUGIN_TYPE, /* ui requirement */ |
| 15231 | 399 | 0, /* flags */ |
| 400 | NULL, /* dependencies */ | |
| 15884 | 401 | PURPLE_PRIORITY_DEFAULT, /* priority */ |
| 15231 | 402 | |
| 403 | PLUGIN_ID, /* plugin id */ | |
|
15418
bf287f742a5a
[gaim-migrate @ 18149]
Luke Schierer <lschiere@pidgin.im>
parents:
15231
diff
changeset
|
404 | PLUGIN_NAME, /* name */ |
|
20288
5ca925a094e2
applied changes from 03b709ec2a153e7e82719df0ba4635108bb1d3c6
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
19859
diff
changeset
|
405 | DISPLAY_VERSION, /* version */ |
|
15418
bf287f742a5a
[gaim-migrate @ 18149]
Luke Schierer <lschiere@pidgin.im>
parents:
15231
diff
changeset
|
406 | PLUGIN_SUMMARY, /* summary */ |
|
bf287f742a5a
[gaim-migrate @ 18149]
Luke Schierer <lschiere@pidgin.im>
parents:
15231
diff
changeset
|
407 | PLUGIN_DESCRIPTION, /* description */ |
| 15231 | 408 | PLUGIN_AUTHOR, /* author */ |
| 15884 | 409 | PURPLE_WEBSITE, /* website */ |
| 15231 | 410 | |
| 411 | plugin_load, /* load */ | |
| 412 | plugin_unload, /* unload */ | |
| 413 | NULL, /* destroy */ | |
| 414 | ||
| 415 | &ui_info, /* ui_info */ | |
| 416 | NULL, /* extra_info */ | |
| 417 | 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
|
418 | 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
|
419 | |
|
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
|
420 | /* 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
|
421 | 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
|
422 | 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
|
423 | 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
|
424 | NULL |
| 15231 | 425 | }; |
| 426 | ||
| 427 | static void | |
| 15884 | 428 | init_plugin(PurplePlugin *plugin) |
| 15231 | 429 | { |
| 15884 | 430 | purple_prefs_add_none(PREF_PREFIX); |
| 15231 | 431 | |
| 15884 | 432 | purple_prefs_add_bool(PREF_IGNORE, TRUE); |
| 433 | purple_prefs_add_bool(PREF_CHATS, TRUE); | |
| 434 | purple_prefs_add_bool(PREF_IMS, TRUE); | |
| 15231 | 435 | |
| 15884 | 436 | purple_prefs_add_none(PREF_SEND); |
| 437 | purple_prefs_add_none(PREF_RECV); | |
| 438 | purple_prefs_add_none(PREF_SYSTEM); | |
| 439 | purple_prefs_add_none(PREF_ERROR); | |
| 440 | purple_prefs_add_none(PREF_NICK); | |
| 15231 | 441 | |
| 15884 | 442 | purple_prefs_add_string(PREF_SEND_C, "#909090"); |
| 443 | purple_prefs_add_string(PREF_RECV_C, "#000000"); | |
| 444 | purple_prefs_add_string(PREF_SYSTEM_C, "#50a050"); | |
| 445 | purple_prefs_add_string(PREF_ERROR_C, "#ff0000"); | |
| 446 | purple_prefs_add_string(PREF_NICK_C, "#0000dd"); | |
| 15231 | 447 | |
| 15884 | 448 | purple_prefs_add_int(PREF_SEND_F, 0); |
| 449 | purple_prefs_add_int(PREF_RECV_F, 0); | |
| 450 | purple_prefs_add_int(PREF_SYSTEM_F, FONT_ITALIC); | |
| 451 | purple_prefs_add_int(PREF_ERROR_F, FONT_BOLD | FONT_UNDERLINE); | |
| 452 | 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
|
453 | |
|
1ba3811fdba4
Add an option per message type to enable (/disable) the overriding of
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
20288
diff
changeset
|
454 | 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
|
455 | 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
|
456 | 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
|
457 | 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
|
458 | purple_prefs_add_bool(PREF_NICK_E, TRUE); |
| 15231 | 459 | } |
| 460 | ||
| 15884 | 461 | PURPLE_INIT_PLUGIN(PLUGIN_STATIC_NAME, init_plugin, info) |