]> git.0d.be Git - empathy.git/blobdiff - libempathy-gtk/empathy-chat-view.h
Updated Oriya Translation
[empathy.git] / libempathy-gtk / empathy-chat-view.h
index a96b114b228c158d7e0aaf03d9625d38ef272f69..f3478be6ddee4ae848c53e514e03c34c6e84695e 100644 (file)
  *
  * 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>
  */
 
 #ifndef __EMPATHY_CHAT_VIEW_H__
 #define __EMPATHY_CHAT_VIEW_H__
 
-#include <gtk/gtktextview.h>
+#include <gtk/gtk.h>
 
 #include <libempathy/empathy-contact.h>
 #include <libempathy/empathy-message.h>
@@ -38,8 +38,6 @@ G_BEGIN_DECLS
 typedef struct _EmpathyChatView      EmpathyChatView;
 typedef struct _EmpathyChatViewIface EmpathyChatViewIface;
 
-#include "empathy-theme.h"
-
 struct _EmpathyChatViewIface {
        GTypeInterface   base_iface;
 
@@ -48,14 +46,10 @@ struct _EmpathyChatViewIface {
                                                  EmpathyMessage  *msg);
        void             (*append_event)         (EmpathyChatView *view,
                                                  const gchar     *str);
-       void             (*set_margin)           (EmpathyChatView *view,
-                                                 gint             margin);
        void             (*scroll)               (EmpathyChatView *view,
                                                  gboolean         allow_scrolling);
        void             (*scroll_down)          (EmpathyChatView *view);
-       gboolean         (*get_selection_bounds) (EmpathyChatView *view,
-                                                 GtkTextIter     *start,
-                                                 GtkTextIter     *end);
+       gboolean         (*get_has_selection)    (EmpathyChatView *view);
        void             (*clear)                (EmpathyChatView *view);
        gboolean         (*find_previous)        (EmpathyChatView *view,
                                                  const gchar     *search_criteria,
@@ -70,14 +64,6 @@ struct _EmpathyChatViewIface {
        void             (*highlight)            (EmpathyChatView *view,
                                                  const gchar     *text);
        void             (*copy_clipboard)       (EmpathyChatView *view);
-       EmpathyTheme *   (*get_theme)            (EmpathyChatView *view);
-       void             (*set_theme)            (EmpathyChatView *view,
-                                                 EmpathyTheme    *theme);
-       time_t           (*get_last_timestamp)   (EmpathyChatView *view);
-       void             (*set_last_timestamp)   (EmpathyChatView *view,
-                                                 time_t           timestamp);
-       EmpathyContact * (*get_last_contact)     (EmpathyChatView *view);
-
 };
 
 GType            empathy_chat_view_get_type             (void) G_GNUC_CONST;
@@ -88,9 +74,7 @@ void             empathy_chat_view_append_event         (EmpathyChatView *view,
 void             empathy_chat_view_scroll               (EmpathyChatView *view,
                                                         gboolean         allow_scrolling);
 void             empathy_chat_view_scroll_down          (EmpathyChatView *view);
-gboolean         empathy_chat_view_get_selection_bounds (EmpathyChatView *view,
-                                                        GtkTextIter     *start,
-                                                        GtkTextIter     *end);
+gboolean         empathy_chat_view_get_has_selection    (EmpathyChatView *view);
 void             empathy_chat_view_clear                (EmpathyChatView *view);
 gboolean         empathy_chat_view_find_previous        (EmpathyChatView *view,
                                                         const gchar     *search_criteria,
@@ -105,18 +89,6 @@ void             empathy_chat_view_find_abilities       (EmpathyChatView *view,
 void             empathy_chat_view_highlight            (EmpathyChatView *view,
                                                         const gchar     *text);
 void             empathy_chat_view_copy_clipboard       (EmpathyChatView *view);
-EmpathyTheme *   empathy_chat_view_get_theme            (EmpathyChatView *view);
-void             empathy_chat_view_set_theme            (EmpathyChatView *view,
-                                                        EmpathyTheme    *theme);
-void             empathy_chat_view_set_margin           (EmpathyChatView *view,
-                                                        gint             margin);
-time_t           empathy_chat_view_get_last_timestamp   (EmpathyChatView *view);
-void             empathy_chat_view_set_last_timestamp   (EmpathyChatView *view,
-                                                        time_t           timestamp);
-EmpathyContact * empathy_chat_view_get_last_contact     (EmpathyChatView *view);
-
-GtkWidget *      empathy_chat_view_get_smiley_menu      (GCallback        callback,
-                                                        gpointer         user_data);
 
 G_END_DECLS