Wed, 18 Oct 2006 03:27:43 +0000
[gaim-migrate @ 17508]
docklet conversion fixes from charkins. Thanks
committer: Sean Egan <seanegan@pidgin.im>
| 14743 | 1 | /* |
| 2 | * System tray icon (aka docklet) plugin for Gaim | |
| 3 | * | |
| 4 | * Copyright (C) 2002-3 Robert McQueen <robot101@debian.org> | |
| 5 | * Copyright (C) 2003 Herman Bloggs <hermanator12002@yahoo.com> | |
| 6 | * Inspired by a similar plugin by: | |
| 7 | * John (J5) Palmieri <johnp@martianrock.com> | |
| 8 | * | |
| 9 | * This program is free software; you can redistribute it and/or | |
| 10 | * modify it under the terms of the GNU General Public License as | |
| 11 | * published by the Free Software Foundation; either version 2 of the | |
| 12 | * License, or (at your option) any later version. | |
| 13 | * | |
| 14 | * This program is distributed in the hope that it will be useful, but | |
| 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
| 17 | * 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 | |
| 22 | * 02111-1307, USA. | |
| 23 | */ | |
| 24 | #include "internal.h" | |
| 25 | #include "gtkgaim.h" | |
| 26 | ||
| 27 | #include "core.h" | |
| 28 | #include "conversation.h" | |
| 29 | #include "debug.h" | |
| 30 | #include "prefs.h" | |
| 31 | #include "signals.h" | |
| 32 | #include "sound.h" | |
| 33 | ||
| 34 | #include "gtkaccount.h" | |
| 35 | #include "gtkblist.h" | |
| 36 | #include "gtkconv.h" | |
| 37 | #include "gtkplugin.h" | |
| 38 | #include "gtkprefs.h" | |
| 39 | #include "gtksavedstatuses.h" | |
| 40 | #include "gtksound.h" | |
| 41 | #include "gtkutils.h" | |
| 42 | #include "gaimstock.h" | |
| 43 | #include "gtkdocklet.h" | |
| 44 | #include "gtkdialogs.h" | |
| 45 | ||
| 46 | #ifndef DOCKLET_TOOLTIP_LINE_LIMIT | |
| 47 | #define DOCKLET_TOOLTIP_LINE_LIMIT 5 | |
| 48 | #endif | |
| 49 | ||
| 50 | /* globals */ | |
| 51 | static struct docklet_ui_ops *ui_ops = NULL; | |
| 52 | static DockletStatus status = DOCKLET_STATUS_OFFLINE; | |
| 53 | static gboolean enable_join_chat = FALSE; | |
| 54 | static guint docklet_blinking_timer = 0; | |
| 55 | static gboolean visibility_manager = FALSE; | |
| 56 | ||
| 57 | /************************************************************************** | |
| 58 | * docklet status and utility functions | |
| 59 | **************************************************************************/ | |
| 60 | static gboolean | |
| 61 | docklet_blink_icon() | |
| 62 | { | |
| 63 | static gboolean blinked = FALSE; | |
| 64 | gboolean ret = FALSE; /* by default, don't keep blinking */ | |
| 65 | ||
| 66 | blinked = !blinked; | |
| 67 | ||
| 68 | switch (status) { | |
| 69 | case DOCKLET_STATUS_ONLINE_PENDING: | |
| 70 | case DOCKLET_STATUS_AWAY_PENDING: | |
| 71 | if (blinked) { | |
| 72 | if (ui_ops && ui_ops->blank_icon) | |
| 73 | ui_ops->blank_icon(); | |
| 74 | } else { | |
| 75 | if (ui_ops && ui_ops->update_icon) | |
| 76 | ui_ops->update_icon(status); | |
| 77 | } | |
| 78 | ret = TRUE; /* keep blinking */ | |
| 79 | break; | |
| 80 | default: | |
| 81 | docklet_blinking_timer = 0; | |
| 82 | blinked = FALSE; | |
| 83 | break; | |
| 84 | } | |
| 85 | ||
| 86 | return ret; | |
| 87 | } | |
| 88 | ||
| 89 | static GList * | |
| 90 | get_pending_list(guint max) | |
| 91 | { | |
| 92 | GList *l_im = NULL; | |
| 93 | GList *l_chat = NULL; | |
| 94 | ||
|
14813
c24dda7fb69e
[gaim-migrate @ 17508]
Casey Harkins <charkins@pidgin.im>
parents:
14745
diff
changeset
|
95 | l_im = gaim_gtk_conversations_find_unseen_list(GAIM_CONV_TYPE_IM, |
|
c24dda7fb69e
[gaim-migrate @ 17508]
Casey Harkins <charkins@pidgin.im>
parents:
14745
diff
changeset
|
96 | GAIM_UNSEEN_TEXT, |
|
c24dda7fb69e
[gaim-migrate @ 17508]
Casey Harkins <charkins@pidgin.im>
parents:
14745
diff
changeset
|
97 | FALSE, max); |
| 14743 | 98 | |
|
14813
c24dda7fb69e
[gaim-migrate @ 17508]
Casey Harkins <charkins@pidgin.im>
parents:
14745
diff
changeset
|
99 | l_chat = gaim_gtk_conversations_find_unseen_list(GAIM_CONV_TYPE_CHAT, |
|
c24dda7fb69e
[gaim-migrate @ 17508]
Casey Harkins <charkins@pidgin.im>
parents:
14745
diff
changeset
|
100 | GAIM_UNSEEN_NICK, |
|
c24dda7fb69e
[gaim-migrate @ 17508]
Casey Harkins <charkins@pidgin.im>
parents:
14745
diff
changeset
|
101 | FALSE, max); |
| 14743 | 102 | |
| 103 | if (l_im != NULL && l_chat != NULL) | |
| 104 | return g_list_concat(l_im, l_chat); | |
| 105 | else if (l_im != NULL) | |
| 106 | return l_im; | |
| 107 | else | |
| 108 | return l_chat; | |
| 109 | } | |
| 110 | ||
| 111 | static gboolean | |
| 112 | docklet_update_status() | |
| 113 | { | |
| 114 | GList *convs; | |
| 115 | GList *l; | |
| 116 | int count; | |
| 117 | DockletStatus newstatus = DOCKLET_STATUS_OFFLINE; | |
| 118 | gboolean pending = FALSE; | |
| 119 | ||
| 120 | /* determine if any ims have unseen messages */ | |
| 121 | convs = get_pending_list(DOCKLET_TOOLTIP_LINE_LIMIT); | |
| 122 | ||
| 123 | if (convs != NULL) { | |
| 124 | pending = TRUE; | |
| 125 | ||
| 126 | /* set tooltip if messages are pending */ | |
| 127 | if (ui_ops->set_tooltip) { | |
| 128 | GString *tooltip_text = g_string_new(""); | |
| 129 | for (l = convs, count = 0 ; l != NULL ; l = l->next, count++) { | |
| 130 | if (GAIM_IS_GTK_CONVERSATION(l->data)) { | |
| 131 | GaimGtkConversation *gtkconv = GAIM_GTK_CONVERSATION((GaimConversation *)l->data); | |
| 132 | if (count == DOCKLET_TOOLTIP_LINE_LIMIT - 1) | |
| 133 | g_string_append(tooltip_text, _("Right-click for more unread messages...\n")); | |
| 134 | else | |
| 135 | g_string_append_printf(tooltip_text, | |
| 136 | ngettext("%d unread message from %s\n", "%d unread messages from %s\n", gtkconv->unseen_count), | |
| 137 | gtkconv->unseen_count, | |
| 138 | gtk_label_get_text(GTK_LABEL(gtkconv->tab_label))); | |
| 139 | } | |
| 140 | } | |
| 141 | ||
| 142 | /* get rid of the last newline */ | |
| 143 | if (tooltip_text->len > 0) | |
| 144 | tooltip_text = g_string_truncate(tooltip_text, tooltip_text->len - 1); | |
| 145 | ||
| 146 | ui_ops->set_tooltip(tooltip_text->str); | |
| 147 | ||
| 148 | g_string_free(tooltip_text, TRUE); | |
| 149 | } | |
| 150 | ||
| 151 | g_list_free(convs); | |
| 152 | ||
| 153 | } else if (ui_ops->set_tooltip) { | |
| 154 | ui_ops->set_tooltip(NULL); | |
| 155 | } | |
| 156 | ||
| 157 | /* iterate through all accounts and determine which | |
| 158 | * status to show in the tray icon based on the following | |
| 159 | * ranks (highest encountered rank will be used): | |
| 160 | * | |
| 161 | * 1) OFFLINE | |
| 162 | * 2) ONLINE | |
| 163 | * 3) ONLINE_PENDING | |
| 164 | * 4) AWAY | |
| 165 | * 5) AWAY_PENDING | |
| 166 | * 6) CONNECTING | |
| 167 | */ | |
| 168 | for(l = gaim_accounts_get_all(); l != NULL; l = l->next) { | |
| 169 | DockletStatus tmpstatus = DOCKLET_STATUS_OFFLINE; | |
| 170 | ||
| 171 | GaimAccount *account = (GaimAccount*)l->data; | |
| 172 | GaimStatus *account_status; | |
| 173 | ||
| 174 | if (!gaim_account_get_enabled(account, GAIM_GTK_UI)) | |
| 175 | continue; | |
| 176 | ||
| 177 | if (gaim_account_is_disconnected(account)) | |
| 178 | continue; | |
| 179 | ||
| 180 | account_status = gaim_account_get_active_status(account); | |
| 181 | ||
| 182 | if (gaim_account_is_connecting(account)) { | |
| 183 | tmpstatus = DOCKLET_STATUS_CONNECTING; | |
| 184 | } else if (gaim_status_is_online(account_status)) { | |
| 185 | if (!gaim_status_is_available(account_status)) { | |
| 186 | if (pending) | |
| 187 | tmpstatus = DOCKLET_STATUS_AWAY_PENDING; | |
| 188 | else | |
| 189 | tmpstatus = DOCKLET_STATUS_AWAY; | |
| 190 | } | |
| 191 | else { | |
| 192 | if (pending) | |
| 193 | tmpstatus = DOCKLET_STATUS_ONLINE_PENDING; | |
| 194 | else | |
| 195 | tmpstatus = DOCKLET_STATUS_ONLINE; | |
| 196 | } | |
| 197 | } | |
| 198 | ||
| 199 | if (tmpstatus > newstatus) | |
| 200 | newstatus = tmpstatus; | |
| 201 | } | |
| 202 | ||
| 203 | /* update the icon if we changed status */ | |
| 204 | if (status != newstatus) { | |
| 205 | status = newstatus; | |
| 206 | ||
| 207 | if (ui_ops && ui_ops->update_icon) | |
| 208 | ui_ops->update_icon(status); | |
| 209 | ||
| 210 | /* and schedule the blinker function if messages are pending */ | |
| 211 | if ((status == DOCKLET_STATUS_ONLINE_PENDING | |
| 212 | || status == DOCKLET_STATUS_AWAY_PENDING) | |
| 213 | && docklet_blinking_timer == 0) { | |
| 214 | docklet_blinking_timer = g_timeout_add(500, docklet_blink_icon, NULL); | |
| 215 | } | |
| 216 | } | |
| 217 | ||
| 218 | return FALSE; /* for when we're called by the glib idle handler */ | |
| 219 | } | |
| 220 | ||
| 221 | static gboolean | |
| 222 | online_account_supports_chat() | |
| 223 | { | |
| 224 | GList *c = NULL; | |
| 225 | c = gaim_connections_get_all(); | |
| 226 | ||
| 227 | while(c != NULL) { | |
| 228 | GaimConnection *gc = c->data; | |
| 229 | GaimPluginProtocolInfo *prpl_info = GAIM_PLUGIN_PROTOCOL_INFO(gc->prpl); | |
| 230 | if (prpl_info != NULL && prpl_info->chat_info != NULL) | |
| 231 | return TRUE; | |
| 232 | c = c->next; | |
| 233 | } | |
| 234 | ||
| 235 | return FALSE; | |
| 236 | } | |
| 237 | ||
| 238 | /************************************************************************** | |
| 239 | * callbacks and signal handlers | |
| 240 | **************************************************************************/ | |
|
14745
d43256e1e6fd
[gaim-migrate @ 17435]
Daniel Atallah <datallah@pidgin.im>
parents:
14743
diff
changeset
|
241 | #if 0 |
| 14743 | 242 | static void |
| 243 | gaim_quit_cb() | |
| 244 | { | |
| 245 | /* TODO: confirm quit while pending */ | |
| 246 | } | |
|
14745
d43256e1e6fd
[gaim-migrate @ 17435]
Daniel Atallah <datallah@pidgin.im>
parents:
14743
diff
changeset
|
247 | #endif |
| 14743 | 248 | |
| 249 | static void | |
| 250 | docklet_update_status_cb(void *data) | |
| 251 | { | |
| 252 | docklet_update_status(); | |
| 253 | } | |
| 254 | ||
| 255 | static void | |
| 256 | docklet_conv_updated_cb(GaimConversation *conv, GaimConvUpdateType type) | |
| 257 | { | |
| 258 | if (type == GAIM_CONV_UPDATE_UNSEEN) | |
| 259 | docklet_update_status(); | |
| 260 | } | |
| 261 | ||
| 262 | static void | |
| 263 | docklet_signed_on_cb(GaimConnection *gc) | |
| 264 | { | |
| 265 | if (!enable_join_chat) { | |
| 266 | if (GAIM_PLUGIN_PROTOCOL_INFO(gc->prpl)->chat_info != NULL) | |
| 267 | enable_join_chat = TRUE; | |
| 268 | } | |
| 269 | docklet_update_status(); | |
| 270 | } | |
| 271 | ||
| 272 | static void | |
| 273 | docklet_signed_off_cb(GaimConnection *gc) | |
| 274 | { | |
| 275 | if (enable_join_chat) { | |
| 276 | if (GAIM_PLUGIN_PROTOCOL_INFO(gc->prpl)->chat_info != NULL) | |
| 277 | enable_join_chat = online_account_supports_chat(); | |
| 278 | } | |
| 279 | docklet_update_status(); | |
| 280 | } | |
| 281 | ||
| 282 | /************************************************************************** | |
| 283 | * docklet pop-up menu | |
| 284 | **************************************************************************/ | |
| 285 | static void | |
| 286 | docklet_toggle_mute(GtkWidget *toggle, void *data) | |
| 287 | { | |
| 288 | gaim_prefs_set_bool("/gaim/gtk/sound/mute", GTK_CHECK_MENU_ITEM(toggle)->active); | |
| 289 | } | |
| 290 | ||
| 291 | static void | |
| 292 | docklet_toggle_blist(GtkWidget *toggle, void *data) | |
| 293 | { | |
| 294 | gaim_blist_set_visible(GTK_CHECK_MENU_ITEM(toggle)->active); | |
| 295 | } | |
| 296 | ||
| 297 | #ifdef _WIN32 | |
| 298 | /* This is a workaround for a bug in windows GTK+. Clicking outside of the | |
| 299 | menu does not get rid of it, so instead we get rid of it as soon as the | |
| 300 | pointer leaves the menu. */ | |
| 301 | static gboolean | |
| 302 | hide_docklet_menu(gpointer data) | |
| 303 | { | |
| 304 | if (data != NULL) { | |
| 305 | gtk_menu_popdown(GTK_MENU(data)); | |
| 306 | } | |
| 307 | return FALSE; | |
| 308 | } | |
| 309 | ||
| 310 | static gboolean | |
| 311 | docklet_menu_leave_enter(GtkWidget *menu, GdkEventCrossing *event, void *data) | |
| 312 | { | |
| 313 | static guint hide_docklet_timer = 0; | |
| 314 | if (event->type == GDK_LEAVE_NOTIFY && event->detail == GDK_NOTIFY_ANCESTOR) { | |
| 315 | gaim_debug(GAIM_DEBUG_INFO, "docklet", "menu leave-notify-event\n"); | |
| 316 | /* Add some slop so that the menu doesn't annoyingly disappear when mousing around */ | |
| 317 | if (hide_docklet_timer == 0) { | |
| 318 | hide_docklet_timer = gaim_timeout_add(500, | |
| 319 | hide_docklet_menu, menu); | |
| 320 | } | |
| 321 | } else if (event->type == GDK_ENTER_NOTIFY && event->detail == GDK_NOTIFY_ANCESTOR) { | |
| 322 | gaim_debug(GAIM_DEBUG_INFO, "docklet", "menu enter-notify-event\n"); | |
| 323 | if (hide_docklet_timer != 0) { | |
| 324 | /* Cancel the hiding if we reenter */ | |
| 325 | ||
| 326 | gaim_timeout_remove(hide_docklet_timer); | |
| 327 | hide_docklet_timer = 0; | |
| 328 | } | |
| 329 | } | |
| 330 | return FALSE; | |
| 331 | } | |
| 332 | #endif | |
| 333 | ||
| 334 | static void | |
| 335 | show_custom_status_editor_cb(GtkMenuItem *menuitem, gpointer user_data) | |
| 336 | { | |
| 337 | GaimSavedStatus *saved_status; | |
| 338 | saved_status = gaim_savedstatus_get_current(); | |
| 339 | gaim_gtk_status_editor_show(FALSE, | |
| 340 | gaim_savedstatus_is_transient(saved_status) ? saved_status : NULL); | |
| 341 | } | |
| 342 | ||
| 343 | static void | |
| 344 | activate_status_primitive_cb(GtkMenuItem *menuitem, gpointer user_data) | |
| 345 | { | |
| 346 | GaimStatusPrimitive primitive; | |
| 347 | GaimSavedStatus *saved_status; | |
| 348 | ||
| 349 | primitive = GPOINTER_TO_INT(user_data); | |
| 350 | ||
| 351 | /* Try to lookup an already existing transient saved status */ | |
| 352 | saved_status = gaim_savedstatus_find_transient_by_type_and_message(primitive, NULL); | |
| 353 | ||
| 354 | /* Create a new transient saved status if we weren't able to find one */ | |
| 355 | if (saved_status == NULL) | |
| 356 | saved_status = gaim_savedstatus_new(NULL, primitive); | |
| 357 | ||
| 358 | /* Set the status for each account */ | |
| 359 | gaim_savedstatus_activate(saved_status); | |
| 360 | } | |
| 361 | ||
| 362 | static void | |
| 363 | activate_saved_status_cb(GtkMenuItem *menuitem, gpointer user_data) | |
| 364 | { | |
| 365 | time_t creation_time; | |
| 366 | GaimSavedStatus *saved_status; | |
| 367 | ||
| 368 | creation_time = GPOINTER_TO_INT(user_data); | |
| 369 | saved_status = gaim_savedstatus_find_by_creation_time(creation_time); | |
| 370 | if (saved_status != NULL) | |
| 371 | gaim_savedstatus_activate(saved_status); | |
| 372 | } | |
| 373 | ||
| 374 | static GtkWidget * | |
| 375 | new_menu_item_with_gaim_icon(GtkWidget *menu, const char *str, GaimStatusPrimitive primitive, GtkSignalFunc sf, gpointer data, guint accel_key, guint accel_mods, char *mod) | |
| 376 | { | |
| 377 | GtkWidget *menuitem; | |
| 378 | GdkPixbuf *pixbuf; | |
| 379 | GtkWidget *image; | |
| 380 | ||
| 381 | menuitem = gtk_image_menu_item_new_with_mnemonic(str); | |
| 382 | ||
| 383 | if (menu) | |
| 384 | gtk_menu_shell_append(GTK_MENU_SHELL(menu), menuitem); | |
| 385 | ||
| 386 | if (sf) | |
| 387 | g_signal_connect(G_OBJECT(menuitem), "activate", sf, data); | |
| 388 | ||
| 389 | pixbuf = gaim_gtk_create_gaim_icon_with_status(primitive, 0.5); | |
| 390 | image = gtk_image_new_from_pixbuf(pixbuf); | |
| 391 | g_object_unref(pixbuf); | |
| 392 | gtk_image_menu_item_set_image(GTK_IMAGE_MENU_ITEM(menuitem), image); | |
| 393 | ||
| 394 | gtk_widget_show_all(menuitem); | |
| 395 | ||
| 396 | return menuitem; | |
| 397 | } | |
| 398 | ||
| 399 | static GtkWidget * | |
| 400 | docklet_status_submenu() | |
| 401 | { | |
| 402 | GtkWidget *submenu, *menuitem; | |
| 403 | GList *popular_statuses, *cur; | |
| 404 | ||
| 405 | submenu = gtk_menu_new(); | |
| 406 | menuitem = gtk_menu_item_new_with_label(_("Change Status")); | |
| 407 | gtk_menu_item_set_submenu(GTK_MENU_ITEM(menuitem), submenu); | |
| 408 | ||
| 409 | new_menu_item_with_gaim_icon(submenu, _("Available"), | |
| 410 | GAIM_STATUS_AVAILABLE, G_CALLBACK(activate_status_primitive_cb), | |
| 411 | GINT_TO_POINTER(GAIM_STATUS_AVAILABLE), 0, 0, NULL); | |
| 412 | ||
| 413 | new_menu_item_with_gaim_icon(submenu, _("Away"), | |
| 414 | GAIM_STATUS_AWAY, G_CALLBACK(activate_status_primitive_cb), | |
| 415 | GINT_TO_POINTER(GAIM_STATUS_AWAY), 0, 0, NULL); | |
| 416 | ||
| 417 | new_menu_item_with_gaim_icon(submenu, _("Invisible"), | |
| 418 | GAIM_STATUS_INVISIBLE, G_CALLBACK(activate_status_primitive_cb), | |
| 419 | GINT_TO_POINTER(GAIM_STATUS_INVISIBLE), 0, 0, NULL); | |
| 420 | ||
| 421 | new_menu_item_with_gaim_icon(submenu, _("Offline"), | |
| 422 | GAIM_STATUS_OFFLINE, G_CALLBACK(activate_status_primitive_cb), | |
| 423 | GINT_TO_POINTER(GAIM_STATUS_OFFLINE), 0, 0, NULL); | |
| 424 | ||
| 425 | popular_statuses = gaim_savedstatuses_get_popular(6); | |
| 426 | if (popular_statuses != NULL) | |
| 427 | gaim_separator(submenu); | |
| 428 | for (cur = popular_statuses; cur != NULL; cur = cur->next) | |
| 429 | { | |
| 430 | GaimSavedStatus *saved_status = cur->data; | |
| 431 | time_t creation_time = gaim_savedstatus_get_creation_time(saved_status); | |
| 432 | new_menu_item_with_gaim_icon(submenu, | |
| 433 | gaim_savedstatus_get_title(saved_status), | |
| 434 | gaim_savedstatus_get_type(saved_status), G_CALLBACK(activate_saved_status_cb), | |
| 435 | GINT_TO_POINTER(creation_time), 0, 0, NULL); | |
| 436 | } | |
| 437 | g_list_free(popular_statuses); | |
| 438 | ||
| 439 | gaim_separator(submenu); | |
| 440 | ||
| 441 | new_menu_item_with_gaim_icon(submenu, _("New..."), GAIM_STATUS_AVAILABLE, G_CALLBACK(show_custom_status_editor_cb), NULL, 0, 0, NULL); | |
| 442 | new_menu_item_with_gaim_icon(submenu, _("Saved..."), GAIM_STATUS_AVAILABLE, G_CALLBACK(gaim_gtk_status_window_show), NULL, 0, 0, NULL); | |
| 443 | ||
| 444 | return menuitem; | |
| 445 | } | |
| 446 | ||
| 447 | static void | |
| 448 | docklet_menu() { | |
| 449 | static GtkWidget *menu = NULL; | |
| 450 | GtkWidget *menuitem; | |
| 451 | ||
| 452 | if (menu) { | |
| 453 | gtk_widget_destroy(menu); | |
| 454 | } | |
| 455 | ||
| 456 | menu = gtk_menu_new(); | |
| 457 | ||
| 458 | menuitem = gtk_check_menu_item_new_with_label(_("Show Buddy List")); | |
| 459 | gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem), gaim_prefs_get_bool("/gaim/gtk/blist/list_visible")); | |
| 460 | g_signal_connect(G_OBJECT(menuitem), "toggled", G_CALLBACK(docklet_toggle_blist), NULL); | |
| 461 | gtk_menu_shell_append(GTK_MENU_SHELL(menu), menuitem); | |
| 462 | ||
| 463 | menuitem = gtk_menu_item_new_with_label(_("Unread Messages")); | |
| 464 | ||
| 465 | if (status == DOCKLET_STATUS_ONLINE_PENDING || status == DOCKLET_STATUS_AWAY_PENDING) { | |
| 466 | GtkWidget *submenu = gtk_menu_new(); | |
| 467 | GList *l = get_pending_list(0); | |
| 468 | if (l == NULL) { | |
| 469 | gtk_widget_set_sensitive(menuitem, FALSE); | |
| 470 | gaim_debug_warning("docklet", | |
| 471 | "status indicates messages pending, but no conversations with unseen messages were found."); | |
| 472 | } else { | |
| 473 | gaim_gtk_conversations_fill_menu(submenu, l); | |
| 474 | g_list_free(l); | |
| 475 | gtk_menu_item_set_submenu(GTK_MENU_ITEM(menuitem), submenu); | |
| 476 | } | |
| 477 | } else { | |
| 478 | gtk_widget_set_sensitive(menuitem, FALSE); | |
| 479 | } | |
| 480 | gtk_menu_shell_append(GTK_MENU_SHELL(menu), menuitem); | |
| 481 | ||
| 482 | gaim_separator(menu); | |
| 483 | ||
| 484 | menuitem = gaim_new_item_from_stock(menu, _("New Message..."), GAIM_STOCK_IM, G_CALLBACK(gaim_gtkdialogs_im), NULL, 0, 0, NULL); | |
| 485 | if (status == DOCKLET_STATUS_OFFLINE) | |
| 486 | gtk_widget_set_sensitive(menuitem, FALSE); | |
| 487 | ||
| 488 | menuitem = docklet_status_submenu(); | |
| 489 | gtk_menu_shell_append(GTK_MENU_SHELL(menu), menuitem); | |
| 490 | ||
| 491 | gaim_separator(menu); | |
| 492 | ||
| 493 | gaim_new_item_from_stock(menu, _("Accounts"), GAIM_STOCK_ACCOUNTS, G_CALLBACK(gaim_gtk_accounts_window_show), NULL, 0, 0, NULL); | |
| 494 | gaim_new_item_from_stock(menu, _("Plugins"), GAIM_STOCK_PLUGIN, G_CALLBACK(gaim_gtk_plugin_dialog_show), NULL, 0, 0, NULL); | |
| 495 | gaim_new_item_from_stock(menu, _("Preferences"), GTK_STOCK_PREFERENCES, G_CALLBACK(gaim_gtk_prefs_show), NULL, 0, 0, NULL); | |
| 496 | ||
| 497 | gaim_separator(menu); | |
| 498 | ||
| 499 | menuitem = gtk_check_menu_item_new_with_label(_("Mute Sounds")); | |
| 500 | gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem), gaim_prefs_get_bool("/gaim/gtk/sound/mute")); | |
| 501 | if (!strcmp(gaim_prefs_get_string("/gaim/gtk/sound/method"), "none")) | |
| 502 | gtk_widget_set_sensitive(GTK_WIDGET(menuitem), FALSE); | |
| 503 | g_signal_connect(G_OBJECT(menuitem), "toggled", G_CALLBACK(docklet_toggle_mute), NULL); | |
| 504 | gtk_menu_shell_append(GTK_MENU_SHELL(menu), menuitem); | |
| 505 | ||
| 506 | gaim_separator(menu); | |
| 507 | ||
| 508 | /* TODO: need a submenu to change status, this needs to "link" | |
| 509 | * to the status in the buddy list gtkstatusbox | |
| 510 | */ | |
| 511 | ||
| 512 | gaim_new_item_from_stock(menu, _("Quit"), GTK_STOCK_QUIT, G_CALLBACK(gaim_core_quit), NULL, 0, 0, NULL); | |
| 513 | ||
| 514 | #ifdef _WIN32 | |
| 515 | g_signal_connect(menu, "leave-notify-event", G_CALLBACK(docklet_menu_leave_enter), NULL); | |
| 516 | g_signal_connect(menu, "enter-notify-event", G_CALLBACK(docklet_menu_leave_enter), NULL); | |
| 517 | #endif | |
| 518 | gtk_widget_show_all(menu); | |
| 519 | gtk_menu_popup(GTK_MENU(menu), NULL, NULL, | |
| 520 | ui_ops->position_menu, | |
| 521 | NULL, 0, gtk_get_current_event_time()); | |
| 522 | } | |
| 523 | ||
| 524 | /************************************************************************** | |
| 525 | * public api for ui_ops | |
| 526 | **************************************************************************/ | |
| 527 | void | |
| 528 | gaim_gtk_docklet_clicked(int button_type) | |
| 529 | { | |
| 530 | switch (button_type) { | |
| 531 | case 1: | |
| 532 | if (status == DOCKLET_STATUS_ONLINE_PENDING || status == DOCKLET_STATUS_AWAY_PENDING) { | |
| 533 | GList *l = get_pending_list(1); | |
| 534 | if (l != NULL) { | |
| 535 | gaim_gtkconv_present_conversation((GaimConversation *)l->data); | |
| 536 | g_list_free(l); | |
| 537 | } | |
| 538 | } else { | |
| 539 | gaim_gtk_blist_toggle_visibility(); | |
| 540 | } | |
| 541 | break; | |
| 542 | case 3: | |
| 543 | docklet_menu(); | |
| 544 | break; | |
| 545 | } | |
| 546 | } | |
| 547 | ||
| 548 | void | |
| 549 | gaim_gtk_docklet_embedded() | |
| 550 | { | |
| 551 | if (!visibility_manager) { | |
| 552 | gaim_gtk_blist_visibility_manager_add(); | |
| 553 | visibility_manager = TRUE; | |
| 554 | } | |
| 555 | docklet_update_status(); | |
| 556 | if (ui_ops && ui_ops->update_icon) | |
| 557 | ui_ops->update_icon(status); | |
| 558 | } | |
| 559 | ||
| 560 | void | |
| 561 | gaim_gtk_docklet_remove() | |
| 562 | { | |
| 563 | if (visibility_manager) { | |
| 564 | gaim_gtk_blist_visibility_manager_remove(); | |
| 565 | visibility_manager = FALSE; | |
| 566 | } | |
| 567 | } | |
| 568 | ||
| 569 | void | |
| 570 | gaim_gtk_docklet_set_ui_ops(struct docklet_ui_ops *ops) | |
| 571 | { | |
| 572 | ui_ops = ops; | |
| 573 | } | |
| 574 | ||
| 575 | void* | |
| 576 | gaim_gtk_docklet_get_handle() | |
| 577 | { | |
| 578 | static int i; | |
| 579 | return &i; | |
| 580 | } | |
| 581 | ||
|
14745
d43256e1e6fd
[gaim-migrate @ 17435]
Daniel Atallah <datallah@pidgin.im>
parents:
14743
diff
changeset
|
582 | void |
| 14743 | 583 | gaim_gtk_docklet_init() |
| 584 | { | |
| 585 | void *conn_handle = gaim_connections_get_handle(); | |
| 586 | void *conv_handle = gaim_conversations_get_handle(); | |
| 587 | void *accounts_handle = gaim_accounts_get_handle(); | |
| 588 | void *docklet_handle = gaim_gtk_docklet_get_handle(); | |
| 589 | ||
| 590 | docklet_ui_init(); | |
| 591 | if (ui_ops && ui_ops->create) | |
| 592 | ui_ops->create(); | |
| 593 | gaim_signal_connect(conn_handle, "signed-on", | |
|
14745
d43256e1e6fd
[gaim-migrate @ 17435]
Daniel Atallah <datallah@pidgin.im>
parents:
14743
diff
changeset
|
594 | docklet_handle, GAIM_CALLBACK(docklet_signed_on_cb), NULL); |
| 14743 | 595 | gaim_signal_connect(conn_handle, "signed-off", |
| 596 | docklet_handle, GAIM_CALLBACK(docklet_signed_off_cb), NULL); | |
| 597 | gaim_signal_connect(accounts_handle, "account-status-changed", | |
| 598 | docklet_handle, GAIM_CALLBACK(docklet_update_status_cb), NULL); | |
| 599 | gaim_signal_connect(conv_handle, "received-im-msg", | |
| 600 | docklet_handle, GAIM_CALLBACK(docklet_update_status_cb), NULL); | |
| 601 | gaim_signal_connect(conv_handle, "conversation-created", | |
| 602 | docklet_handle, GAIM_CALLBACK(docklet_update_status_cb), NULL); | |
| 603 | gaim_signal_connect(conv_handle, "deleting-conversation", | |
| 604 | docklet_handle, GAIM_CALLBACK(docklet_update_status_cb), NULL); | |
| 605 | gaim_signal_connect(conv_handle, "conversation-updated", | |
| 606 | docklet_handle, GAIM_CALLBACK(docklet_conv_updated_cb), NULL); | |
|
14745
d43256e1e6fd
[gaim-migrate @ 17435]
Daniel Atallah <datallah@pidgin.im>
parents:
14743
diff
changeset
|
607 | #if 0 |
|
d43256e1e6fd
[gaim-migrate @ 17435]
Daniel Atallah <datallah@pidgin.im>
parents:
14743
diff
changeset
|
608 | gaim_signal_connect(gaim_get_core(), "quitting", |
|
d43256e1e6fd
[gaim-migrate @ 17435]
Daniel Atallah <datallah@pidgin.im>
parents:
14743
diff
changeset
|
609 | docklet_handle, GAIM_CALLBACK(gaim_quit_cb), NULL); |
|
d43256e1e6fd
[gaim-migrate @ 17435]
Daniel Atallah <datallah@pidgin.im>
parents:
14743
diff
changeset
|
610 | #endif |
| 14743 | 611 | |
| 612 | enable_join_chat = online_account_supports_chat(); | |
| 613 | } | |
| 614 | ||
| 615 | void | |
| 616 | gaim_gtk_docklet_uninit() | |
| 617 | { | |
| 618 | if (ui_ops && ui_ops->destroy) | |
| 619 | ui_ops->destroy(); | |
| 620 | } |