From 9d5d80ba33f31e935c7335be6fa89ecd183b85bc Mon Sep 17 00:00:00 2001 From: Xavier Claessens Date: Fri, 25 Apr 2008 09:33:16 +0000 Subject: Setup contact submenu in chat window. svn path=/trunk/; revision=1045 --- libempathy-gtk/empathy-chat.c | 48 +++++++++++++++++++++++++++++++++++++++++++ libempathy-gtk/empathy-chat.h | 1 + 2 files changed, 49 insertions(+) (limited to 'libempathy-gtk') diff --git a/libempathy-gtk/empathy-chat.c b/libempathy-gtk/empathy-chat.c index 53a794b96..55282d164 100644 --- a/libempathy-gtk/empathy-chat.c +++ b/libempathy-gtk/empathy-chat.c @@ -48,6 +48,7 @@ #include "empathy-spell-dialog.h" #include "empathy-contact-list-store.h" #include "empathy-contact-list-view.h" +#include "empathy-contact-menu.h" #include "empathy-ui-utils.h" #define GET_PRIV(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), EMPATHY_TYPE_CHAT, EmpathyChatPriv)) @@ -1699,6 +1700,53 @@ empathy_chat_get_members_count (EmpathyChat *chat) return 0; } +GtkWidget * +empathy_chat_get_contact_menu (EmpathyChat *chat) +{ + EmpathyChatPriv *priv = GET_PRIV (chat); + GtkWidget *menu = NULL; + + g_return_val_if_fail (EMPATHY_IS_CHAT (chat), NULL); + + if (priv->remote_contact) { + GtkMenuShell *shell; + GtkWidget *item; + + menu = gtk_menu_new (); + shell = GTK_MENU_SHELL (menu); + + item = empathy_contact_call_menu_item_new (priv->remote_contact); + gtk_menu_shell_append (shell, item); + gtk_widget_show (item); + + item = empathy_contact_log_menu_item_new (priv->remote_contact); + gtk_menu_shell_append (shell, item); + gtk_widget_show (item); + + /* Separator */ + item = gtk_separator_menu_item_new (); + gtk_menu_shell_append (shell, item); + gtk_widget_show (item); + + item = empathy_contact_info_menu_item_new (priv->remote_contact); + gtk_menu_shell_append (shell, item); + gtk_widget_show (item); + } + else if (priv->contact_list_view) { + EmpathyContactListView *view; + EmpathyContact *contact; + + view = EMPATHY_CONTACT_LIST_VIEW (priv->contact_list_view); + contact = empathy_contact_list_view_get_selected (view); + if (contact) { + menu = empathy_contact_list_view_get_contact_menu (view, contact); + g_object_unref (contact); + } + } + + return menu; +} + void empathy_chat_clear (EmpathyChat *chat) { diff --git a/libempathy-gtk/empathy-chat.h b/libempathy-gtk/empathy-chat.h index 2b5e64247..ea98211a1 100644 --- a/libempathy-gtk/empathy-chat.h +++ b/libempathy-gtk/empathy-chat.h @@ -72,6 +72,7 @@ const gchar * empathy_chat_get_name (EmpathyChat *chat); const gchar * empathy_chat_get_subject (EmpathyChat *chat); EmpathyContact * empathy_chat_get_remote_contact (EmpathyChat *chat); guint empathy_chat_get_members_count (EmpathyChat *chat); +GtkWidget * empathy_chat_get_contact_menu (EmpathyChat *chat); void empathy_chat_clear (EmpathyChat *chat); void empathy_chat_scroll_down (EmpathyChat *chat); void empathy_chat_cut (EmpathyChat *chat); -- cgit v1.2.3