]> git.0d.be Git - empathy.git/blobdiff - libempathy-gtk/empathy-chat-view.c
de.po: Updated German translation
[empathy.git] / libempathy-gtk / empathy-chat-view.c
index 25c1721a4b8e9128741c09773e2fb9740bf79b47..23877a27520c9ccd99631638a2d9c44a201ca9b5 100644 (file)
@@ -59,16 +59,6 @@ chat_view_base_init (gpointer klass)
        }
 }
 
-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)
@@ -105,6 +95,16 @@ empathy_chat_view_scroll (EmpathyChatView *view,
        }
 }
 
+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)
 {
@@ -194,68 +194,3 @@ empathy_chat_view_copy_clipboard (EmpathyChatView *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)
-{
-       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);
-       }
-       return 0;
-}
-
-void
-empathy_chat_view_set_last_timestamp (EmpathyChatView *view,
-                                     time_t          timestamp)
-{
-       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;
-}
-