]> git.0d.be Git - empathy.git/blobdiff - libempathy-gtk/empathy-contact-menu.c
empathy_contact_block_menu_item_new: remove unused EmpathyContactManager
[empathy.git] / libempathy-gtk / empathy-contact-menu.c
index 65162255464bd29c07b7c75731ec5382a1c49875..f47b95ff153689024dcdb027747872513fdcea65 100644 (file)
@@ -27,9 +27,8 @@
 #include <gtk/gtk.h>
 #include <telepathy-logger/log-manager.h>
 
-#include <libempathy/empathy-call-factory.h>
 #include <libempathy/empathy-contact-manager.h>
-#include <libempathy/empathy-dispatcher.h>
+#include <libempathy/empathy-request-util.h>
 #include <libempathy/empathy-utils.h>
 #include <libempathy/empathy-chatroom-manager.h>
 #include <libempathy/empathy-contact-manager.h>
@@ -40,6 +39,9 @@
 #include "empathy-contact-dialogs.h"
 #include "empathy-ui-utils.h"
 #include "empathy-share-my-desktop.h"
+#include "empathy-call-utils.h"
+
+static GtkWidget *empathy_contact_block_menu_item_new (EmpathyContact *);
 
 GtkWidget *
 empathy_contact_menu_new (EmpathyContact             *contact,
@@ -84,22 +86,17 @@ empathy_contact_menu_new (EmpathyContact             *contact,
                gtk_widget_show (item);
        }
 
-       /* Log */
-       if (features & EMPATHY_CONTACT_FEATURE_LOG) {
-               item = empathy_contact_log_menu_item_new (contact);
-               gtk_menu_shell_append (shell, item);
-               gtk_widget_show (item);
-       }
-
        /* Invite */
        item = empathy_contact_invite_menu_item_new (contact);
        gtk_menu_shell_append (shell, item);
        gtk_widget_show (item);
 
        /* File transfer */
-       item = empathy_contact_file_transfer_menu_item_new (contact);
-       gtk_menu_shell_append (shell, item);
-       gtk_widget_show (item);
+       if (features & EMPATHY_CONTACT_FEATURE_FT) {
+               item = empathy_contact_file_transfer_menu_item_new (contact);
+               gtk_menu_shell_append (shell, item);
+               gtk_widget_show (item);
+       }
 
        /* Share my desktop */
        /* FIXME we should add the "Share my desktop" menu item if Vino is
@@ -110,8 +107,7 @@ empathy_contact_menu_new (EmpathyContact             *contact,
 
        /* Separator */
        if (features & (EMPATHY_CONTACT_FEATURE_EDIT |
-                       EMPATHY_CONTACT_FEATURE_INFO |
-                       EMPATHY_CONTACT_FEATURE_FAVOURITE)) {
+                       EMPATHY_CONTACT_FEATURE_INFO)) {
                item = gtk_separator_menu_item_new ();
                gtk_menu_shell_append (shell, item);
                gtk_widget_show (item);
@@ -124,6 +120,13 @@ empathy_contact_menu_new (EmpathyContact             *contact,
                gtk_widget_show (item);
        }
 
+       /* Log */
+       if (features & EMPATHY_CONTACT_FEATURE_LOG) {
+               item = empathy_contact_log_menu_item_new (contact);
+               gtk_menu_shell_append (shell, item);
+               gtk_widget_show (item);
+       }
+
        /* Info */
        if (features & EMPATHY_CONTACT_FEATURE_INFO) {
                item = empathy_contact_info_menu_item_new (contact);
@@ -131,9 +134,15 @@ empathy_contact_menu_new (EmpathyContact             *contact,
                gtk_widget_show (item);
        }
 
-       /* Favorite checkbox */
-       if (features & EMPATHY_CONTACT_FEATURE_FAVOURITE) {
-               item = empathy_contact_favourite_menu_item_new (contact);
+       /* Separator & Block */
+       if (features & EMPATHY_CONTACT_FEATURE_BLOCK &&
+           (item = empathy_contact_block_menu_item_new (contact)) != NULL) {
+               GtkWidget *sep;
+
+               sep = gtk_separator_menu_item_new ();
+               gtk_menu_shell_append (shell, sep);
+               gtk_widget_show (sep);
+
                gtk_menu_shell_append (shell, item);
                gtk_widget_show (item);
        }
@@ -212,11 +221,88 @@ empathy_contact_add_menu_item_new (EmpathyContact *contact)
        return item;
 }
 
+static void
+empathy_contact_block_menu_item_toggled (GtkCheckMenuItem *item,
+                                        EmpathyContact   *contact)
+{
+       static guint block_signal = 0;
+       gboolean blocked, abusive;
+       TpContact *tp_contact;
+
+       if (block_signal > 0)
+               return;
+
+       blocked = gtk_check_menu_item_get_active (item);
+
+       if (blocked) {
+               /* confirm the user really wishes to block the contact */
+               GtkWidget *parent;
+               GdkPixbuf *avatar;
+
+               /* gtk_menu_get_attach_widget () doesn't behave properly here
+                * for some reason */
+               parent = g_object_get_data (
+                       G_OBJECT (gtk_widget_get_parent (GTK_WIDGET (item))),
+                       "window");
+
+               avatar = empathy_pixbuf_avatar_from_contact_scaled (contact, 48, 48);
+
+               if (!empathy_block_contact_dialog_show (GTK_WINDOW (parent),
+                                       contact, avatar, &abusive))
+                       return;
+       }
+
+       tp_contact = empathy_contact_get_tp_contact (contact);
+
+       if (blocked)
+               tp_contact_block_async (tp_contact, abusive, NULL, NULL);
+       else
+               tp_contact_unblock_async (tp_contact, NULL, NULL);
+
+       /* update the toggle with the blocked status */
+       block_signal++;
+       gtk_check_menu_item_set_active (item, blocked);
+       block_signal--;
+}
+
+static GtkWidget *
+empathy_contact_block_menu_item_new (EmpathyContact *contact)
+{
+       GtkWidget *item;
+       TpConnection *connection;
+       TpContact *tp_contact;
+
+       g_return_val_if_fail (EMPATHY_IS_CONTACT (contact), NULL);
+
+       if (!empathy_contact_manager_initialized ()) {
+               return NULL;
+       }
+
+       connection = empathy_contact_get_connection (contact);
+
+       if (!tp_proxy_has_interface_by_id (connection,
+               TP_IFACE_QUARK_CONNECTION_INTERFACE_CONTACT_BLOCKING))
+               return NULL;
+
+       item = gtk_check_menu_item_new_with_mnemonic (_("_Block Contact"));
+
+       tp_contact = empathy_contact_get_tp_contact (contact);
+
+       gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (item),
+                       tp_contact_is_blocked (tp_contact));
+
+       g_signal_connect (item, "toggled",
+                       G_CALLBACK (empathy_contact_block_menu_item_toggled),
+                       contact);
+
+       return item;
+}
+
 static void
 empathy_contact_chat_menu_item_activated (GtkMenuItem *item,
        EmpathyContact *contact)
 {
-  empathy_dispatcher_chat_with_contact (contact, gtk_get_current_event_time ());
+       empathy_chat_with_contact (contact, empathy_get_current_action_time ());
 }
 
 GtkWidget *
@@ -231,6 +317,7 @@ empathy_contact_chat_menu_item_new (EmpathyContact *contact)
        image = gtk_image_new_from_icon_name (EMPATHY_IMAGE_MESSAGE,
                                              GTK_ICON_SIZE_MENU);
        gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image);
+       gtk_widget_set_sensitive (item, !empathy_contact_is_user (contact));
        gtk_widget_show (image);
 
        g_signal_connect (item, "activate",
@@ -244,9 +331,10 @@ static void
 empathy_contact_audio_call_menu_item_activated (GtkMenuItem *item,
        EmpathyContact *contact)
 {
-
-       empathy_call_factory_new_call_with_streams (contact, TRUE, FALSE,
-               gtk_get_current_event_time (), NULL);
+       empathy_call_new_with_streams (empathy_contact_get_id (contact),
+               empathy_contact_get_account (contact),
+               TRUE, FALSE,
+               empathy_get_current_action_time ());
 }
 
 GtkWidget *
@@ -261,7 +349,8 @@ empathy_contact_audio_call_menu_item_new (EmpathyContact *contact)
        image = gtk_image_new_from_icon_name (EMPATHY_IMAGE_VOIP,
                                              GTK_ICON_SIZE_MENU);
        gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image);
-       gtk_widget_set_sensitive (item, empathy_contact_can_voip_audio (contact));
+       gtk_widget_set_sensitive (item, empathy_contact_can_voip_audio (contact) &&
+                                       !empathy_contact_is_user (contact));
        gtk_widget_show (image);
 
        g_signal_connect (item, "activate",
@@ -275,8 +364,10 @@ static void
 empathy_contact_video_call_menu_item_activated (GtkMenuItem *item,
        EmpathyContact *contact)
 {
-       empathy_call_factory_new_call_with_streams (contact, TRUE, TRUE,
-               gtk_get_current_event_time (), NULL);
+       empathy_call_new_with_streams (empathy_contact_get_id (contact),
+               empathy_contact_get_account (contact),
+               TRUE, TRUE,
+               empathy_get_current_action_time ());
 }
 
 GtkWidget *
@@ -291,7 +382,8 @@ empathy_contact_video_call_menu_item_new (EmpathyContact *contact)
        image = gtk_image_new_from_icon_name (EMPATHY_IMAGE_VIDEO_CALL,
                                              GTK_ICON_SIZE_MENU);
        gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image);
-       gtk_widget_set_sensitive (item, empathy_contact_can_voip_video (contact));
+       gtk_widget_set_sensitive (item, empathy_contact_can_voip_video (contact) &&
+                                       !empathy_contact_is_user (contact));
        gtk_widget_show (image);
 
        g_signal_connect (item, "activate",
@@ -313,6 +405,7 @@ GtkWidget *
 empathy_contact_log_menu_item_new (EmpathyContact *contact)
 {
        TplLogManager     *manager;
+       TplEntity         *entity;
        gboolean           have_log;
        GtkWidget         *item;
        GtkWidget         *image;
@@ -320,11 +413,15 @@ empathy_contact_log_menu_item_new (EmpathyContact *contact)
        g_return_val_if_fail (EMPATHY_IS_CONTACT (contact), NULL);
 
        manager = tpl_log_manager_dup_singleton ();
+       entity = tpl_entity_new_from_tp_contact (empathy_contact_get_tp_contact (contact),
+                                                TPL_ENTITY_CONTACT);
+
        have_log = tpl_log_manager_exists (manager,
-                                              empathy_contact_get_account (contact),
-                                              empathy_contact_get_id (contact),
-                                              FALSE);
+                                          empathy_contact_get_account (contact),
+                                          entity,
+                                          TPL_EVENT_MASK_TEXT);
 
+       g_object_unref (entity);
        g_object_unref (manager);
 
        item = gtk_image_menu_item_new_with_mnemonic (_("_Previous Conversations"));
@@ -352,7 +449,8 @@ empathy_contact_file_transfer_menu_item_new (EmpathyContact *contact)
        item = gtk_image_menu_item_new_with_mnemonic (_("Send File"));
        image = gtk_image_new_from_icon_name (EMPATHY_IMAGE_DOCUMENT_SEND,
                                              GTK_ICON_SIZE_MENU);
-       gtk_widget_set_sensitive (item, empathy_contact_can_send_files (contact));
+       gtk_widget_set_sensitive (item, empathy_contact_can_send_files (contact) &&
+                                       !empathy_contact_is_user (contact));
        gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image);
        gtk_widget_show (image);
 
@@ -363,7 +461,6 @@ empathy_contact_file_transfer_menu_item_new (EmpathyContact *contact)
        return item;
 }
 
-/* FIXME  we should check if the contact supports vnc stream tube */
 GtkWidget *
 empathy_contact_share_my_desktop_menu_item_new (EmpathyContact *contact)
 {
@@ -387,46 +484,6 @@ empathy_contact_share_my_desktop_menu_item_new (EmpathyContact *contact)
        return item;
 }
 
-static void
-favourite_menu_item_toggled_cb (GtkCheckMenuItem *item,
-       EmpathyContact *contact)
-{
-       EmpathyContactManager *manager;
-       EmpathyContactList *list;
-
-       manager = empathy_contact_manager_dup_singleton ();
-       list = EMPATHY_CONTACT_LIST (manager);
-
-       if (gtk_check_menu_item_get_active (item)) {
-               empathy_contact_list_add_to_favourites (list, contact);
-       } else {
-               empathy_contact_list_remove_from_favourites (list, contact);
-       }
-
-       g_object_unref (manager);
-}
-
-GtkWidget *
-empathy_contact_favourite_menu_item_new (EmpathyContact *contact)
-{
-       GtkWidget *item;
-       EmpathyContactManager *manager;
-
-       item = gtk_check_menu_item_new_with_label (_("Favorite"));
-
-       manager = empathy_contact_manager_dup_singleton ();
-       gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (item),
-               empathy_contact_list_is_favourite (EMPATHY_CONTACT_LIST (manager),
-                                                  contact));
-
-       g_signal_connect (item, "toggled",
-                         G_CALLBACK (favourite_menu_item_toggled_cb),
-                         contact);
-
-       g_object_unref (manager);
-       return item;
-}
-
 static void
 contact_info_menu_item_activate_cb (EmpathyContact *contact)
 {
@@ -577,6 +634,12 @@ empathy_contact_invite_menu_item_new (EmpathyContact *contact)
                                              GTK_ICON_SIZE_MENU);
        gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image);
 
+       if (empathy_contact_is_user (contact)) {
+               gtk_widget_set_sensitive (item, FALSE);
+               gtk_widget_show (image);
+               return item;
+       }
+
        mgr = empathy_chatroom_manager_dup_singleton (NULL);
        rooms = empathy_chatroom_manager_get_chatrooms (mgr,
                empathy_contact_get_account (contact));