]> git.0d.be Git - empathy.git/blobdiff - libempathy-gtk/empathy-chat-view.c
use the 48x48 version of the local-xmpp icon
[empathy.git] / libempathy-gtk / empathy-chat-view.c
index bb0db85e1cf042f08c53cdeb0416467ad0c85d0c..f5d6ddf095deba9f09a1c3332edefa484a3e0e5e 100644 (file)
@@ -14,9 +14,9 @@
  *
  * You should have received a copy of the GNU General Public
  * License along with this program; if not, write to the
- * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 02111-1307, USA.
- * 
+ * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
+ * Boston, MA  02110-1301  USA
+ *
  * Authors: Xavier Claessens <xclaesse@gmail.com>
  */
 
@@ -31,21 +31,21 @@ GType
 empathy_chat_view_get_type (void)
 {
        static GType type = 0;
-       
+
        if (!type) {
                static const GTypeInfo type_info = {
                        sizeof (EmpathyChatViewIface),
                        chat_view_base_init,
                        NULL,
                };
-               
+
                type = g_type_register_static (G_TYPE_INTERFACE,
                                               "EmpathyChatView",
                                               &type_info, 0);
-               
-               g_type_interface_add_prerequisite (type, G_TYPE_OBJECT);
+
+               g_type_interface_add_prerequisite (type, GTK_TYPE_WIDGET);
        }
-       
+
        return type;
 }
 
@@ -53,31 +53,23 @@ static void
 chat_view_base_init (gpointer klass)
 {
        static gboolean initialized = FALSE;
-       
+
        if (!initialized) {
                initialized = TRUE;
        }
 }
 
-void
-empathy_chat_view_scroll_down (EmpathyChatView *view)
-{
-       g_return_if_fail (EMPATHY_IS_CHAT_VIEW (view));
-       
-       if (EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->scroll_down) {
-               EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->scroll_down (view);
-       }
-}
-
 void
 empathy_chat_view_append_message (EmpathyChatView *view,
-                                 EmpathyMessage  *msg)
+                                 EmpathyMessage  *msg,
+                                 gboolean         should_highlight)
 {
        g_return_if_fail (EMPATHY_IS_CHAT_VIEW (view));
-       
+
        if (EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->append_message) {
-               EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->append_message (view, 
-                                                                        msg);
+               EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->append_message (view,
+                                                                        msg,
+                                                                        should_highlight);
        }
 }
 
@@ -86,30 +78,68 @@ empathy_chat_view_append_event (EmpathyChatView *view,
                                const gchar    *str)
 {
        g_return_if_fail (EMPATHY_IS_CHAT_VIEW (view));
-       
+
        if (EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->append_event) {
                EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->append_event (view,
                                                                       str);
        }
 }
 
+void
+empathy_chat_view_append_event_markup (EmpathyChatView *view,
+                                      const gchar     *markup_text,
+                                      const gchar     *fallback_text)
+{
+       g_return_if_fail (EMPATHY_IS_CHAT_VIEW (view));
+
+       if (EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->append_event_markup) {
+               EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->append_event_markup (view,
+                                                                             markup_text,
+                                                                             fallback_text);
+       } else {
+               empathy_chat_view_append_event (view, fallback_text);
+       }
+}
+
+void
+empathy_chat_view_edit_message (EmpathyChatView *view,
+                               EmpathyMessage  *message)
+{
+       g_return_if_fail (EMPATHY_IS_CHAT_VIEW (view));
+
+       if (EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->edit_message) {
+               EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->edit_message (
+                       view, message);
+       }
+}
+
 void
 empathy_chat_view_scroll (EmpathyChatView *view,
                          gboolean        allow_scrolling)
 {
        g_return_if_fail (EMPATHY_IS_CHAT_VIEW (view));
-       
+
        if (EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->scroll) {
-               EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->scroll (view, 
+               EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->scroll (view,
                                                                 allow_scrolling);
        }
 }
 
+void
+empathy_chat_view_scroll_down (EmpathyChatView *view)
+{
+       g_return_if_fail (EMPATHY_IS_CHAT_VIEW (view));
+
+       if (EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->scroll_down) {
+               EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->scroll_down (view);
+       }
+}
+
 gboolean
 empathy_chat_view_get_has_selection (EmpathyChatView *view)
 {
        g_return_val_if_fail (EMPATHY_IS_CHAT_VIEW (view), FALSE);
-       
+
        if (EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->get_has_selection) {
                return EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->get_has_selection (view);
        }
@@ -120,7 +150,7 @@ void
 empathy_chat_view_clear (EmpathyChatView *view)
 {
        g_return_if_fail (EMPATHY_IS_CHAT_VIEW (view));
-       
+
        if (EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->clear) {
                EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->clear (view);
        }
@@ -129,14 +159,16 @@ empathy_chat_view_clear (EmpathyChatView *view)
 gboolean
 empathy_chat_view_find_previous (EmpathyChatView *view,
                                 const gchar    *search_criteria,
-                                gboolean        new_search)
+                                gboolean        new_search,
+                                gboolean        match_case)
 {
        g_return_val_if_fail (EMPATHY_IS_CHAT_VIEW (view), FALSE);
-       
+
        if (EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->find_previous) {
-               return EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->find_previous (view, 
-                                                                              search_criteria, 
-                                                                              new_search);
+               return EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->find_previous (view,
+                                                                              search_criteria,
+                                                                              new_search,
+                                                                              match_case);
        }
        return FALSE;
 }
@@ -144,14 +176,16 @@ empathy_chat_view_find_previous (EmpathyChatView *view,
 gboolean
 empathy_chat_view_find_next (EmpathyChatView *view,
                             const gchar    *search_criteria,
-                            gboolean        new_search)
+                            gboolean        new_search,
+                            gboolean        match_case)
 {
        g_return_val_if_fail (EMPATHY_IS_CHAT_VIEW (view), FALSE);
-       
+
        if (EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->find_next) {
-               return EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->find_next (view, 
-                                                                          search_criteria, 
-                                                                          new_search);
+               return EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->find_next (view,
+                                                                          search_criteria,
+                                                                          new_search,
+                                                                          match_case);
        }
        return FALSE;
 }
@@ -160,27 +194,30 @@ empathy_chat_view_find_next (EmpathyChatView *view,
 void
 empathy_chat_view_find_abilities (EmpathyChatView *view,
                                  const gchar    *search_criteria,
+                                 gboolean        match_case,
                                  gboolean       *can_do_previous,
                                  gboolean       *can_do_next)
 {
        g_return_if_fail (EMPATHY_IS_CHAT_VIEW (view));
-       
+
        if (EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->find_abilities) {
-               EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->find_abilities (view, 
-                                                                        search_criteria, 
-                                                                        can_do_previous, 
+               EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->find_abilities (view,
+                                                                        search_criteria,
+                                                                        match_case,
+                                                                        can_do_previous,
                                                                         can_do_next);
        }
 }
 
 void
 empathy_chat_view_highlight (EmpathyChatView *view,
-                            const gchar     *text)
+                            const gchar     *text,
+                            gboolean         match_case)
 {
        g_return_if_fail (EMPATHY_IS_CHAT_VIEW (view));
-       
+
        if (EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->highlight) {
-               EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->highlight (view, text);
+               EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->highlight (view, text, match_case);
        }
 }
 
@@ -188,123 +225,31 @@ void
 empathy_chat_view_copy_clipboard (EmpathyChatView *view)
 {
        g_return_if_fail (EMPATHY_IS_CHAT_VIEW (view));
-       
+
        if (EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->copy_clipboard) {
                EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->copy_clipboard (view);
        }
 }
 
-EmpathyTheme *
-empathy_chat_view_get_theme (EmpathyChatView *view)
-{
-       g_return_val_if_fail (EMPATHY_IS_CHAT_VIEW (view), NULL);
-       
-       if (EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->get_theme) {
-               return EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->get_theme (view);
-       }
-       return NULL;
-}
-
-void
-empathy_chat_view_set_theme (EmpathyChatView *view, EmpathyTheme *theme)
-{
-       g_return_if_fail (EMPATHY_IS_CHAT_VIEW (view));
-       
-       if (EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->set_theme) {
-               EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->set_theme (view, theme);
-       }
-}
-
 void
-empathy_chat_view_set_margin (EmpathyChatView *view,
-                             gint            margin)
+empathy_chat_view_focus_toggled (EmpathyChatView *view,
+                                gboolean         has_focus)
 {
        g_return_if_fail (EMPATHY_IS_CHAT_VIEW (view));
-       
-       if (EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->set_margin) {
-               EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->set_margin (view, margin);
-       }
-}
 
-time_t
-empathy_chat_view_get_last_timestamp (EmpathyChatView *view)
-{
-       g_return_val_if_fail (EMPATHY_IS_CHAT_VIEW (view), 0);
-       
-       if (EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->get_last_timestamp) {
-               return EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->get_last_timestamp (view);
+       if (EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->focus_toggled) {
+               EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->focus_toggled (view, has_focus);
        }
-       return 0;
 }
 
 void
-empathy_chat_view_set_last_timestamp (EmpathyChatView *view,
-                                     time_t          timestamp)
+empathy_chat_view_message_acknowledged (EmpathyChatView *view,
+                                       EmpathyMessage  *message)
 {
        g_return_if_fail (EMPATHY_IS_CHAT_VIEW (view));
-       
-       if (EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->set_last_timestamp) {
-               EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->set_last_timestamp (view, timestamp);
-       }
-}
-
-EmpathyContact *
-empathy_chat_view_get_last_contact (EmpathyChatView *view)
-{
-       g_return_val_if_fail (EMPATHY_IS_CHAT_VIEW (view), NULL);
-       
-       if (EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->get_last_contact) {
-               return EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->get_last_contact (view);
-       }
-       return NULL;
-}
-
-GtkWidget *
-empathy_chat_view_get_smiley_menu (GCallback    callback,
-                                  gpointer     user_data)
-{
-       EmpathySmileyManager *smiley_manager;
-       GSList               *smileys, *l;
-       GtkWidget            *menu;
-       gint                  x = 0;
-       gint                  y = 0;
 
-       g_return_val_if_fail (callback != NULL, NULL);
-
-       menu = gtk_menu_new ();
-
-       smiley_manager = empathy_smiley_manager_new ();
-       smileys = empathy_smiley_manager_get_all (smiley_manager);
-       for (l = smileys; l; l = l->next) {
-               EmpathySmiley *smiley;
-               GtkWidget     *item;
-               GtkWidget     *image;
-
-               smiley = l->data;
-               image = gtk_image_new_from_pixbuf (smiley->pixbuf);
-
-               item = gtk_image_menu_item_new_with_label ("");
-               gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image);
-
-               gtk_menu_attach (GTK_MENU (menu), item,
-                                x, x + 1, y, y + 1);
-
-               gtk_widget_set_tooltip_text (item, smiley->str);
-
-               g_object_set_data  (G_OBJECT (item), "smiley_text", smiley->str);
-               g_signal_connect (item, "activate", callback, user_data);
-
-               if (x > 3) {
-                       y++;
-                       x = 0;
-               } else {
-                       x++;
-               }
+       if (EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->message_acknowledged) {
+               EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->message_acknowledged (view, message);
        }
-       g_object_unref (smiley_manager);
-
-       gtk_widget_show_all (menu);
-
-       return menu;
 }